ETH Price: $3,490.78 (+3.70%)
Gas: 2 Gwei

Token

REPEPE (REPEPE)
 

Overview

Max Total Supply

420,690,000,000,000 REPEPE

Holders

440

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
474,576,378,429.317020140114030329 REPEPE

Value
$0.00
0x558b389513d2b996b29485027991dfdfb22348f0
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:
REPEPE

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-22
*/

// 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 {}
}


// File contracts/RePepeToken.sol



pragma solidity ^0.8.0;


contract REPEPE is Ownable, ERC20 {
    bool public limited;
    uint256 public maxHoldingAmount;
    uint256 public minHoldingAmount;
    address public uniswapV2Pair;
    mapping(address => bool) public blacklists;
    mapping(address => bool) private whitelists;
    mapping(address => bool) private isExcludedFromEnableTrading;
    bool private tradingEnabled = false;
    bool private isOnlyWhitelistOn = false;
    bool private whitelistDisabled = false;
    uint256 private launch = 0;
    uint256 private whitelistTime = 1200;

    constructor(uint256 _totalSupply) ERC20("REPEPE", "REPEPE") {
        isExcludedFromEnableTrading[msg.sender] = true;
        _mint(msg.sender, _totalSupply);
    }

    event excludeFromEnableTrading(address addy, bool yesno);
    function setExcludedFromEnableTrading(address addy, bool yesno) external onlyOwner {
        require(addy != address(0),"Freddy: Address Zero");
        isExcludedFromEnableTrading[addy] = yesno;

        emit excludeFromEnableTrading(addy, yesno);
    }

    function setTimingForWhitelist(uint256 amount) external onlyOwner {
        require(amount <= 86400 * 2,"Not more than 2 days");
        whitelistTime = amount;
    }

    function bulkWhitelist(address[] memory accounts, bool state) external onlyOwner {
        for (uint256 i = 0; i < accounts.length; i++) {
            whitelists[accounts[i]] = state;
        }
    }
    
    function setWhitelist(address addy, bool yesno) external onlyOwner {
        require(whitelists[addy] != yesno);
        whitelists[addy] = yesno;
    }

    function isWhitelisted(address account) external view returns(bool) {
        return whitelists[account];
    }
    function blacklist(address _address, bool _isBlacklisting) external onlyOwner {
        blacklists[_address] = _isBlacklisting;
    }

    function setRule(bool _limited, address _uniswapV2Pair, uint256 _maxHoldingAmount, uint256 _minHoldingAmount) external onlyOwner {
        limited = _limited;
        uniswapV2Pair = _uniswapV2Pair;
        maxHoldingAmount = _maxHoldingAmount;
        minHoldingAmount = _minHoldingAmount;
    }

    function disableWhitelist() external onlyOwner {
        require(!whitelistDisabled);
        whitelistDisabled = true;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {
        require(isExcludedFromEnableTrading[from] || isExcludedFromEnableTrading[to] || tradingEnabled);
        require(!blacklists[to] && !blacklists[from], "Blacklisted");

        if (uniswapV2Pair == address(0)) {
            require(from == owner() || to == owner(), "trading is not started");
            return;
        }

        if(launch != 0 && block.timestamp + whitelistTime >= launch) {
            require((whitelists[from] || whitelists[to] || from == owner() || to == owner()) || whitelistDisabled);
        }

        if (limited && from == uniswapV2Pair) {
            require(super.balanceOf(to) + amount <= maxHoldingAmount && super.balanceOf(to) + amount >= minHoldingAmount, "Forbid");
        }
    }

    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }

    function enableTrading() external onlyOwner {
    require(!tradingEnabled);
        tradingEnabled = true;
        launch = block.timestamp;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"addy","type":"address"},{"indexed":false,"internalType":"bool","name":"yesno","type":"bool"}],"name":"excludeFromEnableTrading","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":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"state","type":"bool"}],"name":"bulkWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":[],"name":"disableWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"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":[{"internalType":"address","name":"account","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"address","name":"addy","type":"address"},{"internalType":"bool","name":"yesno","type":"bool"}],"name":"setExcludedFromEnableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setTimingForWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addy","type":"address"},{"internalType":"bool","name":"yesno","type":"bool"}],"name":"setWhitelist","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"}]

6080604052600d805462ffffff191690556000600e556104b0600f553480156200002857600080fd5b5060405162001d1138038062001d118339810160408190526200004b9162000529565b6040518060400160405280600681526020016552455045504560d01b8152506040518060400160405280600681526020016552455045504560d01b815250620000a36200009d620000f060201b60201c565b620000f4565b6004620000b18382620005e7565b506005620000c08282620005e7565b5050336000818152600c60205260409020805460ff19166001179055620000e991508262000144565b50620006db565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001a05760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620001ae600083836200023b565b8060036000828254620001c29190620006b3565b90915550506001600160a01b03821660009081526001602052604081208054839290620001f1908490620006b3565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0383166000908152600c602052604090205460ff16806200027b57506001600160a01b0382166000908152600c602052604090205460ff165b80620002895750600d5460ff165b6200029357600080fd5b6001600160a01b0382166000908152600a602052604090205460ff16158015620002d657506001600160a01b0383166000908152600a602052604090205460ff16155b620003125760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b604482015260640162000197565b6009546001600160a01b0316620003a0576000546001600160a01b03848116911614806200034d57506000546001600160a01b038381169116145b6200039b5760405162461bcd60e51b815260206004820152601660248201527f74726164696e67206973206e6f74207374617274656400000000000000000000604482015260640162000197565b505050565b600e5415801590620003c25750600e54600f54620003bf9042620006b3565b10155b1562000458576001600160a01b0383166000908152600b602052604090205460ff16806200040857506001600160a01b0382166000908152600b602052604090205460ff165b806200042157506000546001600160a01b038481169116145b806200043a57506000546001600160a01b038381169116145b806200044e5750600d5462010000900460ff165b6200045857600080fd5b60065460ff1680156200047857506009546001600160a01b038481169116145b156200039b576007548162000498846200050e60201b620007a51760201c565b620004a49190620006b3565b11158015620004d7575060085481620004c8846200050e60201b620007a51760201c565b620004d49190620006b3565b10155b6200039b5760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b604482015260640162000197565b6001600160a01b031660009081526001602052604090205490565b6000602082840312156200053c57600080fd5b5051919050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200056e57607f821691505b6020821081036200058f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200039b57600081815260208120601f850160051c81016020861015620005be5750805b601f850160051c820191505b81811015620005df57828155600101620005ca565b505050505050565b81516001600160401b0381111562000603576200060362000543565b6200061b8162000614845462000559565b8462000595565b602080601f8311600181146200065357600084156200063a5750858301515b600019600386901b1c1916600185901b178555620005df565b600085815260208120601f198616915b82811015620006845788860151825594840194600190910190840162000663565b5085821015620006a35787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115620006d557634e487b7160e01b600052601160045260246000fd5b92915050565b61162680620006eb6000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c806353d6fd591161010457806395d89b41116100a2578063d6b0f48411610071578063d6b0f484146103cb578063dd62ed3e146103d3578063e4339ca81461040c578063f2fde38b1461041f57600080fd5b806395d89b411461038a578063a457c2d714610392578063a9059cbb146103a5578063d1b12509146103b857600080fd5b8063860a32ec116100de578063860a32ec1461035b57806389f9a1d3146103685780638a8c523c146103715780638da5cb5b1461037957600080fd5b806353d6fd591461032d57806370a0823114610340578063715018a61461035357600080fd5b80633950935111610171578063404e51291161014b578063404e5129146102c957806342966c68146102dc578063493d7957146102ef57806349bd5a5e1461030257600080fd5b806339509351146102755780633aa633aa146102885780633af32abf1461029d57600080fd5b806318160ddd116101ad57806318160ddd146102385780631ab99e121461024a57806323b872dd14610253578063313ce5671461026657600080fd5b806306fdde03146101d4578063095ea7b3146101f257806316c0212914610215575b600080fd5b6101dc610432565b6040516101e9919061126f565b60405180910390f35b6102056102003660046112d9565b6104c4565b60405190151581526020016101e9565b610205610223366004611303565b600a6020526000908152604090205460ff1681565b6003545b6040519081526020016101e9565b61023c60085481565b610205610261366004611325565b6104db565b604051601281526020016101e9565b6102056102833660046112d9565b61058a565b61029b610296366004611371565b6105c6565b005b6102056102ab366004611303565b6001600160a01b03166000908152600b602052604090205460ff1690565b61029b6102d73660046113b3565b61062b565b61029b6102ea3660046113e6565b610680565b61029b6102fd366004611415565b61068d565b600954610315906001600160a01b031681565b6040516001600160a01b0390911681526020016101e9565b61029b61033b3660046113b3565b610723565b61023c61034e366004611303565b6107a5565b61029b6107c0565b6006546102059060ff1681565b61023c60075481565b61029b6107f6565b6000546001600160a01b0316610315565b6101dc610843565b6102056103a03660046112d9565b610852565b6102056103b33660046112d9565b6108eb565b61029b6103c63660046113b3565b6108f8565b61029b6109d2565b61023c6103e13660046114ec565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61029b61041a3660046113e6565b610a25565b61029b61042d366004611303565b610a9e565b60606004805461044190611516565b80601f016020809104026020016040519081016040528092919081815260200182805461046d90611516565b80156104ba5780601f1061048f576101008083540402835291602001916104ba565b820191906000526020600020905b81548152906001019060200180831161049d57829003601f168201915b5050505050905090565b60006104d1338484610b36565b5060015b92915050565b60006104e8848484610c5a565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156105725760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61057f8533858403610b36565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916104d19185906105c1908690611566565b610b36565b6000546001600160a01b031633146105f05760405162461bcd60e51b815260040161056990611579565b6006805460ff191694151594909417909355600980546001600160a01b0319166001600160a01b039390931692909217909155600755600855565b6000546001600160a01b031633146106555760405162461bcd60e51b815260040161056990611579565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b61068a3382610e34565b50565b6000546001600160a01b031633146106b75760405162461bcd60e51b815260040161056990611579565b60005b825181101561071e5781600b60008584815181106106da576106da6115ae565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610716816115c4565b9150506106ba565b505050565b6000546001600160a01b0316331461074d5760405162461bcd60e51b815260040161056990611579565b6001600160a01b0382166000908152600b602052604090205481151560ff90911615150361077a57600080fd5b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b6001600160a01b031660009081526001602052604090205490565b6000546001600160a01b031633146107ea5760405162461bcd60e51b815260040161056990611579565b6107f46000610f8e565b565b6000546001600160a01b031633146108205760405162461bcd60e51b815260040161056990611579565b600d5460ff161561083057600080fd5b600d805460ff1916600117905542600e55565b60606005805461044190611516565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156108d45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610569565b6108e13385858403610b36565b5060019392505050565b60006104d1338484610c5a565b6000546001600160a01b031633146109225760405162461bcd60e51b815260040161056990611579565b6001600160a01b03821661096f5760405162461bcd60e51b81526020600482015260146024820152734672656464793a2041646472657373205a65726f60601b6044820152606401610569565b6001600160a01b0382166000818152600c6020908152604091829020805460ff19168515159081179091558251938452908301527f484d993f147b6f16f065392dd00aae8e6ba2f01a485d75b49b64b751a199a5a0910160405180910390a15050565b6000546001600160a01b031633146109fc5760405162461bcd60e51b815260040161056990611579565b600d5462010000900460ff1615610a1257600080fd5b600d805462ff0000191662010000179055565b6000546001600160a01b03163314610a4f5760405162461bcd60e51b815260040161056990611579565b6202a300811115610a995760405162461bcd60e51b81526020600482015260146024820152734e6f74206d6f7265207468616e2032206461797360601b6044820152606401610569565b600f55565b6000546001600160a01b03163314610ac85760405162461bcd60e51b815260040161056990611579565b6001600160a01b038116610b2d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610569565b61068a81610f8e565b6001600160a01b038316610b985760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610569565b6001600160a01b038216610bf95760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610569565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610cbe5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610569565b6001600160a01b038216610d205760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610569565b610d2b838383610fde565b6001600160a01b03831660009081526001602052604090205481811015610da35760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610569565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610dda908490611566565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e2691815260200190565b60405180910390a350505050565b6001600160a01b038216610e945760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610569565b610ea082600083610fde565b6001600160a01b03821660009081526001602052604090205481811015610f145760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610569565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610f439084906115dd565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0383166000908152600c602052604090205460ff168061101d57506001600160a01b0382166000908152600c602052604090205460ff165b8061102a5750600d5460ff165b61103357600080fd5b6001600160a01b0382166000908152600a602052604090205460ff1615801561107557506001600160a01b0383166000908152600a602052604090205460ff16155b6110af5760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b6044820152606401610569565b6009546001600160a01b031661112d576000546001600160a01b03848116911614806110e857506000546001600160a01b038381169116145b61071e5760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b6044820152606401610569565b600e541580159061114c5750600e54600f546111499042611566565b10155b156111dc576001600160a01b0383166000908152600b602052604090205460ff168061119057506001600160a01b0382166000908152600b602052604090205460ff165b806111a857506000546001600160a01b038481169116145b806111c057506000546001600160a01b038381169116145b806111d35750600d5462010000900460ff165b6111dc57600080fd5b60065460ff1680156111fb57506009546001600160a01b038481169116145b1561071e576007548161120d846107a5565b6112179190611566565b1115801561123a57506008548161122d846107a5565b6112379190611566565b10155b61071e5760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b6044820152606401610569565b600060208083528351808285015260005b8181101561129c57858101830151858201604001528201611280565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146112d457600080fd5b919050565b600080604083850312156112ec57600080fd5b6112f5836112bd565b946020939093013593505050565b60006020828403121561131557600080fd5b61131e826112bd565b9392505050565b60008060006060848603121561133a57600080fd5b611343846112bd565b9250611351602085016112bd565b9150604084013590509250925092565b803580151581146112d457600080fd5b6000806000806080858703121561138757600080fd5b61139085611361565b935061139e602086016112bd565b93969395505050506040820135916060013590565b600080604083850312156113c657600080fd5b6113cf836112bd565b91506113dd60208401611361565b90509250929050565b6000602082840312156113f857600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b6000806040838503121561142857600080fd5b823567ffffffffffffffff8082111561144057600080fd5b818501915085601f83011261145457600080fd5b8135602082821115611468576114686113ff565b8160051b604051601f19603f8301168101818110868211171561148d5761148d6113ff565b6040529283528183019350848101820192898411156114ab57600080fd5b948201945b838610156114d0576114c1866112bd565b855294820194938201936114b0565b96506114df9050878201611361565b9450505050509250929050565b600080604083850312156114ff57600080fd5b611508836112bd565b91506113dd602084016112bd565b600181811c9082168061152a57607f821691505b60208210810361154a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156104d5576104d5611550565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b6000600182016115d6576115d6611550565b5060010190565b818103818111156104d5576104d561155056fea26469706673582212205c25f8b9ffb694f0ce2335061b1d24aa482f563ead74830739719a25ed17e37664736f6c6343000812003300000000000000000000000000000000000014bddab3e51a57cff87a50000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c806353d6fd591161010457806395d89b41116100a2578063d6b0f48411610071578063d6b0f484146103cb578063dd62ed3e146103d3578063e4339ca81461040c578063f2fde38b1461041f57600080fd5b806395d89b411461038a578063a457c2d714610392578063a9059cbb146103a5578063d1b12509146103b857600080fd5b8063860a32ec116100de578063860a32ec1461035b57806389f9a1d3146103685780638a8c523c146103715780638da5cb5b1461037957600080fd5b806353d6fd591461032d57806370a0823114610340578063715018a61461035357600080fd5b80633950935111610171578063404e51291161014b578063404e5129146102c957806342966c68146102dc578063493d7957146102ef57806349bd5a5e1461030257600080fd5b806339509351146102755780633aa633aa146102885780633af32abf1461029d57600080fd5b806318160ddd116101ad57806318160ddd146102385780631ab99e121461024a57806323b872dd14610253578063313ce5671461026657600080fd5b806306fdde03146101d4578063095ea7b3146101f257806316c0212914610215575b600080fd5b6101dc610432565b6040516101e9919061126f565b60405180910390f35b6102056102003660046112d9565b6104c4565b60405190151581526020016101e9565b610205610223366004611303565b600a6020526000908152604090205460ff1681565b6003545b6040519081526020016101e9565b61023c60085481565b610205610261366004611325565b6104db565b604051601281526020016101e9565b6102056102833660046112d9565b61058a565b61029b610296366004611371565b6105c6565b005b6102056102ab366004611303565b6001600160a01b03166000908152600b602052604090205460ff1690565b61029b6102d73660046113b3565b61062b565b61029b6102ea3660046113e6565b610680565b61029b6102fd366004611415565b61068d565b600954610315906001600160a01b031681565b6040516001600160a01b0390911681526020016101e9565b61029b61033b3660046113b3565b610723565b61023c61034e366004611303565b6107a5565b61029b6107c0565b6006546102059060ff1681565b61023c60075481565b61029b6107f6565b6000546001600160a01b0316610315565b6101dc610843565b6102056103a03660046112d9565b610852565b6102056103b33660046112d9565b6108eb565b61029b6103c63660046113b3565b6108f8565b61029b6109d2565b61023c6103e13660046114ec565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61029b61041a3660046113e6565b610a25565b61029b61042d366004611303565b610a9e565b60606004805461044190611516565b80601f016020809104026020016040519081016040528092919081815260200182805461046d90611516565b80156104ba5780601f1061048f576101008083540402835291602001916104ba565b820191906000526020600020905b81548152906001019060200180831161049d57829003601f168201915b5050505050905090565b60006104d1338484610b36565b5060015b92915050565b60006104e8848484610c5a565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156105725760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61057f8533858403610b36565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916104d19185906105c1908690611566565b610b36565b6000546001600160a01b031633146105f05760405162461bcd60e51b815260040161056990611579565b6006805460ff191694151594909417909355600980546001600160a01b0319166001600160a01b039390931692909217909155600755600855565b6000546001600160a01b031633146106555760405162461bcd60e51b815260040161056990611579565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b61068a3382610e34565b50565b6000546001600160a01b031633146106b75760405162461bcd60e51b815260040161056990611579565b60005b825181101561071e5781600b60008584815181106106da576106da6115ae565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610716816115c4565b9150506106ba565b505050565b6000546001600160a01b0316331461074d5760405162461bcd60e51b815260040161056990611579565b6001600160a01b0382166000908152600b602052604090205481151560ff90911615150361077a57600080fd5b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b6001600160a01b031660009081526001602052604090205490565b6000546001600160a01b031633146107ea5760405162461bcd60e51b815260040161056990611579565b6107f46000610f8e565b565b6000546001600160a01b031633146108205760405162461bcd60e51b815260040161056990611579565b600d5460ff161561083057600080fd5b600d805460ff1916600117905542600e55565b60606005805461044190611516565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156108d45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610569565b6108e13385858403610b36565b5060019392505050565b60006104d1338484610c5a565b6000546001600160a01b031633146109225760405162461bcd60e51b815260040161056990611579565b6001600160a01b03821661096f5760405162461bcd60e51b81526020600482015260146024820152734672656464793a2041646472657373205a65726f60601b6044820152606401610569565b6001600160a01b0382166000818152600c6020908152604091829020805460ff19168515159081179091558251938452908301527f484d993f147b6f16f065392dd00aae8e6ba2f01a485d75b49b64b751a199a5a0910160405180910390a15050565b6000546001600160a01b031633146109fc5760405162461bcd60e51b815260040161056990611579565b600d5462010000900460ff1615610a1257600080fd5b600d805462ff0000191662010000179055565b6000546001600160a01b03163314610a4f5760405162461bcd60e51b815260040161056990611579565b6202a300811115610a995760405162461bcd60e51b81526020600482015260146024820152734e6f74206d6f7265207468616e2032206461797360601b6044820152606401610569565b600f55565b6000546001600160a01b03163314610ac85760405162461bcd60e51b815260040161056990611579565b6001600160a01b038116610b2d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610569565b61068a81610f8e565b6001600160a01b038316610b985760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610569565b6001600160a01b038216610bf95760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610569565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610cbe5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610569565b6001600160a01b038216610d205760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610569565b610d2b838383610fde565b6001600160a01b03831660009081526001602052604090205481811015610da35760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610569565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610dda908490611566565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e2691815260200190565b60405180910390a350505050565b6001600160a01b038216610e945760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610569565b610ea082600083610fde565b6001600160a01b03821660009081526001602052604090205481811015610f145760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610569565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610f439084906115dd565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0383166000908152600c602052604090205460ff168061101d57506001600160a01b0382166000908152600c602052604090205460ff165b8061102a5750600d5460ff165b61103357600080fd5b6001600160a01b0382166000908152600a602052604090205460ff1615801561107557506001600160a01b0383166000908152600a602052604090205460ff16155b6110af5760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b6044820152606401610569565b6009546001600160a01b031661112d576000546001600160a01b03848116911614806110e857506000546001600160a01b038381169116145b61071e5760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b6044820152606401610569565b600e541580159061114c5750600e54600f546111499042611566565b10155b156111dc576001600160a01b0383166000908152600b602052604090205460ff168061119057506001600160a01b0382166000908152600b602052604090205460ff165b806111a857506000546001600160a01b038481169116145b806111c057506000546001600160a01b038381169116145b806111d35750600d5462010000900460ff165b6111dc57600080fd5b60065460ff1680156111fb57506009546001600160a01b038481169116145b1561071e576007548161120d846107a5565b6112179190611566565b1115801561123a57506008548161122d846107a5565b6112379190611566565b10155b61071e5760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b6044820152606401610569565b600060208083528351808285015260005b8181101561129c57858101830151858201604001528201611280565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146112d457600080fd5b919050565b600080604083850312156112ec57600080fd5b6112f5836112bd565b946020939093013593505050565b60006020828403121561131557600080fd5b61131e826112bd565b9392505050565b60008060006060848603121561133a57600080fd5b611343846112bd565b9250611351602085016112bd565b9150604084013590509250925092565b803580151581146112d457600080fd5b6000806000806080858703121561138757600080fd5b61139085611361565b935061139e602086016112bd565b93969395505050506040820135916060013590565b600080604083850312156113c657600080fd5b6113cf836112bd565b91506113dd60208401611361565b90509250929050565b6000602082840312156113f857600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b6000806040838503121561142857600080fd5b823567ffffffffffffffff8082111561144057600080fd5b818501915085601f83011261145457600080fd5b8135602082821115611468576114686113ff565b8160051b604051601f19603f8301168101818110868211171561148d5761148d6113ff565b6040529283528183019350848101820192898411156114ab57600080fd5b948201945b838610156114d0576114c1866112bd565b855294820194938201936114b0565b96506114df9050878201611361565b9450505050509250929050565b600080604083850312156114ff57600080fd5b611508836112bd565b91506113dd602084016112bd565b600181811c9082168061152a57607f821691505b60208210810361154a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156104d5576104d5611550565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b6000600182016115d6576115d6611550565b5060010190565b818103818111156104d5576104d561155056fea26469706673582212205c25f8b9ffb694f0ce2335061b1d24aa482f563ead74830739719a25ed17e37664736f6c63430008120033

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

00000000000000000000000000000000000014bddab3e51a57cff87a50000000

-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 420690000000000000000000000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000014bddab3e51a57cff87a50000000


Deployed Bytecode Sourcemap

19345:3446:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9312:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11479:169;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;11479:169:0;1004:187:1;19523:42:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;10432:108;10520:12;;10432:108;;;1533:25:1;;;1521:2;1506:18;10432:108:0;1387:177:1;19450:31:0;;;;;;12130:492;;;;;;:::i;:::-;;:::i;10274:93::-;;;10357:2;2044:36:1;;2032:2;2017:18;10274:93:0;1902:184:1;13031:215:0;;;;;;:::i;:::-;;:::i;21221:301::-;;;;;;:::i;:::-;;:::i;:::-;;20959:113;;;;;;:::i;:::-;-1:-1:-1;;;;;21045:19:0;21021:4;21045:19;;;:10;:19;;;;;;;;;20959:113;21078:135;;;;;;:::i;:::-;;:::i;22549:81::-;;;;;;:::i;:::-;;:::i;20581:203::-;;;;;;:::i;:::-;;:::i;19488:28::-;;;;;-1:-1:-1;;;;;19488:28:0;;;;;;-1:-1:-1;;;;;4588:32:1;;;4570:51;;4558:2;4543:18;19488:28:0;4424:203:1;20796:155:0;;;;;;:::i;:::-;;:::i;10603:127::-;;;;;;:::i;:::-;;:::i;2713:103::-;;;:::i;19386:19::-;;;;;;;;;19412:31;;;;;;22638:150;;;:::i;2062:87::-;2108:7;2135:6;-1:-1:-1;;;;;2135:6:0;2062:87;;9531:104;;;:::i;13749:413::-;;;;;;:::i;:::-;;:::i;10943:175::-;;;;;;:::i;:::-;;:::i;20137:259::-;;;;;;:::i;:::-;;:::i;21530:128::-;;;:::i;11181:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11297:18:0;;;11270:7;11297:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11181:151;20404:169;;;;;;:::i;:::-;;:::i;2971:201::-;;;;;;:::i;:::-;;:::i;9312:100::-;9366:13;9399:5;9392:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9312:100;:::o;11479:169::-;11562:4;11579:39;860:10;11602:7;11611:6;11579:8;:39::i;:::-;-1:-1:-1;11636:4:0;11479:169;;;;;:::o;12130:492::-;12270:4;12287:36;12297:6;12305:9;12316:6;12287:9;:36::i;:::-;-1:-1:-1;;;;;12363:19:0;;12336:24;12363:19;;;:11;:19;;;;;;;;860:10;12363:33;;;;;;;;12415:26;;;;12407:79;;;;-1:-1:-1;;;12407:79:0;;5484:2:1;12407:79:0;;;5466:21:1;5523:2;5503:18;;;5496:30;5562:34;5542:18;;;5535:62;-1:-1:-1;;;5613:18:1;;;5606:38;5661:19;;12407:79:0;;;;;;;;;12522:57;12531:6;860:10;12572:6;12553:16;:25;12522:8;:57::i;:::-;-1:-1:-1;12610:4:0;;12130:492;-1:-1:-1;;;;12130:492:0:o;13031:215::-;860:10;13119:4;13168:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13168:34:0;;;;;;;;;;13119:4;;13136:80;;13159:7;;13168:47;;13205:10;;13168:47;:::i;:::-;13136:8;:80::i;21221:301::-;2108:7;2135:6;-1:-1:-1;;;;;2135:6:0;860:10;2282:23;2274:68;;;;-1:-1:-1;;;2274:68:0;;;;;;;:::i;:::-;21361:7:::1;:18:::0;;-1:-1:-1;;21361:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;21390:13:::1;:30:::0;;-1:-1:-1;;;;;;21390:30:0::1;-1:-1:-1::0;;;;;21390:30:0;;;::::1;::::0;;;::::1;::::0;;;21431:16:::1;:36:::0;21478:16:::1;:36:::0;21221:301::o;21078:135::-;2108:7;2135:6;-1:-1:-1;;;;;2135:6:0;860:10;2282:23;2274:68;;;;-1:-1:-1;;;2274:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21167:20:0;;;::::1;;::::0;;;:10:::1;:20;::::0;;;;:38;;-1:-1:-1;;21167:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;21078:135::o;22549:81::-;22598:24;22604:10;22616:5;22598;:24::i;:::-;22549:81;:::o;20581:203::-;2108:7;2135:6;-1:-1:-1;;;;;2135:6:0;860:10;2282:23;2274:68;;;;-1:-1:-1;;;2274:68:0;;;;;;;:::i;:::-;20678:9:::1;20673:104;20697:8;:15;20693:1;:19;20673:104;;;20760:5;20734:10;:23;20745:8;20754:1;20745:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;20734:23:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;20734:23:0;:31;;-1:-1:-1;;20734:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;20714:3;::::1;::::0;::::1;:::i;:::-;;;;20673:104;;;;20581:203:::0;;:::o;20796:155::-;2108:7;2135:6;-1:-1:-1;;;;;2135:6:0;860:10;2282:23;2274:68;;;;-1:-1:-1;;;2274:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20882:16:0;::::1;;::::0;;;:10:::1;:16;::::0;;;;;:25;::::1;;:16;::::0;;::::1;:25;;::::0;20874:34:::1;;;::::0;::::1;;-1:-1:-1::0;;;;;20919:16:0;;;::::1;;::::0;;;:10:::1;:16;::::0;;;;:24;;-1:-1:-1;;20919:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;20796:155::o;10603:127::-;-1:-1:-1;;;;;10704:18:0;10677:7;10704:18;;;:9;:18;;;;;;;10603:127::o;2713:103::-;2108:7;2135:6;-1:-1:-1;;;;;2135:6:0;860:10;2282:23;2274:68;;;;-1:-1:-1;;;2274:68:0;;;;;;;:::i;:::-;2778:30:::1;2805:1;2778:18;:30::i;:::-;2713:103::o:0;22638:150::-;2108:7;2135:6;-1:-1:-1;;;;;2135:6:0;860:10;2282:23;2274:68;;;;-1:-1:-1;;;2274:68:0;;;;;;;:::i;:::-;22698:14:::1;::::0;::::1;;22697:15;22689:24;;;::::0;::::1;;22724:14;:21:::0;;-1:-1:-1;;22724:21:0::1;22741:4;22724:21;::::0;;22765:15:::1;22756:6;:24:::0;22638:150::o;9531:104::-;9587:13;9620:7;9613:14;;;;;:::i;13749:413::-;860:10;13842:4;13886:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13886:34:0;;;;;;;;;;13939:35;;;;13931:85;;;;-1:-1:-1;;;13931:85:0;;6788:2:1;13931:85:0;;;6770:21:1;6827:2;6807:18;;;6800:30;6866:34;6846:18;;;6839:62;-1:-1:-1;;;6917:18:1;;;6910:35;6962:19;;13931:85:0;6586:401:1;13931:85:0;14052:67;860:10;14075:7;14103:15;14084:16;:34;14052:8;:67::i;:::-;-1:-1:-1;14150:4:0;;13749:413;-1:-1:-1;;;13749:413:0:o;10943:175::-;11029:4;11046:42;860:10;11070:9;11081:6;11046:9;:42::i;20137:259::-;2108:7;2135:6;-1:-1:-1;;;;;2135:6:0;860:10;2282:23;2274:68;;;;-1:-1:-1;;;2274:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20239:18:0;::::1;20231:50;;;::::0;-1:-1:-1;;;20231:50:0;;7194:2:1;20231:50:0::1;::::0;::::1;7176:21:1::0;7233:2;7213:18;;;7206:30;-1:-1:-1;;;7252:18:1;;;7245:50;7312:18;;20231:50:0::1;6992:344:1::0;20231:50:0::1;-1:-1:-1::0;;;;;20292:33:0;::::1;;::::0;;;:27:::1;:33;::::0;;;;;;;;:41;;-1:-1:-1;;20292:41:0::1;::::0;::::1;;::::0;;::::1;::::0;;;20351:37;;7509:51:1;;;7576:18;;;7569:50;20351:37:0::1;::::0;7482:18:1;20351:37:0::1;;;;;;;20137:259:::0;;:::o;21530:128::-;2108:7;2135:6;-1:-1:-1;;;;;2135:6:0;860:10;2282:23;2274:68;;;;-1:-1:-1;;;2274:68:0;;;;;;;:::i;:::-;21597:17:::1;::::0;;;::::1;;;21596:18;21588:27;;;::::0;::::1;;21626:17;:24:::0;;-1:-1:-1;;21626:24:0::1;::::0;::::1;::::0;;21530:128::o;20404:169::-;2108:7;2135:6;-1:-1:-1;;;;;2135:6:0;860:10;2282:23;2274:68;;;;-1:-1:-1;;;2274:68:0;;;;;;;:::i;:::-;20499:9:::1;20489:6;:19;;20481:51;;;::::0;-1:-1:-1;;;20481:51:0;;7832:2:1;20481:51:0::1;::::0;::::1;7814:21:1::0;7871:2;7851:18;;;7844:30;-1:-1:-1;;;7890:18:1;;;7883:50;7950:18;;20481:51:0::1;7630:344:1::0;20481:51:0::1;20543:13;:22:::0;20404:169::o;2971:201::-;2108:7;2135:6;-1:-1:-1;;;;;2135:6:0;860:10;2282:23;2274:68;;;;-1:-1:-1;;;2274:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3060:22:0;::::1;3052:73;;;::::0;-1:-1:-1;;;3052:73:0;;8181:2:1;3052:73:0::1;::::0;::::1;8163:21:1::0;8220:2;8200:18;;;8193:30;8259:34;8239:18;;;8232:62;-1:-1:-1;;;8310:18:1;;;8303:36;8356:19;;3052:73:0::1;7979:402:1::0;3052:73:0::1;3136:28;3155:8;3136:18;:28::i;17433:380::-:0;-1:-1:-1;;;;;17569:19:0;;17561:68;;;;-1:-1:-1;;;17561:68:0;;8588:2:1;17561:68:0;;;8570:21:1;8627:2;8607:18;;;8600:30;8666:34;8646:18;;;8639:62;-1:-1:-1;;;8717:18:1;;;8710:34;8761:19;;17561:68:0;8386:400:1;17561:68:0;-1:-1:-1;;;;;17648:21:0;;17640:68;;;;-1:-1:-1;;;17640:68:0;;8993:2:1;17640:68:0;;;8975:21:1;9032:2;9012:18;;;9005:30;9071:34;9051:18;;;9044:62;-1:-1:-1;;;9122:18:1;;;9115:32;9164:19;;17640:68:0;8791:398:1;17640:68:0;-1:-1:-1;;;;;17721:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17773:32;;1533:25:1;;;17773:32:0;;1506:18:1;17773:32:0;;;;;;;17433:380;;;:::o;14652:733::-;-1:-1:-1;;;;;14792:20:0;;14784:70;;;;-1:-1:-1;;;14784:70:0;;9396:2:1;14784:70:0;;;9378:21:1;9435:2;9415:18;;;9408:30;9474:34;9454:18;;;9447:62;-1:-1:-1;;;9525:18:1;;;9518:35;9570:19;;14784:70:0;9194:401:1;14784:70:0;-1:-1:-1;;;;;14873:23:0;;14865:71;;;;-1:-1:-1;;;14865:71:0;;9802:2:1;14865:71:0;;;9784:21:1;9841:2;9821:18;;;9814:30;9880:34;9860:18;;;9853:62;-1:-1:-1;;;9931:18:1;;;9924:33;9974:19;;14865:71:0;9600:399:1;14865:71:0;14949:47;14970:6;14978:9;14989:6;14949:20;:47::i;:::-;-1:-1:-1;;;;;15033:17:0;;15009:21;15033:17;;;:9;:17;;;;;;15069:23;;;;15061:74;;;;-1:-1:-1;;;15061:74:0;;10206:2:1;15061:74:0;;;10188:21:1;10245:2;10225:18;;;10218:30;10284:34;10264:18;;;10257:62;-1:-1:-1;;;10335:18:1;;;10328:36;10381:19;;15061:74:0;10004:402:1;15061:74:0;-1:-1:-1;;;;;15171:17:0;;;;;;;:9;:17;;;;;;15191:22;;;15171:42;;15235:20;;;;;;;;:30;;15207:6;;15171:17;15235:30;;15207:6;;15235:30;:::i;:::-;;;;;;;;15300:9;-1:-1:-1;;;;;15283:35:0;15292:6;-1:-1:-1;;;;;15283:35:0;;15311:6;15283:35;;;;1533:25:1;;1521:2;1506:18;;1387:177;15283:35:0;;;;;;;;14773:612;14652:733;;;:::o;16404:591::-;-1:-1:-1;;;;;16488:21:0;;16480:67;;;;-1:-1:-1;;;16480:67:0;;10613:2:1;16480:67:0;;;10595:21:1;10652:2;10632:18;;;10625:30;10691:34;10671:18;;;10664:62;-1:-1:-1;;;10742:18:1;;;10735:31;10783:19;;16480:67:0;10411:397:1;16480:67:0;16560:49;16581:7;16598:1;16602:6;16560:20;:49::i;:::-;-1:-1:-1;;;;;16647:18:0;;16622:22;16647:18;;;:9;:18;;;;;;16684:24;;;;16676:71;;;;-1:-1:-1;;;16676:71:0;;11015:2:1;16676:71:0;;;10997:21:1;11054:2;11034:18;;;11027:30;11093:34;11073:18;;;11066:62;-1:-1:-1;;;11144:18:1;;;11137:32;11186:19;;16676:71:0;10813:398:1;16676:71:0;-1:-1:-1;;;;;16783:18:0;;;;;;:9;:18;;;;;16804:23;;;16783:44;;16849:12;:22;;16821:6;;16783:18;16849:22;;16821:6;;16849:22;:::i;:::-;;;;-1:-1:-1;;16889:37:0;;1533:25:1;;;16915:1:0;;-1:-1:-1;;;;;16889:37:0;;;;;1521:2:1;1506:18;16889:37:0;;;;;;;20673:104:::1;20581:203:::0;;:::o;3332:191::-;3406:16;3425:6;;-1:-1:-1;;;;;3442:17:0;;;-1:-1:-1;;;;;;3442:17:0;;;;;;3475:40;;3425:6;;;;;;;3475:40;;3406:16;3475:40;3395:128;3332:191;:::o;21666:875::-;-1:-1:-1;;;;;21817:33:0;;;;;;:27;:33;;;;;;;;;:68;;-1:-1:-1;;;;;;21854:31:0;;;;;;:27;:31;;;;;;;;21817:68;:86;;;-1:-1:-1;21889:14:0;;;;21817:86;21809:95;;;;;;-1:-1:-1;;;;;21924:14:0;;;;;;:10;:14;;;;;;;;21923:15;:36;;;;-1:-1:-1;;;;;;21943:16:0;;;;;;:10;:16;;;;;;;;21942:17;21923:36;21915:60;;;;-1:-1:-1;;;21915:60:0;;11551:2:1;21915:60:0;;;11533:21:1;11590:2;11570:18;;;11563:30;-1:-1:-1;;;11609:18:1;;;11602:41;11660:18;;21915:60:0;11349:335:1;21915:60:0;21992:13;;-1:-1:-1;;;;;21992:13:0;21988:148;;2108:7;2135:6;-1:-1:-1;;;;;22044:15:0;;;2135:6;;22044:15;;:32;;-1:-1:-1;2108:7:0;2135:6;-1:-1:-1;;;;;22063:13:0;;;2135:6;;22063:13;22044:32;22036:67;;;;-1:-1:-1;;;22036:67:0;;11891:2:1;22036:67:0;;;11873:21:1;11930:2;11910:18;;;11903:30;-1:-1:-1;;;11949:18:1;;;11942:52;12011:18;;22036:67:0;11689:346:1;21988:148:0;22151:6;;:11;;;;:56;;-1:-1:-1;22201:6:0;;22184:13;;22166:31;;:15;:31;:::i;:::-;:41;;22151:56;22148:190;;;-1:-1:-1;;;;;22233:16:0;;;;;;:10;:16;;;;;;;;;:34;;-1:-1:-1;;;;;;22253:14:0;;;;;;:10;:14;;;;;;;;22233:34;:53;;;-1:-1:-1;2108:7:0;2135:6;-1:-1:-1;;;;;22271:15:0;;;2135:6;;22271:15;22233:53;:70;;;-1:-1:-1;2108:7:0;2135:6;-1:-1:-1;;;;;22290:13:0;;;2135:6;;22290:13;22233:70;22232:93;;;-1:-1:-1;22308:17:0;;;;;;;22232:93;22224:102;;;;;;22354:7;;;;:32;;;;-1:-1:-1;22373:13:0;;-1:-1:-1;;;;;22365:21:0;;;22373:13;;22365:21;22354:32;22350:184;;;22443:16;;22433:6;22411:19;22427:2;22411:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;:100;;;;;22495:16;;22485:6;22463:19;22479:2;22463:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;22411:100;22403:119;;;;-1:-1:-1;;;22403:119:0;;12242:2:1;22403:119:0;;;12224:21:1;12281:1;12261:18;;;12254:29;-1:-1:-1;;;12299:18:1;;;12292:36;12345:18;;22403:119:0;12040:329:1;14:548;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;1196:186::-;1255:6;1308:2;1296:9;1287:7;1283:23;1279:32;1276:52;;;1324:1;1321;1314:12;1276:52;1347:29;1366:9;1347:29;:::i;:::-;1337:39;1196:186;-1:-1:-1;;;1196:186:1:o;1569:328::-;1646:6;1654;1662;1715:2;1703:9;1694:7;1690:23;1686:32;1683:52;;;1731:1;1728;1721:12;1683:52;1754:29;1773:9;1754:29;:::i;:::-;1744:39;;1802:38;1836:2;1825:9;1821:18;1802:38;:::i;:::-;1792:48;;1887:2;1876:9;1872:18;1859:32;1849:42;;1569:328;;;;;:::o;2091:160::-;2156:20;;2212:13;;2205:21;2195:32;;2185:60;;2241:1;2238;2231:12;2256:391;2339:6;2347;2355;2363;2416:3;2404:9;2395:7;2391:23;2387:33;2384:53;;;2433:1;2430;2423:12;2384:53;2456:26;2472:9;2456:26;:::i;:::-;2446:36;;2501:38;2535:2;2524:9;2520:18;2501:38;:::i;:::-;2256:391;;2491:48;;-1:-1:-1;;;;2586:2:1;2571:18;;2558:32;;2637:2;2622:18;2609:32;;2256:391::o;2652:254::-;2717:6;2725;2778:2;2766:9;2757:7;2753:23;2749:32;2746:52;;;2794:1;2791;2784:12;2746:52;2817:29;2836:9;2817:29;:::i;:::-;2807:39;;2865:35;2896:2;2885:9;2881:18;2865:35;:::i;:::-;2855:45;;2652:254;;;;;:::o;2911:180::-;2970:6;3023:2;3011:9;3002:7;2998:23;2994:32;2991:52;;;3039:1;3036;3029:12;2991:52;-1:-1:-1;3062:23:1;;2911:180;-1:-1:-1;2911:180:1:o;3096:127::-;3157:10;3152:3;3148:20;3145:1;3138:31;3188:4;3185:1;3178:15;3212:4;3209:1;3202:15;3228:1191;3318:6;3326;3379:2;3367:9;3358:7;3354:23;3350:32;3347:52;;;3395:1;3392;3385:12;3347:52;3435:9;3422:23;3464:18;3505:2;3497:6;3494:14;3491:34;;;3521:1;3518;3511:12;3491:34;3559:6;3548:9;3544:22;3534:32;;3604:7;3597:4;3593:2;3589:13;3585:27;3575:55;;3626:1;3623;3616:12;3575:55;3662:2;3649:16;3684:4;3707:2;3703;3700:10;3697:36;;;3713:18;;:::i;:::-;3759:2;3756:1;3752:10;3791:2;3785:9;3854:2;3850:7;3845:2;3841;3837:11;3833:25;3825:6;3821:38;3909:6;3897:10;3894:22;3889:2;3877:10;3874:18;3871:46;3868:72;;;3920:18;;:::i;:::-;3956:2;3949:22;4006:18;;;4040:15;;;;-1:-1:-1;4082:11:1;;;4078:20;;;4110:19;;;4107:39;;;4142:1;4139;4132:12;4107:39;4166:11;;;;4186:148;4202:6;4197:3;4194:15;4186:148;;;4268:23;4287:3;4268:23;:::i;:::-;4256:36;;4219:12;;;;4312;;;;4186:148;;;4353:6;-1:-1:-1;4378:35:1;;-1:-1:-1;4394:18:1;;;4378:35;:::i;:::-;4368:45;;;;;;3228:1191;;;;;:::o;4632:260::-;4700:6;4708;4761:2;4749:9;4740:7;4736:23;4732:32;4729:52;;;4777:1;4774;4767:12;4729:52;4800:29;4819:9;4800:29;:::i;:::-;4790:39;;4848:38;4882:2;4871:9;4867:18;4848:38;:::i;4897:380::-;4976:1;4972:12;;;;5019;;;5040:61;;5094:4;5086:6;5082:17;5072:27;;5040:61;5147:2;5139:6;5136:14;5116:18;5113:38;5110:161;;5193:10;5188:3;5184:20;5181:1;5174:31;5228:4;5225:1;5218:15;5256:4;5253:1;5246:15;5110:161;;4897:380;;;:::o;5691:127::-;5752:10;5747:3;5743:20;5740:1;5733:31;5783:4;5780:1;5773:15;5807:4;5804:1;5797:15;5823:125;5888:9;;;5909:10;;;5906:36;;;5922:18;;:::i;5953:356::-;6155:2;6137:21;;;6174:18;;;6167:30;6233:34;6228:2;6213:18;;6206:62;6300:2;6285:18;;5953:356::o;6314:127::-;6375:10;6370:3;6366:20;6363:1;6356:31;6406:4;6403:1;6396:15;6430:4;6427:1;6420:15;6446:135;6485:3;6506:17;;;6503:43;;6526:18;;:::i;:::-;-1:-1:-1;6573:1:1;6562:13;;6446:135::o;11216:128::-;11283:9;;;11304:11;;;11301:37;;;11318:18;;:::i

Swarm Source

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