ETH Price: $2,467.64 (+2.87%)

Token

Hulk Hogan (HOGAN)
 

Overview

Max Total Supply

24,000,000,000 HOGAN

Holders

53

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.676063392138671875 HOGAN

Value
$0.00
0x7422f9ba4Da9dC421bc76c59992f348BAB191162
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:
Hulkhogan

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

/**
 

                                                                       ╓^)
                                                                 ╓∩H"   ^
                                                             ╓@ ║    ╙╓
                         .─ ─.                           ,∩╨╖   [╗║^`
                      ╓[,     ╝─                    ╓H╜`    ,║╖H"
              ╓───.  ]  ╖H╜`.~~                ,~─╝╝╜    ╓H ╜
            ╖▒╗       ,╚╝``[^ ' ^]    ,~^""╙╜`         ,∩╜
           ╔  ╙░║  ╙   ╓]╗ ╙HH `╖]  /           ╓╗  ║╜`
          ╓` ╗∩       ╜  ]║    ║ ╝╜`     ""░╨"`.╓▒╜
         ╜  ╔  ,,,,∩^*╝H╖╜`╙            ╖@ n╗╖∩╜
       ╓[   ╙╠╜                        ]   ╝
        .╗╥╗H Ñ╖    \╖,        ╥         ╓
      ]   ╗╖,    ,╓╖▒                ` ╓║`
       "╝╝╝╝h╖╓╓H╜╝╝╝  ╚H       ╙`    ]   ]
                      ║ ║               ░ ]
                       ╙╗[ h╗*      `╝    `
                         ╙h╖░          ╚
                             ║        H▒                                                                                        
.__          .__   __   .__                                       __  .__                              
|  |__  __ __|  | |  | _|  |__   ____   _________    ____   _____/  |_|  |__       ____  ____   _____  
|  |  \|  |  \  | |  |/ /  |  \ /  _ \ / ___\__  \  /    \_/ __ \   __\  |  \    _/ ___\/  _ \ /     \ 
|   Y  \  |  /  |_|    <|   Y  (  <_> ) /_/  > __ \|   |  \  ___/|  | |   Y  \   \  \__(  <_> )  Y Y  \
|___|  /____/|____/__|_ \___|  /\____/\___  (____  /___|  /\___  >__| |___|  / /\ \___  >____/|__|_|  /
     \/                \/    \/      /_____/     \/     \/     \/          \/  \/     \/            \/                     
https://twitter.com/hulkhoganeth                                                    
https://www.hulkhoganeth.com/
https://t.me/hulkhoganeth

*/
// File: @openzeppelin/contracts/utils/Context.sol
// SPDX-License-Identifier: BUSL-1.1
// 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: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.9.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 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: @openzeppelin/contracts/token/ERC20/IERC20.sol


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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (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/ERC20.sol


// OpenZeppelin Contracts (last updated v4.9.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.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 {}
}

pragma solidity ^0.8.17;



contract Hulkhogan is ERC20, Ownable {
    address public pool;
    uint256 _startTime;
    uint256 constant _startTotalSupply = 24000000000e18;
    uint256 constant _startMaxWallet = _startTotalSupply / 200;
    uint256 constant _addMaxWalletPerSec =
        (_startTotalSupply - _startMaxWallet) / 138000;

    constructor() ERC20("Hulk Hogan", "HOGAN") {
        _mint(msg.sender, _startTotalSupply);
    }

    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    function start(address poolAddress) external onlyOwner {
        pool = poolAddress;
        _startTime = block.timestamp;
    }

    function maxWallet(address acc) external view returns (uint256) {
        if (pool == address(0) || acc == pool || acc == owner())
            return _startTotalSupply;
        return
            _startMaxWallet +
            (block.timestamp - _startTime) *
            _addMaxWalletPerSec;
    }

    function addMaxWalletPerSec() external pure returns (uint256) {
        return _addMaxWalletPerSec;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        require(
            pool != address(0) || from == owner() || to == owner(),
            "not started"
        );
        require(
            balanceOf(to) + amount <= this.maxWallet(to),
            "max wallet limit"
        );
        super._transfer(from, to, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"addMaxWalletPerSec","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"address","name":"acc","type":"address"}],"name":"maxWallet","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":"pool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"poolAddress","type":"address"}],"name":"start","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"}]

60806040523480156200001157600080fd5b506040518060400160405280600a81526020017f48756c6b20486f67616e000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f484f47414e00000000000000000000000000000000000000000000000000000081525081600390816200008f9190620005a7565b508060049081620000a19190620005a7565b505050620000c4620000b8620000e860201b60201c565b620000f060201b60201c565b620000e2336b4d8c55aefb8c05b5c0000000620001b660201b60201c565b620007a9565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000228576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200021f90620006ef565b60405180910390fd5b6200023c600083836200032360201b60201c565b806002600082825462000250919062000740565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200030391906200078c565b60405180910390a36200031f600083836200032860201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003af57607f821691505b602082108103620003c557620003c462000367565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200042f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003f0565b6200043b8683620003f0565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000488620004826200047c8462000453565b6200045d565b62000453565b9050919050565b6000819050919050565b620004a48362000467565b620004bc620004b3826200048f565b848454620003fd565b825550505050565b600090565b620004d3620004c4565b620004e081848462000499565b505050565b5b818110156200050857620004fc600082620004c9565b600181019050620004e6565b5050565b601f82111562000557576200052181620003cb565b6200052c84620003e0565b810160208510156200053c578190505b620005546200054b85620003e0565b830182620004e5565b50505b505050565b600082821c905092915050565b60006200057c600019846008026200055c565b1980831691505092915050565b600062000597838362000569565b9150826002028217905092915050565b620005b2826200032d565b67ffffffffffffffff811115620005ce57620005cd62000338565b5b620005da825462000396565b620005e78282856200050c565b600060209050601f8311600181146200061f57600084156200060a578287015190505b62000616858262000589565b86555062000686565b601f1984166200062f86620003cb565b60005b82811015620006595784890151825560018201915060208501945060208101905062000632565b8683101562000679578489015162000675601f89168262000569565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620006d7601f836200068e565b9150620006e4826200069f565b602082019050919050565b600060208201905081810360008301526200070a81620006c8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200074d8262000453565b91506200075a8362000453565b925082820190508082111562000775576200077462000711565b5b92915050565b620007868162000453565b82525050565b6000602082019050620007a360008301846200077b565b92915050565b611cb080620007b96000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c80638d855f15116100a2578063a9059cbb11610071578063a9059cbb146102e7578063dd0b281e14610317578063dd62ed3e14610333578063e73793ec14610363578063f2fde38b1461039357610116565b80638d855f151461025d5780638da5cb5b1461027b57806395d89b4114610299578063a457c2d7146102b757610116565b806323b872dd116100e957806323b872dd146101a5578063313ce567146101d557806339509351146101f357806370a0823114610223578063715018a61461025357610116565b806306fdde031461011b578063095ea7b31461013957806316f0115b1461016957806318160ddd14610187575b600080fd5b6101236103af565b6040516101309190611275565b60405180910390f35b610153600480360381019061014e9190611330565b610441565b604051610160919061138b565b60405180910390f35b610171610464565b60405161017e91906113b5565b60405180910390f35b61018f61048a565b60405161019c91906113df565b60405180910390f35b6101bf60048036038101906101ba91906113fa565b610494565b6040516101cc919061138b565b60405180910390f35b6101dd6104c3565b6040516101ea9190611469565b60405180910390f35b61020d60048036038101906102089190611330565b6104cc565b60405161021a919061138b565b60405180910390f35b61023d60048036038101906102389190611484565b610503565b60405161024a91906113df565b60405180910390f35b61025b61054b565b005b61026561055f565b60405161027291906113df565b60405180910390f35b6102836105a4565b60405161029091906113b5565b60405180910390f35b6102a16105ce565b6040516102ae9190611275565b60405180910390f35b6102d160048036038101906102cc9190611330565b610660565b6040516102de919061138b565b60405180910390f35b61030160048036038101906102fc9190611330565b6106d7565b60405161030e919061138b565b60405180910390f35b610331600480360381019061032c9190611484565b6106fa565b005b61034d600480360381019061034891906114b1565b61074d565b60405161035a91906113df565b60405180910390f35b61037d60048036038101906103789190611484565b6107d4565b60405161038a91906113df565b60405180910390f35b6103ad60048036038101906103a89190611484565b610956565b005b6060600380546103be90611520565b80601f01602080910402602001604051908101604052809291908181526020018280546103ea90611520565b80156104375780601f1061040c57610100808354040283529160200191610437565b820191906000526020600020905b81548152906001019060200180831161041a57829003601f168201915b5050505050905090565b60008061044c6109d9565b90506104598185856109e1565b600191505092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b60008061049f6109d9565b90506104ac858285610baa565b6104b7858585610c36565b60019150509392505050565b60006012905090565b6000806104d76109d9565b90506104f88185856104e9858961074d565b6104f39190611580565b6109e1565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610553610e21565b61055d6000610e9f565b565b600062021b1060c86b4d8c55aefb8c05b5c000000061057e91906115e3565b6b4d8c55aefb8c05b5c00000006105959190611614565b61059f91906115e3565b905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105dd90611520565b80601f016020809104026020016040519081016040528092919081815260200182805461060990611520565b80156106565780601f1061062b57610100808354040283529160200191610656565b820191906000526020600020905b81548152906001019060200180831161063957829003601f168201915b5050505050905090565b60008061066b6109d9565b90506000610679828661074d565b9050838110156106be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b5906116ba565b60405180910390fd5b6106cb82868684036109e1565b60019250505092915050565b6000806106e26109d9565b90506106ef818585610c36565b600191505092915050565b610702610e21565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055504260078190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60008073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16148061087f5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b806108bc575061088d6105a4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b156108d5576b4d8c55aefb8c05b5c00000009050610951565b62021b1060c86b4d8c55aefb8c05b5c00000006108f291906115e3565b6b4d8c55aefb8c05b5c00000006109099190611614565b61091391906115e3565b600754426109219190611614565b61092b91906116da565b60c86b4d8c55aefb8c05b5c000000061094491906115e3565b61094e9190611580565b90505b919050565b61095e610e21565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c49061178e565b60405180910390fd5b6109d681610e9f565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4790611820565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab6906118b2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b9d91906113df565b60405180910390a3505050565b6000610bb6848461074d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c305781811015610c22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c199061191e565b60405180910390fd5b610c2f84848484036109e1565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141580610cc65750610c976105a4565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80610d035750610cd46105a4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d399061198a565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff1663e73793ec836040518263ffffffff1660e01b8152600401610d7b91906113b5565b602060405180830381865afa158015610d98573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dbc91906119bf565b81610dc684610503565b610dd09190611580565b1115610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0890611a38565b60405180910390fd5b610e1c838383610f65565b505050565b610e296109d9565b73ffffffffffffffffffffffffffffffffffffffff16610e476105a4565b73ffffffffffffffffffffffffffffffffffffffff1614610e9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9490611aa4565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcb90611b36565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103a90611bc8565b60405180910390fd5b61104e8383836111db565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cb90611c5a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111c291906113df565b60405180910390a36111d58484846111e0565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561121f578082015181840152602081019050611204565b60008484015250505050565b6000601f19601f8301169050919050565b6000611247826111e5565b61125181856111f0565b9350611261818560208601611201565b61126a8161122b565b840191505092915050565b6000602082019050818103600083015261128f818461123c565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112c78261129c565b9050919050565b6112d7816112bc565b81146112e257600080fd5b50565b6000813590506112f4816112ce565b92915050565b6000819050919050565b61130d816112fa565b811461131857600080fd5b50565b60008135905061132a81611304565b92915050565b6000806040838503121561134757611346611297565b5b6000611355858286016112e5565b92505060206113668582860161131b565b9150509250929050565b60008115159050919050565b61138581611370565b82525050565b60006020820190506113a0600083018461137c565b92915050565b6113af816112bc565b82525050565b60006020820190506113ca60008301846113a6565b92915050565b6113d9816112fa565b82525050565b60006020820190506113f460008301846113d0565b92915050565b60008060006060848603121561141357611412611297565b5b6000611421868287016112e5565b9350506020611432868287016112e5565b92505060406114438682870161131b565b9150509250925092565b600060ff82169050919050565b6114638161144d565b82525050565b600060208201905061147e600083018461145a565b92915050565b60006020828403121561149a57611499611297565b5b60006114a8848285016112e5565b91505092915050565b600080604083850312156114c8576114c7611297565b5b60006114d6858286016112e5565b92505060206114e7858286016112e5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061153857607f821691505b60208210810361154b5761154a6114f1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061158b826112fa565b9150611596836112fa565b92508282019050808211156115ae576115ad611551565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006115ee826112fa565b91506115f9836112fa565b925082611609576116086115b4565b5b828204905092915050565b600061161f826112fa565b915061162a836112fa565b925082820390508181111561164257611641611551565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006116a46025836111f0565b91506116af82611648565b604082019050919050565b600060208201905081810360008301526116d381611697565b9050919050565b60006116e5826112fa565b91506116f0836112fa565b92508282026116fe816112fa565b9150828204841483151761171557611714611551565b5b5092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006117786026836111f0565b91506117838261171c565b604082019050919050565b600060208201905081810360008301526117a78161176b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061180a6024836111f0565b9150611815826117ae565b604082019050919050565b60006020820190508181036000830152611839816117fd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061189c6022836111f0565b91506118a782611840565b604082019050919050565b600060208201905081810360008301526118cb8161188f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611908601d836111f0565b9150611913826118d2565b602082019050919050565b60006020820190508181036000830152611937816118fb565b9050919050565b7f6e6f742073746172746564000000000000000000000000000000000000000000600082015250565b6000611974600b836111f0565b915061197f8261193e565b602082019050919050565b600060208201905081810360008301526119a381611967565b9050919050565b6000815190506119b981611304565b92915050565b6000602082840312156119d5576119d4611297565b5b60006119e3848285016119aa565b91505092915050565b7f6d61782077616c6c6574206c696d697400000000000000000000000000000000600082015250565b6000611a226010836111f0565b9150611a2d826119ec565b602082019050919050565b60006020820190508181036000830152611a5181611a15565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a8e6020836111f0565b9150611a9982611a58565b602082019050919050565b60006020820190508181036000830152611abd81611a81565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611b206025836111f0565b9150611b2b82611ac4565b604082019050919050565b60006020820190508181036000830152611b4f81611b13565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611bb26023836111f0565b9150611bbd82611b56565b604082019050919050565b60006020820190508181036000830152611be181611ba5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611c446026836111f0565b9150611c4f82611be8565b604082019050919050565b60006020820190508181036000830152611c7381611c37565b905091905056fea26469706673582212201579ad9de73ca44e81aafb74f3a2e2eaf3963841ba9ddeb9a8c51dd280b4a59164736f6c63430008110033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c80638d855f15116100a2578063a9059cbb11610071578063a9059cbb146102e7578063dd0b281e14610317578063dd62ed3e14610333578063e73793ec14610363578063f2fde38b1461039357610116565b80638d855f151461025d5780638da5cb5b1461027b57806395d89b4114610299578063a457c2d7146102b757610116565b806323b872dd116100e957806323b872dd146101a5578063313ce567146101d557806339509351146101f357806370a0823114610223578063715018a61461025357610116565b806306fdde031461011b578063095ea7b31461013957806316f0115b1461016957806318160ddd14610187575b600080fd5b6101236103af565b6040516101309190611275565b60405180910390f35b610153600480360381019061014e9190611330565b610441565b604051610160919061138b565b60405180910390f35b610171610464565b60405161017e91906113b5565b60405180910390f35b61018f61048a565b60405161019c91906113df565b60405180910390f35b6101bf60048036038101906101ba91906113fa565b610494565b6040516101cc919061138b565b60405180910390f35b6101dd6104c3565b6040516101ea9190611469565b60405180910390f35b61020d60048036038101906102089190611330565b6104cc565b60405161021a919061138b565b60405180910390f35b61023d60048036038101906102389190611484565b610503565b60405161024a91906113df565b60405180910390f35b61025b61054b565b005b61026561055f565b60405161027291906113df565b60405180910390f35b6102836105a4565b60405161029091906113b5565b60405180910390f35b6102a16105ce565b6040516102ae9190611275565b60405180910390f35b6102d160048036038101906102cc9190611330565b610660565b6040516102de919061138b565b60405180910390f35b61030160048036038101906102fc9190611330565b6106d7565b60405161030e919061138b565b60405180910390f35b610331600480360381019061032c9190611484565b6106fa565b005b61034d600480360381019061034891906114b1565b61074d565b60405161035a91906113df565b60405180910390f35b61037d60048036038101906103789190611484565b6107d4565b60405161038a91906113df565b60405180910390f35b6103ad60048036038101906103a89190611484565b610956565b005b6060600380546103be90611520565b80601f01602080910402602001604051908101604052809291908181526020018280546103ea90611520565b80156104375780601f1061040c57610100808354040283529160200191610437565b820191906000526020600020905b81548152906001019060200180831161041a57829003601f168201915b5050505050905090565b60008061044c6109d9565b90506104598185856109e1565b600191505092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b60008061049f6109d9565b90506104ac858285610baa565b6104b7858585610c36565b60019150509392505050565b60006012905090565b6000806104d76109d9565b90506104f88185856104e9858961074d565b6104f39190611580565b6109e1565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610553610e21565b61055d6000610e9f565b565b600062021b1060c86b4d8c55aefb8c05b5c000000061057e91906115e3565b6b4d8c55aefb8c05b5c00000006105959190611614565b61059f91906115e3565b905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105dd90611520565b80601f016020809104026020016040519081016040528092919081815260200182805461060990611520565b80156106565780601f1061062b57610100808354040283529160200191610656565b820191906000526020600020905b81548152906001019060200180831161063957829003601f168201915b5050505050905090565b60008061066b6109d9565b90506000610679828661074d565b9050838110156106be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b5906116ba565b60405180910390fd5b6106cb82868684036109e1565b60019250505092915050565b6000806106e26109d9565b90506106ef818585610c36565b600191505092915050565b610702610e21565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055504260078190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60008073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16148061087f5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b806108bc575061088d6105a4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b156108d5576b4d8c55aefb8c05b5c00000009050610951565b62021b1060c86b4d8c55aefb8c05b5c00000006108f291906115e3565b6b4d8c55aefb8c05b5c00000006109099190611614565b61091391906115e3565b600754426109219190611614565b61092b91906116da565b60c86b4d8c55aefb8c05b5c000000061094491906115e3565b61094e9190611580565b90505b919050565b61095e610e21565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c49061178e565b60405180910390fd5b6109d681610e9f565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4790611820565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab6906118b2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b9d91906113df565b60405180910390a3505050565b6000610bb6848461074d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c305781811015610c22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c199061191e565b60405180910390fd5b610c2f84848484036109e1565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141580610cc65750610c976105a4565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80610d035750610cd46105a4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d399061198a565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff1663e73793ec836040518263ffffffff1660e01b8152600401610d7b91906113b5565b602060405180830381865afa158015610d98573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dbc91906119bf565b81610dc684610503565b610dd09190611580565b1115610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0890611a38565b60405180910390fd5b610e1c838383610f65565b505050565b610e296109d9565b73ffffffffffffffffffffffffffffffffffffffff16610e476105a4565b73ffffffffffffffffffffffffffffffffffffffff1614610e9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9490611aa4565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcb90611b36565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103a90611bc8565b60405180910390fd5b61104e8383836111db565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cb90611c5a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111c291906113df565b60405180910390a36111d58484846111e0565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561121f578082015181840152602081019050611204565b60008484015250505050565b6000601f19601f8301169050919050565b6000611247826111e5565b61125181856111f0565b9350611261818560208601611201565b61126a8161122b565b840191505092915050565b6000602082019050818103600083015261128f818461123c565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112c78261129c565b9050919050565b6112d7816112bc565b81146112e257600080fd5b50565b6000813590506112f4816112ce565b92915050565b6000819050919050565b61130d816112fa565b811461131857600080fd5b50565b60008135905061132a81611304565b92915050565b6000806040838503121561134757611346611297565b5b6000611355858286016112e5565b92505060206113668582860161131b565b9150509250929050565b60008115159050919050565b61138581611370565b82525050565b60006020820190506113a0600083018461137c565b92915050565b6113af816112bc565b82525050565b60006020820190506113ca60008301846113a6565b92915050565b6113d9816112fa565b82525050565b60006020820190506113f460008301846113d0565b92915050565b60008060006060848603121561141357611412611297565b5b6000611421868287016112e5565b9350506020611432868287016112e5565b92505060406114438682870161131b565b9150509250925092565b600060ff82169050919050565b6114638161144d565b82525050565b600060208201905061147e600083018461145a565b92915050565b60006020828403121561149a57611499611297565b5b60006114a8848285016112e5565b91505092915050565b600080604083850312156114c8576114c7611297565b5b60006114d6858286016112e5565b92505060206114e7858286016112e5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061153857607f821691505b60208210810361154b5761154a6114f1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061158b826112fa565b9150611596836112fa565b92508282019050808211156115ae576115ad611551565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006115ee826112fa565b91506115f9836112fa565b925082611609576116086115b4565b5b828204905092915050565b600061161f826112fa565b915061162a836112fa565b925082820390508181111561164257611641611551565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006116a46025836111f0565b91506116af82611648565b604082019050919050565b600060208201905081810360008301526116d381611697565b9050919050565b60006116e5826112fa565b91506116f0836112fa565b92508282026116fe816112fa565b9150828204841483151761171557611714611551565b5b5092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006117786026836111f0565b91506117838261171c565b604082019050919050565b600060208201905081810360008301526117a78161176b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061180a6024836111f0565b9150611815826117ae565b604082019050919050565b60006020820190508181036000830152611839816117fd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061189c6022836111f0565b91506118a782611840565b604082019050919050565b600060208201905081810360008301526118cb8161188f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611908601d836111f0565b9150611913826118d2565b602082019050919050565b60006020820190508181036000830152611937816118fb565b9050919050565b7f6e6f742073746172746564000000000000000000000000000000000000000000600082015250565b6000611974600b836111f0565b915061197f8261193e565b602082019050919050565b600060208201905081810360008301526119a381611967565b9050919050565b6000815190506119b981611304565b92915050565b6000602082840312156119d5576119d4611297565b5b60006119e3848285016119aa565b91505092915050565b7f6d61782077616c6c6574206c696d697400000000000000000000000000000000600082015250565b6000611a226010836111f0565b9150611a2d826119ec565b602082019050919050565b60006020820190508181036000830152611a5181611a15565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a8e6020836111f0565b9150611a9982611a58565b602082019050919050565b60006020820190508181036000830152611abd81611a81565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611b206025836111f0565b9150611b2b82611ac4565b604082019050919050565b60006020820190508181036000830152611b4f81611b13565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611bb26023836111f0565b9150611bbd82611b56565b604082019050919050565b60006020820190508181036000830152611be181611ba5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611c446026836111f0565b9150611c4f82611be8565b604082019050919050565b60006020820190508181036000830152611c7381611c37565b905091905056fea26469706673582212201579ad9de73ca44e81aafb74f3a2e2eaf3963841ba9ddeb9a8c51dd280b4a59164736f6c63430008110033

Deployed Bytecode Sourcemap

22520:1517:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11495:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13855:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22564:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12624:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14636:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22947:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15306:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12795:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4950:103;;;:::i;:::-;;23499:107;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4309:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11714:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16047:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13128:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23048:131;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13384:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23187:304;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5208:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11495:100;11549:13;11582:5;11575:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11495:100;:::o;13855:201::-;13938:4;13955:13;13971:12;:10;:12::i;:::-;13955:28;;13994:32;14003:5;14010:7;14019:6;13994:8;:32::i;:::-;14044:4;14037:11;;;13855:201;;;;:::o;22564:19::-;;;;;;;;;;;;;:::o;12624:108::-;12685:7;12712:12;;12705:19;;12624:108;:::o;14636:261::-;14733:4;14750:15;14768:12;:10;:12::i;:::-;14750:30;;14791:38;14807:4;14813:7;14822:6;14791:15;:38::i;:::-;14840:27;14850:4;14856:2;14860:6;14840:9;:27::i;:::-;14885:4;14878:11;;;14636:261;;;;;:::o;22947:93::-;23005:5;23030:2;23023:9;;22947:93;:::o;15306:238::-;15394:4;15411:13;15427:12;:10;:12::i;:::-;15411:28;;15450:64;15459:5;15466:7;15503:10;15475:25;15485:5;15492:7;15475:9;:25::i;:::-;:38;;;;:::i;:::-;15450:8;:64::i;:::-;15532:4;15525:11;;;15306:238;;;;:::o;12795:127::-;12869:7;12896:9;:18;12906:7;12896:18;;;;;;;;;;;;;;;;12889:25;;12795:127;;;:::o;4950:103::-;4195:13;:11;:13::i;:::-;5015:30:::1;5042:1;5015:18;:30::i;:::-;4950:103::o:0;23499:107::-;23552:7;22826:6;22728:3;22652:14;22708:23;;;;:::i;:::-;22652:14;22787:35;;;;:::i;:::-;22786:46;;;;:::i;:::-;23572:26;;23499:107;:::o;4309:87::-;4355:7;4382:6;;;;;;;;;;;4375:13;;4309:87;:::o;11714:104::-;11770:13;11803:7;11796:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11714:104;:::o;16047:436::-;16140:4;16157:13;16173:12;:10;:12::i;:::-;16157:28;;16196:24;16223:25;16233:5;16240:7;16223:9;:25::i;:::-;16196:52;;16287:15;16267:16;:35;;16259:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;16380:60;16389:5;16396:7;16424:15;16405:16;:34;16380:8;:60::i;:::-;16471:4;16464:11;;;;16047:436;;;;:::o;13128:193::-;13207:4;13224:13;13240:12;:10;:12::i;:::-;13224:28;;13263;13273:5;13280:2;13284:6;13263:9;:28::i;:::-;13309:4;13302:11;;;13128:193;;;;:::o;23048:131::-;4195:13;:11;:13::i;:::-;23121:11:::1;23114:4;;:18;;;;;;;;;;;;;;;;;;23156:15;23143:10;:28;;;;23048:131:::0;:::o;13384:151::-;13473:7;13500:11;:18;13512:5;13500:18;;;;;;;;;;;;;;;:27;13519:7;13500:27;;;;;;;;;;;;;;;;13493:34;;13384:151;;;;:::o;23187:304::-;23242:7;23282:1;23266:18;;:4;;;;;;;;;;;:18;;;:33;;;;23295:4;;;;;;;;;;;23288:11;;:3;:11;;;23266:33;:51;;;;23310:7;:5;:7::i;:::-;23303:14;;:3;:14;;;23266:51;23262:94;;;22652:14;23332:24;;;;23262:94;22826:6;22728:3;22652:14;22708:23;;;;:::i;:::-;22652:14;22787:35;;;;:::i;:::-;22786:46;;;;:::i;:::-;23437:10;;23419:15;:28;;;;:::i;:::-;23418:65;;;;:::i;:::-;22728:3;22652:14;22708:23;;;;:::i;:::-;23387:96;;;;:::i;:::-;23367:116;;23187:304;;;;:::o;5208:201::-;4195:13;:11;:13::i;:::-;5317:1:::1;5297:22;;:8;:22;;::::0;5289:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;5373:28;5392:8;5373:18;:28::i;:::-;5208:201:::0;:::o;2860:98::-;2913:7;2940:10;2933:17;;2860:98;:::o;20040:346::-;20159:1;20142:19;;:5;:19;;;20134:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20240:1;20221:21;;:7;:21;;;20213:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20324:6;20294:11;:18;20306:5;20294:18;;;;;;;;;;;;;;;:27;20313:7;20294:27;;;;;;;;;;;;;;;:36;;;;20362:7;20346:32;;20355:5;20346:32;;;20371:6;20346:32;;;;;;:::i;:::-;;;;;;;;20040:346;;;:::o;20677:419::-;20778:24;20805:25;20815:5;20822:7;20805:9;:25::i;:::-;20778:52;;20865:17;20845:16;:37;20841:248;;20927:6;20907:16;:26;;20899:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21011:51;21020:5;21027:7;21055:6;21036:16;:25;21011:8;:51::i;:::-;20841:248;20767:329;20677:419;;;:::o;23614:420::-;23784:1;23768:18;;:4;;;;;;;;;;;:18;;;;:37;;;;23798:7;:5;:7::i;:::-;23790:15;;:4;:15;;;23768:37;:54;;;;23815:7;:5;:7::i;:::-;23809:13;;:2;:13;;;23768:54;23746:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;23920:4;:14;;;23935:2;23920:18;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;23910:6;23894:13;23904:2;23894:9;:13::i;:::-;:22;;;;:::i;:::-;:44;;23872:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;23993:33;24009:4;24015:2;24019:6;23993:15;:33::i;:::-;23614:420;;;:::o;4474:132::-;4549:12;:10;:12::i;:::-;4538:23;;:7;:5;:7::i;:::-;:23;;;4530:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4474:132::o;5569:191::-;5643:16;5662:6;;;;;;;;;;;5643:25;;5688:8;5679:6;;:17;;;;;;;;;;;;;;;;;;5743:8;5712:40;;5733:8;5712:40;;;;;;;;;;;;5632:128;5569:191;:::o;16953:806::-;17066:1;17050:18;;:4;:18;;;17042:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17143:1;17129:16;;:2;:16;;;17121:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;17198:38;17219:4;17225:2;17229:6;17198:20;:38::i;:::-;17249:19;17271:9;:15;17281:4;17271:15;;;;;;;;;;;;;;;;17249:37;;17320:6;17305:11;:21;;17297:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;17437:6;17423:11;:20;17405:9;:15;17415:4;17405:15;;;;;;;;;;;;;;;:38;;;;17640:6;17623:9;:13;17633:2;17623:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;17690:2;17675:26;;17684:4;17675:26;;;17694:6;17675:26;;;;;;:::i;:::-;;;;;;;;17714:37;17734:4;17740:2;17744:6;17714:19;:37::i;:::-;17031:728;16953:806;;;:::o;21696:91::-;;;;:::o;22391:90::-;;;;:::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:118::-;3885:24;3903:5;3885:24;:::i;:::-;3880:3;3873:37;3798:118;;:::o;3922:222::-;4015:4;4053:2;4042:9;4038:18;4030:26;;4066:71;4134:1;4123:9;4119:17;4110:6;4066:71;:::i;:::-;3922:222;;;;:::o;4150:619::-;4227:6;4235;4243;4292:2;4280:9;4271:7;4267:23;4263:32;4260:119;;;4298:79;;:::i;:::-;4260:119;4418:1;4443:53;4488:7;4479:6;4468:9;4464:22;4443:53;:::i;:::-;4433:63;;4389:117;4545:2;4571:53;4616:7;4607:6;4596:9;4592:22;4571:53;:::i;:::-;4561:63;;4516:118;4673:2;4699:53;4744:7;4735:6;4724:9;4720:22;4699:53;:::i;:::-;4689:63;;4644:118;4150:619;;;;;:::o;4775:86::-;4810:7;4850:4;4843:5;4839:16;4828:27;;4775:86;;;:::o;4867:112::-;4950:22;4966:5;4950:22;:::i;:::-;4945:3;4938:35;4867:112;;:::o;4985:214::-;5074:4;5112:2;5101:9;5097:18;5089:26;;5125:67;5189:1;5178:9;5174:17;5165:6;5125:67;:::i;:::-;4985:214;;;;:::o;5205:329::-;5264:6;5313:2;5301:9;5292:7;5288:23;5284:32;5281:119;;;5319:79;;:::i;:::-;5281:119;5439:1;5464:53;5509:7;5500:6;5489:9;5485:22;5464:53;:::i;:::-;5454:63;;5410:117;5205:329;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:180::-;6580:77;6577:1;6570:88;6677:4;6674:1;6667:15;6701:4;6698:1;6691:15;6718:191;6758:3;6777:20;6795:1;6777:20;:::i;:::-;6772:25;;6811:20;6829:1;6811:20;:::i;:::-;6806:25;;6854:1;6851;6847:9;6840:16;;6875:3;6872:1;6869:10;6866:36;;;6882:18;;:::i;:::-;6866:36;6718:191;;;;:::o;6915:180::-;6963:77;6960:1;6953:88;7060:4;7057:1;7050:15;7084:4;7081:1;7074:15;7101:185;7141:1;7158:20;7176:1;7158:20;:::i;:::-;7153:25;;7192:20;7210:1;7192:20;:::i;:::-;7187:25;;7231:1;7221:35;;7236:18;;:::i;:::-;7221:35;7278:1;7275;7271:9;7266:14;;7101:185;;;;:::o;7292:194::-;7332:4;7352:20;7370:1;7352:20;:::i;:::-;7347:25;;7386:20;7404:1;7386:20;:::i;:::-;7381:25;;7430:1;7427;7423:9;7415:17;;7454:1;7448:4;7445:11;7442:37;;;7459:18;;:::i;:::-;7442:37;7292:194;;;;:::o;7492:224::-;7632:34;7628:1;7620:6;7616:14;7609:58;7701:7;7696:2;7688:6;7684:15;7677:32;7492:224;:::o;7722:366::-;7864:3;7885:67;7949:2;7944:3;7885:67;:::i;:::-;7878:74;;7961:93;8050:3;7961:93;:::i;:::-;8079:2;8074:3;8070:12;8063:19;;7722:366;;;:::o;8094:419::-;8260:4;8298:2;8287:9;8283:18;8275:26;;8347:9;8341:4;8337:20;8333:1;8322:9;8318:17;8311:47;8375:131;8501:4;8375:131;:::i;:::-;8367:139;;8094:419;;;:::o;8519:410::-;8559:7;8582:20;8600:1;8582:20;:::i;:::-;8577:25;;8616:20;8634:1;8616:20;:::i;:::-;8611:25;;8671:1;8668;8664:9;8693:30;8711:11;8693:30;:::i;:::-;8682:41;;8872:1;8863:7;8859:15;8856:1;8853:22;8833:1;8826:9;8806:83;8783:139;;8902:18;;:::i;:::-;8783:139;8567:362;8519:410;;;;:::o;8935:225::-;9075:34;9071:1;9063:6;9059:14;9052:58;9144:8;9139:2;9131:6;9127:15;9120:33;8935:225;:::o;9166:366::-;9308:3;9329:67;9393:2;9388:3;9329:67;:::i;:::-;9322:74;;9405:93;9494:3;9405:93;:::i;:::-;9523:2;9518:3;9514:12;9507:19;;9166:366;;;:::o;9538:419::-;9704:4;9742:2;9731:9;9727:18;9719:26;;9791:9;9785:4;9781:20;9777:1;9766:9;9762:17;9755:47;9819:131;9945:4;9819:131;:::i;:::-;9811:139;;9538:419;;;:::o;9963:223::-;10103:34;10099:1;10091:6;10087:14;10080:58;10172:6;10167:2;10159:6;10155:15;10148:31;9963:223;:::o;10192:366::-;10334:3;10355:67;10419:2;10414:3;10355:67;:::i;:::-;10348:74;;10431:93;10520:3;10431:93;:::i;:::-;10549:2;10544:3;10540:12;10533:19;;10192:366;;;:::o;10564:419::-;10730:4;10768:2;10757:9;10753:18;10745:26;;10817:9;10811:4;10807:20;10803:1;10792:9;10788:17;10781:47;10845:131;10971:4;10845:131;:::i;:::-;10837:139;;10564:419;;;:::o;10989:221::-;11129:34;11125:1;11117:6;11113:14;11106:58;11198:4;11193:2;11185:6;11181:15;11174:29;10989:221;:::o;11216:366::-;11358:3;11379:67;11443:2;11438:3;11379:67;:::i;:::-;11372:74;;11455:93;11544:3;11455:93;:::i;:::-;11573:2;11568:3;11564:12;11557:19;;11216:366;;;:::o;11588:419::-;11754:4;11792:2;11781:9;11777:18;11769:26;;11841:9;11835:4;11831:20;11827:1;11816:9;11812:17;11805:47;11869:131;11995:4;11869:131;:::i;:::-;11861:139;;11588:419;;;:::o;12013:179::-;12153:31;12149:1;12141:6;12137:14;12130:55;12013:179;:::o;12198:366::-;12340:3;12361:67;12425:2;12420:3;12361:67;:::i;:::-;12354:74;;12437:93;12526:3;12437:93;:::i;:::-;12555:2;12550:3;12546:12;12539:19;;12198:366;;;:::o;12570:419::-;12736:4;12774:2;12763:9;12759:18;12751:26;;12823:9;12817:4;12813:20;12809:1;12798:9;12794:17;12787:47;12851:131;12977:4;12851:131;:::i;:::-;12843:139;;12570:419;;;:::o;12995:161::-;13135:13;13131:1;13123:6;13119:14;13112:37;12995:161;:::o;13162:366::-;13304:3;13325:67;13389:2;13384:3;13325:67;:::i;:::-;13318:74;;13401:93;13490:3;13401:93;:::i;:::-;13519:2;13514:3;13510:12;13503:19;;13162:366;;;:::o;13534:419::-;13700:4;13738:2;13727:9;13723:18;13715:26;;13787:9;13781:4;13777:20;13773:1;13762:9;13758:17;13751:47;13815:131;13941:4;13815:131;:::i;:::-;13807:139;;13534:419;;;:::o;13959:143::-;14016:5;14047:6;14041:13;14032:22;;14063:33;14090:5;14063:33;:::i;:::-;13959:143;;;;:::o;14108:351::-;14178:6;14227:2;14215:9;14206:7;14202:23;14198:32;14195:119;;;14233:79;;:::i;:::-;14195:119;14353:1;14378:64;14434:7;14425:6;14414:9;14410:22;14378:64;:::i;:::-;14368:74;;14324:128;14108:351;;;;:::o;14465:166::-;14605:18;14601:1;14593:6;14589:14;14582:42;14465:166;:::o;14637:366::-;14779:3;14800:67;14864:2;14859:3;14800:67;:::i;:::-;14793:74;;14876:93;14965:3;14876:93;:::i;:::-;14994:2;14989:3;14985:12;14978:19;;14637:366;;;:::o;15009:419::-;15175:4;15213:2;15202:9;15198:18;15190:26;;15262:9;15256:4;15252:20;15248:1;15237:9;15233:17;15226:47;15290:131;15416:4;15290:131;:::i;:::-;15282:139;;15009:419;;;:::o;15434:182::-;15574:34;15570:1;15562:6;15558:14;15551:58;15434:182;:::o;15622:366::-;15764:3;15785:67;15849:2;15844:3;15785:67;:::i;:::-;15778:74;;15861:93;15950:3;15861:93;:::i;:::-;15979:2;15974:3;15970:12;15963:19;;15622:366;;;:::o;15994:419::-;16160:4;16198:2;16187:9;16183:18;16175:26;;16247:9;16241:4;16237:20;16233:1;16222:9;16218:17;16211:47;16275:131;16401:4;16275:131;:::i;:::-;16267:139;;15994:419;;;:::o;16419:224::-;16559:34;16555:1;16547:6;16543:14;16536:58;16628:7;16623:2;16615:6;16611:15;16604:32;16419:224;:::o;16649:366::-;16791:3;16812:67;16876:2;16871:3;16812:67;:::i;:::-;16805:74;;16888:93;16977:3;16888:93;:::i;:::-;17006:2;17001:3;16997:12;16990:19;;16649:366;;;:::o;17021:419::-;17187:4;17225:2;17214:9;17210:18;17202:26;;17274:9;17268:4;17264:20;17260:1;17249:9;17245:17;17238:47;17302:131;17428:4;17302:131;:::i;:::-;17294:139;;17021:419;;;:::o;17446:222::-;17586:34;17582:1;17574:6;17570:14;17563:58;17655:5;17650:2;17642:6;17638:15;17631:30;17446:222;:::o;17674:366::-;17816:3;17837:67;17901:2;17896:3;17837:67;:::i;:::-;17830:74;;17913:93;18002:3;17913:93;:::i;:::-;18031:2;18026:3;18022:12;18015:19;;17674:366;;;:::o;18046:419::-;18212:4;18250:2;18239:9;18235:18;18227:26;;18299:9;18293:4;18289:20;18285:1;18274:9;18270:17;18263:47;18327:131;18453:4;18327:131;:::i;:::-;18319:139;;18046:419;;;:::o;18471:225::-;18611:34;18607:1;18599:6;18595:14;18588:58;18680:8;18675:2;18667:6;18663:15;18656:33;18471:225;:::o;18702:366::-;18844:3;18865:67;18929:2;18924:3;18865:67;:::i;:::-;18858:74;;18941:93;19030:3;18941:93;:::i;:::-;19059:2;19054:3;19050:12;19043:19;;18702:366;;;:::o;19074:419::-;19240:4;19278:2;19267:9;19263:18;19255:26;;19327:9;19321:4;19317:20;19313:1;19302:9;19298:17;19291:47;19355:131;19481:4;19355:131;:::i;:::-;19347:139;;19074:419;;;:::o

Swarm Source

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