ETH Price: $2,978.97 (-2.37%)
Gas: 4 Gwei

Token

Honey (HONEY)
 

Overview

Max Total Supply

162,143.524585416666665953 HONEY

Holders

57

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
fabiaz84.eth
Balance
3,211.73360624999999999 HONEY

Value
$0.00
0xb9ab9578a34a05c86124c399735fde44dec80e7f
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:
Honey

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// 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/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/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.6.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.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 {}
}

// 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: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (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 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);
    }
}

// File: Honey.sol



pragma solidity 0.8.12;




contract Honey is ERC20, ERC20Burnable, Ownable {

  mapping(address => bool) private controllers;
  
  constructor() ERC20("Honey", "HONEY") {}

  function mint(address to, uint256 amount) external {
    require(controllers[msg.sender], "Only controllers can mint");
    _mint(to, amount);
  }

  function burnFrom(address account, uint256 amount) public override {
      if (controllers[msg.sender]) {
          _burn(account, amount);
      }
      else {
          super.burnFrom(account, amount);
      }
  }

  function addController(address controller) external onlyOwner {
    controllers[controller] = true;
  }

  function removeController(address controller) external onlyOwner {
    controllers[controller] = false;
  }
}

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":"controller","type":"address"}],"name":"addController","outputs":[],"stateMutability":"nonpayable","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":"to","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":"controller","type":"address"}],"name":"removeController","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"}]

60806040523480156200001157600080fd5b506040518060400160405280600581526020017f486f6e65790000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f484f4e4559000000000000000000000000000000000000000000000000000000815250816003908051906020019062000096929190620001a6565b508060049080519060200190620000af929190620001a6565b505050620000d2620000c6620000d860201b60201c565b620000e060201b60201c565b620002bb565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001b49062000285565b90600052602060002090601f016020900481019282620001d8576000855562000224565b82601f10620001f357805160ff191683800117855562000224565b8280016001018555821562000224579182015b828111156200022357825182559160200191906001019062000206565b5b50905062000233919062000237565b5090565b5b808211156200025257600081600090555060010162000238565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200029e57607f821691505b60208210811415620002b557620002b462000256565b5b50919050565b611fc880620002cb6000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063a7fc7a0711610071578063a7fc7a071461030a578063a9059cbb14610326578063dd62ed3e14610356578063f2fde38b14610386578063f6a74ed7146103a257610121565b8063715018a61461027857806379cc6790146102825780638da5cb5b1461029e57806395d89b41146102bc578063a457c2d7146102da57610121565b8063313ce567116100f4578063313ce567146101c257806339509351146101e057806340c10f191461021057806342966c681461022c57806370a082311461024857610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e6103be565b60405161013b91906114fd565b60405180910390f35b61015e600480360381019061015991906115b8565b610450565b60405161016b9190611613565b60405180910390f35b61017c610473565b604051610189919061163d565b60405180910390f35b6101ac60048036038101906101a79190611658565b61047d565b6040516101b99190611613565b60405180910390f35b6101ca6104ac565b6040516101d791906116c7565b60405180910390f35b6101fa60048036038101906101f591906115b8565b6104b5565b6040516102079190611613565b60405180910390f35b61022a600480360381019061022591906115b8565b6104ec565b005b610246600480360381019061024191906116e2565b610586565b005b610262600480360381019061025d919061170f565b61059a565b60405161026f919061163d565b60405180910390f35b6102806105e2565b005b61029c600480360381019061029791906115b8565b61066a565b005b6102a66106da565b6040516102b3919061174b565b60405180910390f35b6102c4610704565b6040516102d191906114fd565b60405180910390f35b6102f460048036038101906102ef91906115b8565b610796565b6040516103019190611613565b60405180910390f35b610324600480360381019061031f919061170f565b61080d565b005b610340600480360381019061033b91906115b8565b6108e4565b60405161034d9190611613565b60405180910390f35b610370600480360381019061036b9190611766565b610907565b60405161037d919061163d565b60405180910390f35b6103a0600480360381019061039b919061170f565b61098e565b005b6103bc60048036038101906103b7919061170f565b610a86565b005b6060600380546103cd906117d5565b80601f01602080910402602001604051908101604052809291908181526020018280546103f9906117d5565b80156104465780601f1061041b57610100808354040283529160200191610446565b820191906000526020600020905b81548152906001019060200180831161042957829003601f168201915b5050505050905090565b60008061045b610b5d565b9050610468818585610b65565b600191505092915050565b6000600254905090565b600080610488610b5d565b9050610495858285610d30565b6104a0858585610dbc565b60019150509392505050565b60006012905090565b6000806104c0610b5d565b90506104e18185856104d28589610907565b6104dc9190611836565b610b65565b600191505092915050565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161056f906118d8565b60405180910390fd5b610582828261103d565b5050565b610597610591610b5d565b8261119d565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105ea610b5d565b73ffffffffffffffffffffffffffffffffffffffff166106086106da565b73ffffffffffffffffffffffffffffffffffffffff161461065e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065590611944565b60405180910390fd5b6106686000611374565b565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156106cb576106c6828261119d565b6106d6565b6106d5828261143a565b5b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610713906117d5565b80601f016020809104026020016040519081016040528092919081815260200182805461073f906117d5565b801561078c5780601f106107615761010080835404028352916020019161078c565b820191906000526020600020905b81548152906001019060200180831161076f57829003601f168201915b5050505050905090565b6000806107a1610b5d565b905060006107af8286610907565b9050838110156107f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107eb906119d6565b60405180910390fd5b6108018286868403610b65565b60019250505092915050565b610815610b5d565b73ffffffffffffffffffffffffffffffffffffffff166108336106da565b73ffffffffffffffffffffffffffffffffffffffff1614610889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088090611944565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000806108ef610b5d565b90506108fc818585610dbc565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610996610b5d565b73ffffffffffffffffffffffffffffffffffffffff166109b46106da565b73ffffffffffffffffffffffffffffffffffffffff1614610a0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0190611944565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7190611a68565b60405180910390fd5b610a8381611374565b50565b610a8e610b5d565b73ffffffffffffffffffffffffffffffffffffffff16610aac6106da565b73ffffffffffffffffffffffffffffffffffffffff1614610b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af990611944565b60405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcc90611afa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3c90611b8c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d23919061163d565b60405180910390a3505050565b6000610d3c8484610907565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610db65781811015610da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9f90611bf8565b60405180910390fd5b610db58484848403610b65565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2390611c8a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9390611d1c565b60405180910390fd5b610ea783838361145a565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2490611dae565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fc09190611836565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611024919061163d565b60405180910390a361103784848461145f565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a490611e1a565b60405180910390fd5b6110b96000838361145a565b80600260008282546110cb9190611836565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111209190611836565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611185919061163d565b60405180910390a36111996000838361145f565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561120d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120490611eac565b60405180910390fd5b6112198260008361145a565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561129f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129690611f3e565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546112f69190611f5e565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161135b919061163d565b60405180910390a361136f8360008461145f565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61144c82611446610b5d565b83610d30565b611456828261119d565b5050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561149e578082015181840152602081019050611483565b838111156114ad576000848401525b50505050565b6000601f19601f8301169050919050565b60006114cf82611464565b6114d9818561146f565b93506114e9818560208601611480565b6114f2816114b3565b840191505092915050565b6000602082019050818103600083015261151781846114c4565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061154f82611524565b9050919050565b61155f81611544565b811461156a57600080fd5b50565b60008135905061157c81611556565b92915050565b6000819050919050565b61159581611582565b81146115a057600080fd5b50565b6000813590506115b28161158c565b92915050565b600080604083850312156115cf576115ce61151f565b5b60006115dd8582860161156d565b92505060206115ee858286016115a3565b9150509250929050565b60008115159050919050565b61160d816115f8565b82525050565b60006020820190506116286000830184611604565b92915050565b61163781611582565b82525050565b6000602082019050611652600083018461162e565b92915050565b6000806000606084860312156116715761167061151f565b5b600061167f8682870161156d565b93505060206116908682870161156d565b92505060406116a1868287016115a3565b9150509250925092565b600060ff82169050919050565b6116c1816116ab565b82525050565b60006020820190506116dc60008301846116b8565b92915050565b6000602082840312156116f8576116f761151f565b5b6000611706848285016115a3565b91505092915050565b6000602082840312156117255761172461151f565b5b60006117338482850161156d565b91505092915050565b61174581611544565b82525050565b6000602082019050611760600083018461173c565b92915050565b6000806040838503121561177d5761177c61151f565b5b600061178b8582860161156d565b925050602061179c8582860161156d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806117ed57607f821691505b60208210811415611801576118006117a6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061184182611582565b915061184c83611582565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561188157611880611807565b5b828201905092915050565b7f4f6e6c7920636f6e74726f6c6c6572732063616e206d696e7400000000000000600082015250565b60006118c260198361146f565b91506118cd8261188c565b602082019050919050565b600060208201905081810360008301526118f1816118b5565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061192e60208361146f565b9150611939826118f8565b602082019050919050565b6000602082019050818103600083015261195d81611921565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006119c060258361146f565b91506119cb82611964565b604082019050919050565b600060208201905081810360008301526119ef816119b3565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a5260268361146f565b9150611a5d826119f6565b604082019050919050565b60006020820190508181036000830152611a8181611a45565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ae460248361146f565b9150611aef82611a88565b604082019050919050565b60006020820190508181036000830152611b1381611ad7565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b7660228361146f565b9150611b8182611b1a565b604082019050919050565b60006020820190508181036000830152611ba581611b69565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611be2601d8361146f565b9150611bed82611bac565b602082019050919050565b60006020820190508181036000830152611c1181611bd5565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611c7460258361146f565b9150611c7f82611c18565b604082019050919050565b60006020820190508181036000830152611ca381611c67565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d0660238361146f565b9150611d1182611caa565b604082019050919050565b60006020820190508181036000830152611d3581611cf9565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611d9860268361146f565b9150611da382611d3c565b604082019050919050565b60006020820190508181036000830152611dc781611d8b565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611e04601f8361146f565b9150611e0f82611dce565b602082019050919050565b60006020820190508181036000830152611e3381611df7565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e9660218361146f565b9150611ea182611e3a565b604082019050919050565b60006020820190508181036000830152611ec581611e89565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f2860228361146f565b9150611f3382611ecc565b604082019050919050565b60006020820190508181036000830152611f5781611f1b565b9050919050565b6000611f6982611582565b9150611f7483611582565b925082821015611f8757611f86611807565b5b82820390509291505056fea2646970667358221220f3f0d56a43c3880379dceed885010ddd1e59121fc77bb3b4fa25525e88b118ca64736f6c634300080c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063a7fc7a0711610071578063a7fc7a071461030a578063a9059cbb14610326578063dd62ed3e14610356578063f2fde38b14610386578063f6a74ed7146103a257610121565b8063715018a61461027857806379cc6790146102825780638da5cb5b1461029e57806395d89b41146102bc578063a457c2d7146102da57610121565b8063313ce567116100f4578063313ce567146101c257806339509351146101e057806340c10f191461021057806342966c681461022c57806370a082311461024857610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e6103be565b60405161013b91906114fd565b60405180910390f35b61015e600480360381019061015991906115b8565b610450565b60405161016b9190611613565b60405180910390f35b61017c610473565b604051610189919061163d565b60405180910390f35b6101ac60048036038101906101a79190611658565b61047d565b6040516101b99190611613565b60405180910390f35b6101ca6104ac565b6040516101d791906116c7565b60405180910390f35b6101fa60048036038101906101f591906115b8565b6104b5565b6040516102079190611613565b60405180910390f35b61022a600480360381019061022591906115b8565b6104ec565b005b610246600480360381019061024191906116e2565b610586565b005b610262600480360381019061025d919061170f565b61059a565b60405161026f919061163d565b60405180910390f35b6102806105e2565b005b61029c600480360381019061029791906115b8565b61066a565b005b6102a66106da565b6040516102b3919061174b565b60405180910390f35b6102c4610704565b6040516102d191906114fd565b60405180910390f35b6102f460048036038101906102ef91906115b8565b610796565b6040516103019190611613565b60405180910390f35b610324600480360381019061031f919061170f565b61080d565b005b610340600480360381019061033b91906115b8565b6108e4565b60405161034d9190611613565b60405180910390f35b610370600480360381019061036b9190611766565b610907565b60405161037d919061163d565b60405180910390f35b6103a0600480360381019061039b919061170f565b61098e565b005b6103bc60048036038101906103b7919061170f565b610a86565b005b6060600380546103cd906117d5565b80601f01602080910402602001604051908101604052809291908181526020018280546103f9906117d5565b80156104465780601f1061041b57610100808354040283529160200191610446565b820191906000526020600020905b81548152906001019060200180831161042957829003601f168201915b5050505050905090565b60008061045b610b5d565b9050610468818585610b65565b600191505092915050565b6000600254905090565b600080610488610b5d565b9050610495858285610d30565b6104a0858585610dbc565b60019150509392505050565b60006012905090565b6000806104c0610b5d565b90506104e18185856104d28589610907565b6104dc9190611836565b610b65565b600191505092915050565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161056f906118d8565b60405180910390fd5b610582828261103d565b5050565b610597610591610b5d565b8261119d565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105ea610b5d565b73ffffffffffffffffffffffffffffffffffffffff166106086106da565b73ffffffffffffffffffffffffffffffffffffffff161461065e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065590611944565b60405180910390fd5b6106686000611374565b565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156106cb576106c6828261119d565b6106d6565b6106d5828261143a565b5b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610713906117d5565b80601f016020809104026020016040519081016040528092919081815260200182805461073f906117d5565b801561078c5780601f106107615761010080835404028352916020019161078c565b820191906000526020600020905b81548152906001019060200180831161076f57829003601f168201915b5050505050905090565b6000806107a1610b5d565b905060006107af8286610907565b9050838110156107f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107eb906119d6565b60405180910390fd5b6108018286868403610b65565b60019250505092915050565b610815610b5d565b73ffffffffffffffffffffffffffffffffffffffff166108336106da565b73ffffffffffffffffffffffffffffffffffffffff1614610889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088090611944565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000806108ef610b5d565b90506108fc818585610dbc565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610996610b5d565b73ffffffffffffffffffffffffffffffffffffffff166109b46106da565b73ffffffffffffffffffffffffffffffffffffffff1614610a0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0190611944565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7190611a68565b60405180910390fd5b610a8381611374565b50565b610a8e610b5d565b73ffffffffffffffffffffffffffffffffffffffff16610aac6106da565b73ffffffffffffffffffffffffffffffffffffffff1614610b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af990611944565b60405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcc90611afa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3c90611b8c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d23919061163d565b60405180910390a3505050565b6000610d3c8484610907565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610db65781811015610da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9f90611bf8565b60405180910390fd5b610db58484848403610b65565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2390611c8a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9390611d1c565b60405180910390fd5b610ea783838361145a565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2490611dae565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fc09190611836565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611024919061163d565b60405180910390a361103784848461145f565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a490611e1a565b60405180910390fd5b6110b96000838361145a565b80600260008282546110cb9190611836565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111209190611836565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611185919061163d565b60405180910390a36111996000838361145f565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561120d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120490611eac565b60405180910390fd5b6112198260008361145a565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561129f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129690611f3e565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546112f69190611f5e565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161135b919061163d565b60405180910390a361136f8360008461145f565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61144c82611446610b5d565b83610d30565b611456828261119d565b5050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561149e578082015181840152602081019050611483565b838111156114ad576000848401525b50505050565b6000601f19601f8301169050919050565b60006114cf82611464565b6114d9818561146f565b93506114e9818560208601611480565b6114f2816114b3565b840191505092915050565b6000602082019050818103600083015261151781846114c4565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061154f82611524565b9050919050565b61155f81611544565b811461156a57600080fd5b50565b60008135905061157c81611556565b92915050565b6000819050919050565b61159581611582565b81146115a057600080fd5b50565b6000813590506115b28161158c565b92915050565b600080604083850312156115cf576115ce61151f565b5b60006115dd8582860161156d565b92505060206115ee858286016115a3565b9150509250929050565b60008115159050919050565b61160d816115f8565b82525050565b60006020820190506116286000830184611604565b92915050565b61163781611582565b82525050565b6000602082019050611652600083018461162e565b92915050565b6000806000606084860312156116715761167061151f565b5b600061167f8682870161156d565b93505060206116908682870161156d565b92505060406116a1868287016115a3565b9150509250925092565b600060ff82169050919050565b6116c1816116ab565b82525050565b60006020820190506116dc60008301846116b8565b92915050565b6000602082840312156116f8576116f761151f565b5b6000611706848285016115a3565b91505092915050565b6000602082840312156117255761172461151f565b5b60006117338482850161156d565b91505092915050565b61174581611544565b82525050565b6000602082019050611760600083018461173c565b92915050565b6000806040838503121561177d5761177c61151f565b5b600061178b8582860161156d565b925050602061179c8582860161156d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806117ed57607f821691505b60208210811415611801576118006117a6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061184182611582565b915061184c83611582565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561188157611880611807565b5b828201905092915050565b7f4f6e6c7920636f6e74726f6c6c6572732063616e206d696e7400000000000000600082015250565b60006118c260198361146f565b91506118cd8261188c565b602082019050919050565b600060208201905081810360008301526118f1816118b5565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061192e60208361146f565b9150611939826118f8565b602082019050919050565b6000602082019050818103600083015261195d81611921565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006119c060258361146f565b91506119cb82611964565b604082019050919050565b600060208201905081810360008301526119ef816119b3565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a5260268361146f565b9150611a5d826119f6565b604082019050919050565b60006020820190508181036000830152611a8181611a45565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ae460248361146f565b9150611aef82611a88565b604082019050919050565b60006020820190508181036000830152611b1381611ad7565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b7660228361146f565b9150611b8182611b1a565b604082019050919050565b60006020820190508181036000830152611ba581611b69565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611be2601d8361146f565b9150611bed82611bac565b602082019050919050565b60006020820190508181036000830152611c1181611bd5565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611c7460258361146f565b9150611c7f82611c18565b604082019050919050565b60006020820190508181036000830152611ca381611c67565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d0660238361146f565b9150611d1182611caa565b604082019050919050565b60006020820190508181036000830152611d3581611cf9565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611d9860268361146f565b9150611da382611d3c565b604082019050919050565b60006020820190508181036000830152611dc781611d8b565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611e04601f8361146f565b9150611e0f82611dce565b602082019050919050565b60006020820190508181036000830152611e3381611df7565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e9660218361146f565b9150611ea182611e3a565b604082019050919050565b60006020820190508181036000830152611ec581611e89565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f2860228361146f565b9150611f3382611ecc565b604082019050919050565b60006020820190508181036000830152611f5781611f1b565b9050919050565b6000611f6982611582565b9150611f7483611582565b925082821015611f8757611f86611807565b5b82820390509291505056fea2646970667358221220f3f0d56a43c3880379dceed885010ddd1e59121fc77bb3b4fa25525e88b118ca64736f6c634300080c0033

Deployed Bytecode Sourcemap

21234:760:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6686:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9037:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7806:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9818:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7648:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10522:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21388:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18064:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7977:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20358:103;;;:::i;:::-;;21543:222;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19707:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6905:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11263:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21771:105;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8310:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8566:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20616:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21882:109;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6686:100;6740:13;6773:5;6766:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6686:100;:::o;9037:201::-;9120:4;9137:13;9153:12;:10;:12::i;:::-;9137:28;;9176:32;9185:5;9192:7;9201:6;9176:8;:32::i;:::-;9226:4;9219:11;;;9037:201;;;;:::o;7806:108::-;7867:7;7894:12;;7887:19;;7806:108;:::o;9818:295::-;9949:4;9966:15;9984:12;:10;:12::i;:::-;9966:30;;10007:38;10023:4;10029:7;10038:6;10007:15;:38::i;:::-;10056:27;10066:4;10072:2;10076:6;10056:9;:27::i;:::-;10101:4;10094:11;;;9818:295;;;;;:::o;7648:93::-;7706:5;7731:2;7724:9;;7648:93;:::o;10522:238::-;10610:4;10627:13;10643:12;:10;:12::i;:::-;10627:28;;10666:64;10675:5;10682:7;10719:10;10691:25;10701:5;10708:7;10691:9;:25::i;:::-;:38;;;;:::i;:::-;10666:8;:64::i;:::-;10748:4;10741:11;;;10522:238;;;;:::o;21388:149::-;21454:11;:23;21466:10;21454:23;;;;;;;;;;;;;;;;;;;;;;;;;21446:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;21514:17;21520:2;21524:6;21514:5;:17::i;:::-;21388:149;;:::o;18064:91::-;18120:27;18126:12;:10;:12::i;:::-;18140:6;18120:5;:27::i;:::-;18064:91;:::o;7977:127::-;8051:7;8078:9;:18;8088:7;8078:18;;;;;;;;;;;;;;;;8071:25;;7977:127;;;:::o;20358:103::-;19938:12;:10;:12::i;:::-;19927:23;;:7;:5;:7::i;:::-;:23;;;19919:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20423:30:::1;20450:1;20423:18;:30::i;:::-;20358:103::o:0;21543:222::-;21623:11;:23;21635:10;21623:23;;;;;;;;;;;;;;;;;;;;;;;;;21619:141;;;21661:22;21667:7;21676:6;21661:5;:22::i;:::-;21619:141;;;21719:31;21734:7;21743:6;21719:14;:31::i;:::-;21619:141;21543:222;;:::o;19707:87::-;19753:7;19780:6;;;;;;;;;;;19773:13;;19707:87;:::o;6905:104::-;6961:13;6994:7;6987:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6905:104;:::o;11263:436::-;11356:4;11373:13;11389:12;:10;:12::i;:::-;11373:28;;11412:24;11439:25;11449:5;11456:7;11439:9;:25::i;:::-;11412:52;;11503:15;11483:16;:35;;11475:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11596:60;11605:5;11612:7;11640:15;11621:16;:34;11596:8;:60::i;:::-;11687:4;11680:11;;;;11263:436;;;;:::o;21771:105::-;19938:12;:10;:12::i;:::-;19927:23;;:7;:5;:7::i;:::-;:23;;;19919:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21866:4:::1;21840:11;:23;21852:10;21840:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;21771:105:::0;:::o;8310:193::-;8389:4;8406:13;8422:12;:10;:12::i;:::-;8406:28;;8445;8455:5;8462:2;8466:6;8445:9;:28::i;:::-;8491:4;8484:11;;;8310:193;;;;:::o;8566:151::-;8655:7;8682:11;:18;8694:5;8682:18;;;;;;;;;;;;;;;:27;8701:7;8682:27;;;;;;;;;;;;;;;;8675:34;;8566:151;;;;:::o;20616:201::-;19938:12;:10;:12::i;:::-;19927:23;;:7;:5;:7::i;:::-;:23;;;19919:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20725:1:::1;20705:22;;:8;:22;;;;20697:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;20781:28;20800:8;20781:18;:28::i;:::-;20616:201:::0;:::o;21882:109::-;19938:12;:10;:12::i;:::-;19927:23;;:7;:5;:7::i;:::-;:23;;;19919:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21980:5:::1;21954:11;:23;21966:10;21954:23;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;21882:109:::0;:::o;4326:98::-;4379:7;4406:10;4399:17;;4326:98;:::o;14897:380::-;15050:1;15033:19;;:5;:19;;;;15025:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15131:1;15112:21;;:7;:21;;;;15104:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15215:6;15185:11;:18;15197:5;15185:18;;;;;;;;;;;;;;;:27;15204:7;15185:27;;;;;;;;;;;;;;;:36;;;;15253:7;15237:32;;15246:5;15237:32;;;15262:6;15237:32;;;;;;:::i;:::-;;;;;;;;14897:380;;;:::o;15568:453::-;15703:24;15730:25;15740:5;15747:7;15730:9;:25::i;:::-;15703:52;;15790:17;15770:16;:37;15766:248;;15852:6;15832:16;:26;;15824:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15936:51;15945:5;15952:7;15980:6;15961:16;:25;15936:8;:51::i;:::-;15766:248;15692:329;15568:453;;;:::o;12178:671::-;12325:1;12309:18;;:4;:18;;;;12301:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12402:1;12388:16;;:2;:16;;;;12380:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12457:38;12478:4;12484:2;12488:6;12457:20;:38::i;:::-;12508:19;12530:9;:15;12540:4;12530:15;;;;;;;;;;;;;;;;12508:37;;12579:6;12564:11;:21;;12556:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12696:6;12682:11;:20;12664:9;:15;12674:4;12664:15;;;;;;;;;;;;;;;:38;;;;12741:6;12724:9;:13;12734:2;12724:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;12780:2;12765:26;;12774:4;12765:26;;;12784:6;12765:26;;;;;;:::i;:::-;;;;;;;;12804:37;12824:4;12830:2;12834:6;12804:19;:37::i;:::-;12290:559;12178:671;;;:::o;13136:399::-;13239:1;13220:21;;:7;:21;;;;13212:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;13290:49;13319:1;13323:7;13332:6;13290:20;:49::i;:::-;13368:6;13352:12;;:22;;;;;;;:::i;:::-;;;;;;;;13407:6;13385:9;:18;13395:7;13385:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;13450:7;13429:37;;13446:1;13429:37;;;13459:6;13429:37;;;;;;:::i;:::-;;;;;;;;13479:48;13507:1;13511:7;13520:6;13479:19;:48::i;:::-;13136:399;;:::o;13868:591::-;13971:1;13952:21;;:7;:21;;;;13944:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14024:49;14045:7;14062:1;14066:6;14024:20;:49::i;:::-;14086:22;14111:9;:18;14121:7;14111:18;;;;;;;;;;;;;;;;14086:43;;14166:6;14148:14;:24;;14140:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14285:6;14268:14;:23;14247:9;:18;14257:7;14247:18;;;;;;;;;;;;;;;:44;;;;14329:6;14313:12;;:22;;;;;;;:::i;:::-;;;;;;;;14379:1;14353:37;;14362:7;14353:37;;;14383:6;14353:37;;;;;;:::i;:::-;;;;;;;;14403:48;14423:7;14440:1;14444:6;14403:19;:48::i;:::-;13933:526;13868:591;;:::o;20977:191::-;21051:16;21070:6;;;;;;;;;;;21051:25;;21096:8;21087:6;;:17;;;;;;;;;;;;;;;;;;21151:8;21120:40;;21141:8;21120:40;;;;;;;;;;;;21040:128;20977:191;:::o;18474:164::-;18551:46;18567:7;18576:12;:10;:12::i;:::-;18590:6;18551:15;:46::i;:::-;18608:22;18614:7;18623:6;18608:5;:22::i;:::-;18474:164;;:::o;16621:125::-;;;;:::o;17350:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:329::-;4960:6;5009:2;4997:9;4988:7;4984:23;4980:32;4977:119;;;5015:79;;:::i;:::-;4977:119;5135:1;5160:53;5205:7;5196:6;5185:9;5181:22;5160:53;:::i;:::-;5150:63;;5106:117;4901:329;;;;:::o;5236:::-;5295:6;5344:2;5332:9;5323:7;5319:23;5315:32;5312:119;;;5350:79;;:::i;:::-;5312:119;5470:1;5495:53;5540:7;5531:6;5520:9;5516:22;5495:53;:::i;:::-;5485:63;;5441:117;5236:329;;;;:::o;5571:118::-;5658:24;5676:5;5658:24;:::i;:::-;5653:3;5646:37;5571:118;;:::o;5695:222::-;5788:4;5826:2;5815:9;5811:18;5803:26;;5839:71;5907:1;5896:9;5892:17;5883:6;5839:71;:::i;:::-;5695:222;;;;:::o;5923:474::-;5991:6;5999;6048:2;6036:9;6027:7;6023:23;6019:32;6016:119;;;6054:79;;:::i;:::-;6016:119;6174:1;6199:53;6244:7;6235:6;6224:9;6220:22;6199:53;:::i;:::-;6189:63;;6145:117;6301:2;6327:53;6372:7;6363:6;6352:9;6348:22;6327:53;:::i;:::-;6317:63;;6272:118;5923:474;;;;;:::o;6403:180::-;6451:77;6448:1;6441:88;6548:4;6545:1;6538:15;6572:4;6569:1;6562:15;6589:320;6633:6;6670:1;6664:4;6660:12;6650:22;;6717:1;6711:4;6707:12;6738:18;6728:81;;6794:4;6786:6;6782:17;6772:27;;6728:81;6856:2;6848:6;6845:14;6825:18;6822:38;6819:84;;;6875:18;;:::i;:::-;6819:84;6640:269;6589:320;;;:::o;6915:180::-;6963:77;6960:1;6953:88;7060:4;7057:1;7050:15;7084:4;7081:1;7074:15;7101:305;7141:3;7160:20;7178:1;7160:20;:::i;:::-;7155:25;;7194:20;7212:1;7194:20;:::i;:::-;7189:25;;7348:1;7280:66;7276:74;7273:1;7270:81;7267:107;;;7354:18;;:::i;:::-;7267:107;7398:1;7395;7391:9;7384:16;;7101:305;;;;:::o;7412:175::-;7552:27;7548:1;7540:6;7536:14;7529:51;7412:175;:::o;7593:366::-;7735:3;7756:67;7820:2;7815:3;7756:67;:::i;:::-;7749:74;;7832:93;7921:3;7832:93;:::i;:::-;7950:2;7945:3;7941:12;7934:19;;7593:366;;;:::o;7965:419::-;8131:4;8169:2;8158:9;8154:18;8146:26;;8218:9;8212:4;8208:20;8204:1;8193:9;8189:17;8182:47;8246:131;8372:4;8246:131;:::i;:::-;8238:139;;7965:419;;;:::o;8390:182::-;8530:34;8526:1;8518:6;8514:14;8507:58;8390:182;:::o;8578:366::-;8720:3;8741:67;8805:2;8800:3;8741:67;:::i;:::-;8734:74;;8817:93;8906:3;8817:93;:::i;:::-;8935:2;8930:3;8926:12;8919:19;;8578:366;;;:::o;8950:419::-;9116:4;9154:2;9143:9;9139:18;9131:26;;9203:9;9197:4;9193:20;9189:1;9178:9;9174:17;9167:47;9231:131;9357:4;9231:131;:::i;:::-;9223:139;;8950:419;;;:::o;9375:224::-;9515:34;9511:1;9503:6;9499:14;9492:58;9584:7;9579:2;9571:6;9567:15;9560:32;9375:224;:::o;9605:366::-;9747:3;9768:67;9832:2;9827:3;9768:67;:::i;:::-;9761:74;;9844:93;9933:3;9844:93;:::i;:::-;9962:2;9957:3;9953:12;9946:19;;9605:366;;;:::o;9977:419::-;10143:4;10181:2;10170:9;10166:18;10158:26;;10230:9;10224:4;10220:20;10216:1;10205:9;10201:17;10194:47;10258:131;10384:4;10258:131;:::i;:::-;10250:139;;9977:419;;;:::o;10402:225::-;10542:34;10538:1;10530:6;10526:14;10519:58;10611:8;10606:2;10598:6;10594:15;10587:33;10402:225;:::o;10633:366::-;10775:3;10796:67;10860:2;10855:3;10796:67;:::i;:::-;10789:74;;10872:93;10961:3;10872:93;:::i;:::-;10990:2;10985:3;10981:12;10974:19;;10633:366;;;:::o;11005:419::-;11171:4;11209:2;11198:9;11194:18;11186:26;;11258:9;11252:4;11248:20;11244:1;11233:9;11229:17;11222:47;11286:131;11412:4;11286:131;:::i;:::-;11278:139;;11005:419;;;:::o;11430:223::-;11570:34;11566:1;11558:6;11554:14;11547:58;11639:6;11634:2;11626:6;11622:15;11615:31;11430:223;:::o;11659:366::-;11801:3;11822:67;11886:2;11881:3;11822:67;:::i;:::-;11815:74;;11898:93;11987:3;11898:93;:::i;:::-;12016:2;12011:3;12007:12;12000:19;;11659:366;;;:::o;12031:419::-;12197:4;12235:2;12224:9;12220:18;12212:26;;12284:9;12278:4;12274:20;12270:1;12259:9;12255:17;12248:47;12312:131;12438:4;12312:131;:::i;:::-;12304:139;;12031:419;;;:::o;12456:221::-;12596:34;12592:1;12584:6;12580:14;12573:58;12665:4;12660:2;12652:6;12648:15;12641:29;12456:221;:::o;12683:366::-;12825:3;12846:67;12910:2;12905:3;12846:67;:::i;:::-;12839:74;;12922:93;13011:3;12922:93;:::i;:::-;13040:2;13035:3;13031:12;13024:19;;12683:366;;;:::o;13055:419::-;13221:4;13259:2;13248:9;13244:18;13236:26;;13308:9;13302:4;13298:20;13294:1;13283:9;13279:17;13272:47;13336:131;13462:4;13336:131;:::i;:::-;13328:139;;13055:419;;;:::o;13480:179::-;13620:31;13616:1;13608:6;13604:14;13597:55;13480:179;:::o;13665:366::-;13807:3;13828:67;13892:2;13887:3;13828:67;:::i;:::-;13821:74;;13904:93;13993:3;13904:93;:::i;:::-;14022:2;14017:3;14013:12;14006:19;;13665:366;;;:::o;14037:419::-;14203:4;14241:2;14230:9;14226:18;14218:26;;14290:9;14284:4;14280:20;14276:1;14265:9;14261:17;14254:47;14318:131;14444:4;14318:131;:::i;:::-;14310:139;;14037:419;;;:::o;14462:224::-;14602:34;14598:1;14590:6;14586:14;14579:58;14671:7;14666:2;14658:6;14654:15;14647:32;14462:224;:::o;14692:366::-;14834:3;14855:67;14919:2;14914:3;14855:67;:::i;:::-;14848:74;;14931:93;15020:3;14931:93;:::i;:::-;15049:2;15044:3;15040:12;15033:19;;14692:366;;;:::o;15064:419::-;15230:4;15268:2;15257:9;15253:18;15245:26;;15317:9;15311:4;15307:20;15303:1;15292:9;15288:17;15281:47;15345:131;15471:4;15345:131;:::i;:::-;15337:139;;15064:419;;;:::o;15489:222::-;15629:34;15625:1;15617:6;15613:14;15606:58;15698:5;15693:2;15685:6;15681:15;15674:30;15489:222;:::o;15717:366::-;15859:3;15880:67;15944:2;15939:3;15880:67;:::i;:::-;15873:74;;15956:93;16045:3;15956:93;:::i;:::-;16074:2;16069:3;16065:12;16058:19;;15717:366;;;:::o;16089:419::-;16255:4;16293:2;16282:9;16278:18;16270:26;;16342:9;16336:4;16332:20;16328:1;16317:9;16313:17;16306:47;16370:131;16496:4;16370:131;:::i;:::-;16362:139;;16089:419;;;:::o;16514:225::-;16654:34;16650:1;16642:6;16638:14;16631:58;16723:8;16718:2;16710:6;16706:15;16699:33;16514:225;:::o;16745:366::-;16887:3;16908:67;16972:2;16967:3;16908:67;:::i;:::-;16901:74;;16984:93;17073:3;16984:93;:::i;:::-;17102:2;17097:3;17093:12;17086:19;;16745:366;;;:::o;17117:419::-;17283:4;17321:2;17310:9;17306:18;17298:26;;17370:9;17364:4;17360:20;17356:1;17345:9;17341:17;17334:47;17398:131;17524:4;17398:131;:::i;:::-;17390:139;;17117:419;;;:::o;17542:181::-;17682:33;17678:1;17670:6;17666:14;17659:57;17542:181;:::o;17729:366::-;17871:3;17892:67;17956:2;17951:3;17892:67;:::i;:::-;17885:74;;17968:93;18057:3;17968:93;:::i;:::-;18086:2;18081:3;18077:12;18070:19;;17729:366;;;:::o;18101:419::-;18267:4;18305:2;18294:9;18290:18;18282:26;;18354:9;18348:4;18344:20;18340:1;18329:9;18325:17;18318:47;18382:131;18508:4;18382:131;:::i;:::-;18374:139;;18101:419;;;:::o;18526:220::-;18666:34;18662:1;18654:6;18650:14;18643:58;18735:3;18730:2;18722:6;18718:15;18711:28;18526:220;:::o;18752:366::-;18894:3;18915:67;18979:2;18974:3;18915:67;:::i;:::-;18908:74;;18991:93;19080:3;18991:93;:::i;:::-;19109:2;19104:3;19100:12;19093:19;;18752:366;;;:::o;19124:419::-;19290:4;19328:2;19317:9;19313:18;19305:26;;19377:9;19371:4;19367:20;19363:1;19352:9;19348:17;19341:47;19405:131;19531:4;19405:131;:::i;:::-;19397:139;;19124:419;;;:::o;19549:221::-;19689:34;19685:1;19677:6;19673:14;19666:58;19758:4;19753:2;19745:6;19741:15;19734:29;19549:221;:::o;19776:366::-;19918:3;19939:67;20003:2;19998:3;19939:67;:::i;:::-;19932:74;;20015:93;20104:3;20015:93;:::i;:::-;20133:2;20128:3;20124:12;20117:19;;19776:366;;;:::o;20148:419::-;20314:4;20352:2;20341:9;20337:18;20329:26;;20401:9;20395:4;20391:20;20387:1;20376:9;20372:17;20365:47;20429:131;20555:4;20429:131;:::i;:::-;20421:139;;20148:419;;;:::o;20573:191::-;20613:4;20633:20;20651:1;20633:20;:::i;:::-;20628:25;;20667:20;20685:1;20667:20;:::i;:::-;20662:25;;20706:1;20703;20700:8;20697:34;;;20711:18;;:::i;:::-;20697:34;20756:1;20753;20749:9;20741:17;;20573:191;;;;:::o

Swarm Source

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