ETH Price: $2,902.67 (+2.86%)
 

Overview

Max Total Supply

699,200,000 KCHUP

Holders

201

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
jdunkel.eth
Balance
3,112,342.521746925182952024 KCHUP

Value
$0.00
0xa68ed1564c36413b4d0fb4f94951a087a6985060
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:
KetchupToken

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-06
*/

// SPDX-License-Identifier: Apache-2.0

/*

  /$$$$$$          /$$                     /$$$$$$$   /$$$$$$   /$$$$$$ 
 /$$__  $$        |__/                    | $$__  $$ /$$__  $$ /$$__  $$
| $$  \__//$$$$$$  /$$  /$$$$$$   /$$$$$$$| $$  \ $$| $$  \ $$| $$  \ $$
| $$$$   /$$__  $$| $$ /$$__  $$ /$$_____/| $$  | $$| $$$$$$$$| $$  | $$
| $$_/  | $$  \__/| $$| $$$$$$$$|  $$$$$$ | $$  | $$| $$__  $$| $$  | $$
| $$    | $$      | $$| $$_____/ \____  $$| $$  | $$| $$  | $$| $$  | $$
| $$    | $$      | $$|  $$$$$$$ /$$$$$$$/| $$$$$$$/| $$  | $$|  $$$$$$/
|__/    |__/      |__/ \_______/|_______/ |_______/ |__/  |__/ \______/ 

*/

pragma solidity ^0.8.7;

/**
 * @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 Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 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 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);
}

/**
 * @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.zeppelin.solutions/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 `sender` to `recipient`.
     *
     * 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;
        }
        _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;
        _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;
        }
        _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 {}
}

/**
 * @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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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);
    }
}

contract Administrable is Ownable {

    mapping (address => bool) public admins;

    event AdminAdded(address added);
    event AdminRemoved(address removed);

    // Only allow an admin to call a function

    modifier onlyAdmin {
        require(admins[_msgSender()] || owner() == _msgSender(), "Administrable: caller is not an admin");
        _;
    }

    // Set an account as an admin

    function addAdmin(address admin) external onlyOwner {
        require(!admins[admin], "Administrable: address is already an admin");
        admins[admin] = true;
        emit AdminAdded(admin);
    }

    // Remove an admin from admins

    function removeAdmin(address admin) external onlyOwner {
        require(admins[admin], "Administrable: address is not an admin");
        delete admins[admin];
        emit AdminRemoved(admin);
    }

}

contract KetchupToken is ERC20, Administrable {

    constructor() ERC20("Ketchup", "KCHUP") {
    }

    // Mint amount of KCHUP to account

    function mint(address account, uint256 amount) external onlyAdmin {
        _mint(account, amount);
    }

    // Burn KCHUP from caller

    function burn(uint256 amount) external {
        _burn(_msgSender(), amount);
    }

    // Burn KCHUP from account with approval

    function burnFrom(address account, uint256 amount) external {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"added","type":"address"}],"name":"AdminAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"removed","type":"address"}],"name":"AdminRemoved","type":"event"},{"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":"admin","type":"address"}],"name":"addAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"admins","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"admin","type":"address"}],"name":"removeAdmin","outputs":[],"stateMutability":"nonpayable","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"}]

60806040523480156200001157600080fd5b506040518060400160405280600781526020017f4b657463687570000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4b43485550000000000000000000000000000000000000000000000000000000815250816003908051906020019062000096929190620001a6565b508060049080519060200190620000af929190620001a6565b505050620000d2620000c6620000d860201b60201c565b620000e060201b60201c565b620002bb565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001b49062000256565b90600052602060002090601f016020900481019282620001d8576000855562000224565b82601f10620001f357805160ff191683800117855562000224565b8280016001018555821562000224579182015b828111156200022357825182559160200191906001019062000206565b5b50905062000233919062000237565b5090565b5b808211156200025257600081600090555060010162000238565b5090565b600060028204905060018216806200026f57607f821691505b602082108114156200028657620002856200028c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6123b380620002cb6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370480275116100ad57806395d89b411161007157806395d89b411461032f578063a457c2d71461034d578063a9059cbb1461037d578063dd62ed3e146103ad578063f2fde38b146103dd5761012c565b8063704802751461029f57806370a08231146102bb578063715018a6146102eb57806379cc6790146102f55780638da5cb5b146103115761012c565b8063313ce567116100f4578063313ce567146101e9578063395093511461020757806340c10f191461023757806342966c6814610253578063429b62e51461026f5761012c565b806306fdde0314610131578063095ea7b31461014f5780631785f53c1461017f57806318160ddd1461019b57806323b872dd146101b9575b600080fd5b6101396103f9565b6040516101469190611aa5565b60405180910390f35b6101696004803603810190610164919061175d565b61048b565b6040516101769190611a8a565b60405180910390f35b6101996004803603810190610194919061169d565b6104ae565b005b6101a361063f565b6040516101b09190611cc7565b60405180910390f35b6101d360048036038101906101ce919061170a565b610649565b6040516101e09190611a8a565b60405180910390f35b6101f1610678565b6040516101fe9190611ce2565b60405180910390f35b610221600480360381019061021c919061175d565b610681565b60405161022e9190611a8a565b60405180910390f35b610251600480360381019061024c919061175d565b6106b8565b005b61026d6004803603810190610268919061179d565b61079d565b005b6102896004803603810190610284919061169d565b6107b1565b6040516102969190611a8a565b60405180910390f35b6102b960048036038101906102b4919061169d565b6107d1565b005b6102d560048036038101906102d0919061169d565b61096c565b6040516102e29190611cc7565b60405180910390f35b6102f36109b4565b005b61030f600480360381019061030a919061175d565b610a3c565b005b610319610ab7565b6040516103269190611a6f565b60405180910390f35b610337610ae1565b6040516103449190611aa5565b60405180910390f35b6103676004803603810190610362919061175d565b610b73565b6040516103749190611a8a565b60405180910390f35b6103976004803603810190610392919061175d565b610bea565b6040516103a49190611a8a565b60405180910390f35b6103c760048036038101906103c291906116ca565b610c0d565b6040516103d49190611cc7565b60405180910390f35b6103f760048036038101906103f2919061169d565b610c94565b005b60606003805461040890611e2b565b80601f016020809104026020016040519081016040528092919081815260200182805461043490611e2b565b80156104815780601f1061045657610100808354040283529160200191610481565b820191906000526020600020905b81548152906001019060200180831161046457829003601f168201915b5050505050905090565b600080610496610d8c565b90506104a3818585610d94565b600191505092915050565b6104b6610d8c565b73ffffffffffffffffffffffffffffffffffffffff166104d4610ab7565b73ffffffffffffffffffffffffffffffffffffffff161461052a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052190611ba7565b60405180910390fd5b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166105b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ad90611c27565b60405180910390fd5b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff02191690557fa3b62bc36326052d97ea62d63c3d60308ed4c3ea8ac079dd8499f1e9c4f80c0f816040516106349190611a6f565b60405180910390a150565b6000600254905090565b600080610654610d8c565b9050610661858285610f5f565b61066c858585610feb565b60019150509392505050565b60006012905090565b60008061068c610d8c565b90506106ad81858561069e8589610c0d565b6106a89190611d19565b610d94565b600191505092915050565b600660006106c4610d8c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610750575061071a610d8c565b73ffffffffffffffffffffffffffffffffffffffff16610738610ab7565b73ffffffffffffffffffffffffffffffffffffffff16145b61078f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078690611b87565b60405180910390fd5b610799828261126c565b5050565b6107ae6107a8610d8c565b826113cc565b50565b60066020528060005260406000206000915054906101000a900460ff1681565b6107d9610d8c565b73ffffffffffffffffffffffffffffffffffffffff166107f7610ab7565b73ffffffffffffffffffffffffffffffffffffffff161461084d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084490611ba7565b60405180910390fd5b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156108da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d190611c67565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f44d6d25963f097ad14f29f06854a01f575648a1ef82f30e562ccd3889717e339816040516109619190611a6f565b60405180910390a150565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109bc610d8c565b73ffffffffffffffffffffffffffffffffffffffff166109da610ab7565b73ffffffffffffffffffffffffffffffffffffffff1614610a30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2790611ba7565b60405180910390fd5b610a3a60006115a3565b565b6000610a4f83610a4a610d8c565b610c0d565b905081811015610a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8b90611bc7565b60405180910390fd5b610aa883610aa0610d8c565b848403610d94565b610ab283836113cc565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610af090611e2b565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1c90611e2b565b8015610b695780601f10610b3e57610100808354040283529160200191610b69565b820191906000526020600020905b815481529060010190602001808311610b4c57829003601f168201915b5050505050905090565b600080610b7e610d8c565b90506000610b8c8286610c0d565b905083811015610bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc890611c87565b60405180910390fd5b610bde8286868403610d94565b60019250505092915050565b600080610bf5610d8c565b9050610c02818585610feb565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c9c610d8c565b73ffffffffffffffffffffffffffffffffffffffff16610cba610ab7565b73ffffffffffffffffffffffffffffffffffffffff1614610d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0790611ba7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7790611b07565b60405180910390fd5b610d89816115a3565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfb90611c47565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6b90611b27565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f529190611cc7565b60405180910390a3505050565b6000610f6b8484610c0d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610fe55781811015610fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fce90611b47565b60405180910390fd5b610fe48484848403610d94565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561105b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105290611c07565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c290611ac7565b60405180910390fd5b6110d6838383611669565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561115c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115390611b67565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111ef9190611d19565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112539190611cc7565b60405180910390a361126684848461166e565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d390611ca7565b60405180910390fd5b6112e860008383611669565b80600260008282546112fa9190611d19565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461134f9190611d19565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113b49190611cc7565b60405180910390a36113c86000838361166e565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561143c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143390611be7565b60405180910390fd5b61144882600083611669565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156114ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c590611ae7565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546115259190611d6f565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161158a9190611cc7565b60405180910390a361159e8360008461166e565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b6000813590506116828161234f565b92915050565b60008135905061169781612366565b92915050565b6000602082840312156116b3576116b2611ebb565b5b60006116c184828501611673565b91505092915050565b600080604083850312156116e1576116e0611ebb565b5b60006116ef85828601611673565b925050602061170085828601611673565b9150509250929050565b60008060006060848603121561172357611722611ebb565b5b600061173186828701611673565b935050602061174286828701611673565b925050604061175386828701611688565b9150509250925092565b6000806040838503121561177457611773611ebb565b5b600061178285828601611673565b925050602061179385828601611688565b9150509250929050565b6000602082840312156117b3576117b2611ebb565b5b60006117c184828501611688565b91505092915050565b6117d381611da3565b82525050565b6117e281611db5565b82525050565b60006117f382611cfd565b6117fd8185611d08565b935061180d818560208601611df8565b61181681611ec0565b840191505092915050565b600061182e602383611d08565b915061183982611ed1565b604082019050919050565b6000611851602283611d08565b915061185c82611f20565b604082019050919050565b6000611874602683611d08565b915061187f82611f6f565b604082019050919050565b6000611897602283611d08565b91506118a282611fbe565b604082019050919050565b60006118ba601d83611d08565b91506118c58261200d565b602082019050919050565b60006118dd602683611d08565b91506118e882612036565b604082019050919050565b6000611900602583611d08565b915061190b82612085565b604082019050919050565b6000611923602083611d08565b915061192e826120d4565b602082019050919050565b6000611946602483611d08565b9150611951826120fd565b604082019050919050565b6000611969602183611d08565b91506119748261214c565b604082019050919050565b600061198c602583611d08565b91506119978261219b565b604082019050919050565b60006119af602683611d08565b91506119ba826121ea565b604082019050919050565b60006119d2602483611d08565b91506119dd82612239565b604082019050919050565b60006119f5602a83611d08565b9150611a0082612288565b604082019050919050565b6000611a18602583611d08565b9150611a23826122d7565b604082019050919050565b6000611a3b601f83611d08565b9150611a4682612326565b602082019050919050565b611a5a81611de1565b82525050565b611a6981611deb565b82525050565b6000602082019050611a8460008301846117ca565b92915050565b6000602082019050611a9f60008301846117d9565b92915050565b60006020820190508181036000830152611abf81846117e8565b905092915050565b60006020820190508181036000830152611ae081611821565b9050919050565b60006020820190508181036000830152611b0081611844565b9050919050565b60006020820190508181036000830152611b2081611867565b9050919050565b60006020820190508181036000830152611b408161188a565b9050919050565b60006020820190508181036000830152611b60816118ad565b9050919050565b60006020820190508181036000830152611b80816118d0565b9050919050565b60006020820190508181036000830152611ba0816118f3565b9050919050565b60006020820190508181036000830152611bc081611916565b9050919050565b60006020820190508181036000830152611be081611939565b9050919050565b60006020820190508181036000830152611c008161195c565b9050919050565b60006020820190508181036000830152611c208161197f565b9050919050565b60006020820190508181036000830152611c40816119a2565b9050919050565b60006020820190508181036000830152611c60816119c5565b9050919050565b60006020820190508181036000830152611c80816119e8565b9050919050565b60006020820190508181036000830152611ca081611a0b565b9050919050565b60006020820190508181036000830152611cc081611a2e565b9050919050565b6000602082019050611cdc6000830184611a51565b92915050565b6000602082019050611cf76000830184611a60565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611d2482611de1565b9150611d2f83611de1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611d6457611d63611e5d565b5b828201905092915050565b6000611d7a82611de1565b9150611d8583611de1565b925082821015611d9857611d97611e5d565b5b828203905092915050565b6000611dae82611dc1565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611e16578082015181840152602081019050611dfb565b83811115611e25576000848401525b50505050565b60006002820490506001821680611e4357607f821691505b60208210811415611e5757611e56611e8c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f41646d696e6973747261626c653a2063616c6c6572206973206e6f7420616e2060008201527f61646d696e000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f41646d696e6973747261626c653a2061646472657373206973206e6f7420616e60008201527f2061646d696e0000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f41646d696e6973747261626c653a206164647265737320697320616c7265616460008201527f7920616e2061646d696e00000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61235881611da3565b811461236357600080fd5b50565b61236f81611de1565b811461237a57600080fd5b5056fea264697066735822122059aecb7ad3e7d5c68850a561c311af42c1e3f81be4755c9d75f46d2871b194d564736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806370480275116100ad57806395d89b411161007157806395d89b411461032f578063a457c2d71461034d578063a9059cbb1461037d578063dd62ed3e146103ad578063f2fde38b146103dd5761012c565b8063704802751461029f57806370a08231146102bb578063715018a6146102eb57806379cc6790146102f55780638da5cb5b146103115761012c565b8063313ce567116100f4578063313ce567146101e9578063395093511461020757806340c10f191461023757806342966c6814610253578063429b62e51461026f5761012c565b806306fdde0314610131578063095ea7b31461014f5780631785f53c1461017f57806318160ddd1461019b57806323b872dd146101b9575b600080fd5b6101396103f9565b6040516101469190611aa5565b60405180910390f35b6101696004803603810190610164919061175d565b61048b565b6040516101769190611a8a565b60405180910390f35b6101996004803603810190610194919061169d565b6104ae565b005b6101a361063f565b6040516101b09190611cc7565b60405180910390f35b6101d360048036038101906101ce919061170a565b610649565b6040516101e09190611a8a565b60405180910390f35b6101f1610678565b6040516101fe9190611ce2565b60405180910390f35b610221600480360381019061021c919061175d565b610681565b60405161022e9190611a8a565b60405180910390f35b610251600480360381019061024c919061175d565b6106b8565b005b61026d6004803603810190610268919061179d565b61079d565b005b6102896004803603810190610284919061169d565b6107b1565b6040516102969190611a8a565b60405180910390f35b6102b960048036038101906102b4919061169d565b6107d1565b005b6102d560048036038101906102d0919061169d565b61096c565b6040516102e29190611cc7565b60405180910390f35b6102f36109b4565b005b61030f600480360381019061030a919061175d565b610a3c565b005b610319610ab7565b6040516103269190611a6f565b60405180910390f35b610337610ae1565b6040516103449190611aa5565b60405180910390f35b6103676004803603810190610362919061175d565b610b73565b6040516103749190611a8a565b60405180910390f35b6103976004803603810190610392919061175d565b610bea565b6040516103a49190611a8a565b60405180910390f35b6103c760048036038101906103c291906116ca565b610c0d565b6040516103d49190611cc7565b60405180910390f35b6103f760048036038101906103f2919061169d565b610c94565b005b60606003805461040890611e2b565b80601f016020809104026020016040519081016040528092919081815260200182805461043490611e2b565b80156104815780601f1061045657610100808354040283529160200191610481565b820191906000526020600020905b81548152906001019060200180831161046457829003601f168201915b5050505050905090565b600080610496610d8c565b90506104a3818585610d94565b600191505092915050565b6104b6610d8c565b73ffffffffffffffffffffffffffffffffffffffff166104d4610ab7565b73ffffffffffffffffffffffffffffffffffffffff161461052a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052190611ba7565b60405180910390fd5b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166105b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ad90611c27565b60405180910390fd5b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff02191690557fa3b62bc36326052d97ea62d63c3d60308ed4c3ea8ac079dd8499f1e9c4f80c0f816040516106349190611a6f565b60405180910390a150565b6000600254905090565b600080610654610d8c565b9050610661858285610f5f565b61066c858585610feb565b60019150509392505050565b60006012905090565b60008061068c610d8c565b90506106ad81858561069e8589610c0d565b6106a89190611d19565b610d94565b600191505092915050565b600660006106c4610d8c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610750575061071a610d8c565b73ffffffffffffffffffffffffffffffffffffffff16610738610ab7565b73ffffffffffffffffffffffffffffffffffffffff16145b61078f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078690611b87565b60405180910390fd5b610799828261126c565b5050565b6107ae6107a8610d8c565b826113cc565b50565b60066020528060005260406000206000915054906101000a900460ff1681565b6107d9610d8c565b73ffffffffffffffffffffffffffffffffffffffff166107f7610ab7565b73ffffffffffffffffffffffffffffffffffffffff161461084d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084490611ba7565b60405180910390fd5b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156108da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d190611c67565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f44d6d25963f097ad14f29f06854a01f575648a1ef82f30e562ccd3889717e339816040516109619190611a6f565b60405180910390a150565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109bc610d8c565b73ffffffffffffffffffffffffffffffffffffffff166109da610ab7565b73ffffffffffffffffffffffffffffffffffffffff1614610a30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2790611ba7565b60405180910390fd5b610a3a60006115a3565b565b6000610a4f83610a4a610d8c565b610c0d565b905081811015610a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8b90611bc7565b60405180910390fd5b610aa883610aa0610d8c565b848403610d94565b610ab283836113cc565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610af090611e2b565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1c90611e2b565b8015610b695780601f10610b3e57610100808354040283529160200191610b69565b820191906000526020600020905b815481529060010190602001808311610b4c57829003601f168201915b5050505050905090565b600080610b7e610d8c565b90506000610b8c8286610c0d565b905083811015610bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc890611c87565b60405180910390fd5b610bde8286868403610d94565b60019250505092915050565b600080610bf5610d8c565b9050610c02818585610feb565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c9c610d8c565b73ffffffffffffffffffffffffffffffffffffffff16610cba610ab7565b73ffffffffffffffffffffffffffffffffffffffff1614610d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0790611ba7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7790611b07565b60405180910390fd5b610d89816115a3565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfb90611c47565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6b90611b27565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f529190611cc7565b60405180910390a3505050565b6000610f6b8484610c0d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610fe55781811015610fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fce90611b47565b60405180910390fd5b610fe48484848403610d94565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561105b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105290611c07565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c290611ac7565b60405180910390fd5b6110d6838383611669565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561115c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115390611b67565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111ef9190611d19565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112539190611cc7565b60405180910390a361126684848461166e565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d390611ca7565b60405180910390fd5b6112e860008383611669565b80600260008282546112fa9190611d19565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461134f9190611d19565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113b49190611cc7565b60405180910390a36113c86000838361166e565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561143c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143390611be7565b60405180910390fd5b61144882600083611669565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156114ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c590611ae7565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546115259190611d6f565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161158a9190611cc7565b60405180910390a361159e8360008461166e565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b6000813590506116828161234f565b92915050565b60008135905061169781612366565b92915050565b6000602082840312156116b3576116b2611ebb565b5b60006116c184828501611673565b91505092915050565b600080604083850312156116e1576116e0611ebb565b5b60006116ef85828601611673565b925050602061170085828601611673565b9150509250929050565b60008060006060848603121561172357611722611ebb565b5b600061173186828701611673565b935050602061174286828701611673565b925050604061175386828701611688565b9150509250925092565b6000806040838503121561177457611773611ebb565b5b600061178285828601611673565b925050602061179385828601611688565b9150509250929050565b6000602082840312156117b3576117b2611ebb565b5b60006117c184828501611688565b91505092915050565b6117d381611da3565b82525050565b6117e281611db5565b82525050565b60006117f382611cfd565b6117fd8185611d08565b935061180d818560208601611df8565b61181681611ec0565b840191505092915050565b600061182e602383611d08565b915061183982611ed1565b604082019050919050565b6000611851602283611d08565b915061185c82611f20565b604082019050919050565b6000611874602683611d08565b915061187f82611f6f565b604082019050919050565b6000611897602283611d08565b91506118a282611fbe565b604082019050919050565b60006118ba601d83611d08565b91506118c58261200d565b602082019050919050565b60006118dd602683611d08565b91506118e882612036565b604082019050919050565b6000611900602583611d08565b915061190b82612085565b604082019050919050565b6000611923602083611d08565b915061192e826120d4565b602082019050919050565b6000611946602483611d08565b9150611951826120fd565b604082019050919050565b6000611969602183611d08565b91506119748261214c565b604082019050919050565b600061198c602583611d08565b91506119978261219b565b604082019050919050565b60006119af602683611d08565b91506119ba826121ea565b604082019050919050565b60006119d2602483611d08565b91506119dd82612239565b604082019050919050565b60006119f5602a83611d08565b9150611a0082612288565b604082019050919050565b6000611a18602583611d08565b9150611a23826122d7565b604082019050919050565b6000611a3b601f83611d08565b9150611a4682612326565b602082019050919050565b611a5a81611de1565b82525050565b611a6981611deb565b82525050565b6000602082019050611a8460008301846117ca565b92915050565b6000602082019050611a9f60008301846117d9565b92915050565b60006020820190508181036000830152611abf81846117e8565b905092915050565b60006020820190508181036000830152611ae081611821565b9050919050565b60006020820190508181036000830152611b0081611844565b9050919050565b60006020820190508181036000830152611b2081611867565b9050919050565b60006020820190508181036000830152611b408161188a565b9050919050565b60006020820190508181036000830152611b60816118ad565b9050919050565b60006020820190508181036000830152611b80816118d0565b9050919050565b60006020820190508181036000830152611ba0816118f3565b9050919050565b60006020820190508181036000830152611bc081611916565b9050919050565b60006020820190508181036000830152611be081611939565b9050919050565b60006020820190508181036000830152611c008161195c565b9050919050565b60006020820190508181036000830152611c208161197f565b9050919050565b60006020820190508181036000830152611c40816119a2565b9050919050565b60006020820190508181036000830152611c60816119c5565b9050919050565b60006020820190508181036000830152611c80816119e8565b9050919050565b60006020820190508181036000830152611ca081611a0b565b9050919050565b60006020820190508181036000830152611cc081611a2e565b9050919050565b6000602082019050611cdc6000830184611a51565b92915050565b6000602082019050611cf76000830184611a60565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611d2482611de1565b9150611d2f83611de1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611d6457611d63611e5d565b5b828201905092915050565b6000611d7a82611de1565b9150611d8583611de1565b925082821015611d9857611d97611e5d565b5b828203905092915050565b6000611dae82611dc1565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611e16578082015181840152602081019050611dfb565b83811115611e25576000848401525b50505050565b60006002820490506001821680611e4357607f821691505b60208210811415611e5757611e56611e8c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f41646d696e6973747261626c653a2063616c6c6572206973206e6f7420616e2060008201527f61646d696e000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f41646d696e6973747261626c653a2061646472657373206973206e6f7420616e60008201527f2061646d696e0000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f41646d696e6973747261626c653a206164647265737320697320616c7265616460008201527f7920616e2061646d696e00000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61235881611da3565b811461236357600080fd5b50565b61236f81611de1565b811461237a57600080fd5b5056fea264697066735822122059aecb7ad3e7d5c68850a561c311af42c1e3f81be4755c9d75f46d2871b194d564736f6c63430008070033

Deployed Bytecode Sourcemap

20727:809:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6668:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9019:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20514:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7788:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9800:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7630:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10504:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20880:107;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21028:85;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19893:39;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20264:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7959:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19033:103;;;:::i;:::-;;21169:362;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18382:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6887:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11245:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8292:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8548:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19291:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6668:100;6722:13;6755:5;6748:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6668:100;:::o;9019:201::-;9102:4;9119:13;9135:12;:10;:12::i;:::-;9119:28;;9158:32;9167:5;9174:7;9183:6;9158:8;:32::i;:::-;9208:4;9201:11;;;9019:201;;;;:::o;20514:204::-;18613:12;:10;:12::i;:::-;18602:23;;:7;:5;:7::i;:::-;:23;;;18594:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20588:6:::1;:13;20595:5;20588:13;;;;;;;;;;;;;;;;;;;;;;;;;20580:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;20662:6;:13;20669:5;20662:13;;;;;;;;;;;;;;;;20655:20;;;;;;;;;;;20691:19;20704:5;20691:19;;;;;;:::i;:::-;;;;;;;;20514:204:::0;:::o;7788:108::-;7849:7;7876:12;;7869:19;;7788:108;:::o;9800:295::-;9931:4;9948:15;9966:12;:10;:12::i;:::-;9948:30;;9989:38;10005:4;10011:7;10020:6;9989:15;:38::i;:::-;10038:27;10048:4;10054:2;10058:6;10038:9;:27::i;:::-;10083:4;10076:11;;;9800:295;;;;;:::o;7630:93::-;7688:5;7713:2;7706:9;;7630:93;:::o;10504:238::-;10592:4;10609:13;10625:12;:10;:12::i;:::-;10609:28;;10648:64;10657:5;10664:7;10701:10;10673:25;10683:5;10690:7;10673:9;:25::i;:::-;:38;;;;:::i;:::-;10648:8;:64::i;:::-;10730:4;10723:11;;;10504:238;;;;:::o;20880:107::-;20110:6;:20;20117:12;:10;:12::i;:::-;20110:20;;;;;;;;;;;;;;;;;;;;;;;;;:47;;;;20145:12;:10;:12::i;:::-;20134:23;;:7;:5;:7::i;:::-;:23;;;20110:47;20102:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;20957:22:::1;20963:7;20972:6;20957:5;:22::i;:::-;20880:107:::0;;:::o;21028:85::-;21078:27;21084:12;:10;:12::i;:::-;21098:6;21078:5;:27::i;:::-;21028:85;:::o;19893:39::-;;;;;;;;;;;;;;;;;;;;;;:::o;20264:204::-;18613:12;:10;:12::i;:::-;18602:23;;:7;:5;:7::i;:::-;:23;;;18594:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20336:6:::1;:13;20343:5;20336:13;;;;;;;;;;;;;;;;;;;;;;;;;20335:14;20327:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;20423:4;20407:6;:13;20414:5;20407:13;;;;;;;;;;;;;;;;:20;;;;;;;;;;;;;;;;;;20443:17;20454:5;20443:17;;;;;;:::i;:::-;;;;;;;;20264:204:::0;:::o;7959:127::-;8033:7;8060:9;:18;8070:7;8060:18;;;;;;;;;;;;;;;;8053:25;;7959:127;;;:::o;19033:103::-;18613:12;:10;:12::i;:::-;18602:23;;:7;:5;:7::i;:::-;:23;;;18594:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19098:30:::1;19125:1;19098:18;:30::i;:::-;19033:103::o:0;21169:362::-;21240:24;21267:32;21277:7;21286:12;:10;:12::i;:::-;21267:9;:32::i;:::-;21240:59;;21338:6;21318:16;:26;;21310:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;21421:58;21430:7;21439:12;:10;:12::i;:::-;21472:6;21453:16;:25;21421:8;:58::i;:::-;21501:22;21507:7;21516:6;21501:5;:22::i;:::-;21229:302;21169:362;;:::o;18382:87::-;18428:7;18455:6;;;;;;;;;;;18448:13;;18382:87;:::o;6887:104::-;6943:13;6976:7;6969:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6887:104;:::o;11245:436::-;11338:4;11355:13;11371:12;:10;:12::i;:::-;11355:28;;11394:24;11421:25;11431:5;11438:7;11421:9;:25::i;:::-;11394:52;;11485:15;11465:16;:35;;11457:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11578:60;11587:5;11594:7;11622:15;11603:16;:34;11578:8;:60::i;:::-;11669:4;11662:11;;;;11245:436;;;;:::o;8292:193::-;8371:4;8388:13;8404:12;:10;:12::i;:::-;8388:28;;8427;8437:5;8444:2;8448:6;8427:9;:28::i;:::-;8473:4;8466:11;;;8292:193;;;;:::o;8548:151::-;8637:7;8664:11;:18;8676:5;8664:18;;;;;;;;;;;;;;;:27;8683:7;8664:27;;;;;;;;;;;;;;;;8657:34;;8548:151;;;;:::o;19291:201::-;18613:12;:10;:12::i;:::-;18602:23;;:7;:5;:7::i;:::-;:23;;;18594:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19400:1:::1;19380:22;;:8;:22;;;;19372:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;19456:28;19475:8;19456:18;:28::i;:::-;19291:201:::0;:::o;1215:98::-;1268:7;1295:10;1288:17;;1215:98;:::o;14879:380::-;15032:1;15015:19;;:5;:19;;;;15007:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15113:1;15094:21;;:7;:21;;;;15086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15197:6;15167:11;:18;15179:5;15167:18;;;;;;;;;;;;;;;:27;15186:7;15167:27;;;;;;;;;;;;;;;:36;;;;15235:7;15219:32;;15228:5;15219:32;;;15244:6;15219:32;;;;;;:::i;:::-;;;;;;;;14879:380;;;:::o;15550:453::-;15685:24;15712:25;15722:5;15729:7;15712:9;:25::i;:::-;15685:52;;15772:17;15752:16;:37;15748:248;;15834:6;15814:16;:26;;15806:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15918:51;15927:5;15934:7;15962:6;15943:16;:25;15918:8;:51::i;:::-;15748:248;15674:329;15550:453;;;:::o;12160:671::-;12307:1;12291:18;;:4;:18;;;;12283:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12384:1;12370:16;;:2;:16;;;;12362:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12439:38;12460:4;12466:2;12470:6;12439:20;:38::i;:::-;12490:19;12512:9;:15;12522:4;12512:15;;;;;;;;;;;;;;;;12490:37;;12561:6;12546:11;:21;;12538:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12678:6;12664:11;:20;12646:9;:15;12656:4;12646:15;;;;;;;;;;;;;;;:38;;;;12723:6;12706:9;:13;12716:2;12706:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;12762:2;12747:26;;12756:4;12747:26;;;12766:6;12747:26;;;;;;:::i;:::-;;;;;;;;12786:37;12806:4;12812:2;12816:6;12786:19;:37::i;:::-;12272:559;12160:671;;;:::o;13118:399::-;13221:1;13202:21;;:7;:21;;;;13194:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;13272:49;13301:1;13305:7;13314:6;13272:20;:49::i;:::-;13350:6;13334:12;;:22;;;;;;;:::i;:::-;;;;;;;;13389:6;13367:9;:18;13377:7;13367:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;13432:7;13411:37;;13428:1;13411:37;;;13441:6;13411:37;;;;;;:::i;:::-;;;;;;;;13461:48;13489:1;13493:7;13502:6;13461:19;:48::i;:::-;13118:399;;:::o;13850:591::-;13953:1;13934:21;;:7;:21;;;;13926:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14006:49;14027:7;14044:1;14048:6;14006:20;:49::i;:::-;14068:22;14093:9;:18;14103:7;14093:18;;;;;;;;;;;;;;;;14068:43;;14148:6;14130:14;:24;;14122:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14267:6;14250:14;:23;14229:9;:18;14239:7;14229:18;;;;;;;;;;;;;;;:44;;;;14311:6;14295:12;;:22;;;;;;;:::i;:::-;;;;;;;;14361:1;14335:37;;14344:7;14335:37;;;14365:6;14335:37;;;;;;:::i;:::-;;;;;;;;14385:48;14405:7;14422:1;14426:6;14385:19;:48::i;:::-;13915:526;13850:591;;:::o;19652:191::-;19726:16;19745:6;;;;;;;;;;;19726:25;;19771:8;19762:6;;:17;;;;;;;;;;;;;;;;;;19826:8;19795:40;;19816:8;19795:40;;;;;;;;;;;;19715:128;19652:191;:::o;16603:125::-;;;;:::o;17332:124::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;152:139;;;;:::o;297:329::-;356:6;405:2;393:9;384:7;380:23;376:32;373:119;;;411:79;;:::i;:::-;373:119;531:1;556:53;601:7;592:6;581:9;577:22;556:53;:::i;:::-;546:63;;502:117;297:329;;;;:::o;632:474::-;700:6;708;757:2;745:9;736:7;732:23;728:32;725:119;;;763:79;;:::i;:::-;725:119;883:1;908:53;953:7;944:6;933:9;929:22;908:53;:::i;:::-;898:63;;854:117;1010:2;1036:53;1081:7;1072:6;1061:9;1057:22;1036:53;:::i;:::-;1026:63;;981:118;632:474;;;;;:::o;1112:619::-;1189:6;1197;1205;1254:2;1242:9;1233:7;1229:23;1225:32;1222:119;;;1260:79;;:::i;:::-;1222:119;1380:1;1405:53;1450:7;1441:6;1430:9;1426:22;1405:53;:::i;:::-;1395:63;;1351:117;1507:2;1533:53;1578:7;1569:6;1558:9;1554:22;1533:53;:::i;:::-;1523:63;;1478:118;1635:2;1661:53;1706:7;1697:6;1686:9;1682:22;1661:53;:::i;:::-;1651:63;;1606:118;1112:619;;;;;:::o;1737:474::-;1805:6;1813;1862:2;1850:9;1841:7;1837:23;1833:32;1830:119;;;1868:79;;:::i;:::-;1830:119;1988:1;2013:53;2058:7;2049:6;2038:9;2034:22;2013:53;:::i;:::-;2003:63;;1959:117;2115:2;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2086:118;1737:474;;;;;:::o;2217:329::-;2276:6;2325:2;2313:9;2304:7;2300:23;2296:32;2293:119;;;2331:79;;:::i;:::-;2293:119;2451:1;2476:53;2521:7;2512:6;2501:9;2497:22;2476:53;:::i;:::-;2466:63;;2422:117;2217:329;;;;:::o;2552:118::-;2639:24;2657:5;2639:24;:::i;:::-;2634:3;2627:37;2552:118;;:::o;2676:109::-;2757:21;2772:5;2757:21;:::i;:::-;2752:3;2745:34;2676:109;;:::o;2791:364::-;2879:3;2907:39;2940:5;2907:39;:::i;:::-;2962:71;3026:6;3021:3;2962:71;:::i;:::-;2955:78;;3042:52;3087:6;3082:3;3075:4;3068:5;3064:16;3042:52;:::i;:::-;3119:29;3141:6;3119:29;:::i;:::-;3114:3;3110:39;3103:46;;2883:272;2791:364;;;;:::o;3161:366::-;3303:3;3324:67;3388:2;3383:3;3324:67;:::i;:::-;3317:74;;3400:93;3489:3;3400:93;:::i;:::-;3518:2;3513:3;3509:12;3502:19;;3161:366;;;:::o;3533:::-;3675:3;3696:67;3760:2;3755:3;3696:67;:::i;:::-;3689:74;;3772:93;3861:3;3772:93;:::i;:::-;3890:2;3885:3;3881:12;3874:19;;3533:366;;;:::o;3905:::-;4047:3;4068:67;4132:2;4127:3;4068:67;:::i;:::-;4061:74;;4144:93;4233:3;4144:93;:::i;:::-;4262:2;4257:3;4253:12;4246:19;;3905:366;;;:::o;4277:::-;4419:3;4440:67;4504:2;4499:3;4440:67;:::i;:::-;4433:74;;4516:93;4605:3;4516:93;:::i;:::-;4634:2;4629:3;4625:12;4618:19;;4277:366;;;:::o;4649:::-;4791:3;4812:67;4876:2;4871:3;4812:67;:::i;:::-;4805:74;;4888:93;4977:3;4888:93;:::i;:::-;5006:2;5001:3;4997:12;4990:19;;4649:366;;;:::o;5021:::-;5163:3;5184:67;5248:2;5243:3;5184:67;:::i;:::-;5177:74;;5260:93;5349:3;5260:93;:::i;:::-;5378:2;5373:3;5369:12;5362:19;;5021:366;;;:::o;5393:::-;5535:3;5556:67;5620:2;5615:3;5556:67;:::i;:::-;5549:74;;5632:93;5721:3;5632:93;:::i;:::-;5750:2;5745:3;5741:12;5734:19;;5393:366;;;:::o;5765:::-;5907:3;5928:67;5992:2;5987:3;5928:67;:::i;:::-;5921:74;;6004:93;6093:3;6004:93;:::i;:::-;6122:2;6117:3;6113:12;6106:19;;5765:366;;;:::o;6137:::-;6279:3;6300:67;6364:2;6359:3;6300:67;:::i;:::-;6293:74;;6376:93;6465:3;6376:93;:::i;:::-;6494:2;6489:3;6485:12;6478:19;;6137:366;;;:::o;6509:::-;6651:3;6672:67;6736:2;6731:3;6672:67;:::i;:::-;6665:74;;6748:93;6837:3;6748:93;:::i;:::-;6866:2;6861:3;6857:12;6850:19;;6509:366;;;:::o;6881:::-;7023:3;7044:67;7108:2;7103:3;7044:67;:::i;:::-;7037:74;;7120:93;7209:3;7120:93;:::i;:::-;7238:2;7233:3;7229:12;7222:19;;6881:366;;;:::o;7253:::-;7395:3;7416:67;7480:2;7475:3;7416:67;:::i;:::-;7409:74;;7492:93;7581:3;7492:93;:::i;:::-;7610:2;7605:3;7601:12;7594:19;;7253:366;;;:::o;7625:::-;7767:3;7788:67;7852:2;7847:3;7788:67;:::i;:::-;7781:74;;7864:93;7953:3;7864:93;:::i;:::-;7982:2;7977:3;7973:12;7966:19;;7625:366;;;:::o;7997:::-;8139:3;8160:67;8224:2;8219:3;8160:67;:::i;:::-;8153:74;;8236:93;8325:3;8236:93;:::i;:::-;8354:2;8349:3;8345:12;8338:19;;7997:366;;;:::o;8369:::-;8511:3;8532:67;8596:2;8591:3;8532:67;:::i;:::-;8525:74;;8608:93;8697:3;8608:93;:::i;:::-;8726:2;8721:3;8717:12;8710:19;;8369:366;;;:::o;8741:::-;8883:3;8904:67;8968:2;8963:3;8904:67;:::i;:::-;8897:74;;8980:93;9069:3;8980:93;:::i;:::-;9098:2;9093:3;9089:12;9082:19;;8741:366;;;:::o;9113:118::-;9200:24;9218:5;9200:24;:::i;:::-;9195:3;9188:37;9113:118;;:::o;9237:112::-;9320:22;9336:5;9320:22;:::i;:::-;9315:3;9308:35;9237:112;;:::o;9355:222::-;9448:4;9486:2;9475:9;9471:18;9463:26;;9499:71;9567:1;9556:9;9552:17;9543:6;9499:71;:::i;:::-;9355:222;;;;:::o;9583:210::-;9670:4;9708:2;9697:9;9693:18;9685:26;;9721:65;9783:1;9772:9;9768:17;9759:6;9721:65;:::i;:::-;9583:210;;;;:::o;9799:313::-;9912:4;9950:2;9939:9;9935:18;9927:26;;9999:9;9993:4;9989:20;9985:1;9974:9;9970:17;9963:47;10027:78;10100:4;10091:6;10027:78;:::i;:::-;10019:86;;9799:313;;;;:::o;10118:419::-;10284:4;10322:2;10311:9;10307:18;10299:26;;10371:9;10365:4;10361:20;10357:1;10346:9;10342:17;10335:47;10399:131;10525:4;10399:131;:::i;:::-;10391:139;;10118:419;;;:::o;10543:::-;10709:4;10747:2;10736:9;10732:18;10724:26;;10796:9;10790:4;10786:20;10782:1;10771:9;10767:17;10760:47;10824:131;10950:4;10824:131;:::i;:::-;10816:139;;10543:419;;;:::o;10968:::-;11134:4;11172:2;11161:9;11157:18;11149:26;;11221:9;11215:4;11211:20;11207:1;11196:9;11192:17;11185:47;11249:131;11375:4;11249:131;:::i;:::-;11241:139;;10968:419;;;:::o;11393:::-;11559:4;11597:2;11586:9;11582:18;11574:26;;11646:9;11640:4;11636:20;11632:1;11621:9;11617:17;11610:47;11674:131;11800:4;11674:131;:::i;:::-;11666:139;;11393:419;;;:::o;11818:::-;11984:4;12022:2;12011:9;12007:18;11999:26;;12071:9;12065:4;12061:20;12057:1;12046:9;12042:17;12035:47;12099:131;12225:4;12099:131;:::i;:::-;12091:139;;11818:419;;;:::o;12243:::-;12409:4;12447:2;12436:9;12432:18;12424:26;;12496:9;12490:4;12486:20;12482:1;12471:9;12467:17;12460:47;12524:131;12650:4;12524:131;:::i;:::-;12516:139;;12243:419;;;:::o;12668:::-;12834:4;12872:2;12861:9;12857:18;12849:26;;12921:9;12915:4;12911:20;12907:1;12896:9;12892:17;12885:47;12949:131;13075:4;12949:131;:::i;:::-;12941:139;;12668:419;;;:::o;13093:::-;13259:4;13297:2;13286:9;13282:18;13274:26;;13346:9;13340:4;13336:20;13332:1;13321:9;13317:17;13310:47;13374:131;13500:4;13374:131;:::i;:::-;13366:139;;13093:419;;;:::o;13518:::-;13684:4;13722:2;13711:9;13707:18;13699:26;;13771:9;13765:4;13761:20;13757:1;13746:9;13742:17;13735:47;13799:131;13925:4;13799:131;:::i;:::-;13791:139;;13518:419;;;:::o;13943:::-;14109:4;14147:2;14136:9;14132:18;14124:26;;14196:9;14190:4;14186:20;14182:1;14171:9;14167:17;14160:47;14224:131;14350:4;14224:131;:::i;:::-;14216:139;;13943:419;;;:::o;14368:::-;14534:4;14572:2;14561:9;14557:18;14549:26;;14621:9;14615:4;14611:20;14607:1;14596:9;14592:17;14585:47;14649:131;14775:4;14649:131;:::i;:::-;14641:139;;14368:419;;;:::o;14793:::-;14959:4;14997:2;14986:9;14982:18;14974:26;;15046:9;15040:4;15036:20;15032:1;15021:9;15017:17;15010:47;15074:131;15200:4;15074:131;:::i;:::-;15066:139;;14793:419;;;:::o;15218:::-;15384:4;15422:2;15411:9;15407:18;15399:26;;15471:9;15465:4;15461:20;15457:1;15446:9;15442:17;15435:47;15499:131;15625:4;15499:131;:::i;:::-;15491:139;;15218:419;;;:::o;15643:::-;15809:4;15847:2;15836:9;15832:18;15824:26;;15896:9;15890:4;15886:20;15882:1;15871:9;15867:17;15860:47;15924:131;16050:4;15924:131;:::i;:::-;15916:139;;15643:419;;;:::o;16068:::-;16234:4;16272:2;16261:9;16257:18;16249:26;;16321:9;16315:4;16311:20;16307:1;16296:9;16292:17;16285:47;16349:131;16475:4;16349:131;:::i;:::-;16341:139;;16068:419;;;:::o;16493:::-;16659:4;16697:2;16686:9;16682:18;16674:26;;16746:9;16740:4;16736:20;16732:1;16721:9;16717:17;16710:47;16774:131;16900:4;16774:131;:::i;:::-;16766:139;;16493:419;;;:::o;16918:222::-;17011:4;17049:2;17038:9;17034:18;17026:26;;17062:71;17130:1;17119:9;17115:17;17106:6;17062:71;:::i;:::-;16918:222;;;;:::o;17146:214::-;17235:4;17273:2;17262:9;17258:18;17250:26;;17286:67;17350:1;17339:9;17335:17;17326:6;17286:67;:::i;:::-;17146:214;;;;:::o;17447:99::-;17499:6;17533:5;17527:12;17517:22;;17447:99;;;:::o;17552:169::-;17636:11;17670:6;17665:3;17658:19;17710:4;17705:3;17701:14;17686:29;;17552:169;;;;:::o;17727:305::-;17767:3;17786:20;17804:1;17786:20;:::i;:::-;17781:25;;17820:20;17838:1;17820:20;:::i;:::-;17815:25;;17974:1;17906:66;17902:74;17899:1;17896:81;17893:107;;;17980:18;;:::i;:::-;17893:107;18024:1;18021;18017:9;18010:16;;17727:305;;;;:::o;18038:191::-;18078:4;18098:20;18116:1;18098:20;:::i;:::-;18093:25;;18132:20;18150:1;18132:20;:::i;:::-;18127:25;;18171:1;18168;18165:8;18162:34;;;18176:18;;:::i;:::-;18162:34;18221:1;18218;18214:9;18206:17;;18038:191;;;;:::o;18235:96::-;18272:7;18301:24;18319:5;18301:24;:::i;:::-;18290:35;;18235:96;;;:::o;18337:90::-;18371:7;18414:5;18407:13;18400:21;18389:32;;18337:90;;;:::o;18433:126::-;18470:7;18510:42;18503:5;18499:54;18488:65;;18433:126;;;:::o;18565:77::-;18602:7;18631:5;18620:16;;18565:77;;;:::o;18648:86::-;18683:7;18723:4;18716:5;18712:16;18701:27;;18648:86;;;:::o;18740:307::-;18808:1;18818:113;18832:6;18829:1;18826:13;18818:113;;;18917:1;18912:3;18908:11;18902:18;18898:1;18893:3;18889:11;18882:39;18854:2;18851:1;18847:10;18842:15;;18818:113;;;18949:6;18946:1;18943:13;18940:101;;;19029:1;19020:6;19015:3;19011:16;19004:27;18940:101;18789:258;18740:307;;;:::o;19053:320::-;19097:6;19134:1;19128:4;19124:12;19114:22;;19181:1;19175:4;19171:12;19202:18;19192:81;;19258:4;19250:6;19246:17;19236:27;;19192:81;19320:2;19312:6;19309:14;19289:18;19286:38;19283:84;;;19339:18;;:::i;:::-;19283:84;19104:269;19053:320;;;:::o;19379:180::-;19427:77;19424:1;19417:88;19524:4;19521:1;19514:15;19548:4;19545:1;19538:15;19565:180;19613:77;19610:1;19603:88;19710:4;19707:1;19700:15;19734:4;19731:1;19724:15;19874:117;19983:1;19980;19973:12;19997:102;20038:6;20089:2;20085:7;20080:2;20073:5;20069:14;20065:28;20055:38;;19997:102;;;:::o;20105:222::-;20245:34;20241:1;20233:6;20229:14;20222:58;20314:5;20309:2;20301:6;20297:15;20290:30;20105:222;:::o;20333:221::-;20473:34;20469:1;20461:6;20457:14;20450:58;20542:4;20537:2;20529:6;20525:15;20518:29;20333:221;:::o;20560:225::-;20700:34;20696:1;20688:6;20684:14;20677:58;20769:8;20764:2;20756:6;20752:15;20745:33;20560:225;:::o;20791:221::-;20931:34;20927:1;20919:6;20915:14;20908:58;21000:4;20995:2;20987:6;20983:15;20976:29;20791:221;:::o;21018:179::-;21158:31;21154:1;21146:6;21142:14;21135:55;21018:179;:::o;21203:225::-;21343:34;21339:1;21331:6;21327:14;21320:58;21412:8;21407:2;21399:6;21395:15;21388:33;21203:225;:::o;21434:224::-;21574:34;21570:1;21562:6;21558:14;21551:58;21643:7;21638:2;21630:6;21626:15;21619:32;21434:224;:::o;21664:182::-;21804:34;21800:1;21792:6;21788:14;21781:58;21664:182;:::o;21852:223::-;21992:34;21988:1;21980:6;21976:14;21969:58;22061:6;22056:2;22048:6;22044:15;22037:31;21852:223;:::o;22081:220::-;22221:34;22217:1;22209:6;22205:14;22198:58;22290:3;22285:2;22277:6;22273:15;22266:28;22081:220;:::o;22307:224::-;22447:34;22443:1;22435:6;22431:14;22424:58;22516:7;22511:2;22503:6;22499:15;22492:32;22307:224;:::o;22537:225::-;22677:34;22673:1;22665:6;22661:14;22654:58;22746:8;22741:2;22733:6;22729:15;22722:33;22537:225;:::o;22768:223::-;22908:34;22904:1;22896:6;22892:14;22885:58;22977:6;22972:2;22964:6;22960:15;22953:31;22768:223;:::o;22997:229::-;23137:34;23133:1;23125:6;23121:14;23114:58;23206:12;23201:2;23193:6;23189:15;23182:37;22997:229;:::o;23232:224::-;23372:34;23368:1;23360:6;23356:14;23349:58;23441:7;23436:2;23428:6;23424:15;23417:32;23232:224;:::o;23462:181::-;23602:33;23598:1;23590:6;23586:14;23579:57;23462:181;:::o;23649:122::-;23722:24;23740:5;23722:24;:::i;:::-;23715:5;23712:35;23702:63;;23761:1;23758;23751:12;23702:63;23649:122;:::o;23777:::-;23850:24;23868:5;23850:24;:::i;:::-;23843:5;23840:35;23830:63;;23889:1;23886;23879:12;23830:63;23777:122;:::o

Swarm Source

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