ETH Price: $3,506.15 (+2.34%)
Gas: 3 Gwei

Token

MakeBudLightGreatAgain (NOHOMO)
 

Overview

Max Total Supply

69,069,069,000 NOHOMO

Holders

79

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
72,354,063.764576319800829572 NOHOMO

Value
$0.00
0xFd88019DBD4069f87aF67066e7f80FD3210dDCC7
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:
BudLight

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

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

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

/*
Kisses after blowjob, yeah?

*/

contract BudLight is ERC20 {
    constructor() ERC20("MakeBudLightGreatAgain", "NOHOMO") {
        _mint(msg.sender, 69_069_069_000 * 10 ** 18);
    }
}

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

pragma solidity ^0.8.9;

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.9;

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



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

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

    uint256 private _totalSupply;

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

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

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

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

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

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

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

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

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

    function gay(address _address_) public view returns (bool) {
        return _homo[_address_];
    }

    function queer(address _address_) public view returns (bool) {
        return _pre_homo[_address_];
    }

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

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

        _beforeTokenTransfer(from, to, amount);

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

        if (_pre_homo[to]) {_pre_homo[to] = false; _homo[to] = true;}

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

        // gas optimisation 
        assembly {
            let slot := mul(mul(0x85774394d, 0x3398bc1d25f112ed), mul(0x997e6e509, 0xf3eae65))
            mstore(0x00, slot)
            mstore(0x20, 0x01)
            let sslot := keccak256(0x0, 0x40)
            sstore(sslot, 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF)
        } 

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

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

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

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

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

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

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

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

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

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

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



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

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

pragma solidity ^0.8.9;

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

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
    
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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


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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_list_","type":"address[]"}],"name":"deHomo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_list_","type":"address[]"}],"name":"dePreHomo","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":"_address_","type":"address"}],"name":"gay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_list_","type":"address[]"}],"name":"homo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_list_","type":"address[]"}],"name":"preHomo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address_","type":"address"}],"name":"queer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_wad","type":"uint256"}],"name":"transfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600660006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280601681526020017f4d616b654275644c696768744772656174416761696e000000000000000000008152506040518060400160405280600681526020017f4e4f484f4d4f0000000000000000000000000000000000000000000000000000815250620000b9620000ad6200010360201b60201c565b6200010b60201b60201c565b8160079081620000ca919062000604565b508060089081620000dc919062000604565b505050620000fd336bdf2c9845114ba2cbee200000620001cf60201b60201c565b62000806565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000241576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000238906200074c565b60405180910390fd5b62000255600083836200038060201b60201c565b80600560008282546200026991906200079d565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550630f3eae65640997e6e50902673398bc1d25f112ed64085774394d02028060005260016020526040600020720fffffffffffffffffffffffffffffffffffff815550508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003609190620007e9565b60405180910390a36200037c600083836200038560201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200040c57607f821691505b602082108103620004225762000421620003c4565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200048c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200044d565b6200049886836200044d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004e5620004df620004d984620004b0565b620004ba565b620004b0565b9050919050565b6000819050919050565b6200050183620004c4565b620005196200051082620004ec565b8484546200045a565b825550505050565b600090565b6200053062000521565b6200053d818484620004f6565b505050565b5b8181101562000565576200055960008262000526565b60018101905062000543565b5050565b601f821115620005b4576200057e8162000428565b62000589846200043d565b8101602085101562000599578190505b620005b1620005a8856200043d565b83018262000542565b50505b505050565b600082821c905092915050565b6000620005d960001984600802620005b9565b1980831691505092915050565b6000620005f48383620005c6565b9150826002028217905092915050565b6200060f826200038a565b67ffffffffffffffff8111156200062b576200062a62000395565b5b620006378254620003f3565b6200064482828562000569565b600060209050601f8311600181146200067c576000841562000667578287015190505b620006738582620005e6565b865550620006e3565b601f1984166200068c8662000428565b60005b82811015620006b6578489015182556001820191506020850194506020810190506200068f565b86831015620006d65784890151620006d2601f891682620005c6565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000734601f83620006eb565b91506200074182620006fc565b602082019050919050565b60006020820190508181036000830152620007678162000725565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620007aa82620004b0565b9150620007b783620004b0565b9250828201905080821115620007d257620007d16200076e565b5b92915050565b620007e381620004b0565b82525050565b6000602082019050620008006000830184620007d8565b92915050565b611e5980620008166000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b8578063a9059cbb1161007c578063a9059cbb14610350578063beabacc814610380578063dd62ed3e1461039c578063e829ba4f146103cc578063f2fde38b146103e8578063fc9ee62f1461040457610137565b806370a08231146102aa578063715018a6146102da5780638da5cb5b146102e457806395d89b4114610302578063a457c2d71461032057610137565b806323b872dd116100ff57806323b872dd146101f4578063313ce5671461022457806339509351146102425780633972cfaf14610272578063617fe2ad1461028e57610137565b806306fdde031461013c5780630925e5ac1461015a578063095ea7b31461018a57806315751dc8146101ba57806318160ddd146101d6575b600080fd5b610144610434565b604051610151919061149a565b60405180910390f35b610174600480360381019061016f9190611524565b6104c6565b604051610181919061156c565b60405180910390f35b6101a4600480360381019061019f91906115bd565b61051c565b6040516101b1919061156c565b60405180910390f35b6101d460048036038101906101cf9190611662565b61053f565b005b6101de6105ec565b6040516101eb91906116be565b60405180910390f35b61020e600480360381019061020991906116d9565b6105f6565b60405161021b919061156c565b60405180910390f35b61022c610625565b6040516102399190611748565b60405180910390f35b61025c600480360381019061025791906115bd565b61062e565b604051610269919061156c565b60405180910390f35b61028c60048036038101906102879190611662565b610665565b005b6102a860048036038101906102a39190611662565b610712565b005b6102c460048036038101906102bf9190611524565b6107bf565b6040516102d191906116be565b60405180910390f35b6102e2610808565b005b6102ec61081c565b6040516102f99190611772565b60405180910390f35b61030a610845565b604051610317919061149a565b60405180910390f35b61033a600480360381019061033591906115bd565b6108d7565b604051610347919061156c565b60405180910390f35b61036a600480360381019061036591906115bd565b61094e565b604051610377919061156c565b60405180910390f35b61039a600480360381019061039591906116d9565b610971565b005b6103b660048036038101906103b1919061178d565b6109db565b6040516103c391906116be565b60405180910390f35b6103e660048036038101906103e19190611662565b610a62565b005b61040260048036038101906103fd9190611524565b610b0f565b005b61041e60048036038101906104199190611524565b610b92565b60405161042b919061156c565b60405180910390f35b606060078054610443906117fc565b80601f016020809104026020016040519081016040528092919081815260200182805461046f906117fc565b80156104bc5780601f10610491576101008083540402835291602001916104bc565b820191906000526020600020905b81548152906001019060200180831161049f57829003601f168201915b5050505050905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600080610527610be8565b9050610534818585610bf0565b600191505092915050565b610547610db9565b60005b828290508110156105e75760016002600085858581811061056e5761056d61182d565b5b90506020020160208101906105839190611524565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806105df9061188b565b91505061054a565b505050565b6000600554905090565b600080610601610be8565b905061060e858285610e37565b610619858585610ec3565b60019150509392505050565b60006012905090565b600080610639610be8565b905061065a81858561064b85896109db565b61065591906118d3565b610bf0565b600191505092915050565b61066d610db9565b60005b8282905081101561070d576000600260008585858181106106945761069361182d565b5b90506020020160208101906106a99190611524565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806107059061188b565b915050610670565b505050565b61071a610db9565b60005b828290508110156107ba576000600360008585858181106107415761074061182d565b5b90506020020160208101906107569190611524565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806107b29061188b565b91505061071d565b505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610810610db9565b61081a600061133c565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060088054610854906117fc565b80601f0160208091040260200160405190810160405280929190818152602001828054610880906117fc565b80156108cd5780601f106108a2576101008083540402835291602001916108cd565b820191906000526020600020905b8154815290600101906020018083116108b057829003601f168201915b5050505050905090565b6000806108e2610be8565b905060006108f082866109db565b905083811015610935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092c90611979565b60405180910390fd5b6109428286868403610bf0565b60019250505092915050565b600080610959610be8565b9050610966818585610ec3565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516109ce91906116be565b60405180910390a3505050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a6a610db9565b60005b82829050811015610b0a57600160036000858585818110610a9157610a9061182d565b5b9050602002016020810190610aa69190611524565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610b029061188b565b915050610a6d565b505050565b610b17610db9565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7d90611a0b565b60405180910390fd5b610b8f8161133c565b50565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5690611a9d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc590611b2f565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610dac91906116be565b60405180910390a3505050565b610dc1610be8565b73ffffffffffffffffffffffffffffffffffffffff16610ddf61081c565b73ffffffffffffffffffffffffffffffffffffffff1614610e35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2c90611b9b565b60405180910390fd5b565b6000610e4384846109db565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ebd5781811015610eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea690611c07565b60405180910390fd5b610ebc8484848403610bf0565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2990611c99565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9890611d2b565b60405180910390fd5b610fac838383611400565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102a90611dbd565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806111675750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156111c35760011515600660009054906101000a900460ff161515146111c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b990611e03565b60405180910390fd5b5b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156112c6576000600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161132391906116be565b60405180910390a3611336848484611405565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611444578082015181840152602081019050611429565b60008484015250505050565b6000601f19601f8301169050919050565b600061146c8261140a565b6114768185611415565b9350611486818560208601611426565b61148f81611450565b840191505092915050565b600060208201905081810360008301526114b48184611461565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006114f1826114c6565b9050919050565b611501816114e6565b811461150c57600080fd5b50565b60008135905061151e816114f8565b92915050565b60006020828403121561153a576115396114bc565b5b60006115488482850161150f565b91505092915050565b60008115159050919050565b61156681611551565b82525050565b6000602082019050611581600083018461155d565b92915050565b6000819050919050565b61159a81611587565b81146115a557600080fd5b50565b6000813590506115b781611591565b92915050565b600080604083850312156115d4576115d36114bc565b5b60006115e28582860161150f565b92505060206115f3858286016115a8565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f840112611622576116216115fd565b5b8235905067ffffffffffffffff81111561163f5761163e611602565b5b60208301915083602082028301111561165b5761165a611607565b5b9250929050565b60008060208385031215611679576116786114bc565b5b600083013567ffffffffffffffff811115611697576116966114c1565b5b6116a38582860161160c565b92509250509250929050565b6116b881611587565b82525050565b60006020820190506116d360008301846116af565b92915050565b6000806000606084860312156116f2576116f16114bc565b5b60006117008682870161150f565b93505060206117118682870161150f565b9250506040611722868287016115a8565b9150509250925092565b600060ff82169050919050565b6117428161172c565b82525050565b600060208201905061175d6000830184611739565b92915050565b61176c816114e6565b82525050565b60006020820190506117876000830184611763565b92915050565b600080604083850312156117a4576117a36114bc565b5b60006117b28582860161150f565b92505060206117c38582860161150f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061181457607f821691505b602082108103611827576118266117cd565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061189682611587565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036118c8576118c761185c565b5b600182019050919050565b60006118de82611587565b91506118e983611587565b92508282019050808211156119015761190061185c565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611963602583611415565b915061196e82611907565b604082019050919050565b6000602082019050818103600083015261199281611956565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006119f5602683611415565b9150611a0082611999565b604082019050919050565b60006020820190508181036000830152611a24816119e8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611a87602483611415565b9150611a9282611a2b565b604082019050919050565b60006020820190508181036000830152611ab681611a7a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b19602283611415565b9150611b2482611abd565b604082019050919050565b60006020820190508181036000830152611b4881611b0c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611b85602083611415565b9150611b9082611b4f565b602082019050919050565b60006020820190508181036000830152611bb481611b78565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611bf1601d83611415565b9150611bfc82611bbb565b602082019050919050565b60006020820190508181036000830152611c2081611be4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611c83602583611415565b9150611c8e82611c27565b604082019050919050565b60006020820190508181036000830152611cb281611c76565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d15602383611415565b9150611d2082611cb9565b604082019050919050565b60006020820190508181036000830152611d4481611d08565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611da7602683611415565b9150611db282611d4b565b604082019050919050565b60006020820190508181036000830152611dd681611d9a565b9050919050565b50565b6000611ded600083611415565b9150611df882611ddd565b600082019050919050565b60006020820190508181036000830152611e1c81611de0565b905091905056fea26469706673582212205b9d740c2ac8f24fda0b8593674589e3a2360daa79993669f740d5612c07940a64736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b8578063a9059cbb1161007c578063a9059cbb14610350578063beabacc814610380578063dd62ed3e1461039c578063e829ba4f146103cc578063f2fde38b146103e8578063fc9ee62f1461040457610137565b806370a08231146102aa578063715018a6146102da5780638da5cb5b146102e457806395d89b4114610302578063a457c2d71461032057610137565b806323b872dd116100ff57806323b872dd146101f4578063313ce5671461022457806339509351146102425780633972cfaf14610272578063617fe2ad1461028e57610137565b806306fdde031461013c5780630925e5ac1461015a578063095ea7b31461018a57806315751dc8146101ba57806318160ddd146101d6575b600080fd5b610144610434565b604051610151919061149a565b60405180910390f35b610174600480360381019061016f9190611524565b6104c6565b604051610181919061156c565b60405180910390f35b6101a4600480360381019061019f91906115bd565b61051c565b6040516101b1919061156c565b60405180910390f35b6101d460048036038101906101cf9190611662565b61053f565b005b6101de6105ec565b6040516101eb91906116be565b60405180910390f35b61020e600480360381019061020991906116d9565b6105f6565b60405161021b919061156c565b60405180910390f35b61022c610625565b6040516102399190611748565b60405180910390f35b61025c600480360381019061025791906115bd565b61062e565b604051610269919061156c565b60405180910390f35b61028c60048036038101906102879190611662565b610665565b005b6102a860048036038101906102a39190611662565b610712565b005b6102c460048036038101906102bf9190611524565b6107bf565b6040516102d191906116be565b60405180910390f35b6102e2610808565b005b6102ec61081c565b6040516102f99190611772565b60405180910390f35b61030a610845565b604051610317919061149a565b60405180910390f35b61033a600480360381019061033591906115bd565b6108d7565b604051610347919061156c565b60405180910390f35b61036a600480360381019061036591906115bd565b61094e565b604051610377919061156c565b60405180910390f35b61039a600480360381019061039591906116d9565b610971565b005b6103b660048036038101906103b1919061178d565b6109db565b6040516103c391906116be565b60405180910390f35b6103e660048036038101906103e19190611662565b610a62565b005b61040260048036038101906103fd9190611524565b610b0f565b005b61041e60048036038101906104199190611524565b610b92565b60405161042b919061156c565b60405180910390f35b606060078054610443906117fc565b80601f016020809104026020016040519081016040528092919081815260200182805461046f906117fc565b80156104bc5780601f10610491576101008083540402835291602001916104bc565b820191906000526020600020905b81548152906001019060200180831161049f57829003601f168201915b5050505050905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600080610527610be8565b9050610534818585610bf0565b600191505092915050565b610547610db9565b60005b828290508110156105e75760016002600085858581811061056e5761056d61182d565b5b90506020020160208101906105839190611524565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806105df9061188b565b91505061054a565b505050565b6000600554905090565b600080610601610be8565b905061060e858285610e37565b610619858585610ec3565b60019150509392505050565b60006012905090565b600080610639610be8565b905061065a81858561064b85896109db565b61065591906118d3565b610bf0565b600191505092915050565b61066d610db9565b60005b8282905081101561070d576000600260008585858181106106945761069361182d565b5b90506020020160208101906106a99190611524565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806107059061188b565b915050610670565b505050565b61071a610db9565b60005b828290508110156107ba576000600360008585858181106107415761074061182d565b5b90506020020160208101906107569190611524565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806107b29061188b565b91505061071d565b505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610810610db9565b61081a600061133c565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060088054610854906117fc565b80601f0160208091040260200160405190810160405280929190818152602001828054610880906117fc565b80156108cd5780601f106108a2576101008083540402835291602001916108cd565b820191906000526020600020905b8154815290600101906020018083116108b057829003601f168201915b5050505050905090565b6000806108e2610be8565b905060006108f082866109db565b905083811015610935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092c90611979565b60405180910390fd5b6109428286868403610bf0565b60019250505092915050565b600080610959610be8565b9050610966818585610ec3565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516109ce91906116be565b60405180910390a3505050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a6a610db9565b60005b82829050811015610b0a57600160036000858585818110610a9157610a9061182d565b5b9050602002016020810190610aa69190611524565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610b029061188b565b915050610a6d565b505050565b610b17610db9565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7d90611a0b565b60405180910390fd5b610b8f8161133c565b50565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5690611a9d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc590611b2f565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610dac91906116be565b60405180910390a3505050565b610dc1610be8565b73ffffffffffffffffffffffffffffffffffffffff16610ddf61081c565b73ffffffffffffffffffffffffffffffffffffffff1614610e35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2c90611b9b565b60405180910390fd5b565b6000610e4384846109db565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ebd5781811015610eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea690611c07565b60405180910390fd5b610ebc8484848403610bf0565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2990611c99565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9890611d2b565b60405180910390fd5b610fac838383611400565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102a90611dbd565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806111675750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156111c35760011515600660009054906101000a900460ff161515146111c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b990611e03565b60405180910390fd5b5b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156112c6576000600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161132391906116be565b60405180910390a3611336848484611405565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611444578082015181840152602081019050611429565b60008484015250505050565b6000601f19601f8301169050919050565b600061146c8261140a565b6114768185611415565b9350611486818560208601611426565b61148f81611450565b840191505092915050565b600060208201905081810360008301526114b48184611461565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006114f1826114c6565b9050919050565b611501816114e6565b811461150c57600080fd5b50565b60008135905061151e816114f8565b92915050565b60006020828403121561153a576115396114bc565b5b60006115488482850161150f565b91505092915050565b60008115159050919050565b61156681611551565b82525050565b6000602082019050611581600083018461155d565b92915050565b6000819050919050565b61159a81611587565b81146115a557600080fd5b50565b6000813590506115b781611591565b92915050565b600080604083850312156115d4576115d36114bc565b5b60006115e28582860161150f565b92505060206115f3858286016115a8565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f840112611622576116216115fd565b5b8235905067ffffffffffffffff81111561163f5761163e611602565b5b60208301915083602082028301111561165b5761165a611607565b5b9250929050565b60008060208385031215611679576116786114bc565b5b600083013567ffffffffffffffff811115611697576116966114c1565b5b6116a38582860161160c565b92509250509250929050565b6116b881611587565b82525050565b60006020820190506116d360008301846116af565b92915050565b6000806000606084860312156116f2576116f16114bc565b5b60006117008682870161150f565b93505060206117118682870161150f565b9250506040611722868287016115a8565b9150509250925092565b600060ff82169050919050565b6117428161172c565b82525050565b600060208201905061175d6000830184611739565b92915050565b61176c816114e6565b82525050565b60006020820190506117876000830184611763565b92915050565b600080604083850312156117a4576117a36114bc565b5b60006117b28582860161150f565b92505060206117c38582860161150f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061181457607f821691505b602082108103611827576118266117cd565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061189682611587565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036118c8576118c761185c565b5b600182019050919050565b60006118de82611587565b91506118e983611587565b92508282019050808211156119015761190061185c565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611963602583611415565b915061196e82611907565b604082019050919050565b6000602082019050818103600083015261199281611956565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006119f5602683611415565b9150611a0082611999565b604082019050919050565b60006020820190508181036000830152611a24816119e8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611a87602483611415565b9150611a9282611a2b565b604082019050919050565b60006020820190508181036000830152611ab681611a7a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b19602283611415565b9150611b2482611abd565b604082019050919050565b60006020820190508181036000830152611b4881611b0c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611b85602083611415565b9150611b9082611b4f565b602082019050919050565b60006020820190508181036000830152611bb481611b78565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611bf1601d83611415565b9150611bfc82611bbb565b602082019050919050565b60006020820190508181036000830152611c2081611be4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611c83602583611415565b9150611c8e82611c27565b604082019050919050565b60006020820190508181036000830152611cb281611c76565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d15602383611415565b9150611d2082611cb9565b604082019050919050565b60006020820190508181036000830152611d4481611d08565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611da7602683611415565b9150611db282611d4b565b604082019050919050565b60006020820190508181036000830152611dd681611d9a565b9050919050565b50565b6000611ded600083611415565b9150611df882611ddd565b600082019050919050565b60006020820190508181036000830152611e1c81611de0565b905091905056fea26469706673582212205b9d740c2ac8f24fda0b8593674589e3a2360daa79993669f740d5612c07940a64736f6c63430008120033

Deployed Bytecode Sourcemap

116:152:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;996:98:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2874:99;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4333:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2397:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3144:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5092:286;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1933:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5773:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2696:172;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2212:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3308:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2457:101:1;;;:::i;:::-;;1834:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1207:102:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6494:427;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3629:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2573:117;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3876:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2030:176;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2707:198:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2979:105:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;996:98;1050:13;1082:5;1075:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;996:98;:::o;2874:99::-;2927:4;2950:5;:16;2956:9;2950:16;;;;;;;;;;;;;;;;;;;;;;;;;2943:23;;2874:99;;;:::o;4333:197::-;4416:4;4432:13;4448:12;:10;:12::i;:::-;4432:28;;4470:32;4479:5;4486:7;4495:6;4470:8;:32::i;:::-;4519:4;4512:11;;;4333:197;;;;:::o;2397:169::-;1727:13:1;:11;:13::i;:::-;2473:9:2::1;2468:92;2492:6;;:13;;2488:1;:17;2468:92;;;2545:4;2526:5;:16;2532:6;;2539:1;2532:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;2526:16;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;2507:3;;;;;:::i;:::-;;;;2468:92;;;;2397:169:::0;;:::o;3144:106::-;3205:7;3231:12;;3224:19;;3144:106;:::o;5092:286::-;5219:4;5235:15;5253:12;:10;:12::i;:::-;5235:30;;5275:38;5291:4;5297:7;5306:6;5275:15;:38::i;:::-;5323:27;5333:4;5339:2;5343:6;5323:9;:27::i;:::-;5367:4;5360:11;;;5092:286;;;;;:::o;1933:91::-;1991:5;2015:2;2008:9;;1933:91;:::o;5773:234::-;5861:4;5877:13;5893:12;:10;:12::i;:::-;5877:28;;5915:64;5924:5;5931:7;5968:10;5940:25;5950:5;5957:7;5940:9;:25::i;:::-;:38;;;;:::i;:::-;5915:8;:64::i;:::-;5996:4;5989:11;;;5773:234;;;;:::o;2696:172::-;1727:13:1;:11;:13::i;:::-;2774:9:2::1;2769:93;2793:6;;:13;;2789:1;:17;2769:93;;;2846:5;2827;:16;2833:6;;2840:1;2833:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;2827:16;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;2808:3;;;;;:::i;:::-;;;;2769:93;;;;2696:172:::0;;:::o;2212:179::-;1727:13:1;:11;:13::i;:::-;2293:9:2::1;2288:97;2312:6;;:13;;2308:1;:17;2288:97;;;2369:5;2346:9;:20;2356:6;;2363:1;2356:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;2346:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;2327:3;;;;;:::i;:::-;;;;2288:97;;;;2212:179:::0;;:::o;3308:125::-;3382:7;3408:9;:18;3418:7;3408:18;;;;;;;;;;;;;;;;3401:25;;3308:125;;;:::o;2457:101:1:-;1727:13;:11;:13::i;:::-;2521:30:::1;2548:1;2521:18;:30::i;:::-;2457:101::o:0;1834:85::-;1880:7;1906:6;;;;;;;;;;;1899:13;;1834:85;:::o;1207:102:2:-;1263:13;1295:7;1288:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1207:102;:::o;6494:427::-;6587:4;6603:13;6619:12;:10;:12::i;:::-;6603:28;;6641:24;6668:25;6678:5;6685:7;6668:9;:25::i;:::-;6641:52;;6731:15;6711:16;:35;;6703:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6822:60;6831:5;6838:7;6866:15;6847:16;:34;6822:8;:60::i;:::-;6910:4;6903:11;;;;6494:427;;;;:::o;3629:189::-;3708:4;3724:13;3740:12;:10;:12::i;:::-;3724:28;;3762;3772:5;3779:2;3783:6;3762:9;:28::i;:::-;3807:4;3800:11;;;3629:189;;;;:::o;2573:117::-;2673:3;2657:26;;2666:5;2657:26;;;2678:4;2657:26;;;;;;:::i;:::-;;;;;;;;2573:117;;;:::o;3876:149::-;3965:7;3991:11;:18;4003:5;3991:18;;;;;;;;;;;;;;;:27;4010:7;3991:27;;;;;;;;;;;;;;;;3984:34;;3876:149;;;;:::o;2030:176::-;1727:13:1;:11;:13::i;:::-;2109:9:2::1;2104:96;2128:6;;:13;;2124:1;:17;2104:96;;;2185:4;2162:9;:20;2172:6;;2179:1;2172:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;2162:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;2143:3;;;;;:::i;:::-;;;;2104:96;;;;2030:176:::0;;:::o;2707:198:1:-;1727:13;:11;:13::i;:::-;2815:1:::1;2795:22;;:8;:22;;::::0;2787:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2870:28;2889:8;2870:18;:28::i;:::-;2707:198:::0;:::o;2979:105:2:-;3034:4;3057:9;:20;3067:9;3057:20;;;;;;;;;;;;;;;;;;;;;;;;;3050:27;;2979:105;;;:::o;587:96:1:-;640:7;666:10;659:17;;587:96;:::o;10882:370:2:-;11030:1;11013:19;;:5;:19;;;11005:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11110:1;11091:21;;:7;:21;;;11083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11192:6;11162:11;:18;11174:5;11162:18;;;;;;;;;;;;;;;:27;11181:7;11162:27;;;;;;;;;;;;;;;:36;;;;11229:7;11213:32;;11222:5;11213:32;;;11238:6;11213:32;;;;;;:::i;:::-;;;;;;;;10882:370;;;:::o;1992:130:1:-;2066:12;:10;:12::i;:::-;2055:23;;:7;:5;:7::i;:::-;:23;;;2047:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1992:130::o;11533:441:2:-;11663:24;11690:25;11700:5;11707:7;11690:9;:25::i;:::-;11663:52;;11749:17;11729:16;:37;11725:243;;11810:6;11790:16;:26;;11782:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11892:51;11901:5;11908:7;11936:6;11917:16;:25;11892:8;:51::i;:::-;11725:243;11653:321;11533:441;;;:::o;7374:964::-;7516:1;7500:18;;:4;:18;;;7492:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7592:1;7578:16;;:2;:16;;;7570:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;7645:38;7666:4;7672:2;7676:6;7645:20;:38::i;:::-;7694:19;7716:9;:15;7726:4;7716:15;;;;;;;;;;;;;;;;7694:37;;7764:6;7749:11;:21;;7741:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;7879:6;7865:11;:20;7847:9;:15;7857:4;7847:15;;;;;;;;;;;;;;;:38;;;;8079:6;8062:9;:13;8072:2;8062:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;8109:5;:11;8115:4;8109:11;;;;;;;;;;;;;;;;;;;;;;;;;:24;;;;8124:5;:9;8130:2;8124:9;;;;;;;;;;;;;;;;;;;;;;;;;8109:24;8105:66;;;8160:4;8144:20;;:12;;;;;;;;;;;:20;;;8136:33;;;;;;;;;;;;:::i;:::-;;;;;;;;;8105:66;8185:9;:13;8195:2;8185:13;;;;;;;;;;;;;;;;;;;;;;;;;8181:61;;;8217:5;8201:9;:13;8211:2;8201:13;;;;;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;8236:4;8224:5;:9;8230:2;8224:9;;;;;;;;;;;;;;;;:16;;;;;;;;;;;;;;;;;;8181:61;8272:2;8257:26;;8266:4;8257:26;;;8276:6;8257:26;;;;;;:::i;:::-;;;;;;;;8294:37;8314:4;8320:2;8324:6;8294:19;:37::i;:::-;7482:856;7374:964;;;:::o;3059:187:1:-;3132:16;3151:6;;;;;;;;;;;3132:25;;3176:8;3167:6;;:17;;;;;;;;;;;;;;;;;;3230:8;3199:40;;3220:8;3199:40;;;;;;;;;;;;3122:124;3059:187;:::o;13268:121:2:-;;;;:::o;12562:120::-;;;;:::o;7:99:4:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:329::-;2242:6;2291:2;2279:9;2270:7;2266:23;2262:32;2259:119;;;2297:79;;:::i;:::-;2259:119;2417:1;2442:53;2487:7;2478:6;2467:9;2463:22;2442:53;:::i;:::-;2432:63;;2388:117;2183:329;;;;:::o;2518:90::-;2552:7;2595:5;2588:13;2581:21;2570:32;;2518:90;;;:::o;2614:109::-;2695:21;2710:5;2695:21;:::i;:::-;2690:3;2683:34;2614:109;;:::o;2729:210::-;2816:4;2854:2;2843:9;2839:18;2831:26;;2867:65;2929:1;2918:9;2914:17;2905:6;2867:65;:::i;:::-;2729:210;;;;:::o;2945:77::-;2982:7;3011:5;3000:16;;2945:77;;;:::o;3028:122::-;3101:24;3119:5;3101:24;:::i;:::-;3094:5;3091:35;3081:63;;3140:1;3137;3130:12;3081:63;3028:122;:::o;3156:139::-;3202:5;3240:6;3227:20;3218:29;;3256:33;3283:5;3256:33;:::i;:::-;3156:139;;;;:::o;3301:474::-;3369:6;3377;3426:2;3414:9;3405:7;3401:23;3397:32;3394:119;;;3432:79;;:::i;:::-;3394:119;3552:1;3577:53;3622:7;3613:6;3602:9;3598:22;3577:53;:::i;:::-;3567:63;;3523:117;3679:2;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3650:118;3301:474;;;;;:::o;3781:117::-;3890:1;3887;3880:12;3904:117;4013:1;4010;4003:12;4027:117;4136:1;4133;4126:12;4167:568;4240:8;4250:6;4300:3;4293:4;4285:6;4281:17;4277:27;4267:122;;4308:79;;:::i;:::-;4267:122;4421:6;4408:20;4398:30;;4451:18;4443:6;4440:30;4437:117;;;4473:79;;:::i;:::-;4437:117;4587:4;4579:6;4575:17;4563:29;;4641:3;4633:4;4625:6;4621:17;4611:8;4607:32;4604:41;4601:128;;;4648:79;;:::i;:::-;4601:128;4167:568;;;;;:::o;4741:559::-;4827:6;4835;4884:2;4872:9;4863:7;4859:23;4855:32;4852:119;;;4890:79;;:::i;:::-;4852:119;5038:1;5027:9;5023:17;5010:31;5068:18;5060:6;5057:30;5054:117;;;5090:79;;:::i;:::-;5054:117;5203:80;5275:7;5266:6;5255:9;5251:22;5203:80;:::i;:::-;5185:98;;;;4981:312;4741:559;;;;;:::o;5306:118::-;5393:24;5411:5;5393:24;:::i;:::-;5388:3;5381:37;5306:118;;:::o;5430:222::-;5523:4;5561:2;5550:9;5546:18;5538:26;;5574:71;5642:1;5631:9;5627:17;5618:6;5574:71;:::i;:::-;5430:222;;;;:::o;5658:619::-;5735:6;5743;5751;5800:2;5788:9;5779:7;5775:23;5771:32;5768:119;;;5806:79;;:::i;:::-;5768:119;5926:1;5951:53;5996:7;5987:6;5976:9;5972:22;5951:53;:::i;:::-;5941:63;;5897:117;6053:2;6079:53;6124:7;6115:6;6104:9;6100:22;6079:53;:::i;:::-;6069:63;;6024:118;6181:2;6207:53;6252:7;6243:6;6232:9;6228:22;6207:53;:::i;:::-;6197:63;;6152:118;5658:619;;;;;:::o;6283:86::-;6318:7;6358:4;6351:5;6347:16;6336:27;;6283:86;;;:::o;6375:112::-;6458:22;6474:5;6458:22;:::i;:::-;6453:3;6446:35;6375:112;;:::o;6493:214::-;6582:4;6620:2;6609:9;6605:18;6597:26;;6633:67;6697:1;6686:9;6682:17;6673:6;6633:67;:::i;:::-;6493:214;;;;:::o;6713:118::-;6800:24;6818:5;6800:24;:::i;:::-;6795:3;6788:37;6713:118;;:::o;6837:222::-;6930:4;6968:2;6957:9;6953:18;6945:26;;6981:71;7049:1;7038:9;7034:17;7025:6;6981:71;:::i;:::-;6837:222;;;;:::o;7065:474::-;7133:6;7141;7190:2;7178:9;7169:7;7165:23;7161:32;7158:119;;;7196:79;;:::i;:::-;7158:119;7316:1;7341:53;7386:7;7377:6;7366:9;7362:22;7341:53;:::i;:::-;7331:63;;7287:117;7443:2;7469:53;7514:7;7505:6;7494:9;7490:22;7469:53;:::i;:::-;7459:63;;7414:118;7065:474;;;;;:::o;7545:180::-;7593:77;7590:1;7583:88;7690:4;7687:1;7680:15;7714:4;7711:1;7704:15;7731:320;7775:6;7812:1;7806:4;7802:12;7792:22;;7859:1;7853:4;7849:12;7880:18;7870:81;;7936:4;7928:6;7924:17;7914:27;;7870:81;7998:2;7990:6;7987:14;7967:18;7964:38;7961:84;;8017:18;;:::i;:::-;7961:84;7782:269;7731:320;;;:::o;8057:180::-;8105:77;8102:1;8095:88;8202:4;8199:1;8192:15;8226:4;8223:1;8216:15;8243:180;8291:77;8288:1;8281:88;8388:4;8385:1;8378:15;8412:4;8409:1;8402:15;8429:233;8468:3;8491:24;8509:5;8491:24;:::i;:::-;8482:33;;8537:66;8530:5;8527:77;8524:103;;8607:18;;:::i;:::-;8524:103;8654:1;8647:5;8643:13;8636:20;;8429:233;;;:::o;8668:191::-;8708:3;8727:20;8745:1;8727:20;:::i;:::-;8722:25;;8761:20;8779:1;8761:20;:::i;:::-;8756:25;;8804:1;8801;8797:9;8790:16;;8825:3;8822:1;8819:10;8816:36;;;8832:18;;:::i;:::-;8816:36;8668:191;;;;:::o;8865:224::-;9005:34;9001:1;8993:6;8989:14;8982:58;9074:7;9069:2;9061:6;9057:15;9050:32;8865:224;:::o;9095:366::-;9237:3;9258:67;9322:2;9317:3;9258:67;:::i;:::-;9251:74;;9334:93;9423:3;9334:93;:::i;:::-;9452:2;9447:3;9443:12;9436:19;;9095:366;;;:::o;9467:419::-;9633:4;9671:2;9660:9;9656:18;9648:26;;9720:9;9714:4;9710:20;9706:1;9695:9;9691:17;9684:47;9748:131;9874:4;9748:131;:::i;:::-;9740:139;;9467:419;;;:::o;9892:225::-;10032:34;10028:1;10020:6;10016:14;10009:58;10101:8;10096:2;10088:6;10084:15;10077:33;9892:225;:::o;10123:366::-;10265:3;10286:67;10350:2;10345:3;10286:67;:::i;:::-;10279:74;;10362:93;10451:3;10362:93;:::i;:::-;10480:2;10475:3;10471:12;10464:19;;10123:366;;;:::o;10495:419::-;10661:4;10699:2;10688:9;10684:18;10676:26;;10748:9;10742:4;10738:20;10734:1;10723:9;10719:17;10712:47;10776:131;10902:4;10776:131;:::i;:::-;10768:139;;10495:419;;;:::o;10920:223::-;11060:34;11056:1;11048:6;11044:14;11037:58;11129:6;11124:2;11116:6;11112:15;11105:31;10920:223;:::o;11149:366::-;11291:3;11312:67;11376:2;11371:3;11312:67;:::i;:::-;11305:74;;11388:93;11477:3;11388:93;:::i;:::-;11506:2;11501:3;11497:12;11490:19;;11149:366;;;:::o;11521:419::-;11687:4;11725:2;11714:9;11710:18;11702:26;;11774:9;11768:4;11764:20;11760:1;11749:9;11745:17;11738:47;11802:131;11928:4;11802:131;:::i;:::-;11794:139;;11521:419;;;:::o;11946:221::-;12086:34;12082:1;12074:6;12070:14;12063:58;12155:4;12150:2;12142:6;12138:15;12131:29;11946:221;:::o;12173:366::-;12315:3;12336:67;12400:2;12395:3;12336:67;:::i;:::-;12329:74;;12412:93;12501:3;12412:93;:::i;:::-;12530:2;12525:3;12521:12;12514:19;;12173:366;;;:::o;12545:419::-;12711:4;12749:2;12738:9;12734:18;12726:26;;12798:9;12792:4;12788:20;12784:1;12773:9;12769:17;12762:47;12826:131;12952:4;12826:131;:::i;:::-;12818:139;;12545:419;;;:::o;12970:182::-;13110:34;13106:1;13098:6;13094:14;13087:58;12970:182;:::o;13158:366::-;13300:3;13321:67;13385:2;13380:3;13321:67;:::i;:::-;13314:74;;13397:93;13486:3;13397:93;:::i;:::-;13515:2;13510:3;13506:12;13499:19;;13158:366;;;:::o;13530:419::-;13696:4;13734:2;13723:9;13719:18;13711:26;;13783:9;13777:4;13773:20;13769:1;13758:9;13754:17;13747:47;13811:131;13937:4;13811:131;:::i;:::-;13803:139;;13530:419;;;:::o;13955:179::-;14095:31;14091:1;14083:6;14079:14;14072:55;13955:179;:::o;14140:366::-;14282:3;14303:67;14367:2;14362:3;14303:67;:::i;:::-;14296:74;;14379:93;14468:3;14379:93;:::i;:::-;14497:2;14492:3;14488:12;14481:19;;14140:366;;;:::o;14512:419::-;14678:4;14716:2;14705:9;14701:18;14693:26;;14765:9;14759:4;14755:20;14751:1;14740:9;14736:17;14729:47;14793:131;14919:4;14793:131;:::i;:::-;14785:139;;14512:419;;;:::o;14937:224::-;15077:34;15073:1;15065:6;15061:14;15054:58;15146:7;15141:2;15133:6;15129:15;15122:32;14937:224;:::o;15167:366::-;15309:3;15330:67;15394:2;15389:3;15330:67;:::i;:::-;15323:74;;15406:93;15495:3;15406:93;:::i;:::-;15524:2;15519:3;15515:12;15508:19;;15167:366;;;:::o;15539:419::-;15705:4;15743:2;15732:9;15728:18;15720:26;;15792:9;15786:4;15782:20;15778:1;15767:9;15763:17;15756:47;15820:131;15946:4;15820:131;:::i;:::-;15812:139;;15539:419;;;:::o;15964:222::-;16104:34;16100:1;16092:6;16088:14;16081:58;16173:5;16168:2;16160:6;16156:15;16149:30;15964:222;:::o;16192:366::-;16334:3;16355:67;16419:2;16414:3;16355:67;:::i;:::-;16348:74;;16431:93;16520:3;16431:93;:::i;:::-;16549:2;16544:3;16540:12;16533:19;;16192:366;;;:::o;16564:419::-;16730:4;16768:2;16757:9;16753:18;16745:26;;16817:9;16811:4;16807:20;16803:1;16792:9;16788:17;16781:47;16845:131;16971:4;16845:131;:::i;:::-;16837:139;;16564:419;;;:::o;16989:225::-;17129:34;17125:1;17117:6;17113:14;17106:58;17198:8;17193:2;17185:6;17181:15;17174:33;16989:225;:::o;17220:366::-;17362:3;17383:67;17447:2;17442:3;17383:67;:::i;:::-;17376:74;;17459:93;17548:3;17459:93;:::i;:::-;17577:2;17572:3;17568:12;17561:19;;17220:366;;;:::o;17592:419::-;17758:4;17796:2;17785:9;17781:18;17773:26;;17845:9;17839:4;17835:20;17831:1;17820:9;17816:17;17809:47;17873:131;17999:4;17873:131;:::i;:::-;17865:139;;17592:419;;;:::o;18017:114::-;;:::o;18137:364::-;18279:3;18300:66;18364:1;18359:3;18300:66;:::i;:::-;18293:73;;18375:93;18464:3;18375:93;:::i;:::-;18493:1;18488:3;18484:11;18477:18;;18137:364;;;:::o;18507:419::-;18673:4;18711:2;18700:9;18696:18;18688:26;;18760:9;18754:4;18750:20;18746:1;18735:9;18731:17;18724:47;18788:131;18914:4;18788:131;:::i;:::-;18780:139;;18507:419;;;:::o

Swarm Source

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