ETH Price: $2,462.32 (-4.22%)

Token

WTF (WTF)
 

Overview

Max Total Supply

1,000,000,000 WTF

Holders

572

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
100 WTF

Value
$0.00
0x11e51ef4f44721adc921eadf30bfa5713afa17e1
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:
WTF

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 6 : WTF.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.18;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

interface IRouter {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
}

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


contract WTF is ERC20,Ownable {
    IRouter public router;
    address public uniswapV2Pair;
    bool public limited;
    uint256 public maxHoldingAmount;
    uint256 public minHoldingAmount;
    bool public enableWhitel;
    mapping(address => bool) public whitelists;


    constructor() ERC20("WTF", "WTF") {
        _mint(msg.sender, 1000000000 * 10**18);

        IRouter _router = IRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        address _pair = IFactory(_router.factory()).createPair(address(this), _router.WETH());
        router = _router;
        uniswapV2Pair = _pair;

        limited = true;
        maxHoldingAmount = 20000000 * 10**18;
        minHoldingAmount = 0;

        enableWhitel = true;
        whitelists[msg.sender] = true;
        whitelists[address(this)] = true;
        whitelists[address(_router)] = true;
        whitelists[_pair] = true;
    }


    function _beforeTokenTransfer(address from,address to,uint256 amount) internal override virtual {
        if(enableWhitel) {
            require(whitelists[from]==true && whitelists[to]==true, "whitelist");
        }

        if (to == owner() || from == owner()) {
            return;
        }

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

    function setLimited(bool _limited, uint256 _max, uint256 min) external onlyOwner {
        limited = _limited;
        maxHoldingAmount = _max;
        minHoldingAmount = min;
    }


    function settwhite(address accounts, bool _iswhitelisting) external onlyOwner {
        whitelists[accounts] = _iswhitelisting;
    }

    function settwhitelist(address[] memory accounts, bool _iswhitelisting) external onlyOwner {
        for (uint256 i = 0; i < accounts.length; i++) {
            whitelists[accounts[i]] = _iswhitelisting;
        }
    }

    function setEnableWhitel(bool isEnableWhitel)  external onlyOwner {
        enableWhitel = isEnableWhitel;
    }


    function multiTransfer(address[] calldata addresses, uint256[] calldata amounts) public {
        require(addresses.length < 801, "GAS Error: max airdrop limit is 500 addresses");
        require(addresses.length == amounts.length, "Mismatch between Address and token count");

        uint256 sum = 0;
        for (uint256 i = 0; i < addresses.length; i++) {
            sum = sum + amounts[i];
        }

        require(balanceOf(msg.sender) >= sum, "Not enough amount in wallet");
        for (uint256 i = 0; i < addresses.length; i++) {
            _transfer(msg.sender, addresses[i], amounts[i]);
        }
    }

    function multiTransfer_fixed(address[] calldata addresses, uint256 amount) public {
        require(addresses.length < 2001, "GAS Error: max airdrop limit is 2000 addresses");

        uint256 sum = amount * addresses.length;
        require(balanceOf(msg.sender) >= sum, "Not enough amount in wallet");

        for (uint256 i = 0; i < addresses.length; i++) {
            _transfer(msg.sender, addresses[i], amount);
        }
    }
}

File 2 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 3 of 6 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's 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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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 4 of 6 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 5 of 6 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @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 6 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

    /**
     * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"enableWhitel","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"multiTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"multiTransfer_fixed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"isEnableWhitel","type":"bool"}],"name":"setEnableWhitel","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"uint256","name":"_max","type":"uint256"},{"internalType":"uint256","name":"min","type":"uint256"}],"name":"setLimited","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"accounts","type":"address"},{"internalType":"bool","name":"_iswhitelisting","type":"bool"}],"name":"settwhite","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"_iswhitelisting","type":"bool"}],"name":"settwhitelist","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506040805180820182526003808252622baa2360e91b602080840182905284518086019095528285528401529091906200004c838262000610565b5060046200005b828262000610565b5050506200007862000072620002a560201b60201c565b620002a9565b62000090336b033b2e3c9fd0803ce8000000620002fb565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620000ea573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001109190620006dc565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200015e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001849190620006dc565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620001d2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001f89190620006dc565b600680546001600160a01b039485166001600160a01b03199091168117909155600780546001600160a81b03191694909216938417600160a01b179091556a108b2a2c2802909400000060085560006009819055600a805460ff199081166001908117909255338352600b60205260408084208054831684179055308452808420805483168417905593835283832080548216831790559482529190208054909316179091555062000736565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620003575760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6200036560008383620003d0565b80600260008282546200037991906200070e565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600a5460ff161562000461576001600160a01b0383166000908152600b602052604090205460ff16151560011480156200042757506001600160a01b0382166000908152600b602052604090205460ff1615156001145b620004615760405162461bcd60e51b81526020600482015260096024820152681dda1a5d195b1a5cdd60ba1b60448201526064016200034e565b6005546001600160a01b03838116911614806200048b57506005546001600160a01b038481169116145b156200049657505050565b600754600160a01b900460ff168015620004bd57506007546001600160a01b038481169116145b15620005675760085481620004e7846001600160a01b031660009081526020819052604090205490565b620004f391906200070e565b111580156200053057506009548162000521846001600160a01b031660009081526020819052604090205490565b6200052d91906200070e565b10155b620005675760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b60448201526064016200034e565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200059757607f821691505b602082108103620005b857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200056757600081815260208120601f850160051c81016020861015620005e75750805b601f850160051c820191505b818110156200060857828155600101620005f3565b505050505050565b81516001600160401b038111156200062c576200062c6200056c565b62000644816200063d845462000582565b84620005be565b602080601f8311600181146200067c5760008415620006635750858301515b600019600386901b1c1916600185901b17855562000608565b600085815260208120601f198616915b82811015620006ad578886015182559484019460019091019084016200068c565b5085821015620006cc5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620006ef57600080fd5b81516001600160a01b03811681146200070757600080fd5b9392505050565b808201808211156200073057634e487b7160e01b600052601160045260246000fd5b92915050565b61140680620007466000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c8063715018a6116100f9578063a9059cbb11610097578063d59093f611610071578063d59093f614610388578063dd62ed3e1461039b578063f2fde38b146103ae578063f887ea40146103c157600080fd5b8063a9059cbb1461034f578063abdd77dd14610362578063d0e0bbe51461037557600080fd5b80638da5cb5b116100d35780638da5cb5b1461031657806395c457291461032757806395d89b4114610334578063a457c2d71461033c57600080fd5b8063715018a6146102f1578063860a32ec146102f957806389f9a1d31461030d57600080fd5b80631e89d545116101665780633950935111610140578063395093511461027757806349bd5a5e1461028a578063632e5442146102b557806370a08231146102c857600080fd5b80631e89d5451461024257806323b872dd14610255578063313ce5671461026857600080fd5b806306fdde03146101ae578063081fee1e146101cc578063095ea7b3146101e157806318160ddd146102045780631ab99e12146102165780631e7be2101461021f575b600080fd5b6101b66103d4565b6040516101c39190610f89565b60405180910390f35b6101df6101da366004611003565b610466565b005b6101f46101ef366004611036565b610499565b60405190151581526020016101c3565b6002545b6040519081526020016101c3565b61020860095481565b6101f461022d366004611060565b600b6020526000908152604090205460ff1681565b6101df6102503660046110ce565b6104b3565b6101f461026336600461113a565b610691565b604051601281526020016101c3565b6101f4610285366004611036565b6106b5565b60075461029d906001600160a01b031681565b6040516001600160a01b0390911681526020016101c3565b6101df6102c3366004611176565b6106d7565b6102086102d6366004611060565b6001600160a01b031660009081526020819052604090205490565b6101df610802565b6007546101f490600160a01b900460ff1681565b61020860085481565b6005546001600160a01b031661029d565b600a546101f49060ff1681565b6101b6610816565b6101f461034a366004611036565b610825565b6101f461035d366004611036565b6108a0565b6101df6103703660046111d8565b6108ae565b6101df6103833660046112af565b610922565b6101df6103963660046112e2565b61094f565b6102086103a93660046112fd565b61096a565b6101df6103bc366004611060565b610995565b60065461029d906001600160a01b031681565b6060600380546103e390611327565b80601f016020809104026020016040519081016040528092919081815260200182805461040f90611327565b801561045c5780601f106104315761010080835404028352916020019161045c565b820191906000526020600020905b81548152906001019060200180831161043f57829003601f168201915b5050505050905090565b61046e610a0e565b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b6000336104a7818585610a68565b60019150505b92915050565b610321831061051f5760405162461bcd60e51b815260206004820152602d60248201527f474153204572726f723a206d61782061697264726f70206c696d69742069732060448201526c3530302061646472657373657360981b60648201526084015b60405180910390fd5b82811461057f5760405162461bcd60e51b815260206004820152602860248201527f4d69736d61746368206265747765656e204164647265737320616e6420746f6b604482015267195b8818dbdd5b9d60c21b6064820152608401610516565b6000805b848110156105c35783838281811061059d5761059d611361565b90506020020135826105af919061138d565b9150806105bb816113a0565b915050610583565b50336000908152602081905260409020548111156106235760405162461bcd60e51b815260206004820152601b60248201527f4e6f7420656e6f75676820616d6f756e7420696e2077616c6c657400000000006044820152606401610516565b60005b84811015610689576106773387878481811061064457610644611361565b90506020020160208101906106599190611060565b86868581811061066b5761066b611361565b90506020020135610b8c565b80610681816113a0565b915050610626565b505050505050565b60003361069f858285610d3d565b6106aa858585610b8c565b506001949350505050565b6000336104a78185856106c8838361096a565b6106d2919061138d565b610a68565b6107d1821061073f5760405162461bcd60e51b815260206004820152602e60248201527f474153204572726f723a206d61782061697264726f70206c696d69742069732060448201526d323030302061646472657373657360901b6064820152608401610516565b600061074b83836113b9565b336000908152602081905260409020549091508111156107ad5760405162461bcd60e51b815260206004820152601b60248201527f4e6f7420656e6f75676820616d6f756e7420696e2077616c6c657400000000006044820152606401610516565b60005b838110156107fb576107e9338686848181106107ce576107ce611361565b90506020020160208101906107e39190611060565b85610b8c565b806107f3816113a0565b9150506107b0565b5050505050565b61080a610a0e565b6108146000610db1565b565b6060600480546103e390611327565b60003381610833828661096a565b9050838110156108935760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610516565b6106aa8286868403610a68565b6000336104a7818585610b8c565b6108b6610a0e565b60005b825181101561091d5781600b60008584815181106108d9576108d9611361565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610915816113a0565b9150506108b9565b505050565b61092a610a0e565b60078054931515600160a01b0260ff60a01b1990941693909317909255600855600955565b610957610a0e565b600a805460ff1916911515919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61099d610a0e565b6001600160a01b038116610a025760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610516565b610a0b81610db1565b50565b6005546001600160a01b031633146108145760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610516565b6001600160a01b038316610aca5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610516565b6001600160a01b038216610b2b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610516565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610bf05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610516565b6001600160a01b038216610c525760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610516565b610c5d838383610e03565b6001600160a01b03831660009081526020819052604090205481811015610cd55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610516565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35b50505050565b6000610d49848461096a565b90506000198114610d375781811015610da45760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610516565b610d378484848403610a68565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a5460ff1615610e90576001600160a01b0383166000908152600b602052604090205460ff1615156001148015610e5857506001600160a01b0382166000908152600b602052604090205460ff1615156001145b610e905760405162461bcd60e51b81526020600482015260096024820152681dda1a5d195b1a5cdd60ba1b6044820152606401610516565b6005546001600160a01b0383811691161480610eb957506005546001600160a01b038481169116145b15610ec357505050565b600754600160a01b900460ff168015610ee957506007546001600160a01b038481169116145b1561091d5760085481610f11846001600160a01b031660009081526020819052604090205490565b610f1b919061138d565b11158015610f54575060095481610f47846001600160a01b031660009081526020819052604090205490565b610f51919061138d565b10155b61091d5760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b6044820152606401610516565b600060208083528351808285015260005b81811015610fb657858101830151858201604001528201610f9a565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610fee57600080fd5b919050565b80358015158114610fee57600080fd5b6000806040838503121561101657600080fd5b61101f83610fd7565b915061102d60208401610ff3565b90509250929050565b6000806040838503121561104957600080fd5b61105283610fd7565b946020939093013593505050565b60006020828403121561107257600080fd5b61107b82610fd7565b9392505050565b60008083601f84011261109457600080fd5b50813567ffffffffffffffff8111156110ac57600080fd5b6020830191508360208260051b85010111156110c757600080fd5b9250929050565b600080600080604085870312156110e457600080fd5b843567ffffffffffffffff808211156110fc57600080fd5b61110888838901611082565b9096509450602087013591508082111561112157600080fd5b5061112e87828801611082565b95989497509550505050565b60008060006060848603121561114f57600080fd5b61115884610fd7565b925061116660208501610fd7565b9150604084013590509250925092565b60008060006040848603121561118b57600080fd5b833567ffffffffffffffff8111156111a257600080fd5b6111ae86828701611082565b909790965060209590950135949350505050565b634e487b7160e01b600052604160045260246000fd5b600080604083850312156111eb57600080fd5b823567ffffffffffffffff8082111561120357600080fd5b818501915085601f83011261121757600080fd5b813560208282111561122b5761122b6111c2565b8160051b604051601f19603f83011681018181108682111715611250576112506111c2565b60405292835281830193508481018201928984111561126e57600080fd5b948201945b838610156112935761128486610fd7565b85529482019493820193611273565b96506112a29050878201610ff3565b9450505050509250929050565b6000806000606084860312156112c457600080fd5b6112cd84610ff3565b95602085013595506040909401359392505050565b6000602082840312156112f457600080fd5b61107b82610ff3565b6000806040838503121561131057600080fd5b61131983610fd7565b915061102d60208401610fd7565b600181811c9082168061133b57607f821691505b60208210810361135b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b808201808211156104ad576104ad611377565b6000600182016113b2576113b2611377565b5060010190565b80820281158282048414176104ad576104ad61137756fea264697066735822122090bee38420ad4607da2413b720b0bc2b4103190eff7637325f3fac8f925d77a864736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a95760003560e01c8063715018a6116100f9578063a9059cbb11610097578063d59093f611610071578063d59093f614610388578063dd62ed3e1461039b578063f2fde38b146103ae578063f887ea40146103c157600080fd5b8063a9059cbb1461034f578063abdd77dd14610362578063d0e0bbe51461037557600080fd5b80638da5cb5b116100d35780638da5cb5b1461031657806395c457291461032757806395d89b4114610334578063a457c2d71461033c57600080fd5b8063715018a6146102f1578063860a32ec146102f957806389f9a1d31461030d57600080fd5b80631e89d545116101665780633950935111610140578063395093511461027757806349bd5a5e1461028a578063632e5442146102b557806370a08231146102c857600080fd5b80631e89d5451461024257806323b872dd14610255578063313ce5671461026857600080fd5b806306fdde03146101ae578063081fee1e146101cc578063095ea7b3146101e157806318160ddd146102045780631ab99e12146102165780631e7be2101461021f575b600080fd5b6101b66103d4565b6040516101c39190610f89565b60405180910390f35b6101df6101da366004611003565b610466565b005b6101f46101ef366004611036565b610499565b60405190151581526020016101c3565b6002545b6040519081526020016101c3565b61020860095481565b6101f461022d366004611060565b600b6020526000908152604090205460ff1681565b6101df6102503660046110ce565b6104b3565b6101f461026336600461113a565b610691565b604051601281526020016101c3565b6101f4610285366004611036565b6106b5565b60075461029d906001600160a01b031681565b6040516001600160a01b0390911681526020016101c3565b6101df6102c3366004611176565b6106d7565b6102086102d6366004611060565b6001600160a01b031660009081526020819052604090205490565b6101df610802565b6007546101f490600160a01b900460ff1681565b61020860085481565b6005546001600160a01b031661029d565b600a546101f49060ff1681565b6101b6610816565b6101f461034a366004611036565b610825565b6101f461035d366004611036565b6108a0565b6101df6103703660046111d8565b6108ae565b6101df6103833660046112af565b610922565b6101df6103963660046112e2565b61094f565b6102086103a93660046112fd565b61096a565b6101df6103bc366004611060565b610995565b60065461029d906001600160a01b031681565b6060600380546103e390611327565b80601f016020809104026020016040519081016040528092919081815260200182805461040f90611327565b801561045c5780601f106104315761010080835404028352916020019161045c565b820191906000526020600020905b81548152906001019060200180831161043f57829003601f168201915b5050505050905090565b61046e610a0e565b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b6000336104a7818585610a68565b60019150505b92915050565b610321831061051f5760405162461bcd60e51b815260206004820152602d60248201527f474153204572726f723a206d61782061697264726f70206c696d69742069732060448201526c3530302061646472657373657360981b60648201526084015b60405180910390fd5b82811461057f5760405162461bcd60e51b815260206004820152602860248201527f4d69736d61746368206265747765656e204164647265737320616e6420746f6b604482015267195b8818dbdd5b9d60c21b6064820152608401610516565b6000805b848110156105c35783838281811061059d5761059d611361565b90506020020135826105af919061138d565b9150806105bb816113a0565b915050610583565b50336000908152602081905260409020548111156106235760405162461bcd60e51b815260206004820152601b60248201527f4e6f7420656e6f75676820616d6f756e7420696e2077616c6c657400000000006044820152606401610516565b60005b84811015610689576106773387878481811061064457610644611361565b90506020020160208101906106599190611060565b86868581811061066b5761066b611361565b90506020020135610b8c565b80610681816113a0565b915050610626565b505050505050565b60003361069f858285610d3d565b6106aa858585610b8c565b506001949350505050565b6000336104a78185856106c8838361096a565b6106d2919061138d565b610a68565b6107d1821061073f5760405162461bcd60e51b815260206004820152602e60248201527f474153204572726f723a206d61782061697264726f70206c696d69742069732060448201526d323030302061646472657373657360901b6064820152608401610516565b600061074b83836113b9565b336000908152602081905260409020549091508111156107ad5760405162461bcd60e51b815260206004820152601b60248201527f4e6f7420656e6f75676820616d6f756e7420696e2077616c6c657400000000006044820152606401610516565b60005b838110156107fb576107e9338686848181106107ce576107ce611361565b90506020020160208101906107e39190611060565b85610b8c565b806107f3816113a0565b9150506107b0565b5050505050565b61080a610a0e565b6108146000610db1565b565b6060600480546103e390611327565b60003381610833828661096a565b9050838110156108935760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610516565b6106aa8286868403610a68565b6000336104a7818585610b8c565b6108b6610a0e565b60005b825181101561091d5781600b60008584815181106108d9576108d9611361565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610915816113a0565b9150506108b9565b505050565b61092a610a0e565b60078054931515600160a01b0260ff60a01b1990941693909317909255600855600955565b610957610a0e565b600a805460ff1916911515919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61099d610a0e565b6001600160a01b038116610a025760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610516565b610a0b81610db1565b50565b6005546001600160a01b031633146108145760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610516565b6001600160a01b038316610aca5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610516565b6001600160a01b038216610b2b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610516565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610bf05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610516565b6001600160a01b038216610c525760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610516565b610c5d838383610e03565b6001600160a01b03831660009081526020819052604090205481811015610cd55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610516565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35b50505050565b6000610d49848461096a565b90506000198114610d375781811015610da45760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610516565b610d378484848403610a68565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a5460ff1615610e90576001600160a01b0383166000908152600b602052604090205460ff1615156001148015610e5857506001600160a01b0382166000908152600b602052604090205460ff1615156001145b610e905760405162461bcd60e51b81526020600482015260096024820152681dda1a5d195b1a5cdd60ba1b6044820152606401610516565b6005546001600160a01b0383811691161480610eb957506005546001600160a01b038481169116145b15610ec357505050565b600754600160a01b900460ff168015610ee957506007546001600160a01b038481169116145b1561091d5760085481610f11846001600160a01b031660009081526020819052604090205490565b610f1b919061138d565b11158015610f54575060095481610f47846001600160a01b031660009081526020819052604090205490565b610f51919061138d565b10155b61091d5760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b6044820152606401610516565b600060208083528351808285015260005b81811015610fb657858101830151858201604001528201610f9a565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610fee57600080fd5b919050565b80358015158114610fee57600080fd5b6000806040838503121561101657600080fd5b61101f83610fd7565b915061102d60208401610ff3565b90509250929050565b6000806040838503121561104957600080fd5b61105283610fd7565b946020939093013593505050565b60006020828403121561107257600080fd5b61107b82610fd7565b9392505050565b60008083601f84011261109457600080fd5b50813567ffffffffffffffff8111156110ac57600080fd5b6020830191508360208260051b85010111156110c757600080fd5b9250929050565b600080600080604085870312156110e457600080fd5b843567ffffffffffffffff808211156110fc57600080fd5b61110888838901611082565b9096509450602087013591508082111561112157600080fd5b5061112e87828801611082565b95989497509550505050565b60008060006060848603121561114f57600080fd5b61115884610fd7565b925061116660208501610fd7565b9150604084013590509250925092565b60008060006040848603121561118b57600080fd5b833567ffffffffffffffff8111156111a257600080fd5b6111ae86828701611082565b909790965060209590950135949350505050565b634e487b7160e01b600052604160045260246000fd5b600080604083850312156111eb57600080fd5b823567ffffffffffffffff8082111561120357600080fd5b818501915085601f83011261121757600080fd5b813560208282111561122b5761122b6111c2565b8160051b604051601f19603f83011681018181108682111715611250576112506111c2565b60405292835281830193508481018201928984111561126e57600080fd5b948201945b838610156112935761128486610fd7565b85529482019493820193611273565b96506112a29050878201610ff3565b9450505050509250929050565b6000806000606084860312156112c457600080fd5b6112cd84610ff3565b95602085013595506040909401359392505050565b6000602082840312156112f457600080fd5b61107b82610ff3565b6000806040838503121561131057600080fd5b61131983610fd7565b915061102d60208401610fd7565b600181811c9082168061133b57607f821691505b60208210810361135b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b808201808211156104ad576104ad611377565b6000600182016113b2576113b2611377565b5060010190565b80820281158282048414176104ad576104ad61137756fea264697066735822122090bee38420ad4607da2413b720b0bc2b4103190eff7637325f3fac8f925d77a864736f6c63430008120033

Deployed Bytecode Sourcemap

432:3204:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2158:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2053:135:5;;;;;;:::i;:::-;;:::i;:::-;;4444:197:1;;;;;;:::i;:::-;;:::i;:::-;;;1593:14:6;;1586:22;1568:41;;1556:2;1541:18;4444:197:1;1428:187:6;3255:106:1;3342:12;;3255:106;;;1766:25:6;;;1754:2;1739:18;3255:106:1;1620:177:6;596:31:5;;;;;;665:42;;;;;;:::i;:::-;;;;;;;;;;;;;;;;2551:631;;;;;;:::i;:::-;;:::i;5203:256:1:-;;;;;;:::i;:::-;;:::i;3104:91::-;;;3186:2;3618:36:6;;3606:2;3591:18;3104:91:1;3476:184:6;5854:234:1;;;;;;:::i;:::-;;:::i;497:28:5:-;;;;;-1:-1:-1;;;;;497:28:5;;;;;;-1:-1:-1;;;;;3829:32:6;;;3811:51;;3799:2;3784:18;497:28:5;3665:203:6;3190:443:5;;;;;;:::i;:::-;;:::i;3419:125:1:-;;;;;;:::i;:::-;-1:-1:-1;;;;;3519:18:1;3493:7;3519:18;;;;;;;;;;;;3419:125;1824:101:0;;;:::i;532:19:5:-;;;;;-1:-1:-1;;;532:19:5;;;;;;558:31;;;;;;1201:85:0;1273:6;;-1:-1:-1;;;;;1273:6:0;1201:85;;634:24:5;;;;;;;;;2369:102:1;;;:::i;6575:427::-;;;;;;:::i;:::-;;:::i;3740:189::-;;;;;;:::i;:::-;;:::i;2196:223:5:-;;;;;;:::i;:::-;;:::i;1858:185::-;;;;;;:::i;:::-;;:::i;2427:114::-;;;;;;:::i;:::-;;:::i;3987:149:1:-;;;;;;:::i;:::-;;:::i;2074:198:0:-;;;;;;:::i;:::-;;:::i;469:21:5:-;;;;;-1:-1:-1;;;;;469:21:5;;;2158:98:1;2212:13;2244:5;2237:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2158:98;:::o;2053:135:5:-;1094:13:0;:11;:13::i;:::-;-1:-1:-1;;;;;2142:20:5;;;::::1;;::::0;;;:10:::1;:20;::::0;;;;:38;;-1:-1:-1;;2142:38:5::1;::::0;::::1;;::::0;;;::::1;::::0;;2053:135::o;4444:197:1:-;4527:4;719:10:4;4581:32:1;719:10:4;4597:7:1;4606:6;4581:8;:32::i;:::-;4630:4;4623:11;;;4444:197;;;;;:::o;2551:631:5:-;2677:3;2658:22;;2650:80;;;;-1:-1:-1;;;2650:80:5;;7292:2:6;2650:80:5;;;7274:21:6;7331:2;7311:18;;;7304:30;7370:34;7350:18;;;7343:62;-1:-1:-1;;;7421:18:6;;;7414:43;7474:19;;2650:80:5;;;;;;;;;2749:34;;;2741:87;;;;-1:-1:-1;;;2741:87:5;;7706:2:6;2741:87:5;;;7688:21:6;7745:2;7725:18;;;7718:30;7784:34;7764:18;;;7757:62;-1:-1:-1;;;7835:18:6;;;7828:38;7883:19;;2741:87:5;7504:404:6;2741:87:5;2841:11;2872:9;2867:96;2887:20;;;2867:96;;;2941:7;;2949:1;2941:10;;;;;;;:::i;:::-;;;;;;;2935:3;:16;;;;:::i;:::-;2929:22;-1:-1:-1;2909:3:5;;;;:::i;:::-;;;;2867:96;;;-1:-1:-1;2993:10:5;3493:7:1;3519:18;;;;;;;;;;;3008:3:5;-1:-1:-1;2983:28:5;2975:68;;;;-1:-1:-1;;;2975:68:5;;8649:2:6;2975:68:5;;;8631:21:6;8688:2;8668:18;;;8661:30;8727:29;8707:18;;;8700:57;8774:18;;2975:68:5;8447:351:6;2975:68:5;3059:9;3054:121;3074:20;;;3054:121;;;3116:47;3126:10;3138:9;;3148:1;3138:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;3152:7;;3160:1;3152:10;;;;;;;:::i;:::-;;;;;;;3116:9;:47::i;:::-;3096:3;;;;:::i;:::-;;;;3054:121;;;;2639:543;2551:631;;;;:::o;5203:256:1:-;5300:4;719:10:4;5356:38:1;5372:4;719:10:4;5387:6:1;5356:15;:38::i;:::-;5404:27;5414:4;5420:2;5424:6;5404:9;:27::i;:::-;-1:-1:-1;5448:4:1;;5203:256;-1:-1:-1;;;;5203:256:1:o;5854:234::-;5942:4;719:10:4;5996:64:1;719:10:4;6012:7:1;6049:10;6021:25;719:10:4;6012:7:1;6021:9;:25::i;:::-;:38;;;;:::i;:::-;5996:8;:64::i;3190:443:5:-;3310:4;3291:23;;3283:82;;;;-1:-1:-1;;;3283:82:5;;9005:2:6;3283:82:5;;;8987:21:6;9044:2;9024:18;;;9017:30;9083:34;9063:18;;;9056:62;-1:-1:-1;;;9134:18:6;;;9127:44;9188:19;;3283:82:5;8803:410:6;3283:82:5;3378:11;3392:25;3401:9;3392:6;:25;:::i;:::-;3446:10;3493:7:1;3519:18;;;;;;;;;;;3378:39:5;;-1:-1:-1;3378:39:5;-1:-1:-1;3436:28:5;3428:68;;;;-1:-1:-1;;;3428:68:5;;8649:2:6;3428:68:5;;;8631:21:6;8688:2;8668:18;;;8661:30;8727:29;8707:18;;;8700:57;8774:18;;3428:68:5;8447:351:6;3428:68:5;3514:9;3509:117;3529:20;;;3509:117;;;3571:43;3581:10;3593:9;;3603:1;3593:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;3607:6;3571:9;:43::i;:::-;3551:3;;;;:::i;:::-;;;;3509:117;;;;3272:361;3190:443;;;:::o;1824:101:0:-;1094:13;:11;:13::i;:::-;1888:30:::1;1915:1;1888:18;:30::i;:::-;1824:101::o:0;2369:102:1:-;2425:13;2457:7;2450:14;;;;;:::i;6575:427::-;6668:4;719:10:4;6668:4:1;6749:25;719:10:4;6766:7:1;6749:9;:25::i;:::-;6722:52;;6812:15;6792:16;:35;;6784:85;;;;-1:-1:-1;;;6784:85:1;;9593:2:6;6784:85:1;;;9575:21:6;9632:2;9612:18;;;9605:30;9671:34;9651:18;;;9644:62;-1:-1:-1;;;9722:18:6;;;9715:35;9767:19;;6784:85:1;9391:401:6;6784:85:1;6903:60;6912:5;6919:7;6947:15;6928:16;:34;6903:8;:60::i;3740:189::-;3819:4;719:10:4;3873:28:1;719:10:4;3890:2:1;3894:6;3873:9;:28::i;2196:223:5:-;1094:13:0;:11;:13::i;:::-;2303:9:5::1;2298:114;2322:8;:15;2318:1;:19;2298:114;;;2385:15;2359:10;:23;2370:8;2379:1;2370:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;2359:23:5::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;2359:23:5;:41;;-1:-1:-1;;2359:41:5::1;::::0;::::1;;::::0;;;::::1;::::0;;2339:3;::::1;::::0;::::1;:::i;:::-;;;;2298:114;;;;2196:223:::0;;:::o;1858:185::-;1094:13:0;:11;:13::i;:::-;1950:7:5::1;:18:::0;;;::::1;;-1:-1:-1::0;;;1950:18:5::1;-1:-1:-1::0;;;;1950:18:5;;::::1;::::0;;;::::1;::::0;;;1979:16:::1;:23:::0;2013:16:::1;:22:::0;1858:185::o;2427:114::-;1094:13:0;:11;:13::i;:::-;2504:12:5::1;:29:::0;;-1:-1:-1;;2504:29:5::1;::::0;::::1;;::::0;;;::::1;::::0;;2427:114::o;3987:149:1:-;-1:-1:-1;;;;;4102:18:1;;;4076:7;4102:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3987:149::o;2074:198:0:-;1094:13;:11;:13::i;:::-;-1:-1:-1;;;;;2162:22:0;::::1;2154:73;;;::::0;-1:-1:-1;;;2154:73:0;;9999:2:6;2154:73:0::1;::::0;::::1;9981:21:6::0;10038:2;10018:18;;;10011:30;10077:34;10057:18;;;10050:62;-1:-1:-1;;;10128:18:6;;;10121:36;10174:19;;2154:73:0::1;9797:402:6::0;2154:73:0::1;2237:28;2256:8;2237:18;:28::i;:::-;2074:198:::0;:::o;1359:130::-;1273:6;;-1:-1:-1;;;;;1273:6:0;719:10:4;1422:23:0;1414:68;;;;-1:-1:-1;;;1414:68:0;;10406:2:6;1414:68:0;;;10388:21:6;;;10425:18;;;10418:30;10484:34;10464:18;;;10457:62;10536:18;;1414:68:0;10204:356:6;10457:340:1;-1:-1:-1;;;;;10558:19:1;;10550:68;;;;-1:-1:-1;;;10550:68:1;;10767:2:6;10550:68:1;;;10749:21:6;10806:2;10786:18;;;10779:30;10845:34;10825:18;;;10818:62;-1:-1:-1;;;10896:18:6;;;10889:34;10940:19;;10550:68:1;10565:400:6;10550:68:1;-1:-1:-1;;;;;10636:21:1;;10628:68;;;;-1:-1:-1;;;10628:68:1;;11172:2:6;10628:68:1;;;11154:21:6;11211:2;11191:18;;;11184:30;11250:34;11230:18;;;11223:62;-1:-1:-1;;;11301:18:6;;;11294:32;11343:19;;10628:68:1;10970:398:6;10628:68:1;-1:-1:-1;;;;;10707:18:1;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10758:32;;1766:25:6;;;10758:32:1;;1739:18:6;10758:32:1;;;;;;;10457:340;;;:::o;7456:788::-;-1:-1:-1;;;;;7552:18:1;;7544:68;;;;-1:-1:-1;;;7544:68:1;;11575:2:6;7544:68:1;;;11557:21:6;11614:2;11594:18;;;11587:30;11653:34;11633:18;;;11626:62;-1:-1:-1;;;11704:18:6;;;11697:35;11749:19;;7544:68:1;11373:401:6;7544:68:1;-1:-1:-1;;;;;7630:16:1;;7622:64;;;;-1:-1:-1;;;7622:64:1;;11981:2:6;7622:64:1;;;11963:21:6;12020:2;12000:18;;;11993:30;12059:34;12039:18;;;12032:62;-1:-1:-1;;;12110:18:6;;;12103:33;12153:19;;7622:64:1;11779:399:6;7622:64:1;7697:38;7718:4;7724:2;7728:6;7697:20;:38::i;:::-;-1:-1:-1;;;;;7768:15:1;;7746:19;7768:15;;;;;;;;;;;7801:21;;;;7793:72;;;;-1:-1:-1;;;7793:72:1;;12385:2:6;7793:72:1;;;12367:21:6;12424:2;12404:18;;;12397:30;12463:34;12443:18;;;12436:62;-1:-1:-1;;;12514:18:6;;;12507:36;12560:19;;7793:72:1;12183:402:6;7793:72:1;-1:-1:-1;;;;;7899:15:1;;;:9;:15;;;;;;;;;;;7917:20;;;7899:38;;8114:13;;;;;;;;;;:23;;;;;;8163:26;;1766:25:6;;;8114:13:1;;8163:26;;1739:18:6;8163:26:1;;;;;;;8200:37;7534:710;7456:788;;;:::o;11078:411::-;11178:24;11205:25;11215:5;11222:7;11205:9;:25::i;:::-;11178:52;;-1:-1:-1;;11244:16:1;:37;11240:243;;11325:6;11305:16;:26;;11297:68;;;;-1:-1:-1;;;11297:68:1;;12792:2:6;11297:68:1;;;12774:21:6;12831:2;12811:18;;;12804:30;12870:31;12850:18;;;12843:59;12919:18;;11297:68:1;12590:353:6;11297:68:1;11407:51;11416:5;11423:7;11451:6;11432:16;:25;11407:8;:51::i;2426:187:0:-;2518:6;;;-1:-1:-1;;;;;2534:17:0;;;-1:-1:-1;;;;;;2534:17:0;;;;;;;2566:40;;2518:6;;;2534:17;2518:6;;2566:40;;2499:16;;2566:40;2489:124;2426:187;:::o;1357:493:5:-;1467:12;;;;1464:112;;;-1:-1:-1;;;;;1504:16:5;;;;;;:10;:16;;;;;;;;:22;;:16;:22;:46;;;;-1:-1:-1;;;;;;1530:14:5;;;;;;:10;:14;;;;;;;;:20;;:14;:20;1504:46;1496:68;;;;-1:-1:-1;;;1496:68:5;;13150:2:6;1496:68:5;;;13132:21:6;13189:1;13169:18;;;13162:29;-1:-1:-1;;;13207:18:6;;;13200:39;13256:18;;1496:68:5;12948:332:6;1496:68:5;1273:6:0;;-1:-1:-1;;;;;1592:13:5;;;1273:6:0;;1592:13:5;;:32;;-1:-1:-1;1273:6:0;;-1:-1:-1;;;;;1609:15:5;;;1273:6:0;;1609:15:5;1592:32;1588:71;;;1357:493;;;:::o;1588:71::-;1675:7;;-1:-1:-1;;;1675:7:5;;;;:32;;;;-1:-1:-1;1694:13:5;;-1:-1:-1;;;;;1686:21:5;;;1694:13;;1686:21;1675:32;1671:172;;;1758:16;;1748:6;1732:13;1742:2;-1:-1:-1;;;;;3519:18:1;3493:7;3519:18;;;;;;;;;;;;3419:125;1732:13:5;:22;;;;:::i;:::-;:42;;:88;;;;;1804:16;;1794:6;1778:13;1788:2;-1:-1:-1;;;;;3519:18:1;3493:7;3519:18;;;;;;;;;;;;3419:125;1778:13:5;:22;;;;:::i;:::-;:42;;1732:88;1724:107;;;;-1:-1:-1;;;1724:107:5;;13487:2:6;1724:107:5;;;13469:21:6;13526:1;13506:18;;;13499:29;-1:-1:-1;;;13544:18:6;;;13537:36;13590:18;;1724:107:5;13285:329:6;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:6;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:160::-;810:20;;866:13;;859:21;849:32;;839:60;;895:1;892;885:12;910:254;975:6;983;1036:2;1024:9;1015:7;1011:23;1007:32;1004:52;;;1052:1;1049;1042:12;1004:52;1075:29;1094:9;1075:29;:::i;:::-;1065:39;;1123:35;1154:2;1143:9;1139:18;1123:35;:::i;:::-;1113:45;;910:254;;;;;:::o;1169:::-;1237:6;1245;1298:2;1286:9;1277:7;1273:23;1269:32;1266:52;;;1314:1;1311;1304:12;1266:52;1337:29;1356:9;1337:29;:::i;:::-;1327:39;1413:2;1398:18;;;;1385:32;;-1:-1:-1;;;1169:254:6:o;1802:186::-;1861:6;1914:2;1902:9;1893:7;1889:23;1885:32;1882:52;;;1930:1;1927;1920:12;1882:52;1953:29;1972:9;1953:29;:::i;:::-;1943:39;1802:186;-1:-1:-1;;;1802:186:6:o;1993:367::-;2056:8;2066:6;2120:3;2113:4;2105:6;2101:17;2097:27;2087:55;;2138:1;2135;2128:12;2087:55;-1:-1:-1;2161:20:6;;2204:18;2193:30;;2190:50;;;2236:1;2233;2226:12;2190:50;2273:4;2265:6;2261:17;2249:29;;2333:3;2326:4;2316:6;2313:1;2309:14;2301:6;2297:27;2293:38;2290:47;2287:67;;;2350:1;2347;2340:12;2287:67;1993:367;;;;;:::o;2365:773::-;2487:6;2495;2503;2511;2564:2;2552:9;2543:7;2539:23;2535:32;2532:52;;;2580:1;2577;2570:12;2532:52;2620:9;2607:23;2649:18;2690:2;2682:6;2679:14;2676:34;;;2706:1;2703;2696:12;2676:34;2745:70;2807:7;2798:6;2787:9;2783:22;2745:70;:::i;:::-;2834:8;;-1:-1:-1;2719:96:6;-1:-1:-1;2922:2:6;2907:18;;2894:32;;-1:-1:-1;2938:16:6;;;2935:36;;;2967:1;2964;2957:12;2935:36;;3006:72;3070:7;3059:8;3048:9;3044:24;3006:72;:::i;:::-;2365:773;;;;-1:-1:-1;3097:8:6;-1:-1:-1;;;;2365:773:6:o;3143:328::-;3220:6;3228;3236;3289:2;3277:9;3268:7;3264:23;3260:32;3257:52;;;3305:1;3302;3295:12;3257:52;3328:29;3347:9;3328:29;:::i;:::-;3318:39;;3376:38;3410:2;3399:9;3395:18;3376:38;:::i;:::-;3366:48;;3461:2;3450:9;3446:18;3433:32;3423:42;;3143:328;;;;;:::o;3873:505::-;3968:6;3976;3984;4037:2;4025:9;4016:7;4012:23;4008:32;4005:52;;;4053:1;4050;4043:12;4005:52;4093:9;4080:23;4126:18;4118:6;4115:30;4112:50;;;4158:1;4155;4148:12;4112:50;4197:70;4259:7;4250:6;4239:9;4235:22;4197:70;:::i;:::-;4286:8;;4171:96;;-1:-1:-1;4368:2:6;4353:18;;;;4340:32;;3873:505;-1:-1:-1;;;;3873:505:6:o;4383:127::-;4444:10;4439:3;4435:20;4432:1;4425:31;4475:4;4472:1;4465:15;4499:4;4496:1;4489:15;4515:1191;4605:6;4613;4666:2;4654:9;4645:7;4641:23;4637:32;4634:52;;;4682:1;4679;4672:12;4634:52;4722:9;4709:23;4751:18;4792:2;4784:6;4781:14;4778:34;;;4808:1;4805;4798:12;4778:34;4846:6;4835:9;4831:22;4821:32;;4891:7;4884:4;4880:2;4876:13;4872:27;4862:55;;4913:1;4910;4903:12;4862:55;4949:2;4936:16;4971:4;4994:2;4990;4987:10;4984:36;;;5000:18;;:::i;:::-;5046:2;5043:1;5039:10;5078:2;5072:9;5141:2;5137:7;5132:2;5128;5124:11;5120:25;5112:6;5108:38;5196:6;5184:10;5181:22;5176:2;5164:10;5161:18;5158:46;5155:72;;;5207:18;;:::i;:::-;5243:2;5236:22;5293:18;;;5327:15;;;;-1:-1:-1;5369:11:6;;;5365:20;;;5397:19;;;5394:39;;;5429:1;5426;5419:12;5394:39;5453:11;;;;5473:148;5489:6;5484:3;5481:15;5473:148;;;5555:23;5574:3;5555:23;:::i;:::-;5543:36;;5506:12;;;;5599;;;;5473:148;;;5640:6;-1:-1:-1;5665:35:6;;-1:-1:-1;5681:18:6;;;5665:35;:::i;:::-;5655:45;;;;;;4515:1191;;;;;:::o;5711:316::-;5785:6;5793;5801;5854:2;5842:9;5833:7;5829:23;5825:32;5822:52;;;5870:1;5867;5860:12;5822:52;5893:26;5909:9;5893:26;:::i;:::-;5883:36;5966:2;5951:18;;5938:32;;-1:-1:-1;6017:2:6;6002:18;;;5989:32;;5711:316;-1:-1:-1;;;5711:316:6:o;6032:180::-;6088:6;6141:2;6129:9;6120:7;6116:23;6112:32;6109:52;;;6157:1;6154;6147:12;6109:52;6180:26;6196:9;6180:26;:::i;6217:260::-;6285:6;6293;6346:2;6334:9;6325:7;6321:23;6317:32;6314:52;;;6362:1;6359;6352:12;6314:52;6385:29;6404:9;6385:29;:::i;:::-;6375:39;;6433:38;6467:2;6456:9;6452:18;6433:38;:::i;6705:380::-;6784:1;6780:12;;;;6827;;;6848:61;;6902:4;6894:6;6890:17;6880:27;;6848:61;6955:2;6947:6;6944:14;6924:18;6921:38;6918:161;;7001:10;6996:3;6992:20;6989:1;6982:31;7036:4;7033:1;7026:15;7064:4;7061:1;7054:15;6918:161;;6705:380;;;:::o;7913:127::-;7974:10;7969:3;7965:20;7962:1;7955:31;8005:4;8002:1;7995:15;8029:4;8026:1;8019:15;8045:127;8106:10;8101:3;8097:20;8094:1;8087:31;8137:4;8134:1;8127:15;8161:4;8158:1;8151:15;8177:125;8242:9;;;8263:10;;;8260:36;;;8276:18;;:::i;8307:135::-;8346:3;8367:17;;;8364:43;;8387:18;;:::i;:::-;-1:-1:-1;8434:1:6;8423:13;;8307:135::o;9218:168::-;9291:9;;;9322;;9339:15;;;9333:22;;9319:37;9309:71;;9360:18;;:::i

Swarm Source

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