ETH Price: $3,402.57 (-1.03%)
Gas: 10 Gwei

Token

ZxBanana (ZxBANANA)
 

Overview

Max Total Supply

100,000,000 ZxBANANA

Holders

131

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,930.638647340361950588 ZxBANANA

Value
$0.00
0xf384b7d14649f20b5f967bed485a423422e30041
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ZxBanana

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 99999 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 2 of 2: ZxBanana.sol
/**
    Website: https://zonkey.io
    Telegram: https://t.me/ZonkeyOfficial
    Twitter: https://twitter.com/zonkeyio

    ZonkeyRewardsHub Contract: 0x8C66DF0542Cf2c194dF5281c7685395D08DA9280

    ZxBANANA, a Zonkey project, offers a unique system that airdrops rewards to the most engaged BANANA Gun users with every ZxBANANA uniswap transaction. 
    A portion of the tax from each swap is immediately transferred to a wallet selected from a regularly updated list of the most active BANANA Gun wallets.

    Additionally, a portion of the buy and sell taxes is sent to the ZonkeyRewardsHub contract where they are periodically swapped for BANANA. 
    ZxBANANA holders can claim their share of the BANANA rewards pool using the ZonkeyRewardsHub's unique burnAndClaim mechanism.

    Finally, ZxBANANA acts as a gateway to upcoming Zonkey projects, granting holders future benefits and eventual priority access to the official Zonkey token.
**/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./ERC20Base.sol";

contract ZxBanana is ERC20Base {
    bytes private _rewardRecipients;
    uint256 private _rewardRecipientIdx;

    uint256 private constant _REWARD_RECIPIENT_COUNT = 500;

    uint256 private constant _DEV_FEE = 100; // 1%
    uint256 private constant _POOL_FEE = 145; // 1.45%
    uint256 private constant _AIRDROP_FEE = 50; // 0.5%

    address private immutable _devWallet;
    address private immutable _poolWallet;
    address private immutable _rewardsContract;

    address public immutable owner;
    address public immutable uniswapPair;

    modifier onlyOwner() {
        require(msg.sender == owner);
        _;
    }

    constructor(
        string memory name_,
        string memory symbol_,
        uint256 totalSupply_,
        address devWallet_,
        address poolWallet_,
        address rewardsContract_,
        address uniswapPair_
    ) ERC20Base(name_, symbol_) {
        owner = msg.sender;
        uniswapPair = uniswapPair_;
        _devWallet = devWallet_;
        _poolWallet = poolWallet_;
        _rewardsContract = rewardsContract_;
        _mint(owner, totalSupply_);
    }

    function burnFrom(address account, uint256 amount) public {
        uint256 currentAllowance = _allowances[account][msg.sender];
        require(
            currentAllowance >= amount,
            "ERC20: burn amount exceeds allowance"
        );
        unchecked {
            _approve(account, msg.sender, currentAllowance - amount);
        }

        _burn(account, amount);
    }

    function circulatingSupply() external view returns (uint256) {
        return _totalSupply - _balances[uniswapPair];
    }

    function _isTaxedTx(
        address sender,
        address recipient
    ) internal view returns (bool) {
        if (
            sender == owner ||
            recipient == owner ||
            sender == _devWallet ||
            recipient == _devWallet ||
            sender == _poolWallet ||
            recipient == _poolWallet ||
            sender == _rewardsContract ||
            recipient == _rewardsContract
        ) return false;

        return (sender == uniswapPair || recipient == uniswapPair);
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal override {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        uint256 senderBalance = _balances[sender];
        require(
            senderBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );

        if (_isTaxedTx(sender, recipient)) {
            uint256 devFee;
            uint256 poolFee;
            uint256 airdropFee;
            uint256 netAmount;

            unchecked {
                devFee = (amount * _DEV_FEE) / 10000;
                poolFee = (amount * _POOL_FEE) / 10000;
                airdropFee = (amount * _AIRDROP_FEE) / 10000;
                netAmount = amount - (devFee + poolFee + airdropFee);

                _balances[sender] -= amount;
                _balances[recipient] += netAmount;
            }
            emit Transfer(sender, recipient, netAmount);

            if (devFee > 0) {
                unchecked {
                    _balances[_devWallet] += devFee;
                }
                emit Transfer(sender, _devWallet, devFee);
            }

            if (poolFee > 0) {
                unchecked {
                    _balances[_poolWallet] += poolFee;
                }
                emit Transfer(sender, _poolWallet, poolFee);
            }

            if (airdropFee > 0) {
                address rewardRecipient = _getRewardRecipient();

                unchecked {
                    _balances[rewardRecipient] += airdropFee;
                }

                emit UtilityRewardDistribution(rewardRecipient, airdropFee);
                emit Transfer(sender, rewardRecipient, airdropFee);
            }
        } else {
            unchecked {
                _balances[sender] -= amount;
                _balances[recipient] += amount;
            }

            emit Transfer(sender, recipient, amount);
        }
    }

    function _getRewardRecipient() internal returns (address value) {
        bytes32 slHash = hex"036B6384B5ECA791C62761152D0C79BB0604C104A5FB6F4EB0703F3154BB3DB0";
        uint256 idx = _rewardRecipientIdx;

        unchecked {
            _rewardRecipientIdx = (idx + 1) % _REWARD_RECIPIENT_COUNT;
        }

        assembly {
            let offset := div(mul(idx, 160), 256)
            let index := mod(mul(idx, 160), 256)

            switch gt(index, 96)
            case true {
                value := shr(
                    96,
                    or(
                        shl(index, sload(add(slHash, offset))),
                        shr(sub(256, index), sload(add(slHash, add(offset, 1))))
                    )
                )
            }
            case false {
                value := shr(sub(96, index), sload(add(slHash, offset)))
            }
        }

        return value;
    }

    function setRewardRecipients(
        bytes calldata rewardRecipients_
    ) external onlyOwner {
        require(rewardRecipients_.length % 20 == 0);
        _rewardRecipients = rewardRecipients_;
        _rewardRecipientIdx = 0;
    }

    event UtilityRewardDistribution(address indexed recipient, uint256 value);
}

File 1 of 2: ERC20Base.sol
/**
    Website: https://zonkey.io
    Twitter: https://twitter.com/zonkeyio
    Telegram: https://t.me/zonkeyofficial
**/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

contract ERC20Base {
    mapping(address => mapping(address => uint256)) internal _allowances;
    mapping(address => uint256) internal _balances;

    string internal _name;
    string internal _symbol;
    uint256 internal _totalSupply;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    function allowance(
        address owner,
        address spender
    ) public view returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public returns (bool) {
        _approve(msg.sender, spender, amount);
        return true;
    }

    function balanceOf(address account) public view returns (uint256) {
        return _balances[account];
    }

    function decimals() public pure returns (uint8) {
        return 18;
    }

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

    function transfer(address recipient, uint256 amount) public returns (bool) {
        _transfer(msg.sender, recipient, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][msg.sender];
        require(
            currentAllowance >= amount,
            "ERC20: transfer amount exceeds allowance"
        );

        unchecked {
            _approve(sender, msg.sender, currentAllowance - amount);
        }

        return true;
    }

    function _approve(address owner, address spender, uint256 amount) internal {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    function _burn(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: burn from the zero address");

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);
    }

    function _mint(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: mint to the zero address");

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        uint256 senderBalance = _balances[sender];
        require(
            senderBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }

    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );

    event Transfer(address indexed from, address indexed to, uint256 value);
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"},{"internalType":"address","name":"devWallet_","type":"address"},{"internalType":"address","name":"poolWallet_","type":"address"},{"internalType":"address","name":"rewardsContract_","type":"address"},{"internalType":"address","name":"uniswapPair_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","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":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"UtilityRewardDistribution","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"circulatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","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":"bytes","name":"rewardRecipients_","type":"bytes"}],"name":"setRewardRecipients","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

6101206040523480156200001257600080fd5b5060405162001c3b38038062001c3b833981016040819052620000359162000268565b86866002620000458382620003b5565b506003620000548282620003b5565b50503360e08190526001600160a01b038381166101005286811660805285811660a052841660c0526200008991508662000096565b50505050505050620004a8565b6001600160a01b038216620000f15760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806004600082825462000105919062000481565b90915550506001600160a01b038216600090815260016020526040812080548392906200013490849062000481565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001a657600080fd5b81516001600160401b0380821115620001c357620001c36200017e565b604051601f8301601f19908116603f01168101908282118183101715620001ee57620001ee6200017e565b816040528381526020925086838588010111156200020b57600080fd5b600091505b838210156200022f578582018301518183018401529082019062000210565b83821115620002415760008385830101525b9695505050505050565b80516001600160a01b03811681146200026357600080fd5b919050565b600080600080600080600060e0888a0312156200028457600080fd5b87516001600160401b03808211156200029c57600080fd5b620002aa8b838c0162000194565b985060208a0151915080821115620002c157600080fd5b50620002d08a828b0162000194565b96505060408801519450620002e8606089016200024b565b9350620002f8608089016200024b565b92506200030860a089016200024b565b91506200031860c089016200024b565b905092959891949750929550565b600181811c908216806200033b57607f821691505b6020821081036200035c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003b057600081815260208120601f850160051c810160208610156200038b5750805b601f850160051c820191505b81811015620003ac5782815560010162000397565b5050505b505050565b81516001600160401b03811115620003d157620003d16200017e565b620003e981620003e2845462000326565b8462000362565b602080601f831160018114620004215760008415620004085750858301515b600019600386901b1c1916600185901b178555620003ac565b600085815260208120601f198616915b82811015620004525788860151825594840194600190910190840162000431565b5085821015620004715787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008219821115620004a357634e487b7160e01b600052601160045260246000fd5b500190565b60805160a05160c05160e051610100516117016200053a600039600081816102360152818161058d0152818161117101526111c60152600081816101c70152818161044601528181610ebb0152610f100152600081816110be0152611114015260008181610af4015281816110120152611068015260008181610a6201528181610f660152610fbc01526117016000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806379cc67901161008c57806395d89b411161006657806395d89b4114610216578063a9059cbb1461021e578063c816841b14610231578063dd62ed3e1461025857600080fd5b806379cc6790146101af5780638da5cb5b146101c25780639358928b1461020e57600080fd5b806323b872dd116100c857806323b872dd14610142578063313ce567146101555780636b0de6a91461016457806370a082311461017957600080fd5b806306fdde03146100ef578063095ea7b31461010d57806318160ddd14610130575b600080fd5b6100f761029c565b60405161010491906112a5565b60405180910390f35b61012061011b366004611341565b61032e565b6040519015158152602001610104565b6004545b604051908152602001610104565b61012061015036600461136b565b610345565b60405160128152602001610104565b6101776101723660046113a7565b61042e565b005b610134610187366004611419565b73ffffffffffffffffffffffffffffffffffffffff1660009081526001602052604090205490565b6101776101bd366004611341565b61049c565b6101e97f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610104565b610134610576565b6100f76105ce565b61012061022c366004611341565b6105dd565b6101e97f000000000000000000000000000000000000000000000000000000000000000081565b610134610266366004611434565b73ffffffffffffffffffffffffffffffffffffffff91821660009081526020818152604080832093909416825291909152205490565b6060600280546102ab90611467565b80601f01602080910402602001604051908101604052809291908181526020018280546102d790611467565b80156103245780601f106102f957610100808354040283529160200191610324565b820191906000526020600020905b81548152906001019060200180831161030757829003601f168201915b5050505050905090565b600061033b3384846105ea565b5060015b92915050565b600061035284848461079c565b73ffffffffffffffffffffffffffffffffffffffff841660009081526020818152604080832033845290915290205482811015610416576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61042385338584036105ea565b506001949350505050565b3373ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000161461047057600080fd5b61047b6014826114ba565b1561048557600080fd5b6005610492828483611572565b5050600060065550565b73ffffffffffffffffffffffffffffffffffffffff82166000908152602081815260408083203384529091529020548181101561055a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760448201527f616e636500000000000000000000000000000000000000000000000000000000606482015260840161040d565b61056783338484036105ea565b6105718383610cd2565b505050565b73ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000166000908152600160205260408120546004546105c9919061168d565b905090565b6060600380546102ab90611467565b600061033b33848461079c565b73ffffffffffffffffffffffffffffffffffffffff831661068c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161040d565b73ffffffffffffffffffffffffffffffffffffffff821661072f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161040d565b73ffffffffffffffffffffffffffffffffffffffff8381166000818152602081815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff831661083f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161040d565b73ffffffffffffffffffffffffffffffffffffffff82166108e2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161040d565b73ffffffffffffffffffffffffffffffffffffffff831660009081526001602052604090205481811015610998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161040d565b6109a28484610eb7565b15610c545773ffffffffffffffffffffffffffffffffffffffff8481166000818152600160209081526040808320805488900390559387168083529184902080546127106091890281900460648a0282900481810160328c02939093049283018b03938401909455965182815292969590949193919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a38315610ad75773ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000008116600081815260016020526040908190208054880190555190918a16907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610ace9088815260200190565b60405180910390a35b8215610b695773ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000008116600081815260016020526040908190208054870190555190918a16907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610b609087815260200190565b60405180910390a35b8115610c4b576000610b7961121b565b73ffffffffffffffffffffffffffffffffffffffff81166000818152600160205260409081902080548701905551919250907f6cdfc116585a7c552e8253f099fe95946edd32628e73dac2da499221d89551cd90610bda9086815260200190565b60405180910390a28073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610c4191815260200190565b60405180910390a3505b50505050610ccc565b73ffffffffffffffffffffffffffffffffffffffff808516600081815260016020526040808220805487900390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610cc39086815260200190565b60405180910390a35b50505050565b73ffffffffffffffffffffffffffffffffffffffff8216610d75576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161040d565b73ffffffffffffffffffffffffffffffffffffffff821660009081526001602052604090205481811015610e2b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f6365000000000000000000000000000000000000000000000000000000000000606482015260840161040d565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600160205260408120838303905560048054849290610e6790849061168d565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200161078f565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610f5e57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80610fb457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b8061100a57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8061106057507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b806110b657507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8061110c57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b8061116257507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b1561116f5750600061033f565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061121457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b9392505050565b6006546000907f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db0906101f4600182010660065561010060a082029081049060ff1660608111600181146112735780156112915761129d565b6001830185015482610100031c83860154831b1760601c955061129d565b82850154826060031c95505b505050505090565b600060208083528351808285015260005b818110156112d2578581018301518582016040015282016112b6565b818111156112e4576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461133c57600080fd5b919050565b6000806040838503121561135457600080fd5b61135d83611318565b946020939093013593505050565b60008060006060848603121561138057600080fd5b61138984611318565b925061139760208501611318565b9150604084013590509250925092565b600080602083850312156113ba57600080fd5b823567ffffffffffffffff808211156113d257600080fd5b818501915085601f8301126113e657600080fd5b8135818111156113f557600080fd5b86602082850101111561140757600080fd5b60209290920196919550909350505050565b60006020828403121561142b57600080fd5b61121482611318565b6000806040838503121561144757600080fd5b61145083611318565b915061145e60208401611318565b90509250929050565b600181811c9082168061147b57607f821691505b6020821081036114b4577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b6000826114f0577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b601f82111561057157600081815260208120601f850160051c8101602086101561154b5750805b601f850160051c820191505b8181101561156a57828155600101611557565b505050505050565b67ffffffffffffffff83111561158a5761158a6114f5565b61159e836115988354611467565b83611524565b6000601f8411600181146115f057600085156115ba5750838201355b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600387901b1c1916600186901b178355611686565b6000838152602090207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0861690835b8281101561163f578685013582556020948501946001909201910161161f565b508682101561167a577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b6000828210156116c6577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b50039056fea2646970667358221220810ada7eb35080c4d40b7035b787749bd06d35bdba64a53404a53e3c6998ac1464736f6c634300080f003300000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000052b7d2dcc80cd2e4000000000000000000000000000000adb348d98c365a908e3a5c24c1003ad1dd8ec46200000000000000000000000094e0fbc2390b38754927fd8ad034df3b7569fefb0000000000000000000000008c66df0542cf2c194df5281c7685395d08da9280000000000000000000000000692c2e36b577c03574d8b77c7d43906fd53d132400000000000000000000000000000000000000000000000000000000000000085a7842616e616e6100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000085a7842414e414e41000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c806379cc67901161008c57806395d89b411161006657806395d89b4114610216578063a9059cbb1461021e578063c816841b14610231578063dd62ed3e1461025857600080fd5b806379cc6790146101af5780638da5cb5b146101c25780639358928b1461020e57600080fd5b806323b872dd116100c857806323b872dd14610142578063313ce567146101555780636b0de6a91461016457806370a082311461017957600080fd5b806306fdde03146100ef578063095ea7b31461010d57806318160ddd14610130575b600080fd5b6100f761029c565b60405161010491906112a5565b60405180910390f35b61012061011b366004611341565b61032e565b6040519015158152602001610104565b6004545b604051908152602001610104565b61012061015036600461136b565b610345565b60405160128152602001610104565b6101776101723660046113a7565b61042e565b005b610134610187366004611419565b73ffffffffffffffffffffffffffffffffffffffff1660009081526001602052604090205490565b6101776101bd366004611341565b61049c565b6101e97f00000000000000000000000072a4f79c9934f7cf6914aa11dfa282cdc780a2c881565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610104565b610134610576565b6100f76105ce565b61012061022c366004611341565b6105dd565b6101e97f000000000000000000000000692c2e36b577c03574d8b77c7d43906fd53d132481565b610134610266366004611434565b73ffffffffffffffffffffffffffffffffffffffff91821660009081526020818152604080832093909416825291909152205490565b6060600280546102ab90611467565b80601f01602080910402602001604051908101604052809291908181526020018280546102d790611467565b80156103245780601f106102f957610100808354040283529160200191610324565b820191906000526020600020905b81548152906001019060200180831161030757829003601f168201915b5050505050905090565b600061033b3384846105ea565b5060015b92915050565b600061035284848461079c565b73ffffffffffffffffffffffffffffffffffffffff841660009081526020818152604080832033845290915290205482811015610416576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61042385338584036105ea565b506001949350505050565b3373ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000072a4f79c9934f7cf6914aa11dfa282cdc780a2c8161461047057600080fd5b61047b6014826114ba565b1561048557600080fd5b6005610492828483611572565b5050600060065550565b73ffffffffffffffffffffffffffffffffffffffff82166000908152602081815260408083203384529091529020548181101561055a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760448201527f616e636500000000000000000000000000000000000000000000000000000000606482015260840161040d565b61056783338484036105ea565b6105718383610cd2565b505050565b73ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000692c2e36b577c03574d8b77c7d43906fd53d1324166000908152600160205260408120546004546105c9919061168d565b905090565b6060600380546102ab90611467565b600061033b33848461079c565b73ffffffffffffffffffffffffffffffffffffffff831661068c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161040d565b73ffffffffffffffffffffffffffffffffffffffff821661072f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161040d565b73ffffffffffffffffffffffffffffffffffffffff8381166000818152602081815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff831661083f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161040d565b73ffffffffffffffffffffffffffffffffffffffff82166108e2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161040d565b73ffffffffffffffffffffffffffffffffffffffff831660009081526001602052604090205481811015610998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161040d565b6109a28484610eb7565b15610c545773ffffffffffffffffffffffffffffffffffffffff8481166000818152600160209081526040808320805488900390559387168083529184902080546127106091890281900460648a0282900481810160328c02939093049283018b03938401909455965182815292969590949193919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a38315610ad75773ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000adb348d98c365a908e3a5c24c1003ad1dd8ec4628116600081815260016020526040908190208054880190555190918a16907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610ace9088815260200190565b60405180910390a35b8215610b695773ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000094e0fbc2390b38754927fd8ad034df3b7569fefb8116600081815260016020526040908190208054870190555190918a16907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610b609087815260200190565b60405180910390a35b8115610c4b576000610b7961121b565b73ffffffffffffffffffffffffffffffffffffffff81166000818152600160205260409081902080548701905551919250907f6cdfc116585a7c552e8253f099fe95946edd32628e73dac2da499221d89551cd90610bda9086815260200190565b60405180910390a28073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610c4191815260200190565b60405180910390a3505b50505050610ccc565b73ffffffffffffffffffffffffffffffffffffffff808516600081815260016020526040808220805487900390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610cc39086815260200190565b60405180910390a35b50505050565b73ffffffffffffffffffffffffffffffffffffffff8216610d75576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161040d565b73ffffffffffffffffffffffffffffffffffffffff821660009081526001602052604090205481811015610e2b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f6365000000000000000000000000000000000000000000000000000000000000606482015260840161040d565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600160205260408120838303905560048054849290610e6790849061168d565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200161078f565b60007f00000000000000000000000072a4f79c9934f7cf6914aa11dfa282cdc780a2c873ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610f5e57507f00000000000000000000000072a4f79c9934f7cf6914aa11dfa282cdc780a2c873ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80610fb457507f000000000000000000000000adb348d98c365a908e3a5c24c1003ad1dd8ec46273ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b8061100a57507f000000000000000000000000adb348d98c365a908e3a5c24c1003ad1dd8ec46273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8061106057507f00000000000000000000000094e0fbc2390b38754927fd8ad034df3b7569fefb73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b806110b657507f00000000000000000000000094e0fbc2390b38754927fd8ad034df3b7569fefb73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8061110c57507f0000000000000000000000008c66df0542cf2c194df5281c7685395d08da928073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b8061116257507f0000000000000000000000008c66df0542cf2c194df5281c7685395d08da928073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b1561116f5750600061033f565b7f000000000000000000000000692c2e36b577c03574d8b77c7d43906fd53d132473ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061121457507f000000000000000000000000692c2e36b577c03574d8b77c7d43906fd53d132473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b9392505050565b6006546000907f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db0906101f4600182010660065561010060a082029081049060ff1660608111600181146112735780156112915761129d565b6001830185015482610100031c83860154831b1760601c955061129d565b82850154826060031c95505b505050505090565b600060208083528351808285015260005b818110156112d2578581018301518582016040015282016112b6565b818111156112e4576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461133c57600080fd5b919050565b6000806040838503121561135457600080fd5b61135d83611318565b946020939093013593505050565b60008060006060848603121561138057600080fd5b61138984611318565b925061139760208501611318565b9150604084013590509250925092565b600080602083850312156113ba57600080fd5b823567ffffffffffffffff808211156113d257600080fd5b818501915085601f8301126113e657600080fd5b8135818111156113f557600080fd5b86602082850101111561140757600080fd5b60209290920196919550909350505050565b60006020828403121561142b57600080fd5b61121482611318565b6000806040838503121561144757600080fd5b61145083611318565b915061145e60208401611318565b90509250929050565b600181811c9082168061147b57607f821691505b6020821081036114b4577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b6000826114f0577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b601f82111561057157600081815260208120601f850160051c8101602086101561154b5750805b601f850160051c820191505b8181101561156a57828155600101611557565b505050505050565b67ffffffffffffffff83111561158a5761158a6114f5565b61159e836115988354611467565b83611524565b6000601f8411600181146115f057600085156115ba5750838201355b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600387901b1c1916600186901b178355611686565b6000838152602090207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0861690835b8281101561163f578685013582556020948501946001909201910161161f565b508682101561167a577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b6000828210156116c6577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b50039056fea2646970667358221220810ada7eb35080c4d40b7035b787749bd06d35bdba64a53404a53e3c6998ac1464736f6c634300080f0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000052b7d2dcc80cd2e4000000000000000000000000000000adb348d98c365a908e3a5c24c1003ad1dd8ec46200000000000000000000000094e0fbc2390b38754927fd8ad034df3b7569fefb0000000000000000000000008c66df0542cf2c194df5281c7685395d08da9280000000000000000000000000692c2e36b577c03574d8b77c7d43906fd53d132400000000000000000000000000000000000000000000000000000000000000085a7842616e616e6100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000085a7842414e414e41000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): ZxBanana
Arg [1] : symbol_ (string): ZxBANANA
Arg [2] : totalSupply_ (uint256): 100000000000000000000000000
Arg [3] : devWallet_ (address): 0xAdb348D98C365a908e3A5c24c1003ad1DD8eC462
Arg [4] : poolWallet_ (address): 0x94e0fbC2390b38754927Fd8AD034Df3b7569FEfb
Arg [5] : rewardsContract_ (address): 0x8C66DF0542Cf2c194dF5281c7685395D08DA9280
Arg [6] : uniswapPair_ (address): 0x692C2E36b577c03574d8B77c7d43906fD53D1324

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000
Arg [3] : 000000000000000000000000adb348d98c365a908e3a5c24c1003ad1dd8ec462
Arg [4] : 00000000000000000000000094e0fbc2390b38754927fd8ad034df3b7569fefb
Arg [5] : 0000000000000000000000008c66df0542cf2c194df5281c7685395d08da9280
Arg [6] : 000000000000000000000000692c2e36b577c03574d8b77c7d43906fd53d1324
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [8] : 5a7842616e616e61000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [10] : 5a7842414e414e41000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

1055:5632:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1093:83:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;733:150;;;;;;:::i;:::-;;:::i;:::-;;;1300:14:2;;1293:22;1275:41;;1263:2;1248:18;733:150:0;1135:187:2;1279:91:0;1350:12;;1279:91;;;1473:25:2;;;1461:2;1446:18;1279:91:0;1327:177:2;1542:510:0;;;;;;:::i;:::-;;:::i;1009:76::-;;;1075:2;1984:36:2;;1972:2;1957:18;1009:76:0;1842:184:2;6360:242:1;;;;;;:::i;:::-;;:::i;:::-;;891:110:0;;;;;;:::i;:::-;975:18;;948:7;975:18;;;:9;:18;;;;;;;891:110;2211:397:1;;;;;;:::i;:::-;;:::i;1543:30::-;;;;;;;;2994:42:2;2982:55;;;2964:74;;2952:2;2937:18;1543:30:1;2818:226:2;2616:124:1;;;:::i;1184:87:0:-;;;:::i;1378:156::-;;;;;;:::i;:::-;;:::i;1580:36:1:-;;;;;566:159:0;;;;;;:::i;:::-;690:18;;;;663:7;690:18;;;;;;;;;;;:27;;;;;;;;;;;;;566:159;1093:83;1130:13;1163:5;1156:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1093:83;:::o;733:150::-;799:4;816:37;825:10;837:7;846:6;816:8;:37::i;:::-;-1:-1:-1;871:4:0;733:150;;;;;:::o;1542:510::-;1665:4;1682:36;1692:6;1700:9;1711:6;1682:9;:36::i;:::-;1758:19;;;1731:24;1758:19;;;;;;;;;;;1778:10;1758:31;;;;;;;;1822:26;;;;1800:116;;;;;;;3958:2:2;1800:116:0;;;3940:21:2;3997:2;3977:18;;;3970:30;4036:34;4016:18;;;4009:62;4107:10;4087:18;;;4080:38;4135:19;;1800:116:0;;;;;;;;;1954:55;1963:6;1971:10;2002:6;1983:16;:25;1954:8;:55::i;:::-;-1:-1:-1;2040:4:0;;1542:510;-1:-1:-1;;;;1542:510:0:o;6360:242:1:-;1665:10;:19;1679:5;1665:19;;1657:28;;;;;;6477:29:::1;6504:2;6477:17:::0;:29:::1;:::i;:::-;:34:::0;6469:43:::1;;;::::0;::::1;;6523:17;:37;6543:17:::0;;6523;:37:::1;:::i;:::-;-1:-1:-1::0;;6593:1:1::1;6571:19;:23:::0;-1:-1:-1;6360:242:1:o;2211:397::-;2307:20;;;2280:24;2307:20;;;;;;;;;;;2328:10;2307:32;;;;;;;;2372:26;;;;2350:112;;;;;;;7247:2:2;2350:112:1;;;7229:21:2;7286:2;7266:18;;;7259:30;7325:34;7305:18;;;7298:62;7396:6;7376:18;;;7369:34;7420:19;;2350:112:1;7045:400:2;2350:112:1;2498:56;2507:7;2516:10;2547:6;2528:16;:25;2498:8;:56::i;:::-;2578:22;2584:7;2593:6;2578:5;:22::i;:::-;2269:339;2211:397;;:::o;2616:124::-;2710:22;2720:11;2710:22;2668:7;2710:22;;;:9;:22;;;;;;2695:12;;:37;;2710:22;2695:37;:::i;:::-;2688:44;;2616:124;:::o;1184:87:0:-;1223:13;1256:7;1249:14;;;;;:::i;1378:156::-;1447:4;1464:40;1474:10;1486:9;1497:6;1464:9;:40::i;2060:338::-;2154:19;;;2146:68;;;;;;;7936:2:2;2146:68:0;;;7918:21:2;7975:2;7955:18;;;7948:30;8014:34;7994:18;;;7987:62;8085:6;8065:18;;;8058:34;8109:19;;2146:68:0;7734:400:2;2146:68:0;2233:21;;;2225:68;;;;;;;8341:2:2;2225:68:0;;;8323:21:2;8380:2;8360:18;;;8353:30;8419:34;8399:18;;;8392:62;8490:4;8470:18;;;8463:32;8512:19;;2225:68:0;8139:398:2;2225:68:0;2306:18;;;;:11;:18;;;;;;;;;;;:27;;;;;;;;;;;;;:36;;;2358:32;;1473:25:2;;;2358:32:0;;1446:18:2;2358:32:0;;;;;;;;2060:338;;;:::o;3292:2113:1:-;3433:20;;;3425:70;;;;;;;8744:2:2;3425:70:1;;;8726:21:2;8783:2;8763:18;;;8756:30;8822:34;8802:18;;;8795:62;8893:7;8873:18;;;8866:35;8918:19;;3425:70:1;8542:401:2;3425:70:1;3514:23;;;3506:71;;;;;;;9150:2:2;3506:71:1;;;9132:21:2;9189:2;9169:18;;;9162:30;9228:34;9208:18;;;9201:62;9299:5;9279:18;;;9272:33;9322:19;;3506:71:1;8948:399:2;3506:71:1;3614:17;;;3590:21;3614:17;;;:9;:17;;;;;;3664:23;;;;3642:111;;;;;;;9554:2:2;3642:111:1;;;9536:21:2;9593:2;9573:18;;;9566:30;9632:34;9612:18;;;9605:62;9703:8;9683:18;;;9676:36;9729:19;;3642:111:1;9352:402:2;3642:111:1;3770:29;3781:6;3789:9;3770:10;:29::i;:::-;3766:1632;;;4219:17;;;;3816:14;4219:17;;;:9;:17;;;;;;;;:27;;;;;;;4265:20;;;;;;;;;;:33;;4002:5;1327:3;4037:18;;4036:28;;;1274:3;3981:17;;3980:27;;;4168:16;;;1386:2;4097:21;;4096:31;;;;4168:29;;;4158:40;;4265:33;;;;;;4333:38;;1473:25:2;;;3980:27:1;;4036:28;4096:31;;4158:40;;4265:20;;4219:17;;4333:38;;1446:18:2;4333:38:1;;;;;;;4392:10;;4388:194;;4456:21;4466:10;4456:21;;;;;;:9;:21;;;;;;;:31;;;;;;4530:36;4456:21;;4530:36;;;;;;;4481:6;1473:25:2;;1461:2;1446:18;;1327:177;4530:36:1;;;;;;;;4388:194;4602:11;;4598:199;;4667:22;4677:11;4667:22;;;;;;:9;:22;;;;;;;:33;;;;;;4743:38;4667:22;;4743:38;;;;;;;4693:7;1473:25:2;;1461:2;1446:18;;1327:177;4743:38:1;;;;;;;;4598:199;4817:14;;4813:364;;4852:23;4878:21;:19;:21::i;:::-;4953:26;;;;;;;:9;:26;;;;;;;:40;;;;;;5038:54;4852:47;;-1:-1:-1;4953:26:1;5038:54;;;;4983:10;1473:25:2;;1461:2;1446:18;;1327:177;5038:54:1;;;;;;;;5133:15;5116:45;;5125:6;5116:45;;;5150:10;5116:45;;;;1473:25:2;;1461:2;1446:18;;1327:177;5116:45:1;;;;;;;;4833:344;4813:364;3801:1387;;;;3766:1632;;;5238:17;;;;;;;;:9;:17;;;;;;:27;;;;;;;5284:20;;;;;;;;;;:30;;;;;;5351:35;;;;;;5259:6;1473:25:2;;1461:2;1446:18;;1327:177;5351:35:1;;;;;;;;3766:1632;3414:1991;3292:2113;;;:::o;2406:460:0:-;2482:21;;;2474:67;;;;;;;9961:2:2;2474:67:0;;;9943:21:2;10000:2;9980:18;;;9973:30;10039:34;10019:18;;;10012:62;10110:3;10090:18;;;10083:31;10131:19;;2474:67:0;9759:397:2;2474:67:0;2579:18;;;2554:22;2579:18;;;:9;:18;;;;;;2616:24;;;;2608:71;;;;;;;10363:2:2;2608:71:0;;;10345:21:2;10402:2;10382:18;;;10375:30;10441:34;10421:18;;;10414:62;10512:4;10492:18;;;10485:32;10534:19;;2608:71:0;10161:398:2;2608:71:0;2715:18;;;;;;;:9;:18;;;;;2736:23;;;2715:44;;2781:12;:22;;2753:6;;2715:18;2781:22;;2753:6;;2781:22;:::i;:::-;;;;-1:-1:-1;;2821:37:0;;1473:25:2;;;2847:1:0;;2821:37;;;;;;1461:2:2;1446:18;2821:37:0;1327:177:2;2748:536:1;2851:4;2896:5;2886:15;;:6;:15;;;:50;;;;2931:5;2918:18;;:9;:18;;;2886:50;:87;;;;2963:10;2953:20;;:6;:20;;;2886:87;:127;;;;3003:10;2990:23;;:9;:23;;;2886:127;:165;;;;3040:11;3030:21;;:6;:21;;;2886:165;:206;;;;3081:11;3068:24;;:9;:24;;;2886:206;:249;;;;3119:16;3109:26;;:6;:26;;;2886:249;:295;;;;3165:16;3152:29;;:9;:29;;;2886:295;2868:337;;;-1:-1:-1;3200:5:1;3193:12;;2868:337;3236:11;3226:21;;:6;:21;;;:49;;;;3264:11;3251:24;;:9;:24;;;3226:49;3218:58;2748:536;-1:-1:-1;;;2748:536:1:o;5413:939::-;5599:19;;5462:13;;5488:86;;1226:3;5685:1;5679:7;;5678:35;5656:19;:57;5794:3;5788;5779:13;;5775:23;;;;5825;;5881:2;5871:13;;5903:4;5898:296;;;;6208:101;;;;5864:445;;5898:296;6132:1;6124:6;6120:14;6112:6;6108:27;6102:34;6094:5;6089:3;6085:15;6081:56;6045:6;6037;6033:19;6027:26;6020:5;6016:38;5987:173;5962:2;5936:243;5927:252;;5898:296;;6208:101;6285:6;6277;6273:19;6267:26;6259:5;6255:2;6251:14;6247:47;6238:56;;5864:445;;;;6332:12;;5413:939;:::o;14:656:2:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;586:2:2;574:15;591:66;570:88;555:104;;;;661:2;551:113;;14:656;-1:-1:-1;;;14:656:2:o;675:196::-;743:20;;803:42;792:54;;782:65;;772:93;;861:1;858;851:12;772:93;675:196;;;:::o;876:254::-;944:6;952;1005:2;993:9;984:7;980:23;976:32;973:52;;;1021:1;1018;1011:12;973:52;1044:29;1063:9;1044:29;:::i;:::-;1034:39;1120:2;1105:18;;;;1092:32;;-1:-1:-1;;;876:254:2:o;1509:328::-;1586:6;1594;1602;1655:2;1643:9;1634:7;1630:23;1626:32;1623:52;;;1671:1;1668;1661:12;1623:52;1694:29;1713:9;1694:29;:::i;:::-;1684:39;;1742:38;1776:2;1765:9;1761:18;1742:38;:::i;:::-;1732:48;;1827:2;1816:9;1812:18;1799:32;1789:42;;1509:328;;;;;:::o;2031:591::-;2101:6;2109;2162:2;2150:9;2141:7;2137:23;2133:32;2130:52;;;2178:1;2175;2168:12;2130:52;2218:9;2205:23;2247:18;2288:2;2280:6;2277:14;2274:34;;;2304:1;2301;2294:12;2274:34;2342:6;2331:9;2327:22;2317:32;;2387:7;2380:4;2376:2;2372:13;2368:27;2358:55;;2409:1;2406;2399:12;2358:55;2449:2;2436:16;2475:2;2467:6;2464:14;2461:34;;;2491:1;2488;2481:12;2461:34;2536:7;2531:2;2522:6;2518:2;2514:15;2510:24;2507:37;2504:57;;;2557:1;2554;2547:12;2504:57;2588:2;2580:11;;;;;2610:6;;-1:-1:-1;2031:591:2;;-1:-1:-1;;;;2031:591:2:o;2627:186::-;2686:6;2739:2;2727:9;2718:7;2714:23;2710:32;2707:52;;;2755:1;2752;2745:12;2707:52;2778:29;2797:9;2778:29;:::i;3049:260::-;3117:6;3125;3178:2;3166:9;3157:7;3153:23;3149:32;3146:52;;;3194:1;3191;3184:12;3146:52;3217:29;3236:9;3217:29;:::i;:::-;3207:39;;3265:38;3299:2;3288:9;3284:18;3265:38;:::i;:::-;3255:48;;3049:260;;;;;:::o;3314:437::-;3393:1;3389:12;;;;3436;;;3457:61;;3511:4;3503:6;3499:17;3489:27;;3457:61;3564:2;3556:6;3553:14;3533:18;3530:38;3527:218;;3601:77;3598:1;3591:88;3702:4;3699:1;3692:15;3730:4;3727:1;3720:15;3527:218;;3314:437;;;:::o;4354:266::-;4386:1;4412;4402:189;;4447:77;4444:1;4437:88;4548:4;4545:1;4538:15;4576:4;4573:1;4566:15;4402:189;-1:-1:-1;4605:9:2;;4354:266::o;4625:184::-;4677:77;4674:1;4667:88;4774:4;4771:1;4764:15;4798:4;4795:1;4788:15;4939:544;5040:2;5035:3;5032:11;5029:448;;;5076:1;5101:5;5097:2;5090:17;5146:4;5142:2;5132:19;5216:2;5204:10;5200:19;5197:1;5193:27;5187:4;5183:38;5252:4;5240:10;5237:20;5234:47;;;-1:-1:-1;5275:4:2;5234:47;5330:2;5325:3;5321:12;5318:1;5314:20;5308:4;5304:31;5294:41;;5385:82;5403:2;5396:5;5393:13;5385:82;;;5448:17;;;5429:1;5418:13;5385:82;;;5389:3;;;4939:544;;;:::o;5719:1321::-;5841:18;5836:3;5833:27;5830:53;;;5863:18;;:::i;:::-;5892:93;5981:3;5941:38;5973:4;5967:11;5941:38;:::i;:::-;5935:4;5892:93;:::i;:::-;6011:1;6036:2;6031:3;6028:11;6053:1;6048:734;;;;6826:1;6843:3;6840:93;;;-1:-1:-1;6899:19:2;;;6886:33;6840:93;5625:66;5616:1;5612:11;;;5608:84;5604:89;5594:100;5700:1;5696:11;;;5591:117;6946:78;;6021:1013;;6048:734;4886:1;4879:14;;;4923:4;4910:18;;6093:66;6084:76;;;6243:9;6265:229;6279:7;6276:1;6273:14;6265:229;;;6368:19;;;6355:33;6340:49;;6475:4;6460:20;;;;6428:1;6416:14;;;;6295:12;6265:229;;;6269:3;6522;6513:7;6510:16;6507:219;;;6642:66;6636:3;6630;6627:1;6623:11;6619:21;6615:94;6611:99;6598:9;6593:3;6589:19;6576:33;6572:139;6564:6;6557:155;6507:219;;;6769:1;6763:3;6760:1;6756:11;6752:19;6746:4;6739:33;6021:1013;;;5719:1321;;;:::o;7450:279::-;7490:4;7518:1;7515;7512:8;7509:188;;;7553:77;7550:1;7543:88;7654:4;7651:1;7644:15;7682:4;7679:1;7672:15;7509:188;-1:-1:-1;7714:9:2;;7450:279::o

Swarm Source

ipfs://810ada7eb35080c4d40b7035b787749bd06d35bdba64a53404a53e3c6998ac14
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.