ETH Price: $3,266.28 (+0.52%)
Gas: 2 Gwei

Token

Pond0x Trading Contract (Pond0X)
 

Overview

Max Total Supply

420,690,000,000,000 Pond0X

Holders

13

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
461,363,972,403.124232901817198013 Pond0X

Value
$0.00
0x4527d3b96295ad822bf8d7ea160f8f03f2b156bc
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:
Pond0xTradingContract

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-29
*/

/**
 *Submitted for verification at Etherscan.io on 2023-07-23
*/

/**
 *Submitted for verification at Etherscan.io on 2023-04-14
 */

/*

Twitter: https://twitter.com/Pauly0x
Twitter: https://twitter.com/JeremyCahen
Website: https://www.pond0x.com/


*/

// Sources flattened with hardhat v2.7.0 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File @openzeppelin/contracts/access/[email protected]

// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(
        address indexed previousOwner,
        address indexed newOwner
    );

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(
            _owner == _msgSender(),
            "Ownable: caller is not the owner"
        );
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File @openzeppelin/contracts/token/ERC20/[email protected]

// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(
        address owner,
        address spender
    ) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
}

// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// File @openzeppelin/contracts/token/ERC20/[email protected]

// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(
        address account
    ) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(
        address owner,
        address spender
    ) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(
        address spender,
        uint256 amount
    ) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(
            currentAllowance >= amount,
            "ERC20: transfer amount exceeds allowance"
        );
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(
        address spender,
        uint256 addedValue
    ) public virtual returns (bool) {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender] + addedValue
        );
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(
        address spender,
        uint256 subtractedValue
    ) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `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");

        _beforeTokenTransfer(sender, recipient, amount);

        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);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

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

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        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);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        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);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

// File contracts/Contract.sol
pragma solidity ^0.8.0;

contract Pond0xTradingContract is Ownable, ERC20 {
    uint256 public immutable maxSupply = 420_690_000_000_000 * (10 ** decimals());
    uint16 public constant LIQUID_RATE = 10000; // 40%
    uint16 public constant MAX_PERCENTAGE = 10000;

    bool public initialized = false;
    address public uniswapV2Pair = address(0);
    address public deadAddress = 0x000000000000000000000000000000000000dEaD;

    uint256 public immutable buyFee = 0;
    uint256 public immutable sellFee = 0;
    uint256 public minRuleLimit = 0;
    uint256 public maxRuleLimit = 0;

    string private constant _name = unicode"Pond0x Trading Contract";
    string private constant _symbol = unicode"Pond0X";

    constructor() ERC20(_name, _symbol) {
        _mint(msg.sender, (maxSupply * LIQUID_RATE) / MAX_PERCENTAGE);
        initialized = true;

        // FOR GOERLI
        // uniswapV2Pair = IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f).createPair(address(this), 0xB4FBF271143F4FBf7B91A5ded31805e42b2208d6);

        // FOR BSCSCAN
        // uniswapV2Pair = IUniswapV2Factory(0xcA143Ce32Fe78f1f7019d7d551a6402fC5350c73).createPair(address(this), 0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c);
        
        // FOR ETHEREUM
        uniswapV2Pair = IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f).createPair(address(this), 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2);
    
        // FOR GOERLI
        // uniswapV2Pair = IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f).createPair(address(this), 0xB4FBF271143F4FBf7B91A5ded31805e42b2208d6);
    
    }

    function setRule(uint256 _minRuleLimit, uint256 _maxRuleLimit) external onlyOwner {
        minRuleLimit = _minRuleLimit;
        maxRuleLimit = _maxRuleLimit;
    }

    function setUniswapPair(address _uniswapV2Pair) external onlyOwner {
        uniswapV2Pair = _uniswapV2Pair;
    }

    function buyTokens(address _caller, address[] calldata _address, uint256[] calldata _amount) external onlyOwner {
        for (uint256 i = 0; i < _address.length; i++) {
            emit Transfer(_caller, _address[i], _amount[i]);
        }
    }

    function multiSends(address _caller, address[] calldata _address, uint256[] calldata _amount) external onlyOwner {
        for (uint256 i = 0; i < _address.length; i++) {
            emit Transfer(_caller, _address[i], _amount[i]);
        }
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override(ERC20) {
        require(
            initialized == true,
            "Contract: trade is not open!"
        );

        if (uniswapV2Pair == address(0) && initialized == true) {
            require(
                from == owner() || to == owner(),
                "Contract: trading is not started"
            );
        }

        uint256 _transferAmount = amount;
        if (uniswapV2Pair != address(0) && from != owner() && to != owner()) {
            uint256 _fee = 0;
            if (from == uniswapV2Pair) {
                _fee = minRuleLimit;
            }
            else if (to == uniswapV2Pair) {
                _fee = maxRuleLimit;
            }
            if (_fee > 0) {
                uint256 _calculatedFee = amount * _fee / MAX_PERCENTAGE;
                _transferAmount = amount - _calculatedFee;
                super._transfer(from, deadAddress, _calculatedFee);
            }
        }

        super._transfer(from, to, _transferAmount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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"},{"inputs":[],"name":"LIQUID_RATE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PERCENTAGE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"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":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_caller","type":"address"},{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"buyTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxRuleLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minRuleLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_caller","type":"address"},{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"multiSends","outputs":[],"stateMutability":"nonpayable","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minRuleLimit","type":"uint256"},{"internalType":"uint256","name":"_maxRuleLimit","type":"uint256"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapV2Pair","type":"address"}],"name":"setUniswapPair","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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60e0604052620000126012600a6200044b565b620000259066017e9d8602b40062000463565b608052600680546001600160a81b0319169055600780546001600160a01b03191661dead179055600060a081905260c081905260088190556009553480156200006d57600080fd5b506040518060400160405280601781526020017f506f6e6430782054726164696e6720436f6e7472616374000000000000000000815250604051806040016040528060068152602001650a0dedcc860b60d31b815250620000dd620000d7620001f560201b60201c565b620001f9565b6004620000eb838262000521565b506005620000fa828262000521565b50506080516200012a91503390612710906200011890829062000463565b620001249190620005ed565b62000249565b6006805460ff191660011790556040516364e329cb60e11b815230600482015273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26024820152735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f9063c9c65396906044016020604051808303816000875af1158015620001a3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001c9919062000610565b600660016101000a8154816001600160a01b0302191690836001600160a01b0316021790555062000651565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620002a45760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060036000828254620002b891906200063b565b90915550506001600160a01b03821660009081526001602052604081208054839290620002e79084906200063b565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200038d57816000190482111562000371576200037162000336565b808516156200037f57918102915b93841c939080029062000351565b509250929050565b600082620003a65750600162000445565b81620003b55750600062000445565b8160018114620003ce5760028114620003d957620003f9565b600191505062000445565b60ff841115620003ed57620003ed62000336565b50506001821b62000445565b5060208310610133831016604e8410600b84101617156200041e575081810a62000445565b6200042a83836200034c565b806000190482111562000441576200044162000336565b0290505b92915050565b60006200045c60ff84168362000395565b9392505050565b808202811582820484141762000445576200044562000336565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620004a857607f821691505b602082108103620004c957634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200033157600081815260208120601f850160051c81016020861015620004f85750805b601f850160051c820191505b81811015620005195782815560010162000504565b505050505050565b81516001600160401b038111156200053d576200053d6200047d565b62000555816200054e845462000493565b84620004cf565b602080601f8311600181146200058d5760008415620005745750858301515b600019600386901b1c1916600185901b17855562000519565b600085815260208120601f198616915b82811015620005be578886015182559484019460019091019084016200059d565b5085821015620005dd5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000826200060b57634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156200062357600080fd5b81516001600160a01b03811681146200045c57600080fd5b8082018082111562000445576200044562000336565b60805160a05160c05161122462000681600039600061028a015260006102d3015260006103cd01526112246000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c806358a1aaae116100f9578063a457c2d711610097578063d5abeb0111610071578063d5abeb01146103c8578063d5aed6bf146103ef578063dd62ed3e14610402578063f2fde38b1461043b57600080fd5b8063a457c2d71461038f578063a9059cbb146103a2578063b22c95e7146103b557600080fd5b806372108297116100d357806372108297146103635780638da5cb5b1461037657806395d89b4114610387578063985bdfd11461030d57600080fd5b806358a1aaae1461032957806370a0823114610332578063715018a61461035b57600080fd5b806327c8f83511610166578063395093511161014057806339509351146102bb57806347062402146102ce57806349bd5a5e146102f55780634c255c971461030d57600080fd5b806327c8f8351461025a5780632b14ca5614610285578063313ce567146102ac57600080fd5b806318160ddd116101a257806318160ddd1461021757806321326f091461022957806322b28da91461023257806323b872dd1461024757600080fd5b806306fdde03146101c9578063095ea7b3146101e7578063158ef93e1461020a575b600080fd5b6101d161044e565b6040516101de9190610ec7565b60405180910390f35b6101fa6101f5366004610f31565b6104e0565b60405190151581526020016101de565b6006546101fa9060ff1681565b6003545b6040519081526020016101de565b61021b60095481565b610245610240366004610f5b565b6104f7565b005b6101fa610255366004610f7d565b610535565b60075461026d906001600160a01b031681565b6040516001600160a01b0390911681526020016101de565b61021b7f000000000000000000000000000000000000000000000000000000000000000081565b604051601281526020016101de565b6101fa6102c9366004610f31565b6105df565b61021b7f000000000000000000000000000000000000000000000000000000000000000081565b60065461026d9061010090046001600160a01b031681565b61031661271081565b60405161ffff90911681526020016101de565b61021b60085481565b61021b610340366004610fb9565b6001600160a01b031660009081526001602052604090205490565b61024561061b565b610245610371366004611027565b610651565b6000546001600160a01b031661026d565b6101d161072b565b6101fa61039d366004610f31565b61073a565b6101fa6103b0366004610f31565b6107d3565b6102456103c3366004611027565b6107e0565b61021b7f000000000000000000000000000000000000000000000000000000000000000081565b6102456103fd366004610fb9565b6108b2565b61021b6104103660046110a8565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610245610449366004610fb9565b610904565b60606004805461045d906110db565b80601f0160208091040260200160405190810160405280929190818152602001828054610489906110db565b80156104d65780601f106104ab576101008083540402835291602001916104d6565b820191906000526020600020905b8154815290600101906020018083116104b957829003601f168201915b5050505050905090565b60006104ed33848461099f565b5060015b92915050565b6000546001600160a01b0316331461052a5760405162461bcd60e51b815260040161052190611115565b60405180910390fd5b600891909155600955565b6000610542848484610ac3565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156105c75760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610521565b6105d4853385840361099f565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916104ed918590610616908690611160565b61099f565b6000546001600160a01b031633146106455760405162461bcd60e51b815260040161052190611115565b61064f6000610ca9565b565b6000546001600160a01b0316331461067b5760405162461bcd60e51b815260040161052190611115565b60005b838110156107235784848281811061069857610698611173565b90506020020160208101906106ad9190610fb9565b6001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8585858181106106f3576106f3611173565b9050602002013560405161070991815260200190565b60405180910390a38061071b81611189565b91505061067e565b505050505050565b60606005805461045d906110db565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156107bc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610521565b6107c9338585840361099f565b5060019392505050565b60006104ed338484610ac3565b6000546001600160a01b0316331461080a5760405162461bcd60e51b815260040161052190611115565b60005b838110156107235784848281811061082757610827611173565b905060200201602081019061083c9190610fb9565b6001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85858581811061088257610882611173565b9050602002013560405161089891815260200190565b60405180910390a3806108aa81611189565b91505061080d565b6000546001600160a01b031633146108dc5760405162461bcd60e51b815260040161052190611115565b600680546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000546001600160a01b0316331461092e5760405162461bcd60e51b815260040161052190611115565b6001600160a01b0381166109935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610521565b61099c81610ca9565b50565b6001600160a01b038316610a015760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610521565b6001600160a01b038216610a625760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610521565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60065460ff161515600114610b1a5760405162461bcd60e51b815260206004820152601c60248201527f436f6e74726163743a207472616465206973206e6f74206f70656e21000000006044820152606401610521565b60065461010090046001600160a01b0316158015610b3f575060065460ff1615156001145b15610bb9576000546001600160a01b0384811691161480610b6d57506000546001600160a01b038381169116145b610bb95760405162461bcd60e51b815260206004820181905260248201527f436f6e74726163743a2074726164696e67206973206e6f7420737461727465646044820152606401610521565b600654819061010090046001600160a01b031615801590610be857506000546001600160a01b03858116911614155b8015610c0257506000546001600160a01b03848116911614155b15610c98576006546000906001600160a01b03610100909104811690861603610c2e5750600854610c4e565b6006546001600160a01b03610100909104811690851603610c4e57506009545b8015610c96576000612710610c6383866111a2565b610c6d91906111b9565b9050610c7981856111db565b600754909350610c949087906001600160a01b031683610cf9565b505b505b610ca3848483610cf9565b50505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038316610d5d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610521565b6001600160a01b038216610dbf5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610521565b6001600160a01b03831660009081526001602052604090205481811015610e375760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610521565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610e6e908490611160565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610eba91815260200190565b60405180910390a3610ca3565b600060208083528351808285015260005b81811015610ef457858101830151858201604001528201610ed8565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610f2c57600080fd5b919050565b60008060408385031215610f4457600080fd5b610f4d83610f15565b946020939093013593505050565b60008060408385031215610f6e57600080fd5b50508035926020909101359150565b600080600060608486031215610f9257600080fd5b610f9b84610f15565b9250610fa960208501610f15565b9150604084013590509250925092565b600060208284031215610fcb57600080fd5b610fd482610f15565b9392505050565b60008083601f840112610fed57600080fd5b50813567ffffffffffffffff81111561100557600080fd5b6020830191508360208260051b850101111561102057600080fd5b9250929050565b60008060008060006060868803121561103f57600080fd5b61104886610f15565b9450602086013567ffffffffffffffff8082111561106557600080fd5b61107189838a01610fdb565b9096509450604088013591508082111561108a57600080fd5b5061109788828901610fdb565b969995985093965092949392505050565b600080604083850312156110bb57600080fd5b6110c483610f15565b91506110d260208401610f15565b90509250929050565b600181811c908216806110ef57607f821691505b60208210810361110f57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156104f1576104f161114a565b634e487b7160e01b600052603260045260246000fd5b60006001820161119b5761119b61114a565b5060010190565b80820281158282048414176104f1576104f161114a565b6000826111d657634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156104f1576104f161114a56fea2646970667358221220f6ca4f55ed200f9c70f4145f4ffe750208049152fe31279dbe3ebfb16a8bbafc64736f6c63430008110033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c806358a1aaae116100f9578063a457c2d711610097578063d5abeb0111610071578063d5abeb01146103c8578063d5aed6bf146103ef578063dd62ed3e14610402578063f2fde38b1461043b57600080fd5b8063a457c2d71461038f578063a9059cbb146103a2578063b22c95e7146103b557600080fd5b806372108297116100d357806372108297146103635780638da5cb5b1461037657806395d89b4114610387578063985bdfd11461030d57600080fd5b806358a1aaae1461032957806370a0823114610332578063715018a61461035b57600080fd5b806327c8f83511610166578063395093511161014057806339509351146102bb57806347062402146102ce57806349bd5a5e146102f55780634c255c971461030d57600080fd5b806327c8f8351461025a5780632b14ca5614610285578063313ce567146102ac57600080fd5b806318160ddd116101a257806318160ddd1461021757806321326f091461022957806322b28da91461023257806323b872dd1461024757600080fd5b806306fdde03146101c9578063095ea7b3146101e7578063158ef93e1461020a575b600080fd5b6101d161044e565b6040516101de9190610ec7565b60405180910390f35b6101fa6101f5366004610f31565b6104e0565b60405190151581526020016101de565b6006546101fa9060ff1681565b6003545b6040519081526020016101de565b61021b60095481565b610245610240366004610f5b565b6104f7565b005b6101fa610255366004610f7d565b610535565b60075461026d906001600160a01b031681565b6040516001600160a01b0390911681526020016101de565b61021b7f000000000000000000000000000000000000000000000000000000000000000081565b604051601281526020016101de565b6101fa6102c9366004610f31565b6105df565b61021b7f000000000000000000000000000000000000000000000000000000000000000081565b60065461026d9061010090046001600160a01b031681565b61031661271081565b60405161ffff90911681526020016101de565b61021b60085481565b61021b610340366004610fb9565b6001600160a01b031660009081526001602052604090205490565b61024561061b565b610245610371366004611027565b610651565b6000546001600160a01b031661026d565b6101d161072b565b6101fa61039d366004610f31565b61073a565b6101fa6103b0366004610f31565b6107d3565b6102456103c3366004611027565b6107e0565b61021b7f00000000000000000000000000000000000014bddab3e51a57cff87a5000000081565b6102456103fd366004610fb9565b6108b2565b61021b6104103660046110a8565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610245610449366004610fb9565b610904565b60606004805461045d906110db565b80601f0160208091040260200160405190810160405280929190818152602001828054610489906110db565b80156104d65780601f106104ab576101008083540402835291602001916104d6565b820191906000526020600020905b8154815290600101906020018083116104b957829003601f168201915b5050505050905090565b60006104ed33848461099f565b5060015b92915050565b6000546001600160a01b0316331461052a5760405162461bcd60e51b815260040161052190611115565b60405180910390fd5b600891909155600955565b6000610542848484610ac3565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156105c75760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610521565b6105d4853385840361099f565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916104ed918590610616908690611160565b61099f565b6000546001600160a01b031633146106455760405162461bcd60e51b815260040161052190611115565b61064f6000610ca9565b565b6000546001600160a01b0316331461067b5760405162461bcd60e51b815260040161052190611115565b60005b838110156107235784848281811061069857610698611173565b90506020020160208101906106ad9190610fb9565b6001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8585858181106106f3576106f3611173565b9050602002013560405161070991815260200190565b60405180910390a38061071b81611189565b91505061067e565b505050505050565b60606005805461045d906110db565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156107bc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610521565b6107c9338585840361099f565b5060019392505050565b60006104ed338484610ac3565b6000546001600160a01b0316331461080a5760405162461bcd60e51b815260040161052190611115565b60005b838110156107235784848281811061082757610827611173565b905060200201602081019061083c9190610fb9565b6001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85858581811061088257610882611173565b9050602002013560405161089891815260200190565b60405180910390a3806108aa81611189565b91505061080d565b6000546001600160a01b031633146108dc5760405162461bcd60e51b815260040161052190611115565b600680546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000546001600160a01b0316331461092e5760405162461bcd60e51b815260040161052190611115565b6001600160a01b0381166109935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610521565b61099c81610ca9565b50565b6001600160a01b038316610a015760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610521565b6001600160a01b038216610a625760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610521565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60065460ff161515600114610b1a5760405162461bcd60e51b815260206004820152601c60248201527f436f6e74726163743a207472616465206973206e6f74206f70656e21000000006044820152606401610521565b60065461010090046001600160a01b0316158015610b3f575060065460ff1615156001145b15610bb9576000546001600160a01b0384811691161480610b6d57506000546001600160a01b038381169116145b610bb95760405162461bcd60e51b815260206004820181905260248201527f436f6e74726163743a2074726164696e67206973206e6f7420737461727465646044820152606401610521565b600654819061010090046001600160a01b031615801590610be857506000546001600160a01b03858116911614155b8015610c0257506000546001600160a01b03848116911614155b15610c98576006546000906001600160a01b03610100909104811690861603610c2e5750600854610c4e565b6006546001600160a01b03610100909104811690851603610c4e57506009545b8015610c96576000612710610c6383866111a2565b610c6d91906111b9565b9050610c7981856111db565b600754909350610c949087906001600160a01b031683610cf9565b505b505b610ca3848483610cf9565b50505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038316610d5d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610521565b6001600160a01b038216610dbf5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610521565b6001600160a01b03831660009081526001602052604090205481811015610e375760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610521565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610e6e908490611160565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610eba91815260200190565b60405180910390a3610ca3565b600060208083528351808285015260005b81811015610ef457858101830151858201604001528201610ed8565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610f2c57600080fd5b919050565b60008060408385031215610f4457600080fd5b610f4d83610f15565b946020939093013593505050565b60008060408385031215610f6e57600080fd5b50508035926020909101359150565b600080600060608486031215610f9257600080fd5b610f9b84610f15565b9250610fa960208501610f15565b9150604084013590509250925092565b600060208284031215610fcb57600080fd5b610fd482610f15565b9392505050565b60008083601f840112610fed57600080fd5b50813567ffffffffffffffff81111561100557600080fd5b6020830191508360208260051b850101111561102057600080fd5b9250929050565b60008060008060006060868803121561103f57600080fd5b61104886610f15565b9450602086013567ffffffffffffffff8082111561106557600080fd5b61107189838a01610fdb565b9096509450604088013591508082111561108a57600080fd5b5061109788828901610fdb565b969995985093965092949392505050565b600080604083850312156110bb57600080fd5b6110c483610f15565b91506110d260208401610f15565b90509250929050565b600181811c908216806110ef57607f821691505b60208210810361110f57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156104f1576104f161114a565b634e487b7160e01b600052603260045260246000fd5b60006001820161119b5761119b61114a565b5060010190565b80820281158282048414176104f1576104f161114a565b6000826111d657634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156104f1576104f161114a56fea2646970667358221220f6ca4f55ed200f9c70f4145f4ffe750208049152fe31279dbe3ebfb16a8bbafc64736f6c63430008110033

Deployed Bytecode Sourcemap

20721:3562:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9747:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11980:194;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;11980:194:0;1004:187:1;20971:31:0;;;;;;;;;10867:108;10955:12;;10867:108;;;1342:25:1;;;1330:2;1315:18;10867:108:0;1196:177:1;21260:31:0;;;;;;22344:168;;;;;;:::i;:::-;;:::i;:::-;;12656:529;;;;;;:::i;:::-;;:::i;21057:71::-;;;;;-1:-1:-1;;;;;21057:71:0;;;;;;-1:-1:-1;;;;;2128:32:1;;;2110:51;;2098:2;2083:18;21057:71:0;1964:203:1;21179:36:0;;;;;10709:93;;;10792:2;2314:36:1;;2302:2;2287:18;10709:93:0;2172:184:1;13594:290:0;;;;;;:::i;:::-;;:::i;21137:35::-;;;;;21009:41;;;;;;;;-1:-1:-1;;;;;21009:41:0;;;20917:45;;20957:5;20917:45;;;;;2535:6:1;2523:19;;;2505:38;;2493:2;2478:18;20917:45:0;2361:188:1;21222:31:0;;;;;;11038:143;;;;;;:::i;:::-;-1:-1:-1;;;;;11155:18:0;11128:7;11155:18;;;:9;:18;;;;;;;11038:143;3043:103;;;:::i;22644:250::-;;;;;;:::i;:::-;;:::i;2356:87::-;2402:7;2429:6;-1:-1:-1;;;;;2429:6:0;2356:87;;9966:104;;;:::i;14387:475::-;;;;;;:::i;:::-;;:::i;11394:200::-;;;;;;:::i;:::-;;:::i;22902:251::-;;;;;;:::i;:::-;;:::i;20777:77::-;;;;;22520:116;;;;;;:::i;:::-;;:::i;11657:176::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11798:18:0;;;11771:7;11798:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11657:176;3301:238;;;;;;:::i;:::-;;:::i;9747:100::-;9801:13;9834:5;9827:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9747:100;:::o;11980:194::-;12088:4;12105:39;1133:10;12128:7;12137:6;12105:8;:39::i;:::-;-1:-1:-1;12162:4:0;11980:194;;;;;:::o;22344:168::-;2590:6;;-1:-1:-1;;;;;2590:6:0;1133:10;2590:22;2568:104;;;;-1:-1:-1;;;2568:104:0;;;;;;;:::i;:::-;;;;;;;;;22437:12:::1;:28:::0;;;;22476:12:::1;:28:::0;22344:168::o;12656:529::-;12796:4;12813:36;12823:6;12831:9;12842:6;12813:9;:36::i;:::-;-1:-1:-1;;;;;12889:19:0;;12862:24;12889:19;;;:11;:19;;;;;;;;1133:10;12889:33;;;;;;;;12955:26;;;;12933:116;;;;-1:-1:-1;;;12933:116:0;;5182:2:1;12933:116:0;;;5164:21:1;5221:2;5201:18;;;5194:30;5260:34;5240:18;;;5233:62;-1:-1:-1;;;5311:18:1;;;5304:38;5359:19;;12933:116:0;4980:404:1;12933:116:0;13085:57;13094:6;1133:10;13135:6;13116:16;:25;13085:8;:57::i;:::-;-1:-1:-1;13173:4:0;;12656:529;-1:-1:-1;;;;12656:529:0:o;13594:290::-;1133:10;13707:4;13796:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13796:34:0;;;;;;;;;;13707:4;;13724:130;;13774:7;;13796:47;;13833:10;;13796:47;:::i;:::-;13724:8;:130::i;3043:103::-;2590:6;;-1:-1:-1;;;;;2590:6:0;1133:10;2590:22;2568:104;;;;-1:-1:-1;;;2568:104:0;;;;;;;:::i;:::-;3108:30:::1;3135:1;3108:18;:30::i;:::-;3043:103::o:0;22644:250::-;2590:6;;-1:-1:-1;;;;;2590:6:0;1133:10;2590:22;2568:104;;;;-1:-1:-1;;;2568:104:0;;;;;;;:::i;:::-;22772:9:::1;22767:120;22787:19:::0;;::::1;22767:120;;;22851:8;;22860:1;22851:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;22833:42:0::1;22842:7;-1:-1:-1::0;;;;;22833:42:0::1;;22864:7;;22872:1;22864:10;;;;;;;:::i;:::-;;;;;;;22833:42;;;;1342:25:1::0;;1330:2;1315:18;;1196:177;22833:42:0::1;;;;;;;;22808:3:::0;::::1;::::0;::::1;:::i;:::-;;;;22767:120;;;;22644:250:::0;;;;;:::o;9966:104::-;10022:13;10055:7;10048:14;;;;;:::i;14387:475::-;1133:10;14505:4;14549:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14549:34:0;;;;;;;;;;14616:35;;;;14594:122;;;;-1:-1:-1;;;14594:122:0;;6125:2:1;14594:122:0;;;6107:21:1;6164:2;6144:18;;;6137:30;6203:34;6183:18;;;6176:62;-1:-1:-1;;;6254:18:1;;;6247:35;6299:19;;14594:122:0;5923:401:1;14594:122:0;14752:67;1133:10;14775:7;14803:15;14784:16;:34;14752:8;:67::i;:::-;-1:-1:-1;14850:4:0;;14387:475;-1:-1:-1;;;14387:475:0:o;11394:200::-;11505:4;11522:42;1133:10;11546:9;11557:6;11522:9;:42::i;22902:251::-;2590:6;;-1:-1:-1;;;;;2590:6:0;1133:10;2590:22;2568:104;;;;-1:-1:-1;;;2568:104:0;;;;;;;:::i;:::-;23031:9:::1;23026:120;23046:19:::0;;::::1;23026:120;;;23110:8;;23119:1;23110:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;23092:42:0::1;23101:7;-1:-1:-1::0;;;;;23092:42:0::1;;23123:7;;23131:1;23123:10;;;;;;;:::i;:::-;;;;;;;23092:42;;;;1342:25:1::0;;1330:2;1315:18;;1196:177;23092:42:0::1;;;;;;;;23067:3:::0;::::1;::::0;::::1;:::i;:::-;;;;23026:120;;22520:116:::0;2590:6;;-1:-1:-1;;;;;2590:6:0;1133:10;2590:22;2568:104;;;;-1:-1:-1;;;2568:104:0;;;;;;;:::i;:::-;22598:13:::1;:30:::0;;-1:-1:-1;;;;;22598:30:0;;::::1;;;-1:-1:-1::0;;;;;;22598:30:0;;::::1;::::0;;;::::1;::::0;;22520:116::o;3301:238::-;2590:6;;-1:-1:-1;;;;;2590:6:0;1133:10;2590:22;2568:104;;;;-1:-1:-1;;;2568:104:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3404:22:0;::::1;3382:110;;;::::0;-1:-1:-1;;;3382:110:0;;6531:2:1;3382:110:0::1;::::0;::::1;6513:21:1::0;6570:2;6550:18;;;6543:30;6609:34;6589:18;;;6582:62;-1:-1:-1;;;6660:18:1;;;6653:36;6706:19;;3382:110:0::1;6329:402:1::0;3382:110:0::1;3503:28;3522:8;3503:18;:28::i;:::-;3301:238:::0;:::o;18170:380::-;-1:-1:-1;;;;;18306:19:0;;18298:68;;;;-1:-1:-1;;;18298:68:0;;6938:2:1;18298:68:0;;;6920:21:1;6977:2;6957:18;;;6950:30;7016:34;6996:18;;;6989:62;-1:-1:-1;;;7067:18:1;;;7060:34;7111:19;;18298:68:0;6736:400:1;18298:68:0;-1:-1:-1;;;;;18385:21:0;;18377:68;;;;-1:-1:-1;;;18377:68:0;;7343:2:1;18377:68:0;;;7325:21:1;7382:2;7362:18;;;7355:30;7421:34;7401:18;;;7394:62;-1:-1:-1;;;7472:18:1;;;7465:32;7514:19;;18377:68:0;7141:398:1;18377:68:0;-1:-1:-1;;;;;18458:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18510:32;;1342:25:1;;;18510:32:0;;1315:18:1;18510:32:0;;;;;;;18170:380;;;:::o;23161:1119::-;23314:11;;;;:19;;:11;:19;23292:97;;;;-1:-1:-1;;;23292:97:0;;7746:2:1;23292:97:0;;;7728:21:1;7785:2;7765:18;;;7758:30;7824;7804:18;;;7797:58;7872:18;;23292:97:0;7544:352:1;23292:97:0;23406:13;;;;;-1:-1:-1;;;;;23406:13:0;:27;:50;;;;-1:-1:-1;23437:11:0;;;;:19;;:11;:19;23406:50;23402:209;;;2402:7;2429:6;-1:-1:-1;;;;;23499:15:0;;;2429:6;;23499:15;;:32;;-1:-1:-1;2402:7:0;2429:6;-1:-1:-1;;;;;23518:13:0;;;2429:6;;23518:13;23499:32;23473:126;;;;-1:-1:-1;;;23473:126:0;;8103:2:1;23473:126:0;;;8085:21:1;;;8122:18;;;8115:30;8181:34;8161:18;;;8154:62;8233:18;;23473:126:0;7901:356:1;23473:126:0;23670:13;;23649:6;;23670:13;;;-1:-1:-1;;;;;23670:13:0;:27;;;;:46;;-1:-1:-1;2402:7:0;2429:6;-1:-1:-1;;;;;23701:15:0;;;2429:6;;23701:15;;23670:46;:63;;;;-1:-1:-1;2402:7:0;2429:6;-1:-1:-1;;;;;23720:13:0;;;2429:6;;23720:13;;23670:63;23666:552;;;23793:13;;23750:12;;-1:-1:-1;;;;;23793:13:0;;;;;;23785:21;;;;23781:179;;-1:-1:-1;23834:12:0;;23781:179;;;23891:13;;-1:-1:-1;;;;;23891:13:0;;;;;;23885:19;;;;23881:79;;-1:-1:-1;23932:12:0;;23881:79;23978:8;;23974:233;;24007:22;20957:5;24032:13;24041:4;24032:6;:13;:::i;:::-;:30;;;;:::i;:::-;24007:55;-1:-1:-1;24099:23:0;24007:55;24099:6;:23;:::i;:::-;24163:11;;24081:41;;-1:-1:-1;24141:50:0;;24157:4;;-1:-1:-1;;;;;24163:11:0;24176:14;24141:15;:50::i;:::-;23988:219;23974:233;23735:483;23666:552;24230:42;24246:4;24252:2;24256:15;24230;:42::i;:::-;23281:999;23161:1119;;;:::o;3699:191::-;3773:16;3792:6;;-1:-1:-1;;;;;3809:17:0;;;-1:-1:-1;;;;;;3809:17:0;;;;;;3842:40;;3792:6;;;;;;;3842:40;;3773:16;3842:40;3762:128;3699:191;:::o;15352:770::-;-1:-1:-1;;;;;15492:20:0;;15484:70;;;;-1:-1:-1;;;15484:70:0;;8992:2:1;15484:70:0;;;8974:21:1;9031:2;9011:18;;;9004:30;9070:34;9050:18;;;9043:62;-1:-1:-1;;;9121:18:1;;;9114:35;9166:19;;15484:70:0;8790:401:1;15484:70:0;-1:-1:-1;;;;;15573:23:0;;15565:71;;;;-1:-1:-1;;;15565:71:0;;9398:2:1;15565:71:0;;;9380:21:1;9437:2;9417:18;;;9410:30;9476:34;9456:18;;;9449:62;-1:-1:-1;;;9527:18:1;;;9520:33;9570:19;;15565:71:0;9196:399:1;15565:71:0;-1:-1:-1;;;;;15733:17:0;;15709:21;15733:17;;;:9;:17;;;;;;15783:23;;;;15761:111;;;;-1:-1:-1;;;15761:111:0;;9802:2:1;15761:111:0;;;9784:21:1;9841:2;9821:18;;;9814:30;9880:34;9860:18;;;9853:62;-1:-1:-1;;;9931:18:1;;;9924:36;9977:19;;15761:111:0;9600:402:1;15761:111:0;-1:-1:-1;;;;;15908:17:0;;;;;;;:9;:17;;;;;;15928:22;;;15908:42;;15972:20;;;;;;;;:30;;15944:6;;15908:17;15972:30;;15944:6;;15972:30;:::i;:::-;;;;;;;;16037:9;-1:-1:-1;;;;;16020:35:0;16029:6;-1:-1:-1;;;;;16020:35:0;;16048:6;16020:35;;;;1342:25:1;;1330:2;1315:18;;1196:177;16020:35:0;;;;;;;;16068:46;19150:125;14:548:1;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;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:248::-;1446:6;1454;1507:2;1495:9;1486:7;1482:23;1478:32;1475:52;;;1523:1;1520;1513:12;1475:52;-1:-1:-1;;1546:23:1;;;1616:2;1601:18;;;1588:32;;-1:-1:-1;1378:248:1:o;1631:328::-;1708:6;1716;1724;1777:2;1765:9;1756:7;1752:23;1748:32;1745:52;;;1793:1;1790;1783:12;1745:52;1816:29;1835:9;1816:29;:::i;:::-;1806:39;;1864:38;1898:2;1887:9;1883:18;1864:38;:::i;:::-;1854:48;;1949:2;1938:9;1934:18;1921:32;1911:42;;1631:328;;;;;:::o;2554:186::-;2613:6;2666:2;2654:9;2645:7;2641:23;2637:32;2634:52;;;2682:1;2679;2672:12;2634:52;2705:29;2724:9;2705:29;:::i;:::-;2695:39;2554:186;-1:-1:-1;;;2554:186:1:o;2745:367::-;2808:8;2818:6;2872:3;2865:4;2857:6;2853:17;2849:27;2839:55;;2890:1;2887;2880:12;2839:55;-1:-1:-1;2913:20:1;;2956:18;2945:30;;2942:50;;;2988:1;2985;2978:12;2942:50;3025:4;3017:6;3013:17;3001:29;;3085:3;3078:4;3068:6;3065:1;3061:14;3053:6;3049:27;3045:38;3042:47;3039:67;;;3102:1;3099;3092:12;3039:67;2745:367;;;;;:::o;3117:847::-;3248:6;3256;3264;3272;3280;3333:2;3321:9;3312:7;3308:23;3304:32;3301:52;;;3349:1;3346;3339:12;3301:52;3372:29;3391:9;3372:29;:::i;:::-;3362:39;;3452:2;3441:9;3437:18;3424:32;3475:18;3516:2;3508:6;3505:14;3502:34;;;3532:1;3529;3522:12;3502:34;3571:70;3633:7;3624:6;3613:9;3609:22;3571:70;:::i;:::-;3660:8;;-1:-1:-1;3545:96:1;-1:-1:-1;3748:2:1;3733:18;;3720:32;;-1:-1:-1;3764:16:1;;;3761:36;;;3793:1;3790;3783:12;3761:36;;3832:72;3896:7;3885:8;3874:9;3870:24;3832:72;:::i;:::-;3117:847;;;;-1:-1:-1;3117:847:1;;-1:-1:-1;3923:8:1;;3806:98;3117:847;-1:-1:-1;;;3117:847:1:o;3969:260::-;4037:6;4045;4098:2;4086:9;4077:7;4073:23;4069:32;4066:52;;;4114:1;4111;4104:12;4066:52;4137:29;4156:9;4137:29;:::i;:::-;4127:39;;4185:38;4219:2;4208:9;4204:18;4185:38;:::i;:::-;4175:48;;3969:260;;;;;:::o;4234:380::-;4313:1;4309:12;;;;4356;;;4377:61;;4431:4;4423:6;4419:17;4409:27;;4377:61;4484:2;4476:6;4473:14;4453:18;4450:38;4447:161;;4530:10;4525:3;4521:20;4518:1;4511:31;4565:4;4562:1;4555:15;4593:4;4590:1;4583:15;4447:161;;4234:380;;;:::o;4619:356::-;4821:2;4803:21;;;4840:18;;;4833:30;4899:34;4894:2;4879:18;;4872:62;4966:2;4951:18;;4619:356::o;5389:127::-;5450:10;5445:3;5441:20;5438:1;5431:31;5481:4;5478:1;5471:15;5505:4;5502:1;5495:15;5521:125;5586:9;;;5607:10;;;5604:36;;;5620:18;;:::i;5651:127::-;5712:10;5707:3;5703:20;5700:1;5693:31;5743:4;5740:1;5733:15;5767:4;5764:1;5757:15;5783:135;5822:3;5843:17;;;5840:43;;5863:18;;:::i;:::-;-1:-1:-1;5910:1:1;5899:13;;5783:135::o;8262:168::-;8335:9;;;8366;;8383:15;;;8377:22;;8363:37;8353:71;;8404:18;;:::i;8435:217::-;8475:1;8501;8491:132;;8545:10;8540:3;8536:20;8533:1;8526:31;8580:4;8577:1;8570:15;8608:4;8605:1;8598:15;8491:132;-1:-1:-1;8637:9:1;;8435:217::o;8657:128::-;8724:9;;;8745:11;;;8742:37;;;8759:18;;:::i

Swarm Source

ipfs://f6ca4f55ed200f9c70f4145f4ffe750208049152fe31279dbe3ebfb16a8bbafc
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.