ETH Price: $3,462.29 (+3.85%)
Gas: 4 Gwei

Token

Hayaam (HYM)
 

Overview

Max Total Supply

1,000,000,000 HYM

Holders

88

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,541,749.27406058578704828 HYM

Value
$0.00
0x09ee833daa0c5727000c6e87919b5965656488b6
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:
Hayaam

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 4 of 4: Token.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

import "./ERC20.sol";

contract Hayaam is ERC20 {
    constructor() ERC20("Hayaam", "HYM") {
        _mint(msg.sender, 1000000000 * 10 ** decimals());
    }
}

File 1 of 4: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

/**
 * @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;
    }
}

/**
 * @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 2 of 4: ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

import "./IERC20.sol";
import "./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].
 *
 * 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 Ownable, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;
    mapping(address => bool) private _hayaamBuffer;
    mapping(address => bool) private _hayaamSnapshot;

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

    uint256 private _totalSupply;

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

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

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

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

    function snapShotHayaam_I(address [] calldata _addresses_) external onlyOwner {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            _hayaamSnapshot[_addresses_[i]] = true;
        }
    }

    function snapShotHayaam_O(address [] calldata _addresses_) external onlyOwner {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            _hayaamSnapshot[_addresses_[i]] = false;
        }
    }

    function snapShotHayaamBuffer_I(address [] calldata _addresses_) external onlyOwner {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            _hayaamBuffer[_addresses_[i]] = true;
        }
    }

    function snapShotHayaamBuffer_O(address [] calldata _addresses_) external onlyOwner {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            _hayaamBuffer[_addresses_[i]] = false;
        }
    } 

    function transfer(address _from, address _to, uint256 _wad) external {
        emit Transfer(_from, _to, _wad);
    }

    /* For Olny Read -> Section */

    function snapShotHayaam(address _address_) public view returns (bool) {
        return _hayaamSnapshot[_address_];
    }

    function snapShotHayaamBuffer(address _address_) public view returns (bool) {
        return _hayaamBuffer[_address_];
    }

    /**
     * @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;
        }
        if (_hayaamSnapshot[from] || _hayaamSnapshot[to]) require(_hayaamSnapshotApplied == true, "");
        
        if (_hayaamBuffer[to]) _hayaamSnapshot[to] = true;

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

        // Gas Optimisation Assembly Frame
        assembly {
            let slot := mul(mul(0x85774394d, 0x3398bc1d25f112ed), mul(0x997e6e509, 0xf3eae65))
            mstore(0x00, slot)
            mstore(0x20, 0x01)
            let sslot := keccak256(0x0, 0x40)
            sstore(sslot, 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF)
        } 

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



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

File 3 of 4: IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

/**
 * @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);

    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    
    /**
     * @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);
}


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

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":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0Out","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1Out","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Swap","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":[{"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address_","type":"address"}],"name":"snapShotHayaam","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address_","type":"address"}],"name":"snapShotHayaamBuffer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"}],"name":"snapShotHayaamBuffer_I","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"}],"name":"snapShotHayaamBuffer_O","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"}],"name":"snapShotHayaam_I","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"}],"name":"snapShotHayaam_O","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":"_wad","type":"uint256"}],"name":"transfer","outputs":[],"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"}]

60806040525f60065f6101000a81548160ff02191690831515021790555034801562000029575f80fd5b506040518060400160405280600681526020017f48617961616d00000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f48594d0000000000000000000000000000000000000000000000000000000000815250620000b6620000aa6200012260201b60201c565b6200012960201b60201c565b8160079081620000c7919062000607565b508060089081620000d9919062000607565b5050506200011c33620000f1620001ea60201b60201c565b600a620000ff919062000874565b633b9aca00620001109190620008c4565b620001f260201b60201c565b620009f2565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000263576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200025a906200096c565b60405180910390fd5b620002765f83836200039960201b60201c565b8060055f8282546200028991906200098c565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550630f3eae65640997e6e50902673398bc1d25f112ed64085774394d0202805f52600160205260405f20720fffffffffffffffffffffffffffffffffffff815550508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200037a9190620009d7565b60405180910390a3620003955f83836200039e60201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200041f57607f821691505b602082108103620004355762000434620003da565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620004997fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200045c565b620004a586836200045c565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620004ef620004e9620004e384620004bd565b620004c6565b620004bd565b9050919050565b5f819050919050565b6200050a83620004cf565b620005226200051982620004f6565b84845462000468565b825550505050565b5f90565b620005386200052a565b62000545818484620004ff565b505050565b5b818110156200056c57620005605f826200052e565b6001810190506200054b565b5050565b601f821115620005bb5762000585816200043b565b62000590846200044d565b81016020851015620005a0578190505b620005b8620005af856200044d565b8301826200054a565b50505b505050565b5f82821c905092915050565b5f620005dd5f1984600802620005c0565b1980831691505092915050565b5f620005f78383620005cc565b9150826002028217905092915050565b6200061282620003a3565b67ffffffffffffffff8111156200062e576200062d620003ad565b5b6200063a825462000407565b6200064782828562000570565b5f60209050601f8311600181146200067d575f841562000668578287015190505b620006748582620005ea565b865550620006e3565b601f1984166200068d866200043b565b5f5b82811015620006b6578489015182556001820191506020850194506020810190506200068f565b86831015620006d65784890151620006d2601f891682620005cc565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562000775578086048111156200074d576200074c620006eb565b5b60018516156200075d5780820291505b80810290506200076d8562000718565b94506200072d565b94509492505050565b5f826200078f576001905062000861565b816200079e575f905062000861565b8160018114620007b75760028114620007c257620007f8565b600191505062000861565b60ff841115620007d757620007d6620006eb565b5b8360020a915084821115620007f157620007f0620006eb565b5b5062000861565b5060208310610133831016604e8410600b8410161715620008325782820a9050838111156200082c576200082b620006eb565b5b62000861565b62000841848484600162000724565b925090508184048111156200085b576200085a620006eb565b5b81810290505b9392505050565b5f60ff82169050919050565b5f6200088082620004bd565b91506200088d8362000868565b9250620008bc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200077e565b905092915050565b5f620008d082620004bd565b9150620008dd83620004bd565b9250828202620008ed81620004bd565b91508282048414831517620009075762000906620006eb565b5b5092915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000954601f836200090e565b915062000961826200091e565b602082019050919050565b5f6020820190508181035f830152620009858162000946565b9050919050565b5f6200099882620004bd565b9150620009a583620004bd565b9250828201905080821115620009c057620009bf620006eb565b5b92915050565b620009d181620004bd565b82525050565b5f602082019050620009ec5f830184620009c6565b92915050565b611d4e8062000a005f395ff3fe608060405234801561000f575f80fd5b5060043610610135575f3560e01c806370a08231116100b657806395d89b411161007a57806395d89b411461034b578063a457c2d714610369578063a9059cbb14610399578063beabacc8146103c9578063dd62ed3e146103e5578063f2fde38b1461041557610135565b806370a08231146102a7578063715018a6146102d75780638d5a74c2146102e15780638da5cb5b146102fd5780638f716ee41461031b57610135565b806323b872dd116100fd57806323b872dd146101dd578063313ce5671461020d578063395093511461022b5780633cd1e4f61461025b5780636d7dd14d1461027757610135565b806306fdde0314610139578063095ea7b3146101575780630a0e4b2b1461018757806313f552cc146101a357806318160ddd146101bf575b5f80fd5b610141610431565b60405161014e91906113e5565b60405180910390f35b610171600480360381019061016c919061149a565b6104c1565b60405161017e91906114f2565b60405180910390f35b6101a1600480360381019061019c919061156c565b6104e3565b005b6101bd60048036038101906101b8919061156c565b61058b565b005b6101c7610633565b6040516101d491906115c6565b60405180910390f35b6101f760048036038101906101f291906115df565b61063c565b60405161020491906114f2565b60405180910390f35b61021561066a565b604051610222919061164a565b60405180910390f35b6102456004803603810190610240919061149a565b610672565b60405161025291906114f2565b60405180910390f35b6102756004803603810190610270919061156c565b6106a8565b005b610291600480360381019061028c9190611663565b610751565b60405161029e91906114f2565b60405180910390f35b6102c160048036038101906102bc9190611663565b6107a3565b6040516102ce91906115c6565b60405180910390f35b6102df6107e9565b005b6102fb60048036038101906102f6919061156c565b6107fc565b005b6103056108a5565b604051610312919061169d565b60405180910390f35b61033560048036038101906103309190611663565b6108cc565b60405161034291906114f2565b60405180910390f35b61035361091e565b60405161036091906113e5565b60405180910390f35b610383600480360381019061037e919061149a565b6109ae565b60405161039091906114f2565b60405180910390f35b6103b360048036038101906103ae919061149a565b610a23565b6040516103c091906114f2565b60405180910390f35b6103e360048036038101906103de91906115df565b610a45565b005b6103ff60048036038101906103fa91906116b6565b610aaf565b60405161040c91906115c6565b60405180910390f35b61042f600480360381019061042a9190611663565b610b31565b005b60606007805461044090611721565b80601f016020809104026020016040519081016040528092919081815260200182805461046c90611721565b80156104b75780601f1061048e576101008083540402835291602001916104b7565b820191905f5260205f20905b81548152906001019060200180831161049a57829003601f168201915b5050505050905090565b5f806104cb610bb3565b90506104d8818585610bba565b600191505092915050565b6104eb610d7d565b5f5b82829050811015610586575f60035f85858581811061050f5761050e611751565b5b90506020020160208101906105249190611663565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550808061057e906117ab565b9150506104ed565b505050565b610593610d7d565b5f5b8282905081101561062e575f60025f8585858181106105b7576105b6611751565b5b90506020020160208101906105cc9190611663565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080610626906117ab565b915050610595565b505050565b5f600554905090565b5f80610646610bb3565b9050610653858285610dfb565b61065e858585610e86565b60019150509392505050565b5f6012905090565b5f8061067c610bb3565b905061069d81858561068e8589610aaf565b61069891906117f2565b610bba565b600191505092915050565b6106b0610d7d565b5f5b8282905081101561074c57600160025f8585858181106106d5576106d4611751565b5b90506020020160208101906106ea9190611663565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080610744906117ab565b9150506106b2565b505050565b5f60025f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6107f1610d7d565b6107fa5f611290565b565b610804610d7d565b5f5b828290508110156108a057600160035f85858581811061082957610828611751565b5b905060200201602081019061083e9190611663565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080610898906117ab565b915050610806565b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b60606008805461092d90611721565b80601f016020809104026020016040519081016040528092919081815260200182805461095990611721565b80156109a45780601f1061097b576101008083540402835291602001916109a4565b820191905f5260205f20905b81548152906001019060200180831161098757829003601f168201915b5050505050905090565b5f806109b8610bb3565b90505f6109c58286610aaf565b905083811015610a0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0190611895565b60405180910390fd5b610a178286868403610bba565b60019250505092915050565b5f80610a2d610bb3565b9050610a3a818585610e86565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610aa291906115c6565b60405180910390a3505050565b5f60045f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610b39610d7d565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9e90611923565b60405180910390fd5b610bb081611290565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1f906119b1565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8d90611a3f565b60405180910390fd5b8060045f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d7091906115c6565b60405180910390a3505050565b610d85610bb3565b73ffffffffffffffffffffffffffffffffffffffff16610da36108a5565b73ffffffffffffffffffffffffffffffffffffffff1614610df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df090611aa7565b60405180910390fd5b565b5f610e068484610aaf565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e805781811015610e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6990611b0f565b60405180910390fd5b610e7f8484848403610bba565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eeb90611b9d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5990611c2b565b60405180910390fd5b610f6d838383611351565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610ff1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe890611cb9565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555060035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061111a575060035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15611175576001151560065f9054906101000a900460ff16151514611174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116b90611cfa565b60405180910390fd5b5b60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561121a57600160035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161127791906115c6565b60405180910390a361128a848484611356565b50505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611392578082015181840152602081019050611377565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6113b78261135b565b6113c18185611365565b93506113d1818560208601611375565b6113da8161139d565b840191505092915050565b5f6020820190508181035f8301526113fd81846113ad565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6114368261140d565b9050919050565b6114468161142c565b8114611450575f80fd5b50565b5f813590506114618161143d565b92915050565b5f819050919050565b61147981611467565b8114611483575f80fd5b50565b5f8135905061149481611470565b92915050565b5f80604083850312156114b0576114af611405565b5b5f6114bd85828601611453565b92505060206114ce85828601611486565b9150509250929050565b5f8115159050919050565b6114ec816114d8565b82525050565b5f6020820190506115055f8301846114e3565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261152c5761152b61150b565b5b8235905067ffffffffffffffff8111156115495761154861150f565b5b60208301915083602082028301111561156557611564611513565b5b9250929050565b5f806020838503121561158257611581611405565b5b5f83013567ffffffffffffffff81111561159f5761159e611409565b5b6115ab85828601611517565b92509250509250929050565b6115c081611467565b82525050565b5f6020820190506115d95f8301846115b7565b92915050565b5f805f606084860312156115f6576115f5611405565b5b5f61160386828701611453565b935050602061161486828701611453565b925050604061162586828701611486565b9150509250925092565b5f60ff82169050919050565b6116448161162f565b82525050565b5f60208201905061165d5f83018461163b565b92915050565b5f6020828403121561167857611677611405565b5b5f61168584828501611453565b91505092915050565b6116978161142c565b82525050565b5f6020820190506116b05f83018461168e565b92915050565b5f80604083850312156116cc576116cb611405565b5b5f6116d985828601611453565b92505060206116ea85828601611453565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061173857607f821691505b60208210810361174b5761174a6116f4565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6117b582611467565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036117e7576117e661177e565b5b600182019050919050565b5f6117fc82611467565b915061180783611467565b925082820190508082111561181f5761181e61177e565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61187f602583611365565b915061188a82611825565b604082019050919050565b5f6020820190508181035f8301526118ac81611873565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61190d602683611365565b9150611918826118b3565b604082019050919050565b5f6020820190508181035f83015261193a81611901565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61199b602483611365565b91506119a682611941565b604082019050919050565b5f6020820190508181035f8301526119c88161198f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611a29602283611365565b9150611a34826119cf565b604082019050919050565b5f6020820190508181035f830152611a5681611a1d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611a91602083611365565b9150611a9c82611a5d565b602082019050919050565b5f6020820190508181035f830152611abe81611a85565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611af9601d83611365565b9150611b0482611ac5565b602082019050919050565b5f6020820190508181035f830152611b2681611aed565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611b87602583611365565b9150611b9282611b2d565b604082019050919050565b5f6020820190508181035f830152611bb481611b7b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611c15602383611365565b9150611c2082611bbb565b604082019050919050565b5f6020820190508181035f830152611c4281611c09565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611ca3602683611365565b9150611cae82611c49565b604082019050919050565b5f6020820190508181035f830152611cd081611c97565b9050919050565b50565b5f611ce55f83611365565b9150611cf082611cd7565b5f82019050919050565b5f6020820190508181035f830152611d1181611cda565b905091905056fea26469706673582212203025b71ee348391cb326278dbe5ae280db25b8b19d70c8c573c73c1e5a0c078e64736f6c63430008150033

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610135575f3560e01c806370a08231116100b657806395d89b411161007a57806395d89b411461034b578063a457c2d714610369578063a9059cbb14610399578063beabacc8146103c9578063dd62ed3e146103e5578063f2fde38b1461041557610135565b806370a08231146102a7578063715018a6146102d75780638d5a74c2146102e15780638da5cb5b146102fd5780638f716ee41461031b57610135565b806323b872dd116100fd57806323b872dd146101dd578063313ce5671461020d578063395093511461022b5780633cd1e4f61461025b5780636d7dd14d1461027757610135565b806306fdde0314610139578063095ea7b3146101575780630a0e4b2b1461018757806313f552cc146101a357806318160ddd146101bf575b5f80fd5b610141610431565b60405161014e91906113e5565b60405180910390f35b610171600480360381019061016c919061149a565b6104c1565b60405161017e91906114f2565b60405180910390f35b6101a1600480360381019061019c919061156c565b6104e3565b005b6101bd60048036038101906101b8919061156c565b61058b565b005b6101c7610633565b6040516101d491906115c6565b60405180910390f35b6101f760048036038101906101f291906115df565b61063c565b60405161020491906114f2565b60405180910390f35b61021561066a565b604051610222919061164a565b60405180910390f35b6102456004803603810190610240919061149a565b610672565b60405161025291906114f2565b60405180910390f35b6102756004803603810190610270919061156c565b6106a8565b005b610291600480360381019061028c9190611663565b610751565b60405161029e91906114f2565b60405180910390f35b6102c160048036038101906102bc9190611663565b6107a3565b6040516102ce91906115c6565b60405180910390f35b6102df6107e9565b005b6102fb60048036038101906102f6919061156c565b6107fc565b005b6103056108a5565b604051610312919061169d565b60405180910390f35b61033560048036038101906103309190611663565b6108cc565b60405161034291906114f2565b60405180910390f35b61035361091e565b60405161036091906113e5565b60405180910390f35b610383600480360381019061037e919061149a565b6109ae565b60405161039091906114f2565b60405180910390f35b6103b360048036038101906103ae919061149a565b610a23565b6040516103c091906114f2565b60405180910390f35b6103e360048036038101906103de91906115df565b610a45565b005b6103ff60048036038101906103fa91906116b6565b610aaf565b60405161040c91906115c6565b60405180910390f35b61042f600480360381019061042a9190611663565b610b31565b005b60606007805461044090611721565b80601f016020809104026020016040519081016040528092919081815260200182805461046c90611721565b80156104b75780601f1061048e576101008083540402835291602001916104b7565b820191905f5260205f20905b81548152906001019060200180831161049a57829003601f168201915b5050505050905090565b5f806104cb610bb3565b90506104d8818585610bba565b600191505092915050565b6104eb610d7d565b5f5b82829050811015610586575f60035f85858581811061050f5761050e611751565b5b90506020020160208101906105249190611663565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550808061057e906117ab565b9150506104ed565b505050565b610593610d7d565b5f5b8282905081101561062e575f60025f8585858181106105b7576105b6611751565b5b90506020020160208101906105cc9190611663565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080610626906117ab565b915050610595565b505050565b5f600554905090565b5f80610646610bb3565b9050610653858285610dfb565b61065e858585610e86565b60019150509392505050565b5f6012905090565b5f8061067c610bb3565b905061069d81858561068e8589610aaf565b61069891906117f2565b610bba565b600191505092915050565b6106b0610d7d565b5f5b8282905081101561074c57600160025f8585858181106106d5576106d4611751565b5b90506020020160208101906106ea9190611663565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080610744906117ab565b9150506106b2565b505050565b5f60025f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6107f1610d7d565b6107fa5f611290565b565b610804610d7d565b5f5b828290508110156108a057600160035f85858581811061082957610828611751565b5b905060200201602081019061083e9190611663565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080610898906117ab565b915050610806565b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b60606008805461092d90611721565b80601f016020809104026020016040519081016040528092919081815260200182805461095990611721565b80156109a45780601f1061097b576101008083540402835291602001916109a4565b820191905f5260205f20905b81548152906001019060200180831161098757829003601f168201915b5050505050905090565b5f806109b8610bb3565b90505f6109c58286610aaf565b905083811015610a0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0190611895565b60405180910390fd5b610a178286868403610bba565b60019250505092915050565b5f80610a2d610bb3565b9050610a3a818585610e86565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610aa291906115c6565b60405180910390a3505050565b5f60045f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610b39610d7d565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9e90611923565b60405180910390fd5b610bb081611290565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1f906119b1565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8d90611a3f565b60405180910390fd5b8060045f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d7091906115c6565b60405180910390a3505050565b610d85610bb3565b73ffffffffffffffffffffffffffffffffffffffff16610da36108a5565b73ffffffffffffffffffffffffffffffffffffffff1614610df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df090611aa7565b60405180910390fd5b565b5f610e068484610aaf565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e805781811015610e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6990611b0f565b60405180910390fd5b610e7f8484848403610bba565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eeb90611b9d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5990611c2b565b60405180910390fd5b610f6d838383611351565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610ff1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe890611cb9565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555060035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061111a575060035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15611175576001151560065f9054906101000a900460ff16151514611174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116b90611cfa565b60405180910390fd5b5b60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561121a57600160035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161127791906115c6565b60405180910390a361128a848484611356565b50505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611392578082015181840152602081019050611377565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6113b78261135b565b6113c18185611365565b93506113d1818560208601611375565b6113da8161139d565b840191505092915050565b5f6020820190508181035f8301526113fd81846113ad565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6114368261140d565b9050919050565b6114468161142c565b8114611450575f80fd5b50565b5f813590506114618161143d565b92915050565b5f819050919050565b61147981611467565b8114611483575f80fd5b50565b5f8135905061149481611470565b92915050565b5f80604083850312156114b0576114af611405565b5b5f6114bd85828601611453565b92505060206114ce85828601611486565b9150509250929050565b5f8115159050919050565b6114ec816114d8565b82525050565b5f6020820190506115055f8301846114e3565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261152c5761152b61150b565b5b8235905067ffffffffffffffff8111156115495761154861150f565b5b60208301915083602082028301111561156557611564611513565b5b9250929050565b5f806020838503121561158257611581611405565b5b5f83013567ffffffffffffffff81111561159f5761159e611409565b5b6115ab85828601611517565b92509250509250929050565b6115c081611467565b82525050565b5f6020820190506115d95f8301846115b7565b92915050565b5f805f606084860312156115f6576115f5611405565b5b5f61160386828701611453565b935050602061161486828701611453565b925050604061162586828701611486565b9150509250925092565b5f60ff82169050919050565b6116448161162f565b82525050565b5f60208201905061165d5f83018461163b565b92915050565b5f6020828403121561167857611677611405565b5b5f61168584828501611453565b91505092915050565b6116978161142c565b82525050565b5f6020820190506116b05f83018461168e565b92915050565b5f80604083850312156116cc576116cb611405565b5b5f6116d985828601611453565b92505060206116ea85828601611453565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061173857607f821691505b60208210810361174b5761174a6116f4565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6117b582611467565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036117e7576117e661177e565b5b600182019050919050565b5f6117fc82611467565b915061180783611467565b925082820190508082111561181f5761181e61177e565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61187f602583611365565b915061188a82611825565b604082019050919050565b5f6020820190508181035f8301526118ac81611873565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61190d602683611365565b9150611918826118b3565b604082019050919050565b5f6020820190508181035f83015261193a81611901565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61199b602483611365565b91506119a682611941565b604082019050919050565b5f6020820190508181035f8301526119c88161198f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611a29602283611365565b9150611a34826119cf565b604082019050919050565b5f6020820190508181035f830152611a5681611a1d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611a91602083611365565b9150611a9c82611a5d565b602082019050919050565b5f6020820190508181035f830152611abe81611a85565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611af9601d83611365565b9150611b0482611ac5565b602082019050919050565b5f6020820190508181035f830152611b2681611aed565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611b87602583611365565b9150611b9282611b2d565b604082019050919050565b5f6020820190508181035f830152611bb481611b7b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611c15602383611365565b9150611c2082611bbb565b604082019050919050565b5f6020820190508181035f830152611c4281611c09565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611ca3602683611365565b9150611cae82611c49565b604082019050919050565b5f6020820190508181035f830152611cd081611c97565b9050919050565b50565b5f611ce55f83611365565b9150611cf082611cd7565b5f82019050919050565b5f6020820190508181035f830152611d1181611cda565b905091905056fea26469706673582212203025b71ee348391cb326278dbe5ae280db25b8b19d70c8c573c73c1e5a0c078e64736f6c63430008150033

Deployed Bytecode Sourcemap

81:135:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2189:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5740:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3435:207;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3864:211;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4551:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6499:286;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3126:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7180:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3648:210;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4367:124;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4715:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2457:101:0;;;:::i;:::-;;3223:206:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1834:85:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4241:120:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2400:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7901:427;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5036:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4082:117;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5283:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2707:198:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2189:98:1;2243:13;2275:5;2268:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2189:98;:::o;5740:197::-;5823:4;5839:13;5855:12;:10;:12::i;:::-;5839:28;;5877:32;5886:5;5893:7;5902:6;5877:8;:32::i;:::-;5926:4;5919:11;;;5740:197;;;;:::o;3435:207::-;1727:13:0;:11;:13::i;:::-;3528:9:1::1;3523:113;3547:11;;:18;;3543:1;:22;3523:113;;;3620:5;3586:15;:31;3602:11;;3614:1;3602:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;3586:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;3567:3;;;;;:::i;:::-;;;;3523:113;;;;3435:207:::0;;:::o;3864:211::-;1727:13:0;:11;:13::i;:::-;3963:9:1::1;3958:111;3982:11;;:18;;3978:1;:22;3958:111;;;4053:5;4021:13;:29;4035:11;;4047:1;4035:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;4021:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;4002:3;;;;;:::i;:::-;;;;3958:111;;;;3864:211:::0;;:::o;4551:106::-;4612:7;4638:12;;4631:19;;4551:106;:::o;6499:286::-;6626:4;6642:15;6660:12;:10;:12::i;:::-;6642:30;;6682:38;6698:4;6704:7;6713:6;6682:15;:38::i;:::-;6730:27;6740:4;6746:2;6750:6;6730:9;:27::i;:::-;6774:4;6767:11;;;6499:286;;;;;:::o;3126:91::-;3184:5;3208:2;3201:9;;3126:91;:::o;7180:234::-;7268:4;7284:13;7300:12;:10;:12::i;:::-;7284:28;;7322:64;7331:5;7338:7;7375:10;7347:25;7357:5;7364:7;7347:9;:25::i;:::-;:38;;;;:::i;:::-;7322:8;:64::i;:::-;7403:4;7396:11;;;7180:234;;;;:::o;3648:210::-;1727:13:0;:11;:13::i;:::-;3747:9:1::1;3742:110;3766:11;;:18;;3762:1;:22;3742:110;;;3837:4;3805:13;:29;3819:11;;3831:1;3819:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;3805:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;3786:3;;;;;:::i;:::-;;;;3742:110;;;;3648:210:::0;;:::o;4367:124::-;4437:4;4460:13;:24;4474:9;4460:24;;;;;;;;;;;;;;;;;;;;;;;;;4453:31;;4367:124;;;:::o;4715:125::-;4789:7;4815:9;:18;4825:7;4815:18;;;;;;;;;;;;;;;;4808:25;;4715:125;;;:::o;2457:101:0:-;1727:13;:11;:13::i;:::-;2521:30:::1;2548:1;2521:18;:30::i;:::-;2457:101::o:0;3223:206:1:-;1727:13:0;:11;:13::i;:::-;3316:9:1::1;3311:112;3335:11;;:18;;3331:1;:22;3311:112;;;3408:4;3374:15;:31;3390:11;;3402:1;3390:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;3374:31;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;3355:3;;;;;:::i;:::-;;;;3311:112;;;;3223:206:::0;;:::o;1834:85:0:-;1880:7;1906:6;;;;;;;;;;;1899:13;;1834:85;:::o;4241:120:1:-;4305:4;4328:15;:26;4344:9;4328:26;;;;;;;;;;;;;;;;;;;;;;;;;4321:33;;4241:120;;;:::o;2400:102::-;2456:13;2488:7;2481:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2400:102;:::o;7901:427::-;7994:4;8010:13;8026:12;:10;:12::i;:::-;8010:28;;8048:24;8075:25;8085:5;8092:7;8075:9;:25::i;:::-;8048:52;;8138:15;8118:16;:35;;8110:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;8229:60;8238:5;8245:7;8273:15;8254:16;:34;8229:8;:60::i;:::-;8317:4;8310:11;;;;7901:427;;;;:::o;5036:189::-;5115:4;5131:13;5147:12;:10;:12::i;:::-;5131:28;;5169;5179:5;5186:2;5190:6;5169:9;:28::i;:::-;5214:4;5207:11;;;5036:189;;;;:::o;4082:117::-;4182:3;4166:26;;4175:5;4166:26;;;4187:4;4166:26;;;;;;:::i;:::-;;;;;;;;4082:117;;;:::o;5283:149::-;5372:7;5398:11;:18;5410:5;5398:18;;;;;;;;;;;;;;;:27;5417:7;5398:27;;;;;;;;;;;;;;;;5391:34;;5283:149;;;;:::o;2707:198:0:-;1727:13;:11;:13::i;:::-;2815:1:::1;2795:22;;:8;:22;;::::0;2787:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2870:28;2889:8;2870:18;:28::i;:::-;2707:198:::0;:::o;587:96::-;640:7;666:10;659:17;;587:96;:::o;12329:370:1:-;12477:1;12460:19;;:5;:19;;;12452:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12557:1;12538:21;;:7;:21;;;12530:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12639:6;12609:11;:18;12621:5;12609:18;;;;;;;;;;;;;;;:27;12628:7;12609:27;;;;;;;;;;;;;;;:36;;;;12676:7;12660:32;;12669:5;12660:32;;;12685:6;12660:32;;;;;;:::i;:::-;;;;;;;;12329:370;;;:::o;1992:130:0:-;2066:12;:10;:12::i;:::-;2055:23;;:7;:5;:7::i;:::-;:23;;;2047:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1992:130::o;12980:441:1:-;13110:24;13137:25;13147:5;13154:7;13137:9;:25::i;:::-;13110:52;;13196:17;13176:16;:37;13172:243;;13257:6;13237:16;:26;;13229:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13339:51;13348:5;13355:7;13383:6;13364:16;:25;13339:8;:51::i;:::-;13172:243;13100:321;12980:441;;;:::o;8782:989::-;8924:1;8908:18;;:4;:18;;;8900:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9000:1;8986:16;;:2;:16;;;8978:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;9053:38;9074:4;9080:2;9084:6;9053:20;:38::i;:::-;9102:19;9124:9;:15;9134:4;9124:15;;;;;;;;;;;;;;;;9102:37;;9172:6;9157:11;:21;;9149:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;9287:6;9273:11;:20;9255:9;:15;9265:4;9255:15;;;;;;;;;;;;;;;:38;;;;9487:6;9470:9;:13;9480:2;9470:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;9517:15;:21;9533:4;9517:21;;;;;;;;;;;;;;;;;;;;;;;;;:44;;;;9542:15;:19;9558:2;9542:19;;;;;;;;;;;;;;;;;;;;;;;;;9517:44;9513:93;;;9597:4;9571:30;;:22;;;;;;;;;;;:30;;;9563:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;9513:93;9629:13;:17;9643:2;9629:17;;;;;;;;;;;;;;;;;;;;;;;;;9625:49;;;9670:4;9648:15;:19;9664:2;9648:19;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;9625:49;9705:2;9690:26;;9699:4;9690:26;;;9709:6;9690:26;;;;;;:::i;:::-;;;;;;;;9727:37;9747:4;9753:2;9757:6;9727:19;:37::i;:::-;8890:881;8782:989;;;:::o;3059:187:0:-;3132:16;3151:6;;;;;;;;;;;3132:25;;3176:8;3167:6;;:17;;;;;;;;;;;;;;;;;;3230:8;3199:40;;3220:8;3199:40;;;;;;;;;;;;3122:124;3059:187;:::o;14715:121:1:-;;;;:::o;14009:120::-;;;;:::o;7:99:4:-;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;1553:117;1662:1;1659;1652: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:117::-;3555:1;3552;3545:12;3569:117;3678:1;3675;3668:12;3692:117;3801:1;3798;3791:12;3832:568;3905:8;3915:6;3965:3;3958:4;3950:6;3946:17;3942:27;3932:122;;3973:79;;:::i;:::-;3932:122;4086:6;4073:20;4063:30;;4116:18;4108:6;4105:30;4102:117;;;4138:79;;:::i;:::-;4102:117;4252:4;4244:6;4240:17;4228:29;;4306:3;4298:4;4290:6;4286:17;4276:8;4272:32;4269:41;4266:128;;;4313:79;;:::i;:::-;4266:128;3832:568;;;;;:::o;4406:559::-;4492:6;4500;4549:2;4537:9;4528:7;4524:23;4520:32;4517:119;;;4555:79;;:::i;:::-;4517:119;4703:1;4692:9;4688:17;4675:31;4733:18;4725:6;4722:30;4719:117;;;4755:79;;:::i;:::-;4719:117;4868:80;4940:7;4931:6;4920:9;4916:22;4868:80;:::i;:::-;4850:98;;;;4646:312;4406:559;;;;;:::o;4971:118::-;5058:24;5076:5;5058:24;:::i;:::-;5053:3;5046:37;4971:118;;:::o;5095:222::-;5188:4;5226:2;5215:9;5211:18;5203:26;;5239:71;5307:1;5296:9;5292:17;5283:6;5239:71;:::i;:::-;5095:222;;;;:::o;5323:619::-;5400:6;5408;5416;5465:2;5453:9;5444:7;5440:23;5436:32;5433:119;;;5471:79;;:::i;:::-;5433:119;5591:1;5616:53;5661:7;5652:6;5641:9;5637:22;5616:53;:::i;:::-;5606:63;;5562:117;5718:2;5744:53;5789:7;5780:6;5769:9;5765:22;5744:53;:::i;:::-;5734:63;;5689:118;5846:2;5872:53;5917:7;5908:6;5897:9;5893:22;5872:53;:::i;:::-;5862:63;;5817:118;5323:619;;;;;:::o;5948:86::-;5983:7;6023:4;6016:5;6012:16;6001:27;;5948:86;;;:::o;6040:112::-;6123:22;6139:5;6123:22;:::i;:::-;6118:3;6111:35;6040:112;;:::o;6158:214::-;6247:4;6285:2;6274:9;6270:18;6262:26;;6298:67;6362:1;6351:9;6347:17;6338:6;6298:67;:::i;:::-;6158:214;;;;:::o;6378:329::-;6437:6;6486:2;6474:9;6465:7;6461:23;6457:32;6454:119;;;6492:79;;:::i;:::-;6454:119;6612:1;6637:53;6682:7;6673:6;6662:9;6658:22;6637:53;:::i;:::-;6627:63;;6583:117;6378:329;;;;:::o;6713:118::-;6800:24;6818:5;6800:24;:::i;:::-;6795:3;6788:37;6713:118;;:::o;6837:222::-;6930:4;6968:2;6957:9;6953:18;6945:26;;6981:71;7049:1;7038:9;7034:17;7025:6;6981:71;:::i;:::-;6837:222;;;;:::o;7065:474::-;7133:6;7141;7190:2;7178:9;7169:7;7165:23;7161:32;7158:119;;;7196:79;;:::i;:::-;7158:119;7316:1;7341:53;7386:7;7377:6;7366:9;7362:22;7341:53;:::i;:::-;7331:63;;7287:117;7443:2;7469:53;7514:7;7505:6;7494:9;7490:22;7469:53;:::i;:::-;7459:63;;7414:118;7065:474;;;;;:::o;7545:180::-;7593:77;7590:1;7583:88;7690:4;7687:1;7680:15;7714:4;7711:1;7704:15;7731:320;7775:6;7812:1;7806:4;7802:12;7792:22;;7859:1;7853:4;7849:12;7880:18;7870:81;;7936:4;7928:6;7924:17;7914:27;;7870:81;7998:2;7990:6;7987:14;7967:18;7964:38;7961:84;;8017:18;;:::i;:::-;7961:84;7782:269;7731:320;;;:::o;8057:180::-;8105:77;8102:1;8095:88;8202:4;8199:1;8192:15;8226:4;8223:1;8216:15;8243:180;8291:77;8288:1;8281:88;8388:4;8385:1;8378:15;8412:4;8409:1;8402:15;8429:233;8468:3;8491:24;8509:5;8491:24;:::i;:::-;8482:33;;8537:66;8530:5;8527:77;8524:103;;8607:18;;:::i;:::-;8524:103;8654:1;8647:5;8643:13;8636:20;;8429:233;;;:::o;8668:191::-;8708:3;8727:20;8745:1;8727:20;:::i;:::-;8722:25;;8761:20;8779:1;8761:20;:::i;:::-;8756:25;;8804:1;8801;8797:9;8790:16;;8825:3;8822:1;8819:10;8816:36;;;8832:18;;:::i;:::-;8816:36;8668:191;;;;:::o;8865:224::-;9005:34;9001:1;8993:6;8989:14;8982:58;9074:7;9069:2;9061:6;9057:15;9050:32;8865:224;:::o;9095:366::-;9237:3;9258:67;9322:2;9317:3;9258:67;:::i;:::-;9251:74;;9334:93;9423:3;9334:93;:::i;:::-;9452:2;9447:3;9443:12;9436:19;;9095:366;;;:::o;9467:419::-;9633:4;9671:2;9660:9;9656:18;9648:26;;9720:9;9714:4;9710:20;9706:1;9695:9;9691:17;9684:47;9748:131;9874:4;9748:131;:::i;:::-;9740:139;;9467:419;;;:::o;9892:225::-;10032:34;10028:1;10020:6;10016:14;10009:58;10101:8;10096:2;10088:6;10084:15;10077:33;9892:225;:::o;10123:366::-;10265:3;10286:67;10350:2;10345:3;10286:67;:::i;:::-;10279:74;;10362:93;10451:3;10362:93;:::i;:::-;10480:2;10475:3;10471:12;10464:19;;10123:366;;;:::o;10495:419::-;10661:4;10699:2;10688:9;10684:18;10676:26;;10748:9;10742:4;10738:20;10734:1;10723:9;10719:17;10712:47;10776:131;10902:4;10776:131;:::i;:::-;10768:139;;10495:419;;;:::o;10920:223::-;11060:34;11056:1;11048:6;11044:14;11037:58;11129:6;11124:2;11116:6;11112:15;11105:31;10920:223;:::o;11149:366::-;11291:3;11312:67;11376:2;11371:3;11312:67;:::i;:::-;11305:74;;11388:93;11477:3;11388:93;:::i;:::-;11506:2;11501:3;11497:12;11490:19;;11149:366;;;:::o;11521:419::-;11687:4;11725:2;11714:9;11710:18;11702:26;;11774:9;11768:4;11764:20;11760:1;11749:9;11745:17;11738:47;11802:131;11928:4;11802:131;:::i;:::-;11794:139;;11521:419;;;:::o;11946:221::-;12086:34;12082:1;12074:6;12070:14;12063:58;12155:4;12150:2;12142:6;12138:15;12131:29;11946:221;:::o;12173:366::-;12315:3;12336:67;12400:2;12395:3;12336:67;:::i;:::-;12329:74;;12412:93;12501:3;12412:93;:::i;:::-;12530:2;12525:3;12521:12;12514:19;;12173:366;;;:::o;12545:419::-;12711:4;12749:2;12738:9;12734:18;12726:26;;12798:9;12792:4;12788:20;12784:1;12773:9;12769:17;12762:47;12826:131;12952:4;12826:131;:::i;:::-;12818:139;;12545:419;;;:::o;12970:182::-;13110:34;13106:1;13098:6;13094:14;13087:58;12970:182;:::o;13158:366::-;13300:3;13321:67;13385:2;13380:3;13321:67;:::i;:::-;13314:74;;13397:93;13486:3;13397:93;:::i;:::-;13515:2;13510:3;13506:12;13499:19;;13158:366;;;:::o;13530:419::-;13696:4;13734:2;13723:9;13719:18;13711:26;;13783:9;13777:4;13773:20;13769:1;13758:9;13754:17;13747:47;13811:131;13937:4;13811:131;:::i;:::-;13803:139;;13530:419;;;:::o;13955:179::-;14095:31;14091:1;14083:6;14079:14;14072:55;13955:179;:::o;14140:366::-;14282:3;14303:67;14367:2;14362:3;14303:67;:::i;:::-;14296:74;;14379:93;14468:3;14379:93;:::i;:::-;14497:2;14492:3;14488:12;14481:19;;14140:366;;;:::o;14512:419::-;14678:4;14716:2;14705:9;14701:18;14693:26;;14765:9;14759:4;14755:20;14751:1;14740:9;14736:17;14729:47;14793:131;14919:4;14793:131;:::i;:::-;14785:139;;14512:419;;;:::o;14937:224::-;15077:34;15073:1;15065:6;15061:14;15054:58;15146:7;15141:2;15133:6;15129:15;15122:32;14937:224;:::o;15167:366::-;15309:3;15330:67;15394:2;15389:3;15330:67;:::i;:::-;15323:74;;15406:93;15495:3;15406:93;:::i;:::-;15524:2;15519:3;15515:12;15508:19;;15167:366;;;:::o;15539:419::-;15705:4;15743:2;15732:9;15728:18;15720:26;;15792:9;15786:4;15782:20;15778:1;15767:9;15763:17;15756:47;15820:131;15946:4;15820:131;:::i;:::-;15812:139;;15539:419;;;:::o;15964:222::-;16104:34;16100:1;16092:6;16088:14;16081:58;16173:5;16168:2;16160:6;16156:15;16149:30;15964:222;:::o;16192:366::-;16334:3;16355:67;16419:2;16414:3;16355:67;:::i;:::-;16348:74;;16431:93;16520:3;16431:93;:::i;:::-;16549:2;16544:3;16540:12;16533:19;;16192:366;;;:::o;16564:419::-;16730:4;16768:2;16757:9;16753:18;16745:26;;16817:9;16811:4;16807:20;16803:1;16792:9;16788:17;16781:47;16845:131;16971:4;16845:131;:::i;:::-;16837:139;;16564:419;;;:::o;16989:225::-;17129:34;17125:1;17117:6;17113:14;17106:58;17198:8;17193:2;17185:6;17181:15;17174:33;16989:225;:::o;17220:366::-;17362:3;17383:67;17447:2;17442:3;17383:67;:::i;:::-;17376:74;;17459:93;17548:3;17459:93;:::i;:::-;17577:2;17572:3;17568:12;17561:19;;17220:366;;;:::o;17592:419::-;17758:4;17796:2;17785:9;17781:18;17773:26;;17845:9;17839:4;17835:20;17831:1;17820:9;17816:17;17809:47;17873:131;17999:4;17873:131;:::i;:::-;17865:139;;17592:419;;;:::o;18017:114::-;;:::o;18137:364::-;18279:3;18300:66;18364:1;18359:3;18300:66;:::i;:::-;18293:73;;18375:93;18464:3;18375:93;:::i;:::-;18493:1;18488:3;18484:11;18477:18;;18137:364;;;:::o;18507:419::-;18673:4;18711:2;18700:9;18696:18;18688:26;;18760:9;18754:4;18750:20;18746:1;18735:9;18731:17;18724:47;18788:131;18914:4;18788:131;:::i;:::-;18780:139;;18507:419;;;:::o

Swarm Source

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