ETH Price: $3,445.47 (-1.02%)
Gas: 10 Gwei

Token

Glass PFP (GLASS)
 

Overview

Max Total Supply

0 GLASS

Holders

164

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
ujq.eth
Balance
1 GLASS
0x477430e5d51a00a0d09f8c3cbe3db4aef7ca8ed6
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:
Glass

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

//SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

/*
MMMMMMMMMMMMMMMMMMMWXkoc;'....                    ....';cokXWMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMWKd;.                                      .;dKWMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMW0l.                                            .l0WMMMMMMMMMMMMMM
MMMMMMMMMMMMMXo.                                                .oXMMMMMMMMMMMMM
MMMMMMMMMMMM0:                                                    :0MMMMMMMMMMMM
MMMMMMMMMMWk'                                                      'kWMMMMMMMMMM
MMMMMMMMMNd.                                                        .dNMMMMMMMMM
MMMMMMMMXl.                                                          .lXMMMMMMMM
MMMMMMMK:                                                              :KMMMMMMM
MMMMMMK;                                                                ;KMMMMMM
MMMMW0,                                                                  ,0WMMMM
MMMM0,                                                                    ,0MMMM
MMM0,                                                                      ,0MMM
MM0;                                                                        ,0MM
MK;                                                                          ;KM
X:                                                                            :X
o                                                                              o
.                                                                              .
                              GLASS by BODGE.ETH  
.                                                                              .
;                                                                              ;
O.                                                                            .O
Wx.                                                                          .xW
MWd.                                                                        .dWM
MMNo.                                                                      .oNMM
MMMNo.                                                                    .oNMMM
MMMMNo.                                                                  .oNMMMM
MMMMMNd.                                                                .dNMMMMM
MMMMMMWx.                                                              .xWMMMMMM
MMMMMMMWk'                                                            'kWMMMMMMM
MMMMMMMMWO,                                                          ,0WMMMMMMMM
MMMMMMMMMMK:                                                        :KMMMMMMMMMM
MMMMMMMMMMMNo.                                                    .oNMMMMMMMMMMM
MMMMMMMMMMMMWk'                                                  'kWMMMMMMMMMMMM
MMMMMMMMMMMMMMKl.                                              .lKMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMWKo'                                          'oKWMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMNOo;..                                ..;oONMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMWKko:,'...                  ...',:okKWMMMMMMMMMMMMMMMMMMMMM
*/

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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


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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/interfaces/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol)

pragma solidity ^0.8.0;


// File: @openzeppelin/contracts/interfaces/IERC2981.sol


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Called with the sale price to determine how much royalty is owed and to whom.
     * @param tokenId - the NFT asset queried for royalty information
     * @param salePrice - the sale price of the NFT asset specified by `tokenId`
     * @return receiver - address of who should be sent the royalty payment
     * @return royaltyAmount - the royalty payment amount for `salePrice`
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` 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 tokenId
    ) internal virtual {}
}

// File: contracts/Glass.sol

contract Glass is ERC721, IERC2981, Ownable, ReentrancyGuard {
    using Counters for Counters.Counter;
    using Strings for uint256;

    Counters.Counter private tokenCounter;

    string private baseURI = 'https://www.pfp.glass/api/metadata';
    uint256 public maxGlass = 500; 
    bool public isPublicSaleActive = false;
    bool public ownerMinted = false;
    uint256 public constant PUBLIC_SALE_PRICE = 0.0666 ether;


    // ============ ACCESS CONTROL/SANITY MODIFIERS ============

    modifier publicSaleActive() {
        require(isPublicSaleActive, "Public sale is not open");
        _;
    }

    modifier canMintGlass(uint256 numberOfTokens) {
        require(
            tokenCounter.current() + numberOfTokens <=
                maxGlass,
            "Not enough Glass remaining to mint"
        );
        _;
    }

    modifier isCorrectPayment(uint256 price, uint256 numberOfTokens) {
        require(
            price * numberOfTokens == msg.value,
            "Incorrect ETH value sent"
        );
        _;
    }

    modifier canOwnerMint() {
        require(!ownerMinted, "Owner already minted theirs");
        _;
    }

    constructor() ERC721("Glass PFP", "GLASS") {
        mintOwner();
    }

    // ============ PUBLIC FUNCTIONS FOR MINTING ============

    function mint(uint256 numberOfTokens)
        external
        payable
        nonReentrant
        isCorrectPayment(PUBLIC_SALE_PRICE, numberOfTokens)
        publicSaleActive
        canMintGlass(numberOfTokens)
    {
        for (uint256 i = 0; i < numberOfTokens; i++) {
            _safeMint(msg.sender, nextTokenId());
        }
    }

    // three for me
    function mintOwner() public onlyOwner canOwnerMint {
        for (uint256 i = 0; i < 3; i++) {
            _safeMint(msg.sender, nextTokenId());
        }
        ownerMinted = true;
    }

    // ============ PUBLIC READ-ONLY FUNCTIONS ============

    function getBaseURI() external view returns (string memory) {
        return baseURI;
    }

    function getLastTokenId() external view returns (uint256) {
        return tokenCounter.current();
    }

    // ============ OWNER-ONLY ADMIN FUNCTIONS ============

    function setBaseURI(string memory _baseURI) external onlyOwner {
        baseURI = _baseURI;
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    function setIsPublicSaleActive(bool _isPublicSaleActive)
        external
        onlyOwner
    {
        isPublicSaleActive = _isPublicSaleActive;
    }

    // ============ SUPPORTING FUNCTIONS ============

    function nextTokenId() private returns (uint256) {
        tokenCounter.increment();
        return tokenCounter.current();
    }

    // ============ FUNCTION OVERRIDES ============

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721, IERC165)
        returns (bool)
    {
        return
            interfaceId == type(IERC2981).interfaceId ||
            super.supportsInterface(interfaceId);
    }


    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(tokenId), "Nonexistent token");

        return
            string(abi.encodePacked(baseURI, "/", tokenId.toString()));
    }

    /**
     * @dev See {IERC165-royaltyInfo}.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        override
        returns (address receiver, uint256 royaltyAmount)
    {
        require(_exists(tokenId), "Nonexistent token");

        return (address(this), SafeMath.div(SafeMath.mul(salePrice, 5), 100));
    }
}

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":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","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":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLastTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxGlass","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ownerMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e060405260226080818152906200264460a03980516200002991600991602090910190620005cf565b506101f4600a55600b805461ffff191690553480156200004857600080fd5b5060408051808201825260098152680476c617373205046560bc1b602080830191825283518085019094526005845264474c41535360d81b9084015281519192916200009791600091620005cf565b508051620000ad906001906020840190620005cf565b505050620000ca620000c4620000df60201b60201c565b620000e3565b6001600755620000d962000135565b620007af565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620001955760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600b54610100900460ff1615620001ef5760405162461bcd60e51b815260206004820152601b60248201527f4f776e657220616c7265616479206d696e74656420746865697273000000000060448201526064016200018c565b60005b6003811015620002265762000211336200020b62000238565b6200026d565b806200021d816200077b565b915050620001f2565b50600b805461ff001916610100179055565b60006200025160086200029360201b62000ea81760201c565b6200026860086200029c60201b62000eb11760201c565b905090565b6200028f828260405180602001604052806000815250620002a060201b60201c565b5050565b80546001019055565b5490565b620002ac838362000318565b620002bb600084848462000460565b620003135760405162461bcd60e51b815260206004820152603260248201526000805160206200262483398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016200018c565b505050565b6001600160a01b038216620003705760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016200018c565b6000818152600260205260409020546001600160a01b031615620003d75760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016200018c565b6001600160a01b03821660009081526003602052604081208054600192906200040290849062000723565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600062000481846001600160a01b0316620005c960201b62000eb51760201c565b15620005bd57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290620004bb903390899088908890600401620006a8565b602060405180830381600087803b158015620004d657600080fd5b505af192505050801562000509575060408051601f3d908101601f19168201909252620005069181019062000675565b60015b620005a2573d8080156200053a576040519150601f19603f3d011682016040523d82523d6000602084013e6200053f565b606091505b5080516200059a5760405162461bcd60e51b815260206004820152603260248201526000805160206200262483398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016200018c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050620005c1565b5060015b949350505050565b3b151590565b828054620005dd906200073e565b90600052602060002090601f0160209004810192826200060157600085556200064c565b82601f106200061c57805160ff19168380011785556200064c565b828001600101855582156200064c579182015b828111156200064c5782518255916020019190600101906200062f565b506200065a9291506200065e565b5090565b5b808211156200065a57600081556001016200065f565b6000602082840312156200068857600080fd5b81516001600160e01b031981168114620006a157600080fd5b9392505050565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b82811015620006f75785810182015185820160a001528101620006d9565b828111156200070a57600060a084870101525b5050601f01601f19169190910160a00195945050505050565b6000821982111562000739576200073962000799565b500190565b600181811c908216806200075357607f821691505b602082108114156200077557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141562000792576200079262000799565b5060010190565b634e487b7160e01b600052601160045260246000fd5b611e6580620007bf6000396000f3fe6080604052600436106101b75760003560e01c806370a08231116100ec578063a0712d681161008a578063c87b56dd11610064578063c87b56dd146104be578063cecb06d0146104de578063e985e9c5146104f3578063f2fde38b1461053c57600080fd5b8063a0712d681461046b578063a22cb4651461047e578063b88d4fde1461049e57600080fd5b806383c4c00d116100c657806383c4c00d1461040d5780638da5cb5b146104225780638ef360401461044057806395d89b411461045657600080fd5b806370a08231146103c3578063714c5398146103e3578063715018a6146103f857600080fd5b806323b872dd116101595780633ccfd60b116101335780633ccfd60b1461034e57806342842e0e1461036357806355f804b3146103835780636352211e146103a357600080fd5b806323b872dd146102cf57806328cad13d146102ef5780632a55205a1461030f57600080fd5b8063081812fc11610195578063081812fc1461023c578063095ea7b3146102745780630bf7a627146102965780631e84c413146102b557600080fd5b806301ffc9a7146101bc57806306fdde03146101f157806307e89ec014610213575b600080fd5b3480156101c857600080fd5b506101dc6101d73660046119e4565b61055c565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b50610206610587565b6040516101e89190611bde565b34801561021f57600080fd5b5061022e66ec9c58de0a800081565b6040519081526020016101e8565b34801561024857600080fd5b5061025c610257366004611a67565b610619565b6040516001600160a01b0390911681526020016101e8565b34801561028057600080fd5b5061029461028f36600461199f565b6106b3565b005b3480156102a257600080fd5b50600b546101dc90610100900460ff1681565b3480156102c157600080fd5b50600b546101dc9060ff1681565b3480156102db57600080fd5b506102946102ea3660046118bd565b6107c9565b3480156102fb57600080fd5b5061029461030a3660046119c9565b6107fa565b34801561031b57600080fd5b5061032f61032a366004611a80565b610837565b604080516001600160a01b0390931683526020830191909152016101e8565b34801561035a57600080fd5b506102946108b2565b34801561036f57600080fd5b5061029461037e3660046118bd565b61090f565b34801561038f57600080fd5b5061029461039e366004611a1e565b61092a565b3480156103af57600080fd5b5061025c6103be366004611a67565b610967565b3480156103cf57600080fd5b5061022e6103de36600461186f565b6109de565b3480156103ef57600080fd5b50610206610a65565b34801561040457600080fd5b50610294610a74565b34801561041957600080fd5b5061022e610aaa565b34801561042e57600080fd5b506006546001600160a01b031661025c565b34801561044c57600080fd5b5061022e600a5481565b34801561046257600080fd5b50610206610aba565b610294610479366004611a67565b610ac9565b34801561048a57600080fd5b50610294610499366004611975565b610c7f565b3480156104aa57600080fd5b506102946104b93660046118f9565b610c8a565b3480156104ca57600080fd5b506102066104d9366004611a67565b610cc2565b3480156104ea57600080fd5b50610294610d4f565b3480156104ff57600080fd5b506101dc61050e36600461188a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561054857600080fd5b5061029461055736600461186f565b610e0d565b60006001600160e01b0319821663152a902d60e11b1480610581575061058182610ebb565b92915050565b60606000805461059690611d57565b80601f01602080910402602001604051908101604052809291908181526020018280546105c290611d57565b801561060f5780601f106105e45761010080835404028352916020019161060f565b820191906000526020600020905b8154815290600101906020018083116105f257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106975760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106be82610967565b9050806001600160a01b0316836001600160a01b0316141561072c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161068e565b336001600160a01b03821614806107485750610748813361050e565b6107ba5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161068e565b6107c48383610f0b565b505050565b6107d33382610f79565b6107ef5760405162461bcd60e51b815260040161068e90611c78565b6107c4838383611070565b6006546001600160a01b031633146108245760405162461bcd60e51b815260040161068e90611c43565b600b805460ff1916911515919091179055565b60008281526002602052604081205481906001600160a01b03166108915760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b604482015260640161068e565b306108a76108a0856005611210565b6064611223565b915091509250929050565b6006546001600160a01b031633146108dc5760405162461bcd60e51b815260040161068e90611c43565b6040514790339082156108fc029083906000818181858888f1935050505015801561090b573d6000803e3d6000fd5b5050565b6107c483838360405180602001604052806000815250610c8a565b6006546001600160a01b031633146109545760405162461bcd60e51b815260040161068e90611c43565b805161090b906009906020840190611734565b6000818152600260205260408120546001600160a01b0316806105815760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161068e565b60006001600160a01b038216610a495760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161068e565b506001600160a01b031660009081526003602052604090205490565b60606009805461059690611d57565b6006546001600160a01b03163314610a9e5760405162461bcd60e51b815260040161068e90611c43565b610aa8600061122f565b565b6000610ab560085490565b905090565b60606001805461059690611d57565b60026007541415610b1c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161068e565b600260075566ec9c58de0a80008134610b358284611cf5565b14610b825760405162461bcd60e51b815260206004820152601860248201527f496e636f7272656374204554482076616c75652073656e740000000000000000604482015260640161068e565b600b5460ff16610bd45760405162461bcd60e51b815260206004820152601760248201527f5075626c69632073616c65206973206e6f74206f70656e000000000000000000604482015260640161068e565b82600a5481610be260085490565b610bec9190611cc9565b1115610c455760405162461bcd60e51b815260206004820152602260248201527f4e6f7420656e6f75676820476c6173732072656d61696e696e6720746f206d696044820152611b9d60f21b606482015260840161068e565b60005b84811015610c7357610c6133610c5c611281565b611298565b80610c6b81611d92565b915050610c48565b50506001600755505050565b61090b3383836112b2565b610c943383610f79565b610cb05760405162461bcd60e51b815260040161068e90611c78565b610cbc84848484611381565b50505050565b6000818152600260205260409020546060906001600160a01b0316610d1d5760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b604482015260640161068e565b6009610d28836113b4565b604051602001610d39929190611aea565b6040516020818303038152906040529050919050565b6006546001600160a01b03163314610d795760405162461bcd60e51b815260040161068e90611c43565b600b54610100900460ff1615610dd15760405162461bcd60e51b815260206004820152601b60248201527f4f776e657220616c7265616479206d696e746564207468656972730000000000604482015260640161068e565b60005b6003811015610dfb57610de933610c5c611281565b80610df381611d92565b915050610dd4565b50600b805461ff001916610100179055565b6006546001600160a01b03163314610e375760405162461bcd60e51b815260040161068e90611c43565b6001600160a01b038116610e9c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161068e565b610ea58161122f565b50565b80546001019055565b5490565b3b151590565b60006001600160e01b031982166380ac58cd60e01b1480610eec57506001600160e01b03198216635b5e139f60e01b145b8061058157506301ffc9a760e01b6001600160e01b0319831614610581565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610f4082610967565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610ff25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161068e565b6000610ffd83610967565b9050806001600160a01b0316846001600160a01b031614806110385750836001600160a01b031661102d84610619565b6001600160a01b0316145b8061106857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661108382610967565b6001600160a01b0316146110eb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161068e565b6001600160a01b03821661114d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161068e565b611158600082610f0b565b6001600160a01b0383166000908152600360205260408120805460019290611181908490611d14565b90915550506001600160a01b03821660009081526003602052604081208054600192906111af908490611cc9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061121c8284611cf5565b9392505050565b600061121c8284611ce1565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611291600880546001019055565b5060085490565b61090b8282604051806020016040528060008152506114b2565b816001600160a01b0316836001600160a01b031614156113145760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161068e565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61138c848484611070565b611398848484846114e5565b610cbc5760405162461bcd60e51b815260040161068e90611bf1565b6060816113d85750506040805180820190915260018152600360fc1b602082015290565b8160005b811561140257806113ec81611d92565b91506113fb9050600a83611ce1565b91506113dc565b60008167ffffffffffffffff81111561141d5761141d611e03565b6040519080825280601f01601f191660200182016040528015611447576020820181803683370190505b5090505b84156110685761145c600183611d14565b9150611469600a86611dad565b611474906030611cc9565b60f81b81838151811061148957611489611ded565b60200101906001600160f81b031916908160001a9053506114ab600a86611ce1565b945061144b565b6114bc83836115f2565b6114c960008484846114e5565b6107c45760405162461bcd60e51b815260040161068e90611bf1565b60006001600160a01b0384163b156115e757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611529903390899088908890600401611ba1565b602060405180830381600087803b15801561154357600080fd5b505af1925050508015611573575060408051601f3d908101601f1916820190925261157091810190611a01565b60015b6115cd573d8080156115a1576040519150601f19603f3d011682016040523d82523d6000602084013e6115a6565b606091505b5080516115c55760405162461bcd60e51b815260040161068e90611bf1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611068565b506001949350505050565b6001600160a01b0382166116485760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161068e565b6000818152600260205260409020546001600160a01b0316156116ad5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161068e565b6001600160a01b03821660009081526003602052604081208054600192906116d6908490611cc9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461174090611d57565b90600052602060002090601f01602090048101928261176257600085556117a8565b82601f1061177b57805160ff19168380011785556117a8565b828001600101855582156117a8579182015b828111156117a857825182559160200191906001019061178d565b506117b49291506117b8565b5090565b5b808211156117b457600081556001016117b9565b600067ffffffffffffffff808411156117e8576117e8611e03565b604051601f8501601f19908116603f0116810190828211818310171561181057611810611e03565b8160405280935085815286868601111561182957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461185a57600080fd5b919050565b8035801515811461185a57600080fd5b60006020828403121561188157600080fd5b61121c82611843565b6000806040838503121561189d57600080fd5b6118a683611843565b91506118b460208401611843565b90509250929050565b6000806000606084860312156118d257600080fd5b6118db84611843565b92506118e960208501611843565b9150604084013590509250925092565b6000806000806080858703121561190f57600080fd5b61191885611843565b935061192660208601611843565b925060408501359150606085013567ffffffffffffffff81111561194957600080fd5b8501601f8101871361195a57600080fd5b611969878235602084016117cd565b91505092959194509250565b6000806040838503121561198857600080fd5b61199183611843565b91506118b46020840161185f565b600080604083850312156119b257600080fd5b6119bb83611843565b946020939093013593505050565b6000602082840312156119db57600080fd5b61121c8261185f565b6000602082840312156119f657600080fd5b813561121c81611e19565b600060208284031215611a1357600080fd5b815161121c81611e19565b600060208284031215611a3057600080fd5b813567ffffffffffffffff811115611a4757600080fd5b8201601f81018413611a5857600080fd5b611068848235602084016117cd565b600060208284031215611a7957600080fd5b5035919050565b60008060408385031215611a9357600080fd5b50508035926020909101359150565b60008151808452611aba816020860160208601611d2b565b601f01601f19169290920160200192915050565b60008151611ae0818560208601611d2b565b9290920192915050565b600080845481600182811c915080831680611b0657607f831692505b6020808410821415611b2657634e487b7160e01b86526022600452602486fd5b818015611b3a5760018114611b4b57611b78565b60ff19861689528489019650611b78565b60008b81526020902060005b86811015611b705781548b820152908501908301611b57565b505084890196505b505050505050611b98611b9282602f60f81b815260010190565b85611ace565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611bd490830184611aa2565b9695505050505050565b60208152600061121c6020830184611aa2565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611cdc57611cdc611dc1565b500190565b600082611cf057611cf0611dd7565b500490565b6000816000190483118215151615611d0f57611d0f611dc1565b500290565b600082821015611d2657611d26611dc1565b500390565b60005b83811015611d46578181015183820152602001611d2e565b83811115610cbc5750506000910152565b600181811c90821680611d6b57607f821691505b60208210811415611d8c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611da657611da6611dc1565b5060010190565b600082611dbc57611dbc611dd7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ea557600080fdfea26469706673582212200feb006ee3dcf336bb9bb39a1dcc9baf21bef09643332b2a04df4303a54a0dbb64736f6c634300080700334552433732313a207472616e7366657220746f206e6f6e20455243373231526568747470733a2f2f7777772e7066702e676c6173732f6170692f6d65746164617461

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806370a08231116100ec578063a0712d681161008a578063c87b56dd11610064578063c87b56dd146104be578063cecb06d0146104de578063e985e9c5146104f3578063f2fde38b1461053c57600080fd5b8063a0712d681461046b578063a22cb4651461047e578063b88d4fde1461049e57600080fd5b806383c4c00d116100c657806383c4c00d1461040d5780638da5cb5b146104225780638ef360401461044057806395d89b411461045657600080fd5b806370a08231146103c3578063714c5398146103e3578063715018a6146103f857600080fd5b806323b872dd116101595780633ccfd60b116101335780633ccfd60b1461034e57806342842e0e1461036357806355f804b3146103835780636352211e146103a357600080fd5b806323b872dd146102cf57806328cad13d146102ef5780632a55205a1461030f57600080fd5b8063081812fc11610195578063081812fc1461023c578063095ea7b3146102745780630bf7a627146102965780631e84c413146102b557600080fd5b806301ffc9a7146101bc57806306fdde03146101f157806307e89ec014610213575b600080fd5b3480156101c857600080fd5b506101dc6101d73660046119e4565b61055c565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b50610206610587565b6040516101e89190611bde565b34801561021f57600080fd5b5061022e66ec9c58de0a800081565b6040519081526020016101e8565b34801561024857600080fd5b5061025c610257366004611a67565b610619565b6040516001600160a01b0390911681526020016101e8565b34801561028057600080fd5b5061029461028f36600461199f565b6106b3565b005b3480156102a257600080fd5b50600b546101dc90610100900460ff1681565b3480156102c157600080fd5b50600b546101dc9060ff1681565b3480156102db57600080fd5b506102946102ea3660046118bd565b6107c9565b3480156102fb57600080fd5b5061029461030a3660046119c9565b6107fa565b34801561031b57600080fd5b5061032f61032a366004611a80565b610837565b604080516001600160a01b0390931683526020830191909152016101e8565b34801561035a57600080fd5b506102946108b2565b34801561036f57600080fd5b5061029461037e3660046118bd565b61090f565b34801561038f57600080fd5b5061029461039e366004611a1e565b61092a565b3480156103af57600080fd5b5061025c6103be366004611a67565b610967565b3480156103cf57600080fd5b5061022e6103de36600461186f565b6109de565b3480156103ef57600080fd5b50610206610a65565b34801561040457600080fd5b50610294610a74565b34801561041957600080fd5b5061022e610aaa565b34801561042e57600080fd5b506006546001600160a01b031661025c565b34801561044c57600080fd5b5061022e600a5481565b34801561046257600080fd5b50610206610aba565b610294610479366004611a67565b610ac9565b34801561048a57600080fd5b50610294610499366004611975565b610c7f565b3480156104aa57600080fd5b506102946104b93660046118f9565b610c8a565b3480156104ca57600080fd5b506102066104d9366004611a67565b610cc2565b3480156104ea57600080fd5b50610294610d4f565b3480156104ff57600080fd5b506101dc61050e36600461188a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561054857600080fd5b5061029461055736600461186f565b610e0d565b60006001600160e01b0319821663152a902d60e11b1480610581575061058182610ebb565b92915050565b60606000805461059690611d57565b80601f01602080910402602001604051908101604052809291908181526020018280546105c290611d57565b801561060f5780601f106105e45761010080835404028352916020019161060f565b820191906000526020600020905b8154815290600101906020018083116105f257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106975760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106be82610967565b9050806001600160a01b0316836001600160a01b0316141561072c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161068e565b336001600160a01b03821614806107485750610748813361050e565b6107ba5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161068e565b6107c48383610f0b565b505050565b6107d33382610f79565b6107ef5760405162461bcd60e51b815260040161068e90611c78565b6107c4838383611070565b6006546001600160a01b031633146108245760405162461bcd60e51b815260040161068e90611c43565b600b805460ff1916911515919091179055565b60008281526002602052604081205481906001600160a01b03166108915760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b604482015260640161068e565b306108a76108a0856005611210565b6064611223565b915091509250929050565b6006546001600160a01b031633146108dc5760405162461bcd60e51b815260040161068e90611c43565b6040514790339082156108fc029083906000818181858888f1935050505015801561090b573d6000803e3d6000fd5b5050565b6107c483838360405180602001604052806000815250610c8a565b6006546001600160a01b031633146109545760405162461bcd60e51b815260040161068e90611c43565b805161090b906009906020840190611734565b6000818152600260205260408120546001600160a01b0316806105815760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161068e565b60006001600160a01b038216610a495760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161068e565b506001600160a01b031660009081526003602052604090205490565b60606009805461059690611d57565b6006546001600160a01b03163314610a9e5760405162461bcd60e51b815260040161068e90611c43565b610aa8600061122f565b565b6000610ab560085490565b905090565b60606001805461059690611d57565b60026007541415610b1c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161068e565b600260075566ec9c58de0a80008134610b358284611cf5565b14610b825760405162461bcd60e51b815260206004820152601860248201527f496e636f7272656374204554482076616c75652073656e740000000000000000604482015260640161068e565b600b5460ff16610bd45760405162461bcd60e51b815260206004820152601760248201527f5075626c69632073616c65206973206e6f74206f70656e000000000000000000604482015260640161068e565b82600a5481610be260085490565b610bec9190611cc9565b1115610c455760405162461bcd60e51b815260206004820152602260248201527f4e6f7420656e6f75676820476c6173732072656d61696e696e6720746f206d696044820152611b9d60f21b606482015260840161068e565b60005b84811015610c7357610c6133610c5c611281565b611298565b80610c6b81611d92565b915050610c48565b50506001600755505050565b61090b3383836112b2565b610c943383610f79565b610cb05760405162461bcd60e51b815260040161068e90611c78565b610cbc84848484611381565b50505050565b6000818152600260205260409020546060906001600160a01b0316610d1d5760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b604482015260640161068e565b6009610d28836113b4565b604051602001610d39929190611aea565b6040516020818303038152906040529050919050565b6006546001600160a01b03163314610d795760405162461bcd60e51b815260040161068e90611c43565b600b54610100900460ff1615610dd15760405162461bcd60e51b815260206004820152601b60248201527f4f776e657220616c7265616479206d696e746564207468656972730000000000604482015260640161068e565b60005b6003811015610dfb57610de933610c5c611281565b80610df381611d92565b915050610dd4565b50600b805461ff001916610100179055565b6006546001600160a01b03163314610e375760405162461bcd60e51b815260040161068e90611c43565b6001600160a01b038116610e9c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161068e565b610ea58161122f565b50565b80546001019055565b5490565b3b151590565b60006001600160e01b031982166380ac58cd60e01b1480610eec57506001600160e01b03198216635b5e139f60e01b145b8061058157506301ffc9a760e01b6001600160e01b0319831614610581565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610f4082610967565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610ff25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161068e565b6000610ffd83610967565b9050806001600160a01b0316846001600160a01b031614806110385750836001600160a01b031661102d84610619565b6001600160a01b0316145b8061106857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661108382610967565b6001600160a01b0316146110eb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161068e565b6001600160a01b03821661114d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161068e565b611158600082610f0b565b6001600160a01b0383166000908152600360205260408120805460019290611181908490611d14565b90915550506001600160a01b03821660009081526003602052604081208054600192906111af908490611cc9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061121c8284611cf5565b9392505050565b600061121c8284611ce1565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611291600880546001019055565b5060085490565b61090b8282604051806020016040528060008152506114b2565b816001600160a01b0316836001600160a01b031614156113145760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161068e565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61138c848484611070565b611398848484846114e5565b610cbc5760405162461bcd60e51b815260040161068e90611bf1565b6060816113d85750506040805180820190915260018152600360fc1b602082015290565b8160005b811561140257806113ec81611d92565b91506113fb9050600a83611ce1565b91506113dc565b60008167ffffffffffffffff81111561141d5761141d611e03565b6040519080825280601f01601f191660200182016040528015611447576020820181803683370190505b5090505b84156110685761145c600183611d14565b9150611469600a86611dad565b611474906030611cc9565b60f81b81838151811061148957611489611ded565b60200101906001600160f81b031916908160001a9053506114ab600a86611ce1565b945061144b565b6114bc83836115f2565b6114c960008484846114e5565b6107c45760405162461bcd60e51b815260040161068e90611bf1565b60006001600160a01b0384163b156115e757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611529903390899088908890600401611ba1565b602060405180830381600087803b15801561154357600080fd5b505af1925050508015611573575060408051601f3d908101601f1916820190925261157091810190611a01565b60015b6115cd573d8080156115a1576040519150601f19603f3d011682016040523d82523d6000602084013e6115a6565b606091505b5080516115c55760405162461bcd60e51b815260040161068e90611bf1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611068565b506001949350505050565b6001600160a01b0382166116485760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161068e565b6000818152600260205260409020546001600160a01b0316156116ad5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161068e565b6001600160a01b03821660009081526003602052604081208054600192906116d6908490611cc9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461174090611d57565b90600052602060002090601f01602090048101928261176257600085556117a8565b82601f1061177b57805160ff19168380011785556117a8565b828001600101855582156117a8579182015b828111156117a857825182559160200191906001019061178d565b506117b49291506117b8565b5090565b5b808211156117b457600081556001016117b9565b600067ffffffffffffffff808411156117e8576117e8611e03565b604051601f8501601f19908116603f0116810190828211818310171561181057611810611e03565b8160405280935085815286868601111561182957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461185a57600080fd5b919050565b8035801515811461185a57600080fd5b60006020828403121561188157600080fd5b61121c82611843565b6000806040838503121561189d57600080fd5b6118a683611843565b91506118b460208401611843565b90509250929050565b6000806000606084860312156118d257600080fd5b6118db84611843565b92506118e960208501611843565b9150604084013590509250925092565b6000806000806080858703121561190f57600080fd5b61191885611843565b935061192660208601611843565b925060408501359150606085013567ffffffffffffffff81111561194957600080fd5b8501601f8101871361195a57600080fd5b611969878235602084016117cd565b91505092959194509250565b6000806040838503121561198857600080fd5b61199183611843565b91506118b46020840161185f565b600080604083850312156119b257600080fd5b6119bb83611843565b946020939093013593505050565b6000602082840312156119db57600080fd5b61121c8261185f565b6000602082840312156119f657600080fd5b813561121c81611e19565b600060208284031215611a1357600080fd5b815161121c81611e19565b600060208284031215611a3057600080fd5b813567ffffffffffffffff811115611a4757600080fd5b8201601f81018413611a5857600080fd5b611068848235602084016117cd565b600060208284031215611a7957600080fd5b5035919050565b60008060408385031215611a9357600080fd5b50508035926020909101359150565b60008151808452611aba816020860160208601611d2b565b601f01601f19169290920160200192915050565b60008151611ae0818560208601611d2b565b9290920192915050565b600080845481600182811c915080831680611b0657607f831692505b6020808410821415611b2657634e487b7160e01b86526022600452602486fd5b818015611b3a5760018114611b4b57611b78565b60ff19861689528489019650611b78565b60008b81526020902060005b86811015611b705781548b820152908501908301611b57565b505084890196505b505050505050611b98611b9282602f60f81b815260010190565b85611ace565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611bd490830184611aa2565b9695505050505050565b60208152600061121c6020830184611aa2565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611cdc57611cdc611dc1565b500190565b600082611cf057611cf0611dd7565b500490565b6000816000190483118215151615611d0f57611d0f611dc1565b500290565b600082821015611d2657611d26611dc1565b500390565b60005b83811015611d46578181015183820152602001611d2e565b83811115610cbc5750506000910152565b600181811c90821680611d6b57607f821691505b60208210811415611d8c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611da657611da6611dc1565b5060010190565b600082611dbc57611dbc611dd7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ea557600080fdfea26469706673582212200feb006ee3dcf336bb9bb39a1dcc9baf21bef09643332b2a04df4303a54a0dbb64736f6c63430008070033

Deployed Bytecode Sourcemap

51561:3989:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54505:291;;;;;;;;;;-1:-1:-1;54505:291:0;;;;;:::i;:::-;;:::i;:::-;;;7580:14:1;;7573:22;7555:41;;7543:2;7528:18;54505:291:0;;;;;;;;40034:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;51939:56::-;;;;;;;;;;;;51983:12;51939:56;;;;;16113:25:1;;;16101:2;16086:18;51939:56:0;15967:177:1;41593:221:0;;;;;;;;;;-1:-1:-1;41593:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6599:32:1;;;6581:51;;6569:2;6554:18;41593:221:0;6435:203:1;41116:411:0;;;;;;;;;;-1:-1:-1;41116:411:0;;;;;:::i;:::-;;:::i;:::-;;51901:31;;;;;;;;;;-1:-1:-1;51901:31:0;;;;;;;;;;;51856:38;;;;;;;;;;-1:-1:-1;51856:38:0;;;;;;;;42343:339;;;;;;;;;;-1:-1:-1;42343:339:0;;;;;:::i;:::-;;:::i;54087:158::-;;;;;;;;;;-1:-1:-1;54087:158:0;;;;;:::i;:::-;;:::i;55229:318::-;;;;;;;;;;-1:-1:-1;55229:318:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;7328:32:1;;;7310:51;;7392:2;7377:18;;7370:34;;;;7283:18;55229:318:0;7136:274:1;53936:143:0;;;;;;;;;;;;;:::i;42753:185::-;;;;;;;;;;-1:-1:-1;42753:185:0;;;;;:::i;:::-;;:::i;53828:100::-;;;;;;;;;;-1:-1:-1;53828:100:0;;;;;:::i;:::-;;:::i;39728:239::-;;;;;;;;;;-1:-1:-1;39728:239:0;;;;;:::i;:::-;;:::i;39458:208::-;;;;;;;;;;-1:-1:-1;39458:208:0;;;;;:::i;:::-;;:::i;53550:93::-;;;;;;;;;;;;;:::i;19109:103::-;;;;;;;;;;;;;:::i;53651:106::-;;;;;;;;;;;;;:::i;18458:87::-;;;;;;;;;;-1:-1:-1;18531:6:0;;-1:-1:-1;;;;;18531:6:0;18458:87;;51819:29;;;;;;;;;;;;;;;;40203:104;;;;;;;;;;;;;:::i;52906:351::-;;;;;;:::i;:::-;;:::i;41886:155::-;;;;;;;;;;-1:-1:-1;41886:155:0;;;;;:::i;:::-;;:::i;43009:328::-;;;;;;;;;;-1:-1:-1;43009:328:0;;;;;:::i;:::-;;:::i;54869:294::-;;;;;;;;;;-1:-1:-1;54869:294:0;;;;;:::i;:::-;;:::i;53286:193::-;;;;;;;;;;;;;:::i;42112:164::-;;;;;;;;;;-1:-1:-1;42112:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;42233:25:0;;;42209:4;42233:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;42112:164;19367:201;;;;;;;;;;-1:-1:-1;19367:201:0;;;;;:::i;:::-;;:::i;54505:291::-;54652:4;-1:-1:-1;;;;;;54694:41:0;;-1:-1:-1;;;54694:41:0;;:94;;;54752:36;54776:11;54752:23;:36::i;:::-;54674:114;54505:291;-1:-1:-1;;54505:291:0:o;40034:100::-;40088:13;40121:5;40114:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40034:100;:::o;41593:221::-;41669:7;44936:16;;;:7;:16;;;;;;-1:-1:-1;;;;;44936:16:0;41689:73;;;;-1:-1:-1;;;41689:73:0;;13100:2:1;41689:73:0;;;13082:21:1;13139:2;13119:18;;;13112:30;13178:34;13158:18;;;13151:62;-1:-1:-1;;;13229:18:1;;;13222:42;13281:19;;41689:73:0;;;;;;;;;-1:-1:-1;41782:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;41782:24:0;;41593:221::o;41116:411::-;41197:13;41213:23;41228:7;41213:14;:23::i;:::-;41197:39;;41261:5;-1:-1:-1;;;;;41255:11:0;:2;-1:-1:-1;;;;;41255:11:0;;;41247:57;;;;-1:-1:-1;;;41247:57:0;;14284:2:1;41247:57:0;;;14266:21:1;14323:2;14303:18;;;14296:30;14362:34;14342:18;;;14335:62;-1:-1:-1;;;14413:18:1;;;14406:31;14454:19;;41247:57:0;14082:397:1;41247:57:0;17262:10;-1:-1:-1;;;;;41339:21:0;;;;:62;;-1:-1:-1;41364:37:0;41381:5;17262:10;42112:164;:::i;41364:37::-;41317:168;;;;-1:-1:-1;;;41317:168:0;;10791:2:1;41317:168:0;;;10773:21:1;10830:2;10810:18;;;10803:30;10869:34;10849:18;;;10842:62;10940:26;10920:18;;;10913:54;10984:19;;41317:168:0;10589:420:1;41317:168:0;41498:21;41507:2;41511:7;41498:8;:21::i;:::-;41186:341;41116:411;;:::o;42343:339::-;42538:41;17262:10;42571:7;42538:18;:41::i;:::-;42530:103;;;;-1:-1:-1;;;42530:103:0;;;;;;;:::i;:::-;42646:28;42656:4;42662:2;42666:7;42646:9;:28::i;54087:158::-;18531:6;;-1:-1:-1;;;;;18531:6:0;17262:10;18678:23;18670:68;;;;-1:-1:-1;;;18670:68:0;;;;;;;:::i;:::-;54197:18:::1;:40:::0;;-1:-1:-1;;54197:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;54087:158::o;55229:318::-;55354:16;44936;;;:7;:16;;;;;;55354;;-1:-1:-1;;;;;44936:16:0;55411:46;;;;-1:-1:-1;;;55411:46:0;;11216:2:1;55411:46:0;;;11198:21:1;11255:2;11235:18;;;11228:30;-1:-1:-1;;;11274:18:1;;;11267:47;11331:18;;55411:46:0;11014:341:1;55411:46:0;55486:4;55493:45;55506:26;55519:9;55530:1;55506:12;:26::i;:::-;55534:3;55493:12;:45::i;:::-;55470:69;;;;55229:318;;;;;:::o;53936:143::-;18531:6;;-1:-1:-1;;;;;18531:6:0;17262:10;18678:23;18670:68;;;;-1:-1:-1;;;18670:68:0;;;;;;;:::i;:::-;54034:37:::1;::::0;54002:21:::1;::::0;54042:10:::1;::::0;54034:37;::::1;;;::::0;54002:21;;53984:15:::1;54034:37:::0;53984:15;54034:37;54002:21;54042:10;54034:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;53973:106;53936:143::o:0;42753:185::-;42891:39;42908:4;42914:2;42918:7;42891:39;;;;;;;;;;;;:16;:39::i;53828:100::-;18531:6;;-1:-1:-1;;;;;18531:6:0;17262:10;18678:23;18670:68;;;;-1:-1:-1;;;18670:68:0;;;;;;;:::i;:::-;53902:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;39728:239::-:0;39800:7;39836:16;;;:7;:16;;;;;;-1:-1:-1;;;;;39836:16:0;39871:19;39863:73;;;;-1:-1:-1;;;39863:73:0;;11973:2:1;39863:73:0;;;11955:21:1;12012:2;11992:18;;;11985:30;12051:34;12031:18;;;12024:62;-1:-1:-1;;;12102:18:1;;;12095:39;12151:19;;39863:73:0;11771:405:1;39458:208:0;39530:7;-1:-1:-1;;;;;39558:19:0;;39550:74;;;;-1:-1:-1;;;39550:74:0;;11562:2:1;39550:74:0;;;11544:21:1;11601:2;11581:18;;;11574:30;11640:34;11620:18;;;11613:62;-1:-1:-1;;;11691:18:1;;;11684:40;11741:19;;39550:74:0;11360:406:1;39550:74:0;-1:-1:-1;;;;;;39642:16:0;;;;;:9;:16;;;;;;;39458:208::o;53550:93::-;53595:13;53628:7;53621:14;;;;;:::i;19109:103::-;18531:6;;-1:-1:-1;;;;;18531:6:0;17262:10;18678:23;18670:68;;;;-1:-1:-1;;;18670:68:0;;;;;;;:::i;:::-;19174:30:::1;19201:1;19174:18;:30::i;:::-;19109:103::o:0;53651:106::-;53700:7;53727:22;:12;11119:14;;11027:114;53727:22;53720:29;;53651:106;:::o;40203:104::-;40259:13;40292:7;40285:14;;;;;:::i;52906:351::-;13432:1;14030:7;;:19;;14022:63;;;;-1:-1:-1;;;14022:63:0;;15457:2:1;14022:63:0;;;15439:21:1;15496:2;15476:18;;;15469:30;15535:33;15515:18;;;15508:61;15586:18;;14022:63:0;15255:355:1;14022:63:0;13432:1;14163:7;:18;51983:12:::1;53046:14:::0;52556:9:::1;52530:22;53046:14:::0;51983:12;52530:22:::1;:::i;:::-;:35;52508:109;;;::::0;-1:-1:-1;;;52508:109:0;;15104:2:1;52508:109:0::1;::::0;::::1;15086:21:1::0;15143:2;15123:18;;;15116:30;15182:26;15162:18;;;15155:54;15226:18;;52508:109:0::1;14902:348:1::0;52508:109:0::1;52121:18:::2;::::0;::::2;;52113:54;;;::::0;-1:-1:-1;;;52113:54:0;;15817:2:1;52113:54:0::2;::::0;::::2;15799:21:1::0;15856:2;15836:18;;;15829:30;15895:25;15875:18;;;15868:53;15938:18;;52113:54:0::2;15615:347:1::0;52113:54:0::2;53110:14:::3;52334:8;;52299:14;52274:22;:12;11119:14:::0;;11027:114;52274:22:::3;:39;;;;:::i;:::-;:68;;52252:152;;;::::0;-1:-1:-1;;;52252:152:0;;9216:2:1;52252:152:0::3;::::0;::::3;9198:21:1::0;9255:2;9235:18;;;9228:30;9294:34;9274:18;;;9267:62;-1:-1:-1;;;9345:18:1;;;9338:32;9387:19;;52252:152:0::3;9014:398:1::0;52252:152:0::3;53147:9:::4;53142:108;53166:14;53162:1;:18;53142:108;;;53202:36;53212:10;53224:13;:11;:13::i;:::-;53202:9;:36::i;:::-;53182:3:::0;::::4;::::0;::::4;:::i;:::-;;;;53142:108;;;-1:-1:-1::0;;13388:1:0;14342:7;:22;-1:-1:-1;;;52906:351:0:o;41886:155::-;41981:52;17262:10;42014:8;42024;41981:18;:52::i;43009:328::-;43184:41;17262:10;43217:7;43184:18;:41::i;:::-;43176:103;;;;-1:-1:-1;;;43176:103:0;;;;;;;:::i;:::-;43290:39;43304:4;43310:2;43314:7;43323:5;43290:13;:39::i;:::-;43009:328;;;;:::o;54869:294::-;44912:4;44936:16;;;:7;:16;;;;;;54987:13;;-1:-1:-1;;;;;44936:16:0;55018:46;;;;-1:-1:-1;;;55018:46:0;;11216:2:1;55018:46:0;;;11198:21:1;11255:2;11235:18;;;11228:30;-1:-1:-1;;;11274:18:1;;;11267:47;11331:18;;55018:46:0;11014:341:1;55018:46:0;55121:7;55135:18;:7;:16;:18::i;:::-;55104:50;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55077:78;;54869:294;;;:::o;53286:193::-;18531:6;;-1:-1:-1;;;;;18531:6:0;17262:10;18678:23;18670:68;;;;-1:-1:-1;;;18670:68:0;;;;;;;:::i;:::-;52689:11:::1;::::0;::::1;::::0;::::1;;;52688:12;52680:52;;;::::0;-1:-1:-1;;;52680:52:0;;12383:2:1;52680:52:0::1;::::0;::::1;12365:21:1::0;12422:2;12402:18;;;12395:30;12461:29;12441:18;;;12434:57;12508:18;;52680:52:0::1;12181:351:1::0;52680:52:0::1;53353:9:::2;53348:95;53372:1;53368;:5;53348:95;;;53395:36;53405:10;53417:13;:11;:13::i;53395:36::-;53375:3:::0;::::2;::::0;::::2;:::i;:::-;;;;53348:95;;;-1:-1:-1::0;53453:11:0::2;:18:::0;;-1:-1:-1;;53453:18:0::2;;;::::0;;53286:193::o;19367:201::-;18531:6;;-1:-1:-1;;;;;18531:6:0;17262:10;18678:23;18670:68;;;;-1:-1:-1;;;18670:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19456:22:0;::::1;19448:73;;;::::0;-1:-1:-1;;;19448:73:0;;8452:2:1;19448:73:0::1;::::0;::::1;8434:21:1::0;8491:2;8471:18;;;8464:30;8530:34;8510:18;;;8503:62;-1:-1:-1;;;8581:18:1;;;8574:36;8627:19;;19448:73:0::1;8250:402:1::0;19448:73:0::1;19532:28;19551:8;19532:18;:28::i;:::-;19367:201:::0;:::o;11149:127::-;11238:19;;11256:1;11238:19;;;11149:127::o;11027:114::-;11119:14;;11027:114::o;20746:387::-;21069:20;21117:8;;;20746:387::o;39089:305::-;39191:4;-1:-1:-1;;;;;;39228:40:0;;-1:-1:-1;;;39228:40:0;;:105;;-1:-1:-1;;;;;;;39285:48:0;;-1:-1:-1;;;39285:48:0;39228:105;:158;;;-1:-1:-1;;;;;;;;;;31967:40:0;;;39350:36;31858:157;48829:174;48904:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;48904:29:0;-1:-1:-1;;;;;48904:29:0;;;;;;;;:24;;48958:23;48904:24;48958:14;:23::i;:::-;-1:-1:-1;;;;;48949:46:0;;;;;;;;;;;48829:174;;:::o;45141:348::-;45234:4;44936:16;;;:7;:16;;;;;;-1:-1:-1;;;;;44936:16:0;45251:73;;;;-1:-1:-1;;;45251:73:0;;10378:2:1;45251:73:0;;;10360:21:1;10417:2;10397:18;;;10390:30;10456:34;10436:18;;;10429:62;-1:-1:-1;;;10507:18:1;;;10500:42;10559:19;;45251:73:0;10176:408:1;45251:73:0;45335:13;45351:23;45366:7;45351:14;:23::i;:::-;45335:39;;45404:5;-1:-1:-1;;;;;45393:16:0;:7;-1:-1:-1;;;;;45393:16:0;;:51;;;;45437:7;-1:-1:-1;;;;;45413:31:0;:20;45425:7;45413:11;:20::i;:::-;-1:-1:-1;;;;;45413:31:0;;45393:51;:87;;;-1:-1:-1;;;;;;42233:25:0;;;42209:4;42233:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;45448:32;45385:96;45141:348;-1:-1:-1;;;;45141:348:0:o;48133:578::-;48292:4;-1:-1:-1;;;;;48265:31:0;:23;48280:7;48265:14;:23::i;:::-;-1:-1:-1;;;;;48265:31:0;;48257:85;;;;-1:-1:-1;;;48257:85:0;;13874:2:1;48257:85:0;;;13856:21:1;13913:2;13893:18;;;13886:30;13952:34;13932:18;;;13925:62;-1:-1:-1;;;14003:18:1;;;13996:39;14052:19;;48257:85:0;13672:405:1;48257:85:0;-1:-1:-1;;;;;48361:16:0;;48353:65;;;;-1:-1:-1;;;48353:65:0;;9619:2:1;48353:65:0;;;9601:21:1;9658:2;9638:18;;;9631:30;9697:34;9677:18;;;9670:62;-1:-1:-1;;;9748:18:1;;;9741:34;9792:19;;48353:65:0;9417:400:1;48353:65:0;48535:29;48552:1;48556:7;48535:8;:29::i;:::-;-1:-1:-1;;;;;48577:15:0;;;;;;:9;:15;;;;;:20;;48596:1;;48577:15;:20;;48596:1;;48577:20;:::i;:::-;;;;-1:-1:-1;;;;;;;48608:13:0;;;;;;:9;:13;;;;;:18;;48625:1;;48608:13;:18;;48625:1;;48608:18;:::i;:::-;;;;-1:-1:-1;;48637:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;48637:21:0;-1:-1:-1;;;;;48637:21:0;;;;;;;;;48676:27;;48637:16;;48676:27;;;;;;;48133:578;;;:::o;6728:98::-;6786:7;6813:5;6817:1;6813;:5;:::i;:::-;6806:12;6728:98;-1:-1:-1;;;6728:98:0:o;7127:::-;7185:7;7212:5;7216:1;7212;:5;:::i;19728:191::-;19821:6;;;-1:-1:-1;;;;;19838:17:0;;;-1:-1:-1;;;;;;19838:17:0;;;;;;;19871:40;;19821:6;;;19838:17;19821:6;;19871:40;;19802:16;;19871:40;19791:128;19728:191;:::o;54310:132::-;54350:7;54370:24;:12;11238:19;;11256:1;11238:19;;;11149:127;54370:24;-1:-1:-1;54412:12:0;11119:14;;53651:106::o;45831:110::-;45907:26;45917:2;45921:7;45907:26;;;;;;;;;;;;:9;:26::i;49145:315::-;49300:8;-1:-1:-1;;;;;49291:17:0;:5;-1:-1:-1;;;;;49291:17:0;;;49283:55;;;;-1:-1:-1;;;49283:55:0;;10024:2:1;49283:55:0;;;10006:21:1;10063:2;10043:18;;;10036:30;10102:27;10082:18;;;10075:55;10147:18;;49283:55:0;9822:349:1;49283:55:0;-1:-1:-1;;;;;49349:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;49349:46:0;;;;;;;;;;49411:41;;7555::1;;;49411::0;;7528:18:1;49411:41:0;;;;;;;49145:315;;;:::o;44219:::-;44376:28;44386:4;44392:2;44396:7;44376:9;:28::i;:::-;44423:48;44446:4;44452:2;44456:7;44465:5;44423:22;:48::i;:::-;44415:111;;;;-1:-1:-1;;;44415:111:0;;;;;;;:::i;14744:723::-;14800:13;15021:10;15017:53;;-1:-1:-1;;15048:10:0;;;;;;;;;;;;-1:-1:-1;;;15048:10:0;;;;;14744:723::o;15017:53::-;15095:5;15080:12;15136:78;15143:9;;15136:78;;15169:8;;;;:::i;:::-;;-1:-1:-1;15192:10:0;;-1:-1:-1;15200:2:0;15192:10;;:::i;:::-;;;15136:78;;;15224:19;15256:6;15246:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15246:17:0;;15224:39;;15274:154;15281:10;;15274:154;;15308:11;15318:1;15308:11;;:::i;:::-;;-1:-1:-1;15377:10:0;15385:2;15377:5;:10;:::i;:::-;15364:24;;:2;:24;:::i;:::-;15351:39;;15334:6;15341;15334:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;15334:56:0;;;;;;;;-1:-1:-1;15405:11:0;15414:2;15405:11;;:::i;:::-;;;15274:154;;46168:321;46298:18;46304:2;46308:7;46298:5;:18::i;:::-;46349:54;46380:1;46384:2;46388:7;46397:5;46349:22;:54::i;:::-;46327:154;;;;-1:-1:-1;;;46327:154:0;;;;;;;:::i;50025:799::-;50180:4;-1:-1:-1;;;;;50201:13:0;;21069:20;21117:8;50197:620;;50237:72;;-1:-1:-1;;;50237:72:0;;-1:-1:-1;;;;;50237:36:0;;;;;:72;;17262:10;;50288:4;;50294:7;;50303:5;;50237:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50237:72:0;;;;;;;;-1:-1:-1;;50237:72:0;;;;;;;;;;;;:::i;:::-;;;50233:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50479:13:0;;50475:272;;50522:60;;-1:-1:-1;;;50522:60:0;;;;;;;:::i;50475:272::-;50697:6;50691:13;50682:6;50678:2;50674:15;50667:38;50233:529;-1:-1:-1;;;;;;50360:51:0;-1:-1:-1;;;50360:51:0;;-1:-1:-1;50353:58:0;;50197:620;-1:-1:-1;50801:4:0;50025:799;;;;;;:::o;46825:382::-;-1:-1:-1;;;;;46905:16:0;;46897:61;;;;-1:-1:-1;;;46897:61:0;;12739:2:1;46897:61:0;;;12721:21:1;;;12758:18;;;12751:30;12817:34;12797:18;;;12790:62;12869:18;;46897:61:0;12537:356:1;46897:61:0;44912:4;44936:16;;;:7;:16;;;;;;-1:-1:-1;;;;;44936:16:0;:30;46969:58;;;;-1:-1:-1;;;46969:58:0;;8859:2:1;46969:58:0;;;8841:21:1;8898:2;8878:18;;;8871:30;8937;8917:18;;;8910:58;8985:18;;46969:58:0;8657:352:1;46969:58:0;-1:-1:-1;;;;;47098:13:0;;;;;;:9;:13;;;;;:18;;47115:1;;47098:13;:18;;47115:1;;47098:18;:::i;:::-;;;;-1:-1:-1;;47127:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;47127:21:0;-1:-1:-1;;;;;47127:21:0;;;;;;;;47166:33;;47127:16;;;47166:33;;47127:16;;47166:33;46825:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:248::-;4368:6;4376;4429:2;4417:9;4408:7;4404:23;4400:32;4397:52;;;4445:1;4442;4435:12;4397:52;-1:-1:-1;;4468:23:1;;;4538:2;4523:18;;;4510:32;;-1:-1:-1;4300:248:1:o;4553:257::-;4594:3;4632:5;4626:12;4659:6;4654:3;4647:19;4675:63;4731:6;4724:4;4719:3;4715:14;4708:4;4701:5;4697:16;4675:63;:::i;:::-;4792:2;4771:15;-1:-1:-1;;4767:29:1;4758:39;;;;4799:4;4754:50;;4553:257;-1:-1:-1;;4553:257:1:o;4815:185::-;4857:3;4895:5;4889:12;4910:52;4955:6;4950:3;4943:4;4936:5;4932:16;4910:52;:::i;:::-;4978:16;;;;;4815:185;-1:-1:-1;;4815:185:1:o;5124:1306::-;5401:3;5430:1;5463:6;5457:13;5493:3;5515:1;5543:9;5539:2;5535:18;5525:28;;5603:2;5592:9;5588:18;5625;5615:61;;5669:4;5661:6;5657:17;5647:27;;5615:61;5695:2;5743;5735:6;5732:14;5712:18;5709:38;5706:165;;;-1:-1:-1;;;5770:33:1;;5826:4;5823:1;5816:15;5856:4;5777:3;5844:17;5706:165;5887:18;5914:104;;;;6032:1;6027:320;;;;5880:467;;5914:104;-1:-1:-1;;5947:24:1;;5935:37;;5992:16;;;;-1:-1:-1;5914:104:1;;6027:320;16222:1;16215:14;;;16259:4;16246:18;;6122:1;6136:165;6150:6;6147:1;6144:13;6136:165;;;6228:14;;6215:11;;;6208:35;6271:16;;;;6165:10;;6136:165;;;6140:3;;6330:6;6325:3;6321:16;6314:23;;5880:467;;;;;;;6363:61;6389:34;6419:3;-1:-1:-1;;;5070:16:1;;5111:1;5102:11;;5005:114;6389:34;6381:6;6363:61;:::i;:::-;6356:68;5124:1306;-1:-1:-1;;;;;5124:1306:1:o;6643:488::-;-1:-1:-1;;;;;6912:15:1;;;6894:34;;6964:15;;6959:2;6944:18;;6937:43;7011:2;6996:18;;6989:34;;;7059:3;7054:2;7039:18;;7032:31;;;6837:4;;7080:45;;7105:19;;7097:6;7080:45;:::i;:::-;7072:53;6643:488;-1:-1:-1;;;;;;6643:488:1:o;7607:219::-;7756:2;7745:9;7738:21;7719:4;7776:44;7816:2;7805:9;7801:18;7793:6;7776:44;:::i;7831:414::-;8033:2;8015:21;;;8072:2;8052:18;;;8045:30;8111:34;8106:2;8091:18;;8084:62;-1:-1:-1;;;8177:2:1;8162:18;;8155:48;8235:3;8220:19;;7831:414::o;13311:356::-;13513:2;13495:21;;;13532:18;;;13525:30;13591:34;13586:2;13571:18;;13564:62;13658:2;13643:18;;13311:356::o;14484:413::-;14686:2;14668:21;;;14725:2;14705:18;;;14698:30;14764:34;14759:2;14744:18;;14737:62;-1:-1:-1;;;14830:2:1;14815:18;;14808:47;14887:3;14872:19;;14484:413::o;16275:128::-;16315:3;16346:1;16342:6;16339:1;16336:13;16333:39;;;16352:18;;:::i;:::-;-1:-1:-1;16388:9:1;;16275:128::o;16408:120::-;16448:1;16474;16464:35;;16479:18;;:::i;:::-;-1:-1:-1;16513:9:1;;16408:120::o;16533:168::-;16573:7;16639:1;16635;16631:6;16627:14;16624:1;16621:21;16616:1;16609:9;16602:17;16598:45;16595:71;;;16646:18;;:::i;:::-;-1:-1:-1;16686:9:1;;16533:168::o;16706:125::-;16746:4;16774:1;16771;16768:8;16765:34;;;16779:18;;:::i;:::-;-1:-1:-1;16816:9:1;;16706:125::o;16836:258::-;16908:1;16918:113;16932:6;16929:1;16926:13;16918:113;;;17008:11;;;17002:18;16989:11;;;16982:39;16954:2;16947:10;16918:113;;;17049:6;17046:1;17043:13;17040:48;;;-1:-1:-1;;17084:1:1;17066:16;;17059:27;16836:258::o;17099:380::-;17178:1;17174:12;;;;17221;;;17242:61;;17296:4;17288:6;17284:17;17274:27;;17242:61;17349:2;17341:6;17338:14;17318:18;17315:38;17312:161;;;17395:10;17390:3;17386:20;17383:1;17376:31;17430:4;17427:1;17420:15;17458:4;17455:1;17448:15;17312:161;;17099:380;;;:::o;17484:135::-;17523:3;-1:-1:-1;;17544:17:1;;17541:43;;;17564:18;;:::i;:::-;-1:-1:-1;17611:1:1;17600:13;;17484:135::o;17624:112::-;17656:1;17682;17672:35;;17687:18;;:::i;:::-;-1:-1:-1;17721:9:1;;17624:112::o;17741:127::-;17802:10;17797:3;17793:20;17790:1;17783:31;17833:4;17830:1;17823:15;17857:4;17854:1;17847:15;17873:127;17934:10;17929:3;17925:20;17922:1;17915:31;17965:4;17962:1;17955:15;17989:4;17986:1;17979:15;18005:127;18066:10;18061:3;18057:20;18054:1;18047:31;18097:4;18094:1;18087:15;18121:4;18118:1;18111:15;18137:127;18198:10;18193:3;18189:20;18186:1;18179:31;18229:4;18226:1;18219:15;18253:4;18250:1;18243:15;18269:131;-1:-1:-1;;;;;;18343:32:1;;18333:43;;18323:71;;18390:1;18387;18380:12

Swarm Source

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