ETH Price: $2,913.87 (-3.02%)
Gas: 2 Gwei

Token

Arthur (Arthur)
 

Overview

Max Total Supply

10,000,000 Arthur

Holders

357

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
Arthur

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-09
*/

// SPDX-License-Identifier: UNLICENSED

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

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


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

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


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * 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 increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// File: contracts/Arthur.sol


pragma solidity ^0.8.0;




contract Arthur is ERC20, ERC20Burnable, Ownable {
    uint256 private constant INITIAL_SUPPLY = 10000000 * 10**18;

    constructor() ERC20("Arthur", "Arthur") {
        _mint(msg.sender, INITIAL_SUPPLY);
    }

    function distributeTokens(address distributionWallet) external onlyOwner {
        uint256 supply = balanceOf(msg.sender);
        require(supply == INITIAL_SUPPLY, "Tokens already distributed");

        _transfer(msg.sender, distributionWallet, supply);
    }
}

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":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","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":"distributionWallet","type":"address"}],"name":"distributeTokens","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":[],"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":"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"}]

60806040523480156200001157600080fd5b506040518060400160405280600681526020017f41727468757200000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f41727468757200000000000000000000000000000000000000000000000000008152508160039080519060200190620000969291906200033b565b508060049080519060200190620000af9291906200033b565b505050620000d2620000c6620000f560201b60201c565b620000fd60201b60201c565b620000ef336a084595161401484a000000620001c360201b60201c565b62000589565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000236576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200022d906200043e565b60405180910390fd5b6200024a600083836200033160201b60201c565b80600260008282546200025e91906200048e565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000311919062000460565b60405180910390a36200032d600083836200033660201b60201c565b5050565b505050565b505050565b8280546200034990620004f5565b90600052602060002090601f0160209004810192826200036d5760008555620003b9565b82601f106200038857805160ff1916838001178555620003b9565b82800160010185558215620003b9579182015b82811115620003b85782518255916020019190600101906200039b565b5b509050620003c89190620003cc565b5090565b5b80821115620003e7576000816000905550600101620003cd565b5090565b6000620003fa601f836200047d565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6200043881620004eb565b82525050565b600060208201905081810360008301526200045981620003eb565b9050919050565b60006020820190506200047760008301846200042d565b92915050565b600082825260208201905092915050565b60006200049b82620004eb565b9150620004a883620004eb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620004e057620004df6200052b565b5b828201905092915050565b6000819050919050565b600060028204905060018216806200050e57607f821691505b602082108114156200052557620005246200055a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b611a0e80620005996000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146102a8578063a9059cbb146102d8578063b1d17c9814610308578063dd62ed3e14610324578063f2fde38b146103545761010b565b8063715018a61461024657806379cc6790146102505780638da5cb5b1461026c57806395d89b411461028a5761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806342966c68146101fa57806370a08231146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610370565b6040516101259190611637565b60405180910390f35b610148600480360381019061014391906110d1565b610402565b604051610155919061161c565b60405180910390f35b610166610425565b60405161017391906117d9565b60405180910390f35b61019660048036038101906101919190611082565b61042f565b6040516101a3919061161c565b60405180910390f35b6101b461045e565b6040516101c191906117f4565b60405180910390f35b6101e460048036038101906101df91906110d1565b610467565b6040516101f1919061161c565b60405180910390f35b610214600480360381019061020f919061110d565b61049e565b005b610230600480360381019061022b919061101d565b6104b2565b60405161023d91906117d9565b60405180910390f35b61024e6104fa565b005b61026a600480360381019061026591906110d1565b61050e565b005b61027461052e565b6040516102819190611601565b60405180910390f35b610292610558565b60405161029f9190611637565b60405180910390f35b6102c260048036038101906102bd91906110d1565b6105ea565b6040516102cf919061161c565b60405180910390f35b6102f260048036038101906102ed91906110d1565b610661565b6040516102ff919061161c565b60405180910390f35b610322600480360381019061031d919061101d565b610684565b005b61033e60048036038101906103399190611046565b6106f5565b60405161034b91906117d9565b60405180910390f35b61036e6004803603810190610369919061101d565b61077c565b005b60606003805461037f90611909565b80601f01602080910402602001604051908101604052809291908181526020018280546103ab90611909565b80156103f85780601f106103cd576101008083540402835291602001916103f8565b820191906000526020600020905b8154815290600101906020018083116103db57829003601f168201915b5050505050905090565b60008061040d610800565b905061041a818585610808565b600191505092915050565b6000600254905090565b60008061043a610800565b90506104478582856109d3565b610452858585610a5f565b60019150509392505050565b60006012905090565b600080610472610800565b905061049381858561048485896106f5565b61048e919061182b565b610808565b600191505092915050565b6104af6104a9610800565b82610cd7565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610502610ea5565b61050c6000610f23565b565b6105208261051a610800565b836109d3565b61052a8282610cd7565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461056790611909565b80601f016020809104026020016040519081016040528092919081815260200182805461059390611909565b80156105e05780601f106105b5576101008083540402835291602001916105e0565b820191906000526020600020905b8154815290600101906020018083116105c357829003601f168201915b5050505050905090565b6000806105f5610800565b9050600061060382866106f5565b905083811015610648576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063f906117b9565b60405180910390fd5b6106558286868403610808565b60019250505092915050565b60008061066c610800565b9050610679818585610a5f565b600191505092915050565b61068c610ea5565b6000610697336104b2565b90506a084595161401484a00000081146106e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106dd906116f9565b60405180910390fd5b6106f1338383610a5f565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610784610ea5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156107f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107eb90611699565b60405180910390fd5b6107fd81610f23565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610878576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086f90611799565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156108e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108df906116b9565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109c691906117d9565b60405180910390a3505050565b60006109df84846106f5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a595781811015610a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a42906116d9565b60405180910390fd5b610a588484848403610808565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac690611779565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3690611659565b60405180910390fd5b610b4a838383610fe9565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc790611719565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cbe91906117d9565b60405180910390a3610cd1848484610fee565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3e90611759565b60405180910390fd5b610d5382600083610fe9565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd090611679565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e8c91906117d9565b60405180910390a3610ea083600084610fee565b505050565b610ead610800565b73ffffffffffffffffffffffffffffffffffffffff16610ecb61052e565b73ffffffffffffffffffffffffffffffffffffffff1614610f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1890611739565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081359050611002816119aa565b92915050565b600081359050611017816119c1565b92915050565b60006020828403121561102f57600080fd5b600061103d84828501610ff3565b91505092915050565b6000806040838503121561105957600080fd5b600061106785828601610ff3565b925050602061107885828601610ff3565b9150509250929050565b60008060006060848603121561109757600080fd5b60006110a586828701610ff3565b93505060206110b686828701610ff3565b92505060406110c786828701611008565b9150509250925092565b600080604083850312156110e457600080fd5b60006110f285828601610ff3565b925050602061110385828601611008565b9150509250929050565b60006020828403121561111f57600080fd5b600061112d84828501611008565b91505092915050565b61113f81611881565b82525050565b61114e81611893565b82525050565b600061115f8261180f565b611169818561181a565b93506111798185602086016118d6565b61118281611999565b840191505092915050565b600061119a60238361181a565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061120060228361181a565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061126660268361181a565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006112cc60228361181a565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611332601d8361181a565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b6000611372601a8361181a565b91507f546f6b656e7320616c72656164792064697374726962757465640000000000006000830152602082019050919050565b60006113b260268361181a565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061141860208361181a565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061145860218361181a565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114be60258361181a565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061152460248361181a565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061158a60258361181a565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6115ec816118bf565b82525050565b6115fb816118c9565b82525050565b60006020820190506116166000830184611136565b92915050565b60006020820190506116316000830184611145565b92915050565b600060208201905081810360008301526116518184611154565b905092915050565b600060208201905081810360008301526116728161118d565b9050919050565b60006020820190508181036000830152611692816111f3565b9050919050565b600060208201905081810360008301526116b281611259565b9050919050565b600060208201905081810360008301526116d2816112bf565b9050919050565b600060208201905081810360008301526116f281611325565b9050919050565b6000602082019050818103600083015261171281611365565b9050919050565b60006020820190508181036000830152611732816113a5565b9050919050565b600060208201905081810360008301526117528161140b565b9050919050565b600060208201905081810360008301526117728161144b565b9050919050565b60006020820190508181036000830152611792816114b1565b9050919050565b600060208201905081810360008301526117b281611517565b9050919050565b600060208201905081810360008301526117d28161157d565b9050919050565b60006020820190506117ee60008301846115e3565b92915050565b600060208201905061180960008301846115f2565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611836826118bf565b9150611841836118bf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156118765761187561193b565b5b828201905092915050565b600061188c8261189f565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156118f45780820151818401526020810190506118d9565b83811115611903576000848401525b50505050565b6000600282049050600182168061192157607f821691505b602082108114156119355761193461196a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6119b381611881565b81146119be57600080fd5b50565b6119ca816118bf565b81146119d557600080fd5b5056fea26469706673582212200ff4931279898c3f00f4126e07d130b771840a7f486d1347a1181b174620efc864736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146102a8578063a9059cbb146102d8578063b1d17c9814610308578063dd62ed3e14610324578063f2fde38b146103545761010b565b8063715018a61461024657806379cc6790146102505780638da5cb5b1461026c57806395d89b411461028a5761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806342966c68146101fa57806370a08231146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610370565b6040516101259190611637565b60405180910390f35b610148600480360381019061014391906110d1565b610402565b604051610155919061161c565b60405180910390f35b610166610425565b60405161017391906117d9565b60405180910390f35b61019660048036038101906101919190611082565b61042f565b6040516101a3919061161c565b60405180910390f35b6101b461045e565b6040516101c191906117f4565b60405180910390f35b6101e460048036038101906101df91906110d1565b610467565b6040516101f1919061161c565b60405180910390f35b610214600480360381019061020f919061110d565b61049e565b005b610230600480360381019061022b919061101d565b6104b2565b60405161023d91906117d9565b60405180910390f35b61024e6104fa565b005b61026a600480360381019061026591906110d1565b61050e565b005b61027461052e565b6040516102819190611601565b60405180910390f35b610292610558565b60405161029f9190611637565b60405180910390f35b6102c260048036038101906102bd91906110d1565b6105ea565b6040516102cf919061161c565b60405180910390f35b6102f260048036038101906102ed91906110d1565b610661565b6040516102ff919061161c565b60405180910390f35b610322600480360381019061031d919061101d565b610684565b005b61033e60048036038101906103399190611046565b6106f5565b60405161034b91906117d9565b60405180910390f35b61036e6004803603810190610369919061101d565b61077c565b005b60606003805461037f90611909565b80601f01602080910402602001604051908101604052809291908181526020018280546103ab90611909565b80156103f85780601f106103cd576101008083540402835291602001916103f8565b820191906000526020600020905b8154815290600101906020018083116103db57829003601f168201915b5050505050905090565b60008061040d610800565b905061041a818585610808565b600191505092915050565b6000600254905090565b60008061043a610800565b90506104478582856109d3565b610452858585610a5f565b60019150509392505050565b60006012905090565b600080610472610800565b905061049381858561048485896106f5565b61048e919061182b565b610808565b600191505092915050565b6104af6104a9610800565b82610cd7565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610502610ea5565b61050c6000610f23565b565b6105208261051a610800565b836109d3565b61052a8282610cd7565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461056790611909565b80601f016020809104026020016040519081016040528092919081815260200182805461059390611909565b80156105e05780601f106105b5576101008083540402835291602001916105e0565b820191906000526020600020905b8154815290600101906020018083116105c357829003601f168201915b5050505050905090565b6000806105f5610800565b9050600061060382866106f5565b905083811015610648576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063f906117b9565b60405180910390fd5b6106558286868403610808565b60019250505092915050565b60008061066c610800565b9050610679818585610a5f565b600191505092915050565b61068c610ea5565b6000610697336104b2565b90506a084595161401484a00000081146106e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106dd906116f9565b60405180910390fd5b6106f1338383610a5f565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610784610ea5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156107f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107eb90611699565b60405180910390fd5b6107fd81610f23565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610878576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086f90611799565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156108e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108df906116b9565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109c691906117d9565b60405180910390a3505050565b60006109df84846106f5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a595781811015610a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a42906116d9565b60405180910390fd5b610a588484848403610808565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac690611779565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3690611659565b60405180910390fd5b610b4a838383610fe9565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc790611719565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cbe91906117d9565b60405180910390a3610cd1848484610fee565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3e90611759565b60405180910390fd5b610d5382600083610fe9565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd090611679565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e8c91906117d9565b60405180910390a3610ea083600084610fee565b505050565b610ead610800565b73ffffffffffffffffffffffffffffffffffffffff16610ecb61052e565b73ffffffffffffffffffffffffffffffffffffffff1614610f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1890611739565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081359050611002816119aa565b92915050565b600081359050611017816119c1565b92915050565b60006020828403121561102f57600080fd5b600061103d84828501610ff3565b91505092915050565b6000806040838503121561105957600080fd5b600061106785828601610ff3565b925050602061107885828601610ff3565b9150509250929050565b60008060006060848603121561109757600080fd5b60006110a586828701610ff3565b93505060206110b686828701610ff3565b92505060406110c786828701611008565b9150509250925092565b600080604083850312156110e457600080fd5b60006110f285828601610ff3565b925050602061110385828601611008565b9150509250929050565b60006020828403121561111f57600080fd5b600061112d84828501611008565b91505092915050565b61113f81611881565b82525050565b61114e81611893565b82525050565b600061115f8261180f565b611169818561181a565b93506111798185602086016118d6565b61118281611999565b840191505092915050565b600061119a60238361181a565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061120060228361181a565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061126660268361181a565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006112cc60228361181a565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611332601d8361181a565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b6000611372601a8361181a565b91507f546f6b656e7320616c72656164792064697374726962757465640000000000006000830152602082019050919050565b60006113b260268361181a565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061141860208361181a565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061145860218361181a565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114be60258361181a565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061152460248361181a565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061158a60258361181a565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6115ec816118bf565b82525050565b6115fb816118c9565b82525050565b60006020820190506116166000830184611136565b92915050565b60006020820190506116316000830184611145565b92915050565b600060208201905081810360008301526116518184611154565b905092915050565b600060208201905081810360008301526116728161118d565b9050919050565b60006020820190508181036000830152611692816111f3565b9050919050565b600060208201905081810360008301526116b281611259565b9050919050565b600060208201905081810360008301526116d2816112bf565b9050919050565b600060208201905081810360008301526116f281611325565b9050919050565b6000602082019050818103600083015261171281611365565b9050919050565b60006020820190508181036000830152611732816113a5565b9050919050565b600060208201905081810360008301526117528161140b565b9050919050565b600060208201905081810360008301526117728161144b565b9050919050565b60006020820190508181036000830152611792816114b1565b9050919050565b600060208201905081810360008301526117b281611517565b9050919050565b600060208201905081810360008301526117d28161157d565b9050919050565b60006020820190506117ee60008301846115e3565b92915050565b600060208201905061180960008301846115f2565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611836826118bf565b9150611841836118bf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156118765761187561193b565b5b828201905092915050565b600061188c8261189f565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156118f45780820151818401526020810190506118d9565b83811115611903576000848401525b50505050565b6000600282049050600182168061192157607f821691505b602082108114156119355761193461196a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6119b381611881565b81146119be57600080fd5b50565b6119ca816118bf565b81146119d557600080fd5b5056fea26469706673582212200ff4931279898c3f00f4126e07d130b771840a7f486d1347a1181b174620efc864736f6c63430008000033

Deployed Bytecode Sourcemap

21813:493:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9393:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11744:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10513:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12525:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10355:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13229:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21164:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10684:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2818:103;;;:::i;:::-;;21574:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2170:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9612:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13970:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11017:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22037:266;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11273:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3076:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9393:100;9447:13;9480:5;9473:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9393:100;:::o;11744:201::-;11827:4;11844:13;11860:12;:10;:12::i;:::-;11844:28;;11883:32;11892:5;11899:7;11908:6;11883:8;:32::i;:::-;11933:4;11926:11;;;11744:201;;;;:::o;10513:108::-;10574:7;10601:12;;10594:19;;10513:108;:::o;12525:295::-;12656:4;12673:15;12691:12;:10;:12::i;:::-;12673:30;;12714:38;12730:4;12736:7;12745:6;12714:15;:38::i;:::-;12763:27;12773:4;12779:2;12783:6;12763:9;:27::i;:::-;12808:4;12801:11;;;12525:295;;;;;:::o;10355:93::-;10413:5;10438:2;10431:9;;10355:93;:::o;13229:238::-;13317:4;13334:13;13350:12;:10;:12::i;:::-;13334:28;;13373:64;13382:5;13389:7;13426:10;13398:25;13408:5;13415:7;13398:9;:25::i;:::-;:38;;;;:::i;:::-;13373:8;:64::i;:::-;13455:4;13448:11;;;13229:238;;;;:::o;21164:91::-;21220:27;21226:12;:10;:12::i;:::-;21240:6;21220:5;:27::i;:::-;21164:91;:::o;10684:127::-;10758:7;10785:9;:18;10795:7;10785:18;;;;;;;;;;;;;;;;10778:25;;10684:127;;;:::o;2818:103::-;2056:13;:11;:13::i;:::-;2883:30:::1;2910:1;2883:18;:30::i;:::-;2818:103::o:0;21574:164::-;21651:46;21667:7;21676:12;:10;:12::i;:::-;21690:6;21651:15;:46::i;:::-;21708:22;21714:7;21723:6;21708:5;:22::i;:::-;21574:164;;:::o;2170:87::-;2216:7;2243:6;;;;;;;;;;;2236:13;;2170:87;:::o;9612:104::-;9668:13;9701:7;9694:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9612:104;:::o;13970:436::-;14063:4;14080:13;14096:12;:10;:12::i;:::-;14080:28;;14119:24;14146:25;14156:5;14163:7;14146:9;:25::i;:::-;14119:52;;14210:15;14190:16;:35;;14182:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14303:60;14312:5;14319:7;14347:15;14328:16;:34;14303:8;:60::i;:::-;14394:4;14387:11;;;;13970:436;;;;:::o;11017:193::-;11096:4;11113:13;11129:12;:10;:12::i;:::-;11113:28;;11152;11162:5;11169:2;11173:6;11152:9;:28::i;:::-;11198:4;11191:11;;;11017:193;;;;:::o;22037:266::-;2056:13;:11;:13::i;:::-;22121:14:::1;22138:21;22148:10;22138:9;:21::i;:::-;22121:38;;21911:17;22178:6;:24;22170:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;22246:49;22256:10;22268:18;22288:6;22246:9;:49::i;:::-;2080:1;22037:266:::0;:::o;11273:151::-;11362:7;11389:11;:18;11401:5;11389:18;;;;;;;;;;;;;;;:27;11408:7;11389:27;;;;;;;;;;;;;;;;11382:34;;11273:151;;;;:::o;3076:201::-;2056:13;:11;:13::i;:::-;3185:1:::1;3165:22;;:8;:22;;;;3157:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3241:28;3260:8;3241:18;:28::i;:::-;3076:201:::0;:::o;721:98::-;774:7;801:10;794:17;;721:98;:::o;17997:380::-;18150:1;18133:19;;:5;:19;;;;18125:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18231:1;18212:21;;:7;:21;;;;18204:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18315:6;18285:11;:18;18297:5;18285:18;;;;;;;;;;;;;;;:27;18304:7;18285:27;;;;;;;;;;;;;;;:36;;;;18353:7;18337:32;;18346:5;18337:32;;;18362:6;18337:32;;;;;;:::i;:::-;;;;;;;;17997:380;;;:::o;18668:453::-;18803:24;18830:25;18840:5;18847:7;18830:9;:25::i;:::-;18803:52;;18890:17;18870:16;:37;18866:248;;18952:6;18932:16;:26;;18924:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19036:51;19045:5;19052:7;19080:6;19061:16;:25;19036:8;:51::i;:::-;18866:248;18668:453;;;;:::o;14876:840::-;15023:1;15007:18;;:4;:18;;;;14999:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15100:1;15086:16;;:2;:16;;;;15078:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15155:38;15176:4;15182:2;15186:6;15155:20;:38::i;:::-;15206:19;15228:9;:15;15238:4;15228:15;;;;;;;;;;;;;;;;15206:37;;15277:6;15262:11;:21;;15254:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15394:6;15380:11;:20;15362:9;:15;15372:4;15362:15;;;;;;;;;;;;;;;:38;;;;15597:6;15580:9;:13;15590:2;15580:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15647:2;15632:26;;15641:4;15632:26;;;15651:6;15632:26;;;;;;:::i;:::-;;;;;;;;15671:37;15691:4;15697:2;15701:6;15671:19;:37::i;:::-;14876:840;;;;:::o;16884:675::-;16987:1;16968:21;;:7;:21;;;;16960:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;17040:49;17061:7;17078:1;17082:6;17040:20;:49::i;:::-;17102:22;17127:9;:18;17137:7;17127:18;;;;;;;;;;;;;;;;17102:43;;17182:6;17164:14;:24;;17156:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17301:6;17284:14;:23;17263:9;:18;17273:7;17263:18;;;;;;;;;;;;;;;:44;;;;17418:6;17402:12;;:22;;;;;;;;;;;17479:1;17453:37;;17462:7;17453:37;;;17483:6;17453:37;;;;;;:::i;:::-;;;;;;;;17503:48;17523:7;17540:1;17544:6;17503:19;:48::i;:::-;16884:675;;;:::o;2335:132::-;2410:12;:10;:12::i;:::-;2399:23;;:7;:5;:7::i;:::-;:23;;;2391:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2335:132::o;3437:191::-;3511:16;3530:6;;;;;;;;;;;3511:25;;3556:8;3547:6;;:17;;;;;;;;;;;;;;;;;;3611:8;3580:40;;3601:8;3580:40;;;;;;;;;;;;3437:191;;:::o;19721:125::-;;;;:::o;20450:124::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:364::-;;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;;;;;:::o;2826:367::-;;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3086:34;3082:1;3077:3;3073:11;3066:55;3152:5;3147:2;3142:3;3138:12;3131:27;3184:2;3179:3;3175:12;3168:19;;2972:221;;;:::o;3199:366::-;;3362:67;3426:2;3421:3;3362:67;:::i;:::-;3355:74;;3459:34;3455:1;3450:3;3446:11;3439:55;3525:4;3520:2;3515:3;3511:12;3504:26;3556:2;3551:3;3547:12;3540:19;;3345:220;;;:::o;3571:370::-;;3734:67;3798:2;3793:3;3734:67;:::i;:::-;3727:74;;3831:34;3827:1;3822:3;3818:11;3811:55;3897:8;3892:2;3887:3;3883:12;3876:30;3932:2;3927:3;3923:12;3916:19;;3717:224;;;:::o;3947:366::-;;4110:67;4174:2;4169:3;4110:67;:::i;:::-;4103:74;;4207:34;4203:1;4198:3;4194:11;4187:55;4273:4;4268:2;4263:3;4259:12;4252:26;4304:2;4299:3;4295:12;4288:19;;4093:220;;;:::o;4319:327::-;;4482:67;4546:2;4541:3;4482:67;:::i;:::-;4475:74;;4579:31;4575:1;4570:3;4566:11;4559:52;4637:2;4632:3;4628:12;4621:19;;4465:181;;;:::o;4652:324::-;;4815:67;4879:2;4874:3;4815:67;:::i;:::-;4808:74;;4912:28;4908:1;4903:3;4899:11;4892:49;4967:2;4962:3;4958:12;4951:19;;4798:178;;;:::o;4982:370::-;;5145:67;5209:2;5204:3;5145:67;:::i;:::-;5138:74;;5242:34;5238:1;5233:3;5229:11;5222:55;5308:8;5303:2;5298:3;5294:12;5287:30;5343:2;5338:3;5334:12;5327:19;;5128:224;;;:::o;5358:330::-;;5521:67;5585:2;5580:3;5521:67;:::i;:::-;5514:74;;5618:34;5614:1;5609:3;5605:11;5598:55;5679:2;5674:3;5670:12;5663:19;;5504:184;;;:::o;5694:365::-;;5857:67;5921:2;5916:3;5857:67;:::i;:::-;5850:74;;5954:34;5950:1;5945:3;5941:11;5934:55;6020:3;6015:2;6010:3;6006:12;5999:25;6050:2;6045:3;6041:12;6034:19;;5840:219;;;:::o;6065:369::-;;6228:67;6292:2;6287:3;6228:67;:::i;:::-;6221:74;;6325:34;6321:1;6316:3;6312:11;6305:55;6391:7;6386:2;6381:3;6377:12;6370:29;6425:2;6420:3;6416:12;6409:19;;6211:223;;;:::o;6440:368::-;;6603:67;6667:2;6662:3;6603:67;:::i;:::-;6596:74;;6700:34;6696:1;6691:3;6687:11;6680:55;6766:6;6761:2;6756:3;6752:12;6745:28;6799:2;6794:3;6790:12;6783:19;;6586:222;;;:::o;6814:369::-;;6977:67;7041:2;7036:3;6977:67;:::i;:::-;6970:74;;7074:34;7070:1;7065:3;7061:11;7054:55;7140:7;7135:2;7130:3;7126:12;7119:29;7174:2;7169:3;7165:12;7158:19;;6960:223;;;:::o;7189:118::-;7276:24;7294:5;7276:24;:::i;:::-;7271:3;7264:37;7254:53;;:::o;7313:112::-;7396:22;7412:5;7396:22;:::i;:::-;7391:3;7384:35;7374:51;;:::o;7431:222::-;;7562:2;7551:9;7547:18;7539:26;;7575:71;7643:1;7632:9;7628:17;7619:6;7575:71;:::i;:::-;7529:124;;;;:::o;7659:210::-;;7784:2;7773:9;7769:18;7761:26;;7797:65;7859:1;7848:9;7844:17;7835:6;7797:65;:::i;:::-;7751:118;;;;:::o;7875:313::-;;8026:2;8015:9;8011:18;8003:26;;8075:9;8069:4;8065:20;8061:1;8050:9;8046:17;8039:47;8103:78;8176:4;8167:6;8103:78;:::i;:::-;8095:86;;7993:195;;;;:::o;8194:419::-;;8398:2;8387:9;8383:18;8375:26;;8447:9;8441:4;8437:20;8433:1;8422:9;8418:17;8411:47;8475:131;8601:4;8475:131;:::i;:::-;8467:139;;8365:248;;;:::o;8619:419::-;;8823:2;8812:9;8808:18;8800:26;;8872:9;8866:4;8862:20;8858:1;8847:9;8843:17;8836:47;8900:131;9026:4;8900:131;:::i;:::-;8892:139;;8790:248;;;:::o;9044:419::-;;9248:2;9237:9;9233:18;9225:26;;9297:9;9291:4;9287:20;9283:1;9272:9;9268:17;9261:47;9325:131;9451:4;9325:131;:::i;:::-;9317:139;;9215:248;;;:::o;9469:419::-;;9673:2;9662:9;9658:18;9650:26;;9722:9;9716:4;9712:20;9708:1;9697:9;9693:17;9686:47;9750:131;9876:4;9750:131;:::i;:::-;9742:139;;9640:248;;;:::o;9894:419::-;;10098:2;10087:9;10083:18;10075:26;;10147:9;10141:4;10137:20;10133:1;10122:9;10118:17;10111:47;10175:131;10301:4;10175:131;:::i;:::-;10167:139;;10065:248;;;:::o;10319:419::-;;10523:2;10512:9;10508:18;10500:26;;10572:9;10566:4;10562:20;10558:1;10547:9;10543:17;10536:47;10600:131;10726:4;10600:131;:::i;:::-;10592:139;;10490:248;;;:::o;10744:419::-;;10948:2;10937:9;10933:18;10925:26;;10997:9;10991:4;10987:20;10983:1;10972:9;10968:17;10961:47;11025:131;11151:4;11025:131;:::i;:::-;11017:139;;10915:248;;;:::o;11169:419::-;;11373:2;11362:9;11358:18;11350:26;;11422:9;11416:4;11412:20;11408:1;11397:9;11393:17;11386:47;11450:131;11576:4;11450:131;:::i;:::-;11442:139;;11340:248;;;:::o;11594:419::-;;11798:2;11787:9;11783:18;11775:26;;11847:9;11841:4;11837:20;11833:1;11822:9;11818:17;11811:47;11875:131;12001:4;11875:131;:::i;:::-;11867:139;;11765:248;;;:::o;12019:419::-;;12223:2;12212:9;12208:18;12200:26;;12272:9;12266:4;12262:20;12258:1;12247:9;12243:17;12236:47;12300:131;12426:4;12300:131;:::i;:::-;12292:139;;12190:248;;;:::o;12444:419::-;;12648:2;12637:9;12633:18;12625:26;;12697:9;12691:4;12687:20;12683:1;12672:9;12668:17;12661:47;12725:131;12851:4;12725:131;:::i;:::-;12717:139;;12615:248;;;:::o;12869:419::-;;13073:2;13062:9;13058:18;13050:26;;13122:9;13116:4;13112:20;13108:1;13097:9;13093:17;13086:47;13150:131;13276:4;13150:131;:::i;:::-;13142:139;;13040:248;;;:::o;13294:222::-;;13425:2;13414:9;13410:18;13402:26;;13438:71;13506:1;13495:9;13491:17;13482:6;13438:71;:::i;:::-;13392:124;;;;:::o;13522:214::-;;13649:2;13638:9;13634:18;13626:26;;13662:67;13726:1;13715:9;13711:17;13702:6;13662:67;:::i;:::-;13616:120;;;;:::o;13742:99::-;;13828:5;13822:12;13812:22;;13801:40;;;:::o;13847:169::-;;13965:6;13960:3;13953:19;14005:4;14000:3;13996:14;13981:29;;13943:73;;;;:::o;14022:305::-;;14081:20;14099:1;14081:20;:::i;:::-;14076:25;;14115:20;14133:1;14115:20;:::i;:::-;14110:25;;14269:1;14201:66;14197:74;14194:1;14191:81;14188:2;;;14275:18;;:::i;:::-;14188:2;14319:1;14316;14312:9;14305:16;;14066:261;;;;:::o;14333:96::-;;14399:24;14417:5;14399:24;:::i;:::-;14388:35;;14378:51;;;:::o;14435:90::-;;14512:5;14505:13;14498:21;14487:32;;14477:48;;;:::o;14531:126::-;;14608:42;14601:5;14597:54;14586:65;;14576:81;;;:::o;14663:77::-;;14729:5;14718:16;;14708:32;;;:::o;14746:86::-;;14821:4;14814:5;14810:16;14799:27;;14789:43;;;:::o;14838:307::-;14906:1;14916:113;14930:6;14927:1;14924:13;14916:113;;;15015:1;15010:3;15006:11;15000:18;14996:1;14991:3;14987:11;14980:39;14952:2;14949:1;14945:10;14940:15;;14916:113;;;15047:6;15044:1;15041:13;15038:2;;;15127:1;15118:6;15113:3;15109:16;15102:27;15038:2;14887:258;;;;:::o;15151:320::-;;15232:1;15226:4;15222:12;15212:22;;15279:1;15273:4;15269:12;15300:18;15290:2;;15356:4;15348:6;15344:17;15334:27;;15290:2;15418;15410:6;15407:14;15387:18;15384:38;15381:2;;;15437:18;;:::i;:::-;15381:2;15202:269;;;;:::o;15477:180::-;15525:77;15522:1;15515:88;15622:4;15619:1;15612:15;15646:4;15643:1;15636:15;15663:180;15711:77;15708:1;15701:88;15808:4;15805:1;15798:15;15832:4;15829:1;15822:15;15849:102;;15941:2;15937:7;15932:2;15925:5;15921:14;15917:28;15907:38;;15897:54;;;:::o;15957:122::-;16030:24;16048:5;16030:24;:::i;:::-;16023:5;16020:35;16010:2;;16069:1;16066;16059:12;16010:2;16000:79;:::o;16085:122::-;16158:24;16176:5;16158:24;:::i;:::-;16151:5;16148:35;16138:2;;16197:1;16194;16187:12;16138:2;16128:79;:::o

Swarm Source

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