ETH Price: $3,377.17 (+3.24%)
Gas: 2 Gwei

Token

TurboAI (TurboAI)
 

Overview

Max Total Supply

20,000,000,000 TurboAI

Holders

117

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
8,017,174.747655131070942857 TurboAI

Value
$0.00
0x171c9c36fe9906db7dffe6183889d9009eeb5854
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:
TurboAI

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
Experience the power of simplicity and security with TurboAI - the  perfect platform for investors of all levels! Our liquidity pool make up the majority of the total supply, with locked 🔐LP  tokens and a renounced contract that ensures maximum security.


#FairLaunch on uniswap
📅07.18 ⏰ 13:30 utc

#TurboAI FairLaunch
✅NO Team Tokens 
✅CMC+CG ✅0/0 taxes
✅Dapp to favor Crypto Adoption
✅Marketing Budgets ✅Influencers
✅Locked liquidity pool before launching
✅Renounced contract after opening the launch button

#TurboAI 
Get ready 🔥

SOCIAL:
Telegram:t.me/turboai_eth
Twitter:https://twitter.com/turboai_eth

*/
/**
pragma solidity 0.8.20;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
}

interface IERC20 {
    function totalSupply() external view returns (uint256);
    function balanceOf(address account) external view returns (uint256);
    function transfer(address recipient, uint256 amount) external returns (bool);
    function allowance(address owner, address spender) external view returns (uint256);
    function approve(address spender, uint256 amount) external returns (bool);
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

library SafeMath {
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;
        return c;
    }

    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        return c;
    }

}

contract Ownable is Context {
    address private _owner;
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    function owner() public view returns (address) {
        return _owner;
    }

    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

}

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

interface IUniswapV2Router02 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
}

*/

// 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/PepeToken.sol



pragma solidity ^0.8.0;


contract TurboAI is Ownable, ERC20 {
    bool public limited;
    uint256 public maxHoldingAmount;
    uint256 public minHoldingAmount;
    address public uniswapV2Pair;

    constructor(uint256 _totalSupply) ERC20("TurboAI", "TurboAI") {
        _mint(msg.sender, _totalSupply);
    }



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

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {
        
        if (uniswapV2Pair == address(0)) {
            require(from == owner() || to == owner(), "trading is not started");
            return;
        }

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

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"},{"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":"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":[{"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":"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":"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":[],"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"}]

608060405234801562000010575f80fd5b5060405162002b4b38038062002b4b83398181016040528101906200003691906200060f565b6040518060400160405280600781526020017f547572626f4149000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f547572626f414900000000000000000000000000000000000000000000000000815250620000c2620000b66200010160201b60201c565b6200010860201b60201c565b8160049081620000d391906200089a565b508060059081620000e591906200089a565b505050620000fa3382620001c960201b60201c565b5062000b6b565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200023a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200023190620009dc565b60405180910390fd5b6200024d5f83836200033a60201b60201c565b8060035f82825462000260919062000a29565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254620002b5919062000a29565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200031b919062000a74565b60405180910390a3620003365f83836200056160201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff1660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036200045b576200039f6200056660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620004135750620003e46200056660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b62000455576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200044c9062000add565b60405180910390fd5b6200055c565b60065f9054906101000a900460ff168015620004c3575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156200055b5760075481620004de846200058d60201b60201c565b620004ea919062000a29565b111580156200051857506008548162000509846200058d60201b60201c565b62000515919062000a29565b10155b6200055a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005519062000b4b565b60405180910390fd5b5b5b505050565b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f80fd5b5f819050919050565b620005eb81620005d7565b8114620005f6575f80fd5b50565b5f815190506200060981620005e0565b92915050565b5f60208284031215620006275762000626620005d3565b5b5f6200063684828501620005f9565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620006bb57607f821691505b602082108103620006d157620006d062000676565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620007357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620006f8565b620007418683620006f8565b95508019841693508086168417925050509392505050565b5f819050919050565b5f620007826200077c6200077684620005d7565b62000759565b620005d7565b9050919050565b5f819050919050565b6200079d8362000762565b620007b5620007ac8262000789565b84845462000704565b825550505050565b5f90565b620007cb620007bd565b620007d881848462000792565b505050565b5b81811015620007ff57620007f35f82620007c1565b600181019050620007de565b5050565b601f8211156200084e576200081881620006d7565b6200082384620006e9565b8101602085101562000833578190505b6200084b6200084285620006e9565b830182620007dd565b50505b505050565b5f82821c905092915050565b5f620008705f198460080262000853565b1980831691505092915050565b5f6200088a83836200085f565b9150826002028217905092915050565b620008a5826200063f565b67ffffffffffffffff811115620008c157620008c062000649565b5b620008cd8254620006a3565b620008da82828562000803565b5f60209050601f83116001811462000910575f8415620008fb578287015190505b6200090785826200087d565b86555062000976565b601f1984166200092086620006d7565b5f5b82811015620009495784890151825560018201915060208501945060208101905062000922565b8683101562000969578489015162000965601f8916826200085f565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f620009c4601f836200097e565b9150620009d1826200098e565b602082019050919050565b5f6020820190508181035f830152620009f581620009b6565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000a3582620005d7565b915062000a4283620005d7565b925082820190508082111562000a5d5762000a5c620009fc565b5b92915050565b62000a6e81620005d7565b82525050565b5f60208201905062000a895f83018462000a63565b92915050565b7f74726164696e67206973206e6f742073746172746564000000000000000000005f82015250565b5f62000ac56016836200097e565b915062000ad28262000a8f565b602082019050919050565b5f6020820190508181035f83015262000af68162000ab7565b9050919050565b7f466f7262696400000000000000000000000000000000000000000000000000005f82015250565b5f62000b336006836200097e565b915062000b408262000afd565b602082019050919050565b5f6020820190508181035f83015262000b648162000b25565b9050919050565b611fd28062000b795f395ff3fe608060405234801561000f575f80fd5b506004361061012a575f3560e01c806370a08231116100ab57806395d89b411161006f57806395d89b4114610320578063a457c2d71461033e578063a9059cbb1461036e578063dd62ed3e1461039e578063f2fde38b146103ce5761012a565b806370a082311461028c578063715018a6146102bc578063860a32ec146102c657806389f9a1d3146102e45780638da5cb5b146103025761012a565b8063313ce567116100f2578063313ce567146101e857806339509351146102065780633aa633aa1461023657806342966c681461025257806349bd5a5e1461026e5761012a565b806306fdde031461012e578063095ea7b31461014c57806318160ddd1461017c5780631ab99e121461019a57806323b872dd146101b8575b5f80fd5b6101366103ea565b60405161014391906114d0565b60405180910390f35b61016660048036038101906101619190611581565b61047a565b60405161017391906115d9565b60405180910390f35b610184610497565b6040516101919190611601565b60405180910390f35b6101a26104a0565b6040516101af9190611601565b60405180910390f35b6101d260048036038101906101cd919061161a565b6104a6565b6040516101df91906115d9565b60405180910390f35b6101f0610598565b6040516101fd9190611685565b60405180910390f35b610220600480360381019061021b9190611581565b6105a0565b60405161022d91906115d9565b60405180910390f35b610250600480360381019061024b91906116c8565b610647565b005b61026c6004803603810190610267919061172c565b610730565b005b61027661073d565b6040516102839190611766565b60405180910390f35b6102a660048036038101906102a1919061177f565b610762565b6040516102b39190611601565b60405180910390f35b6102c46107a8565b005b6102ce61082f565b6040516102db91906115d9565b60405180910390f35b6102ec610841565b6040516102f99190611601565b60405180910390f35b61030a610847565b6040516103179190611766565b60405180910390f35b61032861086e565b60405161033591906114d0565b60405180910390f35b61035860048036038101906103539190611581565b6108fe565b60405161036591906115d9565b60405180910390f35b61038860048036038101906103839190611581565b6109e4565b60405161039591906115d9565b60405180910390f35b6103b860048036038101906103b391906117aa565b610a01565b6040516103c59190611601565b60405180910390f35b6103e860048036038101906103e3919061177f565b610a83565b005b6060600480546103f990611815565b80601f016020809104026020016040519081016040528092919081815260200182805461042590611815565b80156104705780601f1061044757610100808354040283529160200191610470565b820191905f5260205f20905b81548152906001019060200180831161045357829003601f168201915b5050505050905090565b5f61048d610486610b79565b8484610b80565b6001905092915050565b5f600354905090565b60085481565b5f6104b2848484610d43565b5f60025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6104f9610b79565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161056f906118b5565b60405180910390fd5b61058c85610584610b79565b858403610b80565b60019150509392505050565b5f6012905090565b5f61063d6105ac610b79565b848460025f6105b9610b79565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546106389190611900565b610b80565b6001905092915050565b61064f610b79565b73ffffffffffffffffffffffffffffffffffffffff1661066d610847565b73ffffffffffffffffffffffffffffffffffffffff16146106c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ba9061197d565b60405180910390fd5b8360065f6101000a81548160ff0219169083151502179055508260095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816007819055508060088190555050505050565b61073a3382610fbb565b50565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6107b0610b79565b73ffffffffffffffffffffffffffffffffffffffff166107ce610847565b73ffffffffffffffffffffffffffffffffffffffff1614610824576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081b9061197d565b60405180910390fd5b61082d5f611189565b565b60065f9054906101000a900460ff1681565b60075481565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461087d90611815565b80601f01602080910402602001604051908101604052809291908181526020018280546108a990611815565b80156108f45780601f106108cb576101008083540402835291602001916108f4565b820191905f5260205f20905b8154815290600101906020018083116108d757829003601f168201915b5050505050905090565b5f8060025f61090b610b79565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156109c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bc90611a0b565b60405180910390fd5b6109d96109d0610b79565b85858403610b80565b600191505092915050565b5f6109f76109f0610b79565b8484610d43565b6001905092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610a8b610b79565b73ffffffffffffffffffffffffffffffffffffffff16610aa9610847565b73ffffffffffffffffffffffffffffffffffffffff1614610aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af69061197d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6490611a99565b60405180910390fd5b610b7681611189565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be590611b27565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5390611bb5565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d369190611601565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da890611c43565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1690611cd1565b60405180910390fd5b610e2a83838361124a565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea590611d5f565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610f3e9190611900565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fa29190611601565b60405180910390a3610fb5848484611441565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611029576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102090611ded565b60405180910390fd5b611034825f8361124a565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156110b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110af90611e7b565b60405180910390fd5b81810360015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160035f82825461110d9190611e99565b925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111719190611601565b60405180910390a3611184835f84611441565b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff1660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611355576112a6610847565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061131157506112e2610847565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134790611f16565b60405180910390fd5b61143c565b60065f9054906101000a900460ff1680156113bc575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561143b57600754816113ce84610762565b6113d89190611900565b111580156113fb5750600854816113ee84610762565b6113f89190611900565b10155b61143a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143190611f7e565b60405180910390fd5b5b5b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561147d578082015181840152602081019050611462565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6114a282611446565b6114ac8185611450565b93506114bc818560208601611460565b6114c581611488565b840191505092915050565b5f6020820190508181035f8301526114e88184611498565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61151d826114f4565b9050919050565b61152d81611513565b8114611537575f80fd5b50565b5f8135905061154881611524565b92915050565b5f819050919050565b6115608161154e565b811461156a575f80fd5b50565b5f8135905061157b81611557565b92915050565b5f8060408385031215611597576115966114f0565b5b5f6115a48582860161153a565b92505060206115b58582860161156d565b9150509250929050565b5f8115159050919050565b6115d3816115bf565b82525050565b5f6020820190506115ec5f8301846115ca565b92915050565b6115fb8161154e565b82525050565b5f6020820190506116145f8301846115f2565b92915050565b5f805f60608486031215611631576116306114f0565b5b5f61163e8682870161153a565b935050602061164f8682870161153a565b92505060406116608682870161156d565b9150509250925092565b5f60ff82169050919050565b61167f8161166a565b82525050565b5f6020820190506116985f830184611676565b92915050565b6116a7816115bf565b81146116b1575f80fd5b50565b5f813590506116c28161169e565b92915050565b5f805f80608085870312156116e0576116df6114f0565b5b5f6116ed878288016116b4565b94505060206116fe8782880161153a565b935050604061170f8782880161156d565b92505060606117208782880161156d565b91505092959194509250565b5f60208284031215611741576117406114f0565b5b5f61174e8482850161156d565b91505092915050565b61176081611513565b82525050565b5f6020820190506117795f830184611757565b92915050565b5f60208284031215611794576117936114f0565b5b5f6117a18482850161153a565b91505092915050565b5f80604083850312156117c0576117bf6114f0565b5b5f6117cd8582860161153a565b92505060206117de8582860161153a565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061182c57607f821691505b60208210810361183f5761183e6117e8565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f61189f602883611450565b91506118aa82611845565b604082019050919050565b5f6020820190508181035f8301526118cc81611893565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61190a8261154e565b91506119158361154e565b925082820190508082111561192d5761192c6118d3565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611967602083611450565b915061197282611933565b602082019050919050565b5f6020820190508181035f8301526119948161195b565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6119f5602583611450565b9150611a008261199b565b604082019050919050565b5f6020820190508181035f830152611a22816119e9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611a83602683611450565b9150611a8e82611a29565b604082019050919050565b5f6020820190508181035f830152611ab081611a77565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611b11602483611450565b9150611b1c82611ab7565b604082019050919050565b5f6020820190508181035f830152611b3e81611b05565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611b9f602283611450565b9150611baa82611b45565b604082019050919050565b5f6020820190508181035f830152611bcc81611b93565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611c2d602583611450565b9150611c3882611bd3565b604082019050919050565b5f6020820190508181035f830152611c5a81611c21565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611cbb602383611450565b9150611cc682611c61565b604082019050919050565b5f6020820190508181035f830152611ce881611caf565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611d49602683611450565b9150611d5482611cef565b604082019050919050565b5f6020820190508181035f830152611d7681611d3d565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f611dd7602183611450565b9150611de282611d7d565b604082019050919050565b5f6020820190508181035f830152611e0481611dcb565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f611e65602283611450565b9150611e7082611e0b565b604082019050919050565b5f6020820190508181035f830152611e9281611e59565b9050919050565b5f611ea38261154e565b9150611eae8361154e565b9250828203905081811115611ec657611ec56118d3565b5b92915050565b7f74726164696e67206973206e6f742073746172746564000000000000000000005f82015250565b5f611f00601683611450565b9150611f0b82611ecc565b602082019050919050565b5f6020820190508181035f830152611f2d81611ef4565b9050919050565b7f466f7262696400000000000000000000000000000000000000000000000000005f82015250565b5f611f68600683611450565b9150611f7382611f34565b602082019050919050565b5f6020820190508181035f830152611f9581611f5c565b905091905056fea26469706673582212202ef41c4607bdcbb52504f3ca98bdfffecbd2c4b5fb9f8e6e96bac40052cc45ba64736f6c634300081400330000000000000000000000000000000000000000409f9cbc7c4a04c220000000

Deployed Bytecode

0x608060405234801561000f575f80fd5b506004361061012a575f3560e01c806370a08231116100ab57806395d89b411161006f57806395d89b4114610320578063a457c2d71461033e578063a9059cbb1461036e578063dd62ed3e1461039e578063f2fde38b146103ce5761012a565b806370a082311461028c578063715018a6146102bc578063860a32ec146102c657806389f9a1d3146102e45780638da5cb5b146103025761012a565b8063313ce567116100f2578063313ce567146101e857806339509351146102065780633aa633aa1461023657806342966c681461025257806349bd5a5e1461026e5761012a565b806306fdde031461012e578063095ea7b31461014c57806318160ddd1461017c5780631ab99e121461019a57806323b872dd146101b8575b5f80fd5b6101366103ea565b60405161014391906114d0565b60405180910390f35b61016660048036038101906101619190611581565b61047a565b60405161017391906115d9565b60405180910390f35b610184610497565b6040516101919190611601565b60405180910390f35b6101a26104a0565b6040516101af9190611601565b60405180910390f35b6101d260048036038101906101cd919061161a565b6104a6565b6040516101df91906115d9565b60405180910390f35b6101f0610598565b6040516101fd9190611685565b60405180910390f35b610220600480360381019061021b9190611581565b6105a0565b60405161022d91906115d9565b60405180910390f35b610250600480360381019061024b91906116c8565b610647565b005b61026c6004803603810190610267919061172c565b610730565b005b61027661073d565b6040516102839190611766565b60405180910390f35b6102a660048036038101906102a1919061177f565b610762565b6040516102b39190611601565b60405180910390f35b6102c46107a8565b005b6102ce61082f565b6040516102db91906115d9565b60405180910390f35b6102ec610841565b6040516102f99190611601565b60405180910390f35b61030a610847565b6040516103179190611766565b60405180910390f35b61032861086e565b60405161033591906114d0565b60405180910390f35b61035860048036038101906103539190611581565b6108fe565b60405161036591906115d9565b60405180910390f35b61038860048036038101906103839190611581565b6109e4565b60405161039591906115d9565b60405180910390f35b6103b860048036038101906103b391906117aa565b610a01565b6040516103c59190611601565b60405180910390f35b6103e860048036038101906103e3919061177f565b610a83565b005b6060600480546103f990611815565b80601f016020809104026020016040519081016040528092919081815260200182805461042590611815565b80156104705780601f1061044757610100808354040283529160200191610470565b820191905f5260205f20905b81548152906001019060200180831161045357829003601f168201915b5050505050905090565b5f61048d610486610b79565b8484610b80565b6001905092915050565b5f600354905090565b60085481565b5f6104b2848484610d43565b5f60025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6104f9610b79565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161056f906118b5565b60405180910390fd5b61058c85610584610b79565b858403610b80565b60019150509392505050565b5f6012905090565b5f61063d6105ac610b79565b848460025f6105b9610b79565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546106389190611900565b610b80565b6001905092915050565b61064f610b79565b73ffffffffffffffffffffffffffffffffffffffff1661066d610847565b73ffffffffffffffffffffffffffffffffffffffff16146106c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ba9061197d565b60405180910390fd5b8360065f6101000a81548160ff0219169083151502179055508260095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816007819055508060088190555050505050565b61073a3382610fbb565b50565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6107b0610b79565b73ffffffffffffffffffffffffffffffffffffffff166107ce610847565b73ffffffffffffffffffffffffffffffffffffffff1614610824576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081b9061197d565b60405180910390fd5b61082d5f611189565b565b60065f9054906101000a900460ff1681565b60075481565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461087d90611815565b80601f01602080910402602001604051908101604052809291908181526020018280546108a990611815565b80156108f45780601f106108cb576101008083540402835291602001916108f4565b820191905f5260205f20905b8154815290600101906020018083116108d757829003601f168201915b5050505050905090565b5f8060025f61090b610b79565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156109c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bc90611a0b565b60405180910390fd5b6109d96109d0610b79565b85858403610b80565b600191505092915050565b5f6109f76109f0610b79565b8484610d43565b6001905092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610a8b610b79565b73ffffffffffffffffffffffffffffffffffffffff16610aa9610847565b73ffffffffffffffffffffffffffffffffffffffff1614610aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af69061197d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6490611a99565b60405180910390fd5b610b7681611189565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be590611b27565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5390611bb5565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d369190611601565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da890611c43565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1690611cd1565b60405180910390fd5b610e2a83838361124a565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea590611d5f565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610f3e9190611900565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fa29190611601565b60405180910390a3610fb5848484611441565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611029576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102090611ded565b60405180910390fd5b611034825f8361124a565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156110b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110af90611e7b565b60405180910390fd5b81810360015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160035f82825461110d9190611e99565b925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111719190611601565b60405180910390a3611184835f84611441565b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff1660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611355576112a6610847565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061131157506112e2610847565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134790611f16565b60405180910390fd5b61143c565b60065f9054906101000a900460ff1680156113bc575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561143b57600754816113ce84610762565b6113d89190611900565b111580156113fb5750600854816113ee84610762565b6113f89190611900565b10155b61143a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143190611f7e565b60405180910390fd5b5b5b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561147d578082015181840152602081019050611462565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6114a282611446565b6114ac8185611450565b93506114bc818560208601611460565b6114c581611488565b840191505092915050565b5f6020820190508181035f8301526114e88184611498565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61151d826114f4565b9050919050565b61152d81611513565b8114611537575f80fd5b50565b5f8135905061154881611524565b92915050565b5f819050919050565b6115608161154e565b811461156a575f80fd5b50565b5f8135905061157b81611557565b92915050565b5f8060408385031215611597576115966114f0565b5b5f6115a48582860161153a565b92505060206115b58582860161156d565b9150509250929050565b5f8115159050919050565b6115d3816115bf565b82525050565b5f6020820190506115ec5f8301846115ca565b92915050565b6115fb8161154e565b82525050565b5f6020820190506116145f8301846115f2565b92915050565b5f805f60608486031215611631576116306114f0565b5b5f61163e8682870161153a565b935050602061164f8682870161153a565b92505060406116608682870161156d565b9150509250925092565b5f60ff82169050919050565b61167f8161166a565b82525050565b5f6020820190506116985f830184611676565b92915050565b6116a7816115bf565b81146116b1575f80fd5b50565b5f813590506116c28161169e565b92915050565b5f805f80608085870312156116e0576116df6114f0565b5b5f6116ed878288016116b4565b94505060206116fe8782880161153a565b935050604061170f8782880161156d565b92505060606117208782880161156d565b91505092959194509250565b5f60208284031215611741576117406114f0565b5b5f61174e8482850161156d565b91505092915050565b61176081611513565b82525050565b5f6020820190506117795f830184611757565b92915050565b5f60208284031215611794576117936114f0565b5b5f6117a18482850161153a565b91505092915050565b5f80604083850312156117c0576117bf6114f0565b5b5f6117cd8582860161153a565b92505060206117de8582860161153a565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061182c57607f821691505b60208210810361183f5761183e6117e8565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f61189f602883611450565b91506118aa82611845565b604082019050919050565b5f6020820190508181035f8301526118cc81611893565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61190a8261154e565b91506119158361154e565b925082820190508082111561192d5761192c6118d3565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611967602083611450565b915061197282611933565b602082019050919050565b5f6020820190508181035f8301526119948161195b565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6119f5602583611450565b9150611a008261199b565b604082019050919050565b5f6020820190508181035f830152611a22816119e9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611a83602683611450565b9150611a8e82611a29565b604082019050919050565b5f6020820190508181035f830152611ab081611a77565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611b11602483611450565b9150611b1c82611ab7565b604082019050919050565b5f6020820190508181035f830152611b3e81611b05565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611b9f602283611450565b9150611baa82611b45565b604082019050919050565b5f6020820190508181035f830152611bcc81611b93565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611c2d602583611450565b9150611c3882611bd3565b604082019050919050565b5f6020820190508181035f830152611c5a81611c21565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611cbb602383611450565b9150611cc682611c61565b604082019050919050565b5f6020820190508181035f830152611ce881611caf565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611d49602683611450565b9150611d5482611cef565b604082019050919050565b5f6020820190508181035f830152611d7681611d3d565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f611dd7602183611450565b9150611de282611d7d565b604082019050919050565b5f6020820190508181035f830152611e0481611dcb565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f611e65602283611450565b9150611e7082611e0b565b604082019050919050565b5f6020820190508181035f830152611e9281611e59565b9050919050565b5f611ea38261154e565b9150611eae8361154e565b9250828203905081811115611ec657611ec56118d3565b5b92915050565b7f74726164696e67206973206e6f742073746172746564000000000000000000005f82015250565b5f611f00601683611450565b9150611f0b82611ecc565b602082019050919050565b5f6020820190508181035f830152611f2d81611ef4565b9050919050565b7f466f7262696400000000000000000000000000000000000000000000000000005f82015250565b5f611f68600683611450565b9150611f7382611f34565b602082019050919050565b5f6020820190508181035f830152611f9581611f5c565b905091905056fea26469706673582212202ef41c4607bdcbb52504f3ca98bdfffecbd2c4b5fb9f8e6e96bac40052cc45ba64736f6c63430008140033

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

0000000000000000000000000000000000000000409f9cbc7c4a04c220000000

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

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000409f9cbc7c4a04c220000000


Deployed Bytecode Sourcemap

23459:1210:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13428:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15595:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14548:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23565:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16246:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14390:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17147:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23764:301;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24585:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23603:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14719:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6829:103;;;:::i;:::-;;23501:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23527:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6178:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13647:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17865:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15059:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15297:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7087:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13428:100;13482:13;13515:5;13508:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13428:100;:::o;15595:169::-;15678:4;15695:39;15704:12;:10;:12::i;:::-;15718:7;15727:6;15695:8;:39::i;:::-;15752:4;15745:11;;15595:169;;;;:::o;14548:108::-;14609:7;14636:12;;14629:19;;14548:108;:::o;23565:31::-;;;;:::o;16246:492::-;16386:4;16403:36;16413:6;16421:9;16432:6;16403:9;:36::i;:::-;16452:24;16479:11;:19;16491:6;16479:19;;;;;;;;;;;;;;;:33;16499:12;:10;:12::i;:::-;16479:33;;;;;;;;;;;;;;;;16452:60;;16551:6;16531:16;:26;;16523:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;16638:57;16647:6;16655:12;:10;:12::i;:::-;16688:6;16669:16;:25;16638:8;:57::i;:::-;16726:4;16719:11;;;16246:492;;;;;:::o;14390:93::-;14448:5;14473:2;14466:9;;14390:93;:::o;17147:215::-;17235:4;17252:80;17261:12;:10;:12::i;:::-;17275:7;17321:10;17284:11;:25;17296:12;:10;:12::i;:::-;17284:25;;;;;;;;;;;;;;;:34;17310:7;17284:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;17252:8;:80::i;:::-;17350:4;17343:11;;17147:215;;;;:::o;23764:301::-;6409:12;:10;:12::i;:::-;6398:23;;:7;:5;:7::i;:::-;:23;;;6390:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23914:8:::1;23904:7;;:18;;;;;;;;;;;;;;;;;;23949:14;23933:13;;:30;;;;;;;;;;;;;;;;;;23993:17;23974:16;:36;;;;24040:17;24021:16;:36;;;;23764:301:::0;;;;:::o;24585:81::-;24634:24;24640:10;24652:5;24634;:24::i;:::-;24585:81;:::o;23603:28::-;;;;;;;;;;;;;:::o;14719:127::-;14793:7;14820:9;:18;14830:7;14820:18;;;;;;;;;;;;;;;;14813:25;;14719:127;;;:::o;6829:103::-;6409:12;:10;:12::i;:::-;6398:23;;:7;:5;:7::i;:::-;:23;;;6390:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6894:30:::1;6921:1;6894:18;:30::i;:::-;6829:103::o:0;23501:19::-;;;;;;;;;;;;;:::o;23527:31::-;;;;:::o;6178:87::-;6224:7;6251:6;;;;;;;;;;;6244:13;;6178:87;:::o;13647:104::-;13703:13;13736:7;13729:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13647:104;:::o;17865:413::-;17958:4;17975:24;18002:11;:25;18014:12;:10;:12::i;:::-;18002:25;;;;;;;;;;;;;;;:34;18028:7;18002:34;;;;;;;;;;;;;;;;17975:61;;18075:15;18055:16;:35;;18047:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;18168:67;18177:12;:10;:12::i;:::-;18191:7;18219:15;18200:16;:34;18168:8;:67::i;:::-;18266:4;18259:11;;;17865:413;;;;:::o;15059:175::-;15145:4;15162:42;15172:12;:10;:12::i;:::-;15186:9;15197:6;15162:9;:42::i;:::-;15222:4;15215:11;;15059:175;;;;:::o;15297:151::-;15386:7;15413:11;:18;15425:5;15413:18;;;;;;;;;;;;;;;:27;15432:7;15413:27;;;;;;;;;;;;;;;;15406:34;;15297:151;;;;:::o;7087:201::-;6409:12;:10;:12::i;:::-;6398:23;;:7;:5;:7::i;:::-;:23;;;6390:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7196:1:::1;7176:22;;:8;:22;;::::0;7168:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;7252:28;7271:8;7252:18;:28::i;:::-;7087:201:::0;:::o;4896:98::-;4949:7;4976:10;4969:17;;4896:98;:::o;21549:380::-;21702:1;21685:19;;:5;:19;;;21677:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21783:1;21764:21;;:7;:21;;;21756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21867:6;21837:11;:18;21849:5;21837:18;;;;;;;;;;;;;;;:27;21856:7;21837:27;;;;;;;;;;;;;;;:36;;;;21905:7;21889:32;;21898:5;21889:32;;;21914:6;21889:32;;;;;;:::i;:::-;;;;;;;;21549:380;;;:::o;18768:733::-;18926:1;18908:20;;:6;:20;;;18900:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;19010:1;18989:23;;:9;:23;;;18981:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;19065:47;19086:6;19094:9;19105:6;19065:20;:47::i;:::-;19125:21;19149:9;:17;19159:6;19149:17;;;;;;;;;;;;;;;;19125:41;;19202:6;19185:13;:23;;19177:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;19323:6;19307:13;:22;19287:9;:17;19297:6;19287:17;;;;;;;;;;;;;;;:42;;;;19375:6;19351:9;:20;19361:9;19351:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;19416:9;19399:35;;19408:6;19399:35;;;19427:6;19399:35;;;;;;:::i;:::-;;;;;;;;19447:46;19467:6;19475:9;19486:6;19447:19;:46::i;:::-;18889:612;18768:733;;;:::o;20520:591::-;20623:1;20604:21;;:7;:21;;;20596:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;20676:49;20697:7;20714:1;20718:6;20676:20;:49::i;:::-;20738:22;20763:9;:18;20773:7;20763:18;;;;;;;;;;;;;;;;20738:43;;20818:6;20800:14;:24;;20792:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;20937:6;20920:14;:23;20899:9;:18;20909:7;20899:18;;;;;;;;;;;;;;;:44;;;;20981:6;20965:12;;:22;;;;;;;:::i;:::-;;;;;;;;21031:1;21005:37;;21014:7;21005:37;;;21035:6;21005:37;;;;;;:::i;:::-;;;;;;;;21055:48;21075:7;21092:1;21096:6;21055:19;:48::i;:::-;20585:526;20520:591;;:::o;7448:191::-;7522:16;7541:6;;;;;;;;;;;7522:25;;7567:8;7558:6;;:17;;;;;;;;;;;;;;;;;;7622:8;7591:40;;7612:8;7591:40;;;;;;;;;;;;7511:128;7448:191;:::o;24073:504::-;24255:1;24230:27;;:13;;;;;;;;;;;:27;;;24226:148;;24290:7;:5;:7::i;:::-;24282:15;;:4;:15;;;:32;;;;24307:7;:5;:7::i;:::-;24301:13;;:2;:13;;;24282:32;24274:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;24356:7;;24226:148;24390:7;;;;;;;;;;;:32;;;;;24409:13;;;;;;;;;;;24401:21;;:4;:21;;;24390:32;24386:184;;;24479:16;;24469:6;24447:19;24463:2;24447:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;:100;;;;;24531:16;;24521:6;24499:19;24515:2;24499:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;24447:100;24439:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;24386:184;24073:504;;;;:::o;23258:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:116::-;4923:21;4938:5;4923:21;:::i;:::-;4916:5;4913:32;4903:60;;4959:1;4956;4949:12;4903:60;4853:116;:::o;4975:133::-;5018:5;5056:6;5043:20;5034:29;;5072:30;5096:5;5072:30;:::i;:::-;4975:133;;;;:::o;5114:759::-;5197:6;5205;5213;5221;5270:3;5258:9;5249:7;5245:23;5241:33;5238:120;;;5277:79;;:::i;:::-;5238:120;5397:1;5422:50;5464:7;5455:6;5444:9;5440:22;5422:50;:::i;:::-;5412:60;;5368:114;5521:2;5547:53;5592:7;5583:6;5572:9;5568:22;5547:53;:::i;:::-;5537:63;;5492:118;5649:2;5675:53;5720:7;5711:6;5700:9;5696:22;5675:53;:::i;:::-;5665:63;;5620:118;5777:2;5803:53;5848:7;5839:6;5828:9;5824:22;5803:53;:::i;:::-;5793:63;;5748:118;5114:759;;;;;;;:::o;5879:329::-;5938:6;5987:2;5975:9;5966:7;5962:23;5958:32;5955:119;;;5993:79;;:::i;:::-;5955:119;6113:1;6138:53;6183:7;6174:6;6163:9;6159:22;6138:53;:::i;:::-;6128:63;;6084:117;5879:329;;;;:::o;6214:118::-;6301:24;6319:5;6301:24;:::i;:::-;6296:3;6289:37;6214:118;;:::o;6338:222::-;6431:4;6469:2;6458:9;6454:18;6446:26;;6482:71;6550:1;6539:9;6535:17;6526:6;6482:71;:::i;:::-;6338:222;;;;:::o;6566:329::-;6625:6;6674:2;6662:9;6653:7;6649:23;6645:32;6642:119;;;6680:79;;:::i;:::-;6642:119;6800:1;6825:53;6870:7;6861:6;6850:9;6846:22;6825:53;:::i;:::-;6815:63;;6771:117;6566:329;;;;:::o;6901:474::-;6969:6;6977;7026:2;7014:9;7005:7;7001:23;6997:32;6994:119;;;7032:79;;:::i;:::-;6994:119;7152:1;7177:53;7222:7;7213:6;7202:9;7198:22;7177:53;:::i;:::-;7167:63;;7123:117;7279:2;7305:53;7350:7;7341:6;7330:9;7326:22;7305:53;:::i;:::-;7295:63;;7250:118;6901:474;;;;;:::o;7381:180::-;7429:77;7426:1;7419:88;7526:4;7523:1;7516:15;7550:4;7547:1;7540:15;7567:320;7611:6;7648:1;7642:4;7638:12;7628:22;;7695:1;7689:4;7685:12;7716:18;7706:81;;7772:4;7764:6;7760:17;7750:27;;7706:81;7834:2;7826:6;7823:14;7803:18;7800:38;7797:84;;7853:18;;:::i;:::-;7797:84;7618:269;7567:320;;;:::o;7893:227::-;8033:34;8029:1;8021:6;8017:14;8010:58;8102:10;8097:2;8089:6;8085:15;8078:35;7893:227;:::o;8126:366::-;8268:3;8289:67;8353:2;8348:3;8289:67;:::i;:::-;8282:74;;8365:93;8454:3;8365:93;:::i;:::-;8483:2;8478:3;8474:12;8467:19;;8126:366;;;:::o;8498:419::-;8664:4;8702:2;8691:9;8687:18;8679:26;;8751:9;8745:4;8741:20;8737:1;8726:9;8722:17;8715:47;8779:131;8905:4;8779:131;:::i;:::-;8771:139;;8498:419;;;:::o;8923:180::-;8971:77;8968:1;8961:88;9068:4;9065:1;9058:15;9092:4;9089:1;9082:15;9109:191;9149:3;9168:20;9186:1;9168:20;:::i;:::-;9163:25;;9202:20;9220:1;9202:20;:::i;:::-;9197:25;;9245:1;9242;9238:9;9231:16;;9266:3;9263:1;9260:10;9257:36;;;9273:18;;:::i;:::-;9257:36;9109:191;;;;:::o;9306:182::-;9446:34;9442:1;9434:6;9430:14;9423:58;9306:182;:::o;9494:366::-;9636:3;9657:67;9721:2;9716:3;9657:67;:::i;:::-;9650:74;;9733:93;9822:3;9733:93;:::i;:::-;9851:2;9846:3;9842:12;9835:19;;9494:366;;;:::o;9866:419::-;10032:4;10070:2;10059:9;10055:18;10047:26;;10119:9;10113:4;10109:20;10105:1;10094:9;10090:17;10083:47;10147:131;10273:4;10147:131;:::i;:::-;10139:139;;9866:419;;;:::o;10291:224::-;10431:34;10427:1;10419:6;10415:14;10408:58;10500:7;10495:2;10487:6;10483:15;10476:32;10291:224;:::o;10521:366::-;10663:3;10684:67;10748:2;10743:3;10684:67;:::i;:::-;10677:74;;10760:93;10849:3;10760:93;:::i;:::-;10878:2;10873:3;10869:12;10862:19;;10521:366;;;:::o;10893:419::-;11059:4;11097:2;11086:9;11082:18;11074:26;;11146:9;11140:4;11136:20;11132:1;11121:9;11117:17;11110:47;11174:131;11300:4;11174:131;:::i;:::-;11166:139;;10893:419;;;:::o;11318:225::-;11458:34;11454:1;11446:6;11442:14;11435:58;11527:8;11522:2;11514:6;11510:15;11503:33;11318:225;:::o;11549:366::-;11691:3;11712:67;11776:2;11771:3;11712:67;:::i;:::-;11705:74;;11788:93;11877:3;11788:93;:::i;:::-;11906:2;11901:3;11897:12;11890:19;;11549:366;;;:::o;11921:419::-;12087:4;12125:2;12114:9;12110:18;12102:26;;12174:9;12168:4;12164:20;12160:1;12149:9;12145:17;12138:47;12202:131;12328:4;12202:131;:::i;:::-;12194:139;;11921:419;;;:::o;12346:223::-;12486:34;12482:1;12474:6;12470:14;12463:58;12555:6;12550:2;12542:6;12538:15;12531:31;12346:223;:::o;12575:366::-;12717:3;12738:67;12802:2;12797:3;12738:67;:::i;:::-;12731:74;;12814:93;12903:3;12814:93;:::i;:::-;12932:2;12927:3;12923:12;12916:19;;12575:366;;;:::o;12947:419::-;13113:4;13151:2;13140:9;13136:18;13128:26;;13200:9;13194:4;13190:20;13186:1;13175:9;13171:17;13164:47;13228:131;13354:4;13228:131;:::i;:::-;13220:139;;12947:419;;;:::o;13372:221::-;13512:34;13508:1;13500:6;13496:14;13489:58;13581:4;13576:2;13568:6;13564:15;13557:29;13372:221;:::o;13599:366::-;13741:3;13762:67;13826:2;13821:3;13762:67;:::i;:::-;13755:74;;13838:93;13927:3;13838:93;:::i;:::-;13956:2;13951:3;13947:12;13940:19;;13599:366;;;:::o;13971:419::-;14137:4;14175:2;14164:9;14160:18;14152:26;;14224:9;14218:4;14214:20;14210:1;14199:9;14195:17;14188:47;14252:131;14378:4;14252:131;:::i;:::-;14244:139;;13971:419;;;:::o;14396:224::-;14536:34;14532:1;14524:6;14520:14;14513:58;14605:7;14600:2;14592:6;14588:15;14581:32;14396:224;:::o;14626:366::-;14768:3;14789:67;14853:2;14848:3;14789:67;:::i;:::-;14782:74;;14865:93;14954:3;14865:93;:::i;:::-;14983:2;14978:3;14974:12;14967:19;;14626:366;;;:::o;14998:419::-;15164:4;15202:2;15191:9;15187:18;15179:26;;15251:9;15245:4;15241:20;15237:1;15226:9;15222:17;15215:47;15279:131;15405:4;15279:131;:::i;:::-;15271:139;;14998:419;;;:::o;15423:222::-;15563:34;15559:1;15551:6;15547:14;15540:58;15632:5;15627:2;15619:6;15615:15;15608:30;15423:222;:::o;15651:366::-;15793:3;15814:67;15878:2;15873:3;15814:67;:::i;:::-;15807:74;;15890:93;15979:3;15890:93;:::i;:::-;16008:2;16003:3;15999:12;15992:19;;15651:366;;;:::o;16023:419::-;16189:4;16227:2;16216:9;16212:18;16204:26;;16276:9;16270:4;16266:20;16262:1;16251:9;16247:17;16240:47;16304:131;16430:4;16304:131;:::i;:::-;16296:139;;16023:419;;;:::o;16448:225::-;16588:34;16584:1;16576:6;16572:14;16565:58;16657:8;16652:2;16644:6;16640:15;16633:33;16448:225;:::o;16679:366::-;16821:3;16842:67;16906:2;16901:3;16842:67;:::i;:::-;16835:74;;16918:93;17007:3;16918:93;:::i;:::-;17036:2;17031:3;17027:12;17020:19;;16679:366;;;:::o;17051:419::-;17217:4;17255:2;17244:9;17240:18;17232:26;;17304:9;17298:4;17294:20;17290:1;17279:9;17275:17;17268:47;17332:131;17458:4;17332:131;:::i;:::-;17324:139;;17051:419;;;:::o;17476:220::-;17616:34;17612:1;17604:6;17600:14;17593:58;17685:3;17680:2;17672:6;17668:15;17661:28;17476:220;:::o;17702:366::-;17844:3;17865:67;17929:2;17924:3;17865:67;:::i;:::-;17858:74;;17941:93;18030:3;17941:93;:::i;:::-;18059:2;18054:3;18050:12;18043:19;;17702:366;;;:::o;18074:419::-;18240:4;18278:2;18267:9;18263:18;18255:26;;18327:9;18321:4;18317:20;18313:1;18302:9;18298:17;18291:47;18355:131;18481:4;18355:131;:::i;:::-;18347:139;;18074:419;;;:::o;18499:221::-;18639:34;18635:1;18627:6;18623:14;18616:58;18708:4;18703:2;18695:6;18691:15;18684:29;18499:221;:::o;18726:366::-;18868:3;18889:67;18953:2;18948:3;18889:67;:::i;:::-;18882:74;;18965:93;19054:3;18965:93;:::i;:::-;19083:2;19078:3;19074:12;19067:19;;18726:366;;;:::o;19098:419::-;19264:4;19302:2;19291:9;19287:18;19279:26;;19351:9;19345:4;19341:20;19337:1;19326:9;19322:17;19315:47;19379:131;19505:4;19379:131;:::i;:::-;19371:139;;19098:419;;;:::o;19523:194::-;19563:4;19583:20;19601:1;19583:20;:::i;:::-;19578:25;;19617:20;19635:1;19617:20;:::i;:::-;19612:25;;19661:1;19658;19654:9;19646:17;;19685:1;19679:4;19676:11;19673:37;;;19690:18;;:::i;:::-;19673:37;19523:194;;;;:::o;19723:172::-;19863:24;19859:1;19851:6;19847:14;19840:48;19723:172;:::o;19901:366::-;20043:3;20064:67;20128:2;20123:3;20064:67;:::i;:::-;20057:74;;20140:93;20229:3;20140:93;:::i;:::-;20258:2;20253:3;20249:12;20242:19;;19901:366;;;:::o;20273:419::-;20439:4;20477:2;20466:9;20462:18;20454:26;;20526:9;20520:4;20516:20;20512:1;20501:9;20497:17;20490:47;20554:131;20680:4;20554:131;:::i;:::-;20546:139;;20273:419;;;:::o;20698:156::-;20838:8;20834:1;20826:6;20822:14;20815:32;20698:156;:::o;20860:365::-;21002:3;21023:66;21087:1;21082:3;21023:66;:::i;:::-;21016:73;;21098:93;21187:3;21098:93;:::i;:::-;21216:2;21211:3;21207:12;21200:19;;20860:365;;;:::o;21231:419::-;21397:4;21435:2;21424:9;21420:18;21412:26;;21484:9;21478:4;21474:20;21470:1;21459:9;21455:17;21448:47;21512:131;21638:4;21512:131;:::i;:::-;21504:139;;21231:419;;;:::o

Swarm Source

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