ETH Price: $3,114.76 (+3.68%)
Gas: 5 Gwei

Token

Dawn Pass (DAWN)
 

Overview

Max Total Supply

11,319 DAWN

Holders

11,319

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
test.zerion.eth
Balance
1 DAWN
0x42b9df65b219b3dd36ff330a4dd8f327a6ada990
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:
Dawn

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// https://www.daylight.xyz
// 🌞

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

/// [MIT License]
/// @title Base64
/// @notice Provides a function for encoding some bytes in base64
/// @author Brecht Devos <[email protected]>
library Utils {
    bytes internal constant TABLE =
        "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /// @notice Encodes some bytes to the base64 representation
    function base64Encode(bytes memory data)
        internal
        pure
        returns (string memory)
    {
        uint256 len = data.length;
        if (len == 0) return "";

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((len + 2) / 3);

        // Add some extra buffer at the end
        bytes memory result = new bytes(encodedLen + 32);

        bytes memory table = TABLE;

        assembly {
            let tablePtr := add(table, 1)
            let resultPtr := add(result, 32)

            for {
                let i := 0
            } lt(i, len) {

            } {
                i := add(i, 3)
                let input := and(mload(add(data, i)), 0xffffff)

                let out := mload(add(tablePtr, and(shr(18, input), 0x3F)))
                out := shl(8, out)
                out := add(
                    out,
                    and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF)
                )
                out := shl(8, out)
                out := add(
                    out,
                    and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF)
                )
                out := shl(8, out)
                out := add(
                    out,
                    and(mload(add(tablePtr, and(input, 0x3F))), 0xFF)
                )
                out := shl(224, out)

                mstore(resultPtr, out)

                resultPtr := add(resultPtr, 4)
            }

            switch mod(len, 3)
            case 1 {
                mstore(sub(resultPtr, 2), shl(240, 0x3d3d))
            }
            case 2 {
                mstore(sub(resultPtr, 1), shl(248, 0x3d))
            }

            mstore(result, encodedLen)
        }

        return string(result);
    }

    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT license
        // 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);
    }

    function strlen(string memory s) internal pure returns (uint256) {
        uint256 len;
        uint256 i = 0;
        uint256 bytelength = bytes(s).length;
        for (len = 0; i < bytelength; len++) {
            bytes1 b = bytes(s)[i];
            if (b < 0x80) {
                i += 1;
            } else if (b < 0xE0) {
                i += 2;
            } else if (b < 0xF0) {
                i += 3;
            } else if (b < 0xF8) {
                i += 4;
            } else if (b < 0xFC) {
                i += 5;
            } else {
                i += 6;
            }
        }
        return len;
    }
}

// File: contracts/TokenRenderer.sol


pragma solidity ^0.8.4;

interface TokenRenderer {
    function getTokenURI(uint256 tokenId, string memory name)
        external
        view
        returns (string memory);
}

// 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/utils/Strings.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

    /**
     * @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);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol


// OpenZeppelin Contracts (last updated v4.7.3) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;


/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

// 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 (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions 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: contracts/SignedAllowlists.sol

pragma solidity ^0.8.0;



contract SignedAllowlists is Ownable {
    using ECDSA for bytes32;

    // The key used to sign Allowlist signatures.
    // We will check to ensure that the key that signed the signature
    // is this one that we expect.
    address AllowlistSigningKey = address(0);

    // Domain Separator is the EIP-712 defined structure that defines what contract
    // and chain these signatures can be used for.  This ensures people can't take
    // a signature used to mint on one contract and use it for another, or a signature
    // from testnet to replay on mainnet.
    // It has to be created in the constructor so we can dynamically grab the chainId.
    // https://github.com/ethereum/EIPs/blob/master/EIPS/eip-712.md#definition-of-domainseparator
    bytes32 public DOMAIN_SEPARATOR;

    // The typehash for the data type specified in the structured data
    // https://github.com/ethereum/EIPs/blob/master/EIPS/eip-712.md#rationale-for-typehash
    // This should match whats in the client side Allowlist signing code
    // https://github.com/msfeldstein/EIP712-Allowlisting/blob/main/test/signAllowlist.ts#L22
    bytes32 public constant MINTER_TYPEHASH =
        keccak256("Minter(address wallet)");

    constructor(string memory name_) {
        // This should match whats in the client side Allowlist signing code
        // https://github.com/msfeldstein/EIP712-Allowlisting/blob/main/test/signAllowlist.ts#L12
        DOMAIN_SEPARATOR = keccak256(
            abi.encode(
                keccak256(
                    "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
                ),
                // This should match the domain you set in your client side signing.
                keccak256(bytes(name_)),
                keccak256(bytes("1")),
                block.chainid,
                address(this)
            )
        );
    }

    function setAllowlistSigningAddress(address newSigningKey)
        public
        onlyOwner
    {
        AllowlistSigningKey = newSigningKey;
    }

    modifier requiresAllowlist(bytes calldata signature) {
        require(AllowlistSigningKey != address(0), "Allowlist not enabled");
        // Verify EIP-712 signature by recreating the data structure
        // that we signed on the client side, and then using that to recover
        // the address that signed the signature for this data.
        bytes32 digest = keccak256(
            abi.encodePacked(
                "\x19\x01",
                DOMAIN_SEPARATOR,
                keccak256(abi.encode(MINTER_TYPEHASH, msg.sender))
            )
        );
        // Use the recover method to see what address was used to create
        // the signature on this data.
        // Note that if the digest doesn't exactly match what was signed we'll
        // get a random recovered address.
        address recoveredAddress = digest.recover(signature);

        require(recoveredAddress == AllowlistSigningKey, "Invalid Signature");
        _;
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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
                /// @solidity memory-safe-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 (last updated v4.6.0) (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 `IERC721Receiver.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/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 (last updated v4.7.0) (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`.
     *
     * 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;

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);
}

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// 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 (last updated v4.7.0) (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: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 overridden 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 token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        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: caller is not token 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: caller is not token 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {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 an {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 Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    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 {}

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
        _burn(tokenId);
    }
}

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


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

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: contracts/Dawn.sol


pragma solidity ^0.8.4;

// 🌞
contract Dawn is
    ERC721,
    ERC721Burnable,
    ERC721Enumerable,
    Pausable,
    Ownable,
    SignedAllowlists
{
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIdCounter;
    TokenRenderer private _getTokenUriAddress;
    bool private _isUriAddressFrozen;

    constructor(TokenRenderer getTokenUriAddress)
        ERC721("Dawn Pass", "DAWN")
        SignedAllowlists("Dawn Pass")
    {
        _getTokenUriAddress = getTokenUriAddress;
        _pause();
    }

    // PAUSE / UNPAUSE
    // ---------------

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    // OPENSEA METADATA
    // ----------------

    function contractURI() public pure returns (string memory) {
        bytes
            memory json = '{"name": "Dawn Pass by Daylight","description": "The Dawn Pass grants access to Daylight, where you can discover everything your wallet can do: mints, airdrops, votes, token gates, and more.\\n\\nThis collection is soulbound.", "image": "https://www.daylight.xyz/images/opensea-contract-metadata-image.png", "external_link": "https://www.daylight.xyz" }';

        return
            string(
                abi.encodePacked(
                    "data:application/json;base64,",
                    Utils.base64Encode(json)
                )
            );
    }

    // URI
    // ---

    // This cannot be undone!
    function freezeUriAddress() public onlyOwner {
        _isUriAddressFrozen = true;
    }

    modifier whenUriNotFrozen() {
        require(!_isUriAddressFrozen, "URI getter is frozen");
        _;
    }

    function setTokenRendererAddress(TokenRenderer newAddress)
        public
        onlyOwner
        whenUriNotFrozen
    {
        _getTokenUriAddress = newAddress;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        _requireMinted(tokenId);

        return _getTokenUriAddress.getTokenURI(tokenId, name());
    }

    // MINTING
    // -------

    function allowlistMint(bytes calldata signature)
        public
        whenNotPaused
        requiresAllowlist(signature)
    {
        require(balanceOf(msg.sender) == 0, "One pass per person");
        uint256 tokenId = _tokenIdCounter.current();
        _tokenIdCounter.increment();
        _safeMint(msg.sender, tokenId);
    }

    function safeMint(address to) public onlyOwner {
        require(balanceOf(to) == 0, "One pass per person");
        uint256 tokenId = _tokenIdCounter.current();
        _tokenIdCounter.increment();
        _safeMint(to, tokenId);
    }

    // SOULBINDING
    // -----------

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal override(ERC721, ERC721Enumerable) whenNotPaused {
        super._beforeTokenTransfer(from, to, tokenId);

        // Revert if transfers are not from the 0 address
        // and not to the 0 address or the null address
        if (
            from != address(0) &&
            to != address(0) &&
            to != 0x000000000000000000000000000000000000dEaD
        ) {
            revert("Token is soulbound");
        }
    }

    // SOLIDITY OVERRIDES
    // ------------------

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract TokenRenderer","name":"getTokenUriAddress","type":"address"}],"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"allowlistMint","outputs":[],"stateMutability":"nonpayable","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":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"freezeUriAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","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":"newSigningKey","type":"address"}],"name":"setAllowlistSigningAddress","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":"contract TokenRenderer","name":"newAddress","type":"address"}],"name":"setTokenRendererAddress","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600b80546001600160a01b03191690553480156200002157600080fd5b5060405162002ab338038062002ab3833981016040819052620000449162000346565b6040805180820182526009808252684461776e205061737360b81b602080840182905284518086018652928352828101918252845180860190955260048552632220aba760e11b90850152815192939192620000a391600091620002a0565b508051620000b9906001906020840190620002a0565b5050600a805460ff1916905550620000d1336200019c565b805160208083019190912060408051808201825260018152603160f81b9084015280517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f938101939093528201527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160408051808303601f190181529190528051602090910120600c5550600e80546001600160a01b0319166001600160a01b03831617905562000195620001f6565b50620003b3565b600a80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200020062000253565b600a805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620002363390565b6040516001600160a01b03909116815260200160405180910390a1565b600a5460ff16156200029e5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640160405180910390fd5b565b828054620002ae9062000376565b90600052602060002090601f016020900481019282620002d257600085556200031d565b82601f10620002ed57805160ff19168380011785556200031d565b828001600101855582156200031d579182015b828111156200031d57825182559160200191906001019062000300565b506200032b9291506200032f565b5090565b5b808211156200032b576000815560010162000330565b60006020828403121562000358578081fd5b81516001600160a01b03811681146200036f578182fd5b9392505050565b600181811c908216806200038b57607f821691505b60208210811415620003ad57634e487b7160e01b600052602260045260246000fd5b50919050565b6126f080620003c36000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c806370a082311161010f578063be00df4a116100a2578063e8a3d48511610071578063e8a3d485146103d5578063e985e9c5146103dd578063f2fde38b14610419578063fa4d280c1461042c57600080fd5b8063be00df4a14610394578063c87b56dd146103a7578063d924a983146103ba578063e0409786146103c257600080fd5b806395d89b41116100de57806395d89b411461035357806395fc164f1461035b578063a22cb4651461036e578063b88d4fde1461038157600080fd5b806370a082311461031a578063715018a61461032d5780638456cb59146103355780638da5cb5b1461033d57600080fd5b80633644e5151161018757806342966c681161015657806342966c68146102d65780634f6ccce7146102e95780635c975abb146102fc5780636352211e1461030757600080fd5b80633644e5151461029f5780633f4ba83a146102a857806340d097c3146102b057806342842e0e146102c357600080fd5b8063095ea7b3116101c3578063095ea7b31461025257806318160ddd1461026757806323b872dd146102795780632f745c591461028c57600080fd5b806301ffc9a7146101ea57806306fdde0314610212578063081812fc14610227575b600080fd5b6101fd6101f83660046120ec565b610453565b60405190151581526020015b60405180910390f35b61021a610464565b60405161020991906122ca565b61023a610235366004612204565b6104f6565b6040516001600160a01b039091168152602001610209565b6102656102603660046120c1565b61051d565b005b6008545b604051908152602001610209565b610265610287366004611fa9565b610638565b61026b61029a3660046120c1565b61066a565b61026b600c5481565b610265610700565b6102656102be366004611f4e565b610712565b6102656102d1366004611fa9565b61078f565b6102656102e4366004612204565b6107aa565b61026b6102f7366004612204565b6107db565b600a5460ff166101fd565b61023a610315366004612204565b61087c565b61026b610328366004611f4e565b6108dc565b610265610962565b610265610974565b600a5461010090046001600160a01b031661023a565b61021a610984565b610265610369366004612124565b610993565b61026561037c366004612090565b610b92565b61026561038f366004611fe9565b610b9d565b6102656103a2366004611f4e565b610bd5565b61021a6103b5366004612204565b610bff565b610265610c95565b6102656103d0366004611f4e565b610cb2565b61021a610d2d565b6101fd6103eb366004611f71565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610265610427366004611f4e565b610d7d565b61026b7f68e83002b91b0fd96d4df3566b5122221117e3ec6c2468fda594f6491f89b1c981565b600061045e82610df3565b92915050565b60606000805461047390612489565b80601f016020809104026020016040519081016040528092919081815260200182805461049f90612489565b80156104ec5780601f106104c1576101008083540402835291602001916104ec565b820191906000526020600020905b8154815290600101906020018083116104cf57829003601f168201915b5050505050905090565b600061050182610e18565b506000908152600460205260409020546001600160a01b031690565b60006105288261087c565b9050806001600160a01b0316836001600160a01b0316141561059b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806105b757506105b781336103eb565b6106295760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610592565b6106338383610e77565b505050565b610643335b82610ee5565b61065f5760405162461bcd60e51b81526004016105929061232f565b610633838383610f64565b6000610675836108dc565b82106106d75760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610592565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61070861110b565b61071061116b565b565b61071a61110b565b610723816108dc565b156107665760405162461bcd60e51b815260206004820152601360248201527227b732903830b9b9903832b9103832b939b7b760691b6044820152606401610592565b6000610771600d5490565b9050610781600d80546001019055565b61078b82826111bd565b5050565b61063383838360405180602001604052806000815250610b9d565b6107b33361063d565b6107cf5760405162461bcd60e51b81526004016105929061232f565b6107d8816111d7565b50565b60006107e660085490565b82106108495760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610592565b6008828154811061086a57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b03168061045e5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610592565b60006001600160a01b0382166109465760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610592565b506001600160a01b031660009081526003602052604090205490565b61096a61110b565b610710600061127e565b61097c61110b565b6107106112d8565b60606001805461047390612489565b61099b611315565b600b54829082906001600160a01b03166109ef5760405162461bcd60e51b8152602060048201526015602482015274105b1b1bdddb1a5cdd081b9bdd08195b98589b1959605a1b6044820152606401610592565b600c54604080517f68e83002b91b0fd96d4df3566b5122221117e3ec6c2468fda594f6491f89b1c9602082015233918101919091526000919060600160405160208183030381529060405280519060200120604051602001610a6892919061190160f01b81526002810192909252602282015260420190565b6040516020818303038152906040528051906020012090506000610ac484848080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250869392505061135b9050565b600b549091506001600160a01b03808316911614610b185760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964205369676e617475726560781b6044820152606401610592565b610b21336108dc565b15610b645760405162461bcd60e51b815260206004820152601360248201527227b732903830b9b9903832b9103832b939b7b760691b6044820152606401610592565b6000610b6f600d5490565b9050610b7f600d80546001019055565b610b8933826111bd565b50505050505050565b61078b33838361137f565b610ba73383610ee5565b610bc35760405162461bcd60e51b81526004016105929061232f565b610bcf8484848461144e565b50505050565b610bdd61110b565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6060610c0a82610e18565b600e546001600160a01b0316630c6ab5a783610c24610464565b6040518363ffffffff1660e01b8152600401610c4192919061237d565b60006040518083038186803b158015610c5957600080fd5b505afa158015610c6d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261045e9190810190612191565b610c9d61110b565b600e805460ff60a01b1916600160a01b179055565b610cba61110b565b600e54600160a01b900460ff1615610d0b5760405162461bcd60e51b81526020600482015260146024820152732aa9249033b2ba3a32b91034b990333937bd32b760611b6044820152606401610592565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6060600060405180610180016040528061015f815260200161255c61015f91399050610d5881611481565b604051602001610d689190612248565b60405160208183030381529060405291505090565b610d8561110b565b6001600160a01b038116610dea5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610592565b6107d88161127e565b60006001600160e01b0319821663780e9d6360e01b148061045e575061045e826115f5565b6000818152600260205260409020546001600160a01b03166107d85760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610592565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610eac8261087c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610ef18361087c565b9050806001600160a01b0316846001600160a01b03161480610f3857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610f5c5750836001600160a01b0316610f51846104f6565b6001600160a01b0316145b949350505050565b826001600160a01b0316610f778261087c565b6001600160a01b031614610fdb5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610592565b6001600160a01b03821661103d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610592565b611048838383611645565b611053600082610e77565b6001600160a01b038316600090815260036020526040812080546001929061107c908490612446565b90915550506001600160a01b03821660009081526003602052604081208054600192906110aa9084906123ef565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a546001600160a01b036101009091041633146107105760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610592565b6111736116d1565b600a805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b61078b82826040518060200160405280600081525061171a565b60006111e28261087c565b90506111f081600084611645565b6111fb600083610e77565b6001600160a01b0381166000908152600360205260408120805460019290611224908490612446565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6112e0611315565b600a805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586111a03390565b600a5460ff16156107105760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610592565b600080600061136a858561174d565b9150915061137781611793565b509392505050565b816001600160a01b0316836001600160a01b031614156113e15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610592565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611459848484610f64565b61146584848484611994565b610bcf5760405162461bcd60e51b8152600401610592906122dd565b8051606090806114a1575050604080516020810190915260008152919050565b600060036114b08360026123ef565b6114ba9190612407565b6114c5906004612427565b905060006114d48260206123ef565b67ffffffffffffffff8111156114fa57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611524576020820181803683370190505b509050600060405180606001604052806040815260200161251c604091399050600181016020830160005b868110156115b0576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b83526004909201910161154f565b5060038606600181146115ca57600281146115db576115e7565b613d3d60f01b6001198301526115e7565b603d60f81b6000198301525b505050918152949350505050565b60006001600160e01b031982166380ac58cd60e01b148061162657506001600160e01b03198216635b5e139f60e01b145b8061045e57506301ffc9a760e01b6001600160e01b031983161461045e565b61164d611315565b611658838383611aa1565b6001600160a01b0383161580159061167857506001600160a01b03821615155b801561168f575061dead6001600160a01b03831614155b156106335760405162461bcd60e51b8152602060048201526012602482015271151bdad95b881a5cc81cdbdd5b189bdd5b9960721b6044820152606401610592565b600a5460ff166107105760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610592565b6117248383611b59565b6117316000848484611994565b6106335760405162461bcd60e51b8152600401610592906122dd565b6000808251604114156117845760208301516040840151606085015160001a61177887828585611ca7565b9450945050505061178c565b506000905060025b9250929050565b60008160048111156117b557634e487b7160e01b600052602160045260246000fd5b14156117be5750565b60018160048111156117e057634e487b7160e01b600052602160045260246000fd5b141561182e5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610592565b600281600481111561185057634e487b7160e01b600052602160045260246000fd5b141561189e5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610592565b60038160048111156118c057634e487b7160e01b600052602160045260246000fd5b14156119195760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610592565b600481600481111561193b57634e487b7160e01b600052602160045260246000fd5b14156107d85760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610592565b60006001600160a01b0384163b15611a9657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119d890339089908890889060040161228d565b602060405180830381600087803b1580156119f257600080fd5b505af1925050508015611a22575060408051601f3d908101601f19168201909252611a1f91810190612108565b60015b611a7c573d808015611a50576040519150601f19603f3d011682016040523d82523d6000602084013e611a55565b606091505b508051611a745760405162461bcd60e51b8152600401610592906122dd565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f5c565b506001949350505050565b6001600160a01b038316611afc57611af781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b1f565b816001600160a01b0316836001600160a01b031614611b1f57611b1f8382611d94565b6001600160a01b038216611b365761063381611e31565b826001600160a01b0316826001600160a01b031614610633576106338282611f0a565b6001600160a01b038216611baf5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610592565b6000818152600260205260409020546001600160a01b031615611c145760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610592565b611c2060008383611645565b6001600160a01b0382166000908152600360205260408120805460019290611c499084906123ef565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611cde5750600090506003611d8b565b8460ff16601b14158015611cf657508460ff16601c14155b15611d075750600090506004611d8b565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611d5b573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611d8457600060019250925050611d8b565b9150600090505b94509492505050565b60006001611da1846108dc565b611dab9190612446565b600083815260076020526040902054909150808214611dfe576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611e4390600190612446565b60008381526009602052604081205460088054939450909284908110611e7957634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611ea857634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611eee57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611f15836108dc565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b600060208284031215611f5f578081fd5b8135611f6a816124f0565b9392505050565b60008060408385031215611f83578081fd5b8235611f8e816124f0565b91506020830135611f9e816124f0565b809150509250929050565b600080600060608486031215611fbd578081fd5b8335611fc8816124f0565b92506020840135611fd8816124f0565b929592945050506040919091013590565b60008060008060808587031215611ffe578081fd5b8435612009816124f0565b93506020850135612019816124f0565b925060408501359150606085013567ffffffffffffffff81111561203b578182fd5b8501601f8101871361204b578182fd5b803561205e612059826123c7565b612396565b818152886020838501011115612072578384fd5b81602084016020830137908101602001929092525092959194509250565b600080604083850312156120a2578182fd5b82356120ad816124f0565b915060208301358015158114611f9e578182fd5b600080604083850312156120d3578182fd5b82356120de816124f0565b946020939093013593505050565b6000602082840312156120fd578081fd5b8135611f6a81612505565b600060208284031215612119578081fd5b8151611f6a81612505565b60008060208385031215612136578182fd5b823567ffffffffffffffff8082111561214d578384fd5b818501915085601f830112612160578384fd5b81358181111561216e578485fd5b86602082850101111561217f578485fd5b60209290920196919550909350505050565b6000602082840312156121a2578081fd5b815167ffffffffffffffff8111156121b8578182fd5b8201601f810184136121c8578182fd5b80516121d6612059826123c7565b8181528560208385010111156121ea578384fd5b6121fb82602083016020860161245d565b95945050505050565b600060208284031215612215578081fd5b5035919050565b6000815180845261223481602086016020860161245d565b601f01601f19169290920160200192915050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161228081601d85016020870161245d565b91909101601d0192915050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122c09083018461221c565b9695505050505050565b602081526000611f6a602083018461221c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b828152604060208201526000610f5c604083018461221c565b604051601f8201601f1916810167ffffffffffffffff811182821017156123bf576123bf6124da565b604052919050565b600067ffffffffffffffff8211156123e1576123e16124da565b50601f01601f191660200190565b60008219821115612402576124026124c4565b500190565b60008261242257634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615612441576124416124c4565b500290565b600082821015612458576124586124c4565b500390565b60005b83811015612478578181015183820152602001612460565b83811115610bcf5750506000910152565b600181811c9082168061249d57607f821691505b602082108114156124be57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146107d857600080fd5b6001600160e01b0319811681146107d857600080fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f7b226e616d65223a20224461776e2050617373206279204461796c69676874222c226465736372697074696f6e223a2022546865204461776e2050617373206772616e74732061636365737320746f204461796c696768742c20776865726520796f752063616e20646973636f7665722065766572797468696e6720796f75722077616c6c65742063616e20646f3a206d696e74732c2061697264726f70732c20766f7465732c20746f6b656e2067617465732c20616e64206d6f72652e5c6e5c6e5468697320636f6c6c656374696f6e20697320736f756c626f756e642e222c2022696d616765223a202268747470733a2f2f7777772e6461796c696768742e78797a2f696d616765732f6f70656e7365612d636f6e74726163742d6d657461646174612d696d6167652e706e67222c202265787465726e616c5f6c696e6b223a202268747470733a2f2f7777772e6461796c696768742e78797a22207da2646970667358221220f70a88760fa0e1f7f823cbf648d7d2d8b9e2b2515f559f091e4d935c71f6603564736f6c634300080400330000000000000000000000008a2b4390c6ee962028797b237d24952cef936c96

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101e55760003560e01c806370a082311161010f578063be00df4a116100a2578063e8a3d48511610071578063e8a3d485146103d5578063e985e9c5146103dd578063f2fde38b14610419578063fa4d280c1461042c57600080fd5b8063be00df4a14610394578063c87b56dd146103a7578063d924a983146103ba578063e0409786146103c257600080fd5b806395d89b41116100de57806395d89b411461035357806395fc164f1461035b578063a22cb4651461036e578063b88d4fde1461038157600080fd5b806370a082311461031a578063715018a61461032d5780638456cb59146103355780638da5cb5b1461033d57600080fd5b80633644e5151161018757806342966c681161015657806342966c68146102d65780634f6ccce7146102e95780635c975abb146102fc5780636352211e1461030757600080fd5b80633644e5151461029f5780633f4ba83a146102a857806340d097c3146102b057806342842e0e146102c357600080fd5b8063095ea7b3116101c3578063095ea7b31461025257806318160ddd1461026757806323b872dd146102795780632f745c591461028c57600080fd5b806301ffc9a7146101ea57806306fdde0314610212578063081812fc14610227575b600080fd5b6101fd6101f83660046120ec565b610453565b60405190151581526020015b60405180910390f35b61021a610464565b60405161020991906122ca565b61023a610235366004612204565b6104f6565b6040516001600160a01b039091168152602001610209565b6102656102603660046120c1565b61051d565b005b6008545b604051908152602001610209565b610265610287366004611fa9565b610638565b61026b61029a3660046120c1565b61066a565b61026b600c5481565b610265610700565b6102656102be366004611f4e565b610712565b6102656102d1366004611fa9565b61078f565b6102656102e4366004612204565b6107aa565b61026b6102f7366004612204565b6107db565b600a5460ff166101fd565b61023a610315366004612204565b61087c565b61026b610328366004611f4e565b6108dc565b610265610962565b610265610974565b600a5461010090046001600160a01b031661023a565b61021a610984565b610265610369366004612124565b610993565b61026561037c366004612090565b610b92565b61026561038f366004611fe9565b610b9d565b6102656103a2366004611f4e565b610bd5565b61021a6103b5366004612204565b610bff565b610265610c95565b6102656103d0366004611f4e565b610cb2565b61021a610d2d565b6101fd6103eb366004611f71565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610265610427366004611f4e565b610d7d565b61026b7f68e83002b91b0fd96d4df3566b5122221117e3ec6c2468fda594f6491f89b1c981565b600061045e82610df3565b92915050565b60606000805461047390612489565b80601f016020809104026020016040519081016040528092919081815260200182805461049f90612489565b80156104ec5780601f106104c1576101008083540402835291602001916104ec565b820191906000526020600020905b8154815290600101906020018083116104cf57829003601f168201915b5050505050905090565b600061050182610e18565b506000908152600460205260409020546001600160a01b031690565b60006105288261087c565b9050806001600160a01b0316836001600160a01b0316141561059b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806105b757506105b781336103eb565b6106295760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610592565b6106338383610e77565b505050565b610643335b82610ee5565b61065f5760405162461bcd60e51b81526004016105929061232f565b610633838383610f64565b6000610675836108dc565b82106106d75760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610592565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61070861110b565b61071061116b565b565b61071a61110b565b610723816108dc565b156107665760405162461bcd60e51b815260206004820152601360248201527227b732903830b9b9903832b9103832b939b7b760691b6044820152606401610592565b6000610771600d5490565b9050610781600d80546001019055565b61078b82826111bd565b5050565b61063383838360405180602001604052806000815250610b9d565b6107b33361063d565b6107cf5760405162461bcd60e51b81526004016105929061232f565b6107d8816111d7565b50565b60006107e660085490565b82106108495760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610592565b6008828154811061086a57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b03168061045e5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610592565b60006001600160a01b0382166109465760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610592565b506001600160a01b031660009081526003602052604090205490565b61096a61110b565b610710600061127e565b61097c61110b565b6107106112d8565b60606001805461047390612489565b61099b611315565b600b54829082906001600160a01b03166109ef5760405162461bcd60e51b8152602060048201526015602482015274105b1b1bdddb1a5cdd081b9bdd08195b98589b1959605a1b6044820152606401610592565b600c54604080517f68e83002b91b0fd96d4df3566b5122221117e3ec6c2468fda594f6491f89b1c9602082015233918101919091526000919060600160405160208183030381529060405280519060200120604051602001610a6892919061190160f01b81526002810192909252602282015260420190565b6040516020818303038152906040528051906020012090506000610ac484848080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250869392505061135b9050565b600b549091506001600160a01b03808316911614610b185760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964205369676e617475726560781b6044820152606401610592565b610b21336108dc565b15610b645760405162461bcd60e51b815260206004820152601360248201527227b732903830b9b9903832b9103832b939b7b760691b6044820152606401610592565b6000610b6f600d5490565b9050610b7f600d80546001019055565b610b8933826111bd565b50505050505050565b61078b33838361137f565b610ba73383610ee5565b610bc35760405162461bcd60e51b81526004016105929061232f565b610bcf8484848461144e565b50505050565b610bdd61110b565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6060610c0a82610e18565b600e546001600160a01b0316630c6ab5a783610c24610464565b6040518363ffffffff1660e01b8152600401610c4192919061237d565b60006040518083038186803b158015610c5957600080fd5b505afa158015610c6d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261045e9190810190612191565b610c9d61110b565b600e805460ff60a01b1916600160a01b179055565b610cba61110b565b600e54600160a01b900460ff1615610d0b5760405162461bcd60e51b81526020600482015260146024820152732aa9249033b2ba3a32b91034b990333937bd32b760611b6044820152606401610592565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6060600060405180610180016040528061015f815260200161255c61015f91399050610d5881611481565b604051602001610d689190612248565b60405160208183030381529060405291505090565b610d8561110b565b6001600160a01b038116610dea5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610592565b6107d88161127e565b60006001600160e01b0319821663780e9d6360e01b148061045e575061045e826115f5565b6000818152600260205260409020546001600160a01b03166107d85760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610592565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610eac8261087c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610ef18361087c565b9050806001600160a01b0316846001600160a01b03161480610f3857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610f5c5750836001600160a01b0316610f51846104f6565b6001600160a01b0316145b949350505050565b826001600160a01b0316610f778261087c565b6001600160a01b031614610fdb5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610592565b6001600160a01b03821661103d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610592565b611048838383611645565b611053600082610e77565b6001600160a01b038316600090815260036020526040812080546001929061107c908490612446565b90915550506001600160a01b03821660009081526003602052604081208054600192906110aa9084906123ef565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a546001600160a01b036101009091041633146107105760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610592565b6111736116d1565b600a805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b61078b82826040518060200160405280600081525061171a565b60006111e28261087c565b90506111f081600084611645565b6111fb600083610e77565b6001600160a01b0381166000908152600360205260408120805460019290611224908490612446565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6112e0611315565b600a805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586111a03390565b600a5460ff16156107105760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610592565b600080600061136a858561174d565b9150915061137781611793565b509392505050565b816001600160a01b0316836001600160a01b031614156113e15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610592565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611459848484610f64565b61146584848484611994565b610bcf5760405162461bcd60e51b8152600401610592906122dd565b8051606090806114a1575050604080516020810190915260008152919050565b600060036114b08360026123ef565b6114ba9190612407565b6114c5906004612427565b905060006114d48260206123ef565b67ffffffffffffffff8111156114fa57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611524576020820181803683370190505b509050600060405180606001604052806040815260200161251c604091399050600181016020830160005b868110156115b0576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b83526004909201910161154f565b5060038606600181146115ca57600281146115db576115e7565b613d3d60f01b6001198301526115e7565b603d60f81b6000198301525b505050918152949350505050565b60006001600160e01b031982166380ac58cd60e01b148061162657506001600160e01b03198216635b5e139f60e01b145b8061045e57506301ffc9a760e01b6001600160e01b031983161461045e565b61164d611315565b611658838383611aa1565b6001600160a01b0383161580159061167857506001600160a01b03821615155b801561168f575061dead6001600160a01b03831614155b156106335760405162461bcd60e51b8152602060048201526012602482015271151bdad95b881a5cc81cdbdd5b189bdd5b9960721b6044820152606401610592565b600a5460ff166107105760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610592565b6117248383611b59565b6117316000848484611994565b6106335760405162461bcd60e51b8152600401610592906122dd565b6000808251604114156117845760208301516040840151606085015160001a61177887828585611ca7565b9450945050505061178c565b506000905060025b9250929050565b60008160048111156117b557634e487b7160e01b600052602160045260246000fd5b14156117be5750565b60018160048111156117e057634e487b7160e01b600052602160045260246000fd5b141561182e5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610592565b600281600481111561185057634e487b7160e01b600052602160045260246000fd5b141561189e5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610592565b60038160048111156118c057634e487b7160e01b600052602160045260246000fd5b14156119195760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610592565b600481600481111561193b57634e487b7160e01b600052602160045260246000fd5b14156107d85760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610592565b60006001600160a01b0384163b15611a9657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119d890339089908890889060040161228d565b602060405180830381600087803b1580156119f257600080fd5b505af1925050508015611a22575060408051601f3d908101601f19168201909252611a1f91810190612108565b60015b611a7c573d808015611a50576040519150601f19603f3d011682016040523d82523d6000602084013e611a55565b606091505b508051611a745760405162461bcd60e51b8152600401610592906122dd565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f5c565b506001949350505050565b6001600160a01b038316611afc57611af781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b1f565b816001600160a01b0316836001600160a01b031614611b1f57611b1f8382611d94565b6001600160a01b038216611b365761063381611e31565b826001600160a01b0316826001600160a01b031614610633576106338282611f0a565b6001600160a01b038216611baf5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610592565b6000818152600260205260409020546001600160a01b031615611c145760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610592565b611c2060008383611645565b6001600160a01b0382166000908152600360205260408120805460019290611c499084906123ef565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611cde5750600090506003611d8b565b8460ff16601b14158015611cf657508460ff16601c14155b15611d075750600090506004611d8b565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611d5b573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611d8457600060019250925050611d8b565b9150600090505b94509492505050565b60006001611da1846108dc565b611dab9190612446565b600083815260076020526040902054909150808214611dfe576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611e4390600190612446565b60008381526009602052604081205460088054939450909284908110611e7957634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611ea857634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611eee57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611f15836108dc565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b600060208284031215611f5f578081fd5b8135611f6a816124f0565b9392505050565b60008060408385031215611f83578081fd5b8235611f8e816124f0565b91506020830135611f9e816124f0565b809150509250929050565b600080600060608486031215611fbd578081fd5b8335611fc8816124f0565b92506020840135611fd8816124f0565b929592945050506040919091013590565b60008060008060808587031215611ffe578081fd5b8435612009816124f0565b93506020850135612019816124f0565b925060408501359150606085013567ffffffffffffffff81111561203b578182fd5b8501601f8101871361204b578182fd5b803561205e612059826123c7565b612396565b818152886020838501011115612072578384fd5b81602084016020830137908101602001929092525092959194509250565b600080604083850312156120a2578182fd5b82356120ad816124f0565b915060208301358015158114611f9e578182fd5b600080604083850312156120d3578182fd5b82356120de816124f0565b946020939093013593505050565b6000602082840312156120fd578081fd5b8135611f6a81612505565b600060208284031215612119578081fd5b8151611f6a81612505565b60008060208385031215612136578182fd5b823567ffffffffffffffff8082111561214d578384fd5b818501915085601f830112612160578384fd5b81358181111561216e578485fd5b86602082850101111561217f578485fd5b60209290920196919550909350505050565b6000602082840312156121a2578081fd5b815167ffffffffffffffff8111156121b8578182fd5b8201601f810184136121c8578182fd5b80516121d6612059826123c7565b8181528560208385010111156121ea578384fd5b6121fb82602083016020860161245d565b95945050505050565b600060208284031215612215578081fd5b5035919050565b6000815180845261223481602086016020860161245d565b601f01601f19169290920160200192915050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161228081601d85016020870161245d565b91909101601d0192915050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122c09083018461221c565b9695505050505050565b602081526000611f6a602083018461221c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b828152604060208201526000610f5c604083018461221c565b604051601f8201601f1916810167ffffffffffffffff811182821017156123bf576123bf6124da565b604052919050565b600067ffffffffffffffff8211156123e1576123e16124da565b50601f01601f191660200190565b60008219821115612402576124026124c4565b500190565b60008261242257634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615612441576124416124c4565b500290565b600082821015612458576124586124c4565b500390565b60005b83811015612478578181015183820152602001612460565b83811115610bcf5750506000910152565b600181811c9082168061249d57607f821691505b602082108114156124be57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146107d857600080fd5b6001600160e01b0319811681146107d857600080fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f7b226e616d65223a20224461776e2050617373206279204461796c69676874222c226465736372697074696f6e223a2022546865204461776e2050617373206772616e74732061636365737320746f204461796c696768742c20776865726520796f752063616e20646973636f7665722065766572797468696e6720796f75722077616c6c65742063616e20646f3a206d696e74732c2061697264726f70732c20766f7465732c20746f6b656e2067617465732c20616e64206d6f72652e5c6e5c6e5468697320636f6c6c656374696f6e20697320736f756c626f756e642e222c2022696d616765223a202268747470733a2f2f7777772e6461796c696768742e78797a2f696d616765732f6f70656e7365612d636f6e74726163742d6d657461646174612d696d6167652e706e67222c202265787465726e616c5f6c696e6b223a202268747470733a2f2f7777772e6461796c696768742e78797a22207da2646970667358221220f70a88760fa0e1f7f823cbf648d7d2d8b9e2b2515f559f091e4d935c71f6603564736f6c63430008040033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000008a2b4390c6ee962028797b237d24952cef936c96

-----Decoded View---------------
Arg [0] : getTokenUriAddress (address): 0x8a2B4390C6EE962028797B237D24952cEf936c96

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000008a2b4390c6ee962028797b237d24952cef936c96


Deployed Bytecode Sourcemap

67165:3660:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70610:212;;;;;;:::i;:::-;;:::i;:::-;;;7293:14:1;;7286:22;7268:41;;7256:2;7241:18;70610:212:0;;;;;;;;46894:100;;;:::i;:::-;;;;;;;:::i;48407:171::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6591:32:1;;;6573:51;;6561:2;6546:18;48407:171:0;6528:102:1;47924:417:0;;;;;;:::i;:::-;;:::i;:::-;;61588:113;61676:10;:17;61588:113;;;7466:25:1;;;7454:2;7439:18;61588:113:0;7421:76:1;49107:336:0;;;;;;:::i;:::-;;:::i;61256:256::-;;;;;;:::i;:::-;;:::i;21273:31::-;;;;;;67808:65;;;:::i;69697:241::-;;;;;;:::i;:::-;;:::i;49514:185::-;;;;;;:::i;:::-;;:::i;59687:243::-;;;;;;:::i;:::-;;:::i;61778:233::-;;;;;;:::i;:::-;;:::i;25258:86::-;25329:7;;;;25258:86;;46605:222;;;;;;:::i;:::-;;:::i;46336:207::-;;;;;;:::i;:::-;;:::i;19612:103::-;;;:::i;67739:61::-;;;:::i;18964:87::-;19037:6;;;;;-1:-1:-1;;;;;19037:6:0;18964:87;;47063:104;;;:::i;69348:341::-;;;;;;:::i;:::-;;:::i;48650:155::-;;;;;;:::i;:::-;;:::i;49770:323::-;;;;;;:::i;:::-;;:::i;22443:153::-;;;;;;:::i;:::-;;:::i;69075:231::-;;;;;;:::i;:::-;;:::i;68673:90::-;;;:::i;68891:176::-;;;;;;:::i;:::-;;:::i;67933:675::-;;;:::i;48876:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;48997:25:0;;;48973:4;48997:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;48876:164;19870:201;;;;;;:::i;:::-;;:::i;21646:86::-;;21697:35;21646:86;;70610:212;70749:4;70778:36;70802:11;70778:23;:36::i;:::-;70771:43;70610:212;-1:-1:-1;;70610:212:0:o;46894:100::-;46948:13;46981:5;46974:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46894:100;:::o;48407:171::-;48483:7;48503:23;48518:7;48503:14;:23::i;:::-;-1:-1:-1;48546:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;48546:24:0;;48407:171::o;47924:417::-;48005:13;48021:23;48036:7;48021:14;:23::i;:::-;48005:39;;48069:5;-1:-1:-1;;;;;48063:11:0;:2;-1:-1:-1;;;;;48063:11:0;;;48055:57;;;;-1:-1:-1;;;48055:57:0;;16892:2:1;48055:57:0;;;16874:21:1;16931:2;16911:18;;;16904:30;16970:34;16950:18;;;16943:62;-1:-1:-1;;;17021:18:1;;;17014:31;17062:19;;48055:57:0;;;;;;;;;17595:10;-1:-1:-1;;;;;48147:21:0;;;;:62;;-1:-1:-1;48172:37:0;48189:5;17595:10;48876:164;:::i;48172:37::-;48125:174;;;;-1:-1:-1;;;48125:174:0;;15040:2:1;48125:174:0;;;15022:21:1;15079:2;15059:18;;;15052:30;15118:34;15098:18;;;15091:62;15189:32;15169:18;;;15162:60;15239:19;;48125:174:0;15012:252:1;48125:174:0;48312:21;48321:2;48325:7;48312:8;:21::i;:::-;47924:417;;;:::o;49107:336::-;49302:41;17595:10;49321:12;49335:7;49302:18;:41::i;:::-;49294:100;;;;-1:-1:-1;;;49294:100:0;;;;;;;:::i;:::-;49407:28;49417:4;49423:2;49427:7;49407:9;:28::i;61256:256::-;61353:7;61389:23;61406:5;61389:16;:23::i;:::-;61381:5;:31;61373:87;;;;-1:-1:-1;;;61373:87:0;;9672:2:1;61373:87:0;;;9654:21:1;9711:2;9691:18;;;9684:30;9750:34;9730:18;;;9723:62;-1:-1:-1;;;9801:18:1;;;9794:41;9852:19;;61373:87:0;9644:233:1;61373:87:0;-1:-1:-1;;;;;;61478:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;61256:256::o;67808:65::-;18850:13;:11;:13::i;:::-;67855:10:::1;:8;:10::i;:::-;67808:65::o:0;69697:241::-;18850:13;:11;:13::i;:::-;69763::::1;69773:2;69763:9;:13::i;:::-;:18:::0;69755:50:::1;;;::::0;-1:-1:-1;;;69755:50:0;;13185:2:1;69755:50:0::1;::::0;::::1;13167:21:1::0;13224:2;13204:18;;;13197:30;-1:-1:-1;;;13243:18:1;;;13236:49;13302:18;;69755:50:0::1;13157:169:1::0;69755:50:0::1;69816:15;69834:25;:15;4865:14:::0;;4773:114;69834:25:::1;69816:43;;69870:27;:15;4984:19:::0;;5002:1;4984:19;;;4895:127;69870:27:::1;69908:22;69918:2;69922:7;69908:9;:22::i;:::-;18874:1;69697:241:::0;:::o;49514:185::-;49652:39;49669:4;49675:2;49679:7;49652:39;;;;;;;;;;;;:16;:39::i;59687:243::-;59805:41;17595:10;59824:12;17515:98;59805:41;59797:100;;;;-1:-1:-1;;;59797:100:0;;;;;;;:::i;:::-;59908:14;59914:7;59908:5;:14::i;:::-;59687:243;:::o;61778:233::-;61853:7;61889:30;61676:10;:17;;61588:113;61889:30;61881:5;:38;61873:95;;;;-1:-1:-1;;;61873:95:0;;17641:2:1;61873:95:0;;;17623:21:1;17680:2;17660:18;;;17653:30;17719:34;17699:18;;;17692:62;-1:-1:-1;;;17770:18:1;;;17763:42;17822:19;;61873:95:0;17613:234:1;61873:95:0;61986:10;61997:5;61986:17;;;;;;-1:-1:-1;;;61986:17:0;;;;;;;;;;;;;;;;;61979:24;;61778:233;;;:::o;46605:222::-;46677:7;46713:16;;;:7;:16;;;;;;-1:-1:-1;;;;;46713:16:0;46748:19;46740:56;;;;-1:-1:-1;;;46740:56:0;;16539:2:1;46740:56:0;;;16521:21:1;16578:2;16558:18;;;16551:30;-1:-1:-1;;;16597:18:1;;;16590:54;16661:18;;46740:56:0;16511:174:1;46336:207:0;46408:7;-1:-1:-1;;;;;46436:19:0;;46428:73;;;;-1:-1:-1;;;46428:73:0;;14227:2:1;46428:73:0;;;14209:21:1;14266:2;14246:18;;;14239:30;14305:34;14285:18;;;14278:62;-1:-1:-1;;;14356:18:1;;;14349:39;14405:19;;46428:73:0;14199:231:1;46428:73:0;-1:-1:-1;;;;;;46519:16:0;;;;;:9;:16;;;;;;;46336:207::o;19612:103::-;18850:13;:11;:13::i;:::-;19677:30:::1;19704:1;19677:18;:30::i;67739:61::-:0;18850:13;:11;:13::i;:::-;67784:8:::1;:6;:8::i;47063:104::-:0;47119:13;47152:7;47145:14;;;;;:::i;69348:341::-;24863:19;:17;:19::i;:::-;22676::::1;::::0;69463:9;;;;-1:-1:-1;;;;;22676:19:0::1;22668:67;;;::::0;-1:-1:-1;;;22668:67:0;;12432:2:1;22668:67:0::1;::::0;::::1;12414:21:1::0;12471:2;12451:18;;;12444:30;-1:-1:-1;;;12490:18:1;;;12483:51;12551:18;;22668:67:0::1;12404:171:1::0;22668:67:0::1;23064:16;::::0;23109:39:::1;::::0;;21697:35:::1;23109:39;::::0;::::1;7676:25:1::0;23137:10:0::1;7717:18:1::0;;;7710:60;;;;22959:14:0::1;::::0;23064:16;7649:18:1;;23109:39:0::1;;;;;;;;;;;;23099:50;;;;;;23000:164;;;;;;;;-1:-1:-1::0;;;5835:27:1;;5887:1;5878:11;;5871:27;;;;5923:2;5914:12;;5907:28;5960:2;5951:12;;5825:144;23000:164:0::1;;;;;;;;;;;;;22976:199;;;;;;22959:216;;23424:24;23451:25;23466:9;;23451:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;23451:6:0;;:25;-1:-1:-1;;23451:14:0::1;:25:::0;-1:-1:-1;23451:25:0:i:1;:::-;23517:19;::::0;23424:52;;-1:-1:-1;;;;;;23497:39:0;;::::1;23517:19:::0;::::1;23497:39;23489:69;;;::::0;-1:-1:-1;;;23489:69:0;;15832:2:1;23489:69:0::1;::::0;::::1;15814:21:1::0;15871:2;15851:18;;;15844:30;-1:-1:-1;;;15890:18:1;;;15883:47;15947:18;;23489:69:0::1;15804:167:1::0;23489:69:0::1;69498:21:::2;69508:10;69498:9;:21::i;:::-;:26:::0;69490:58:::2;;;::::0;-1:-1:-1;;;69490:58:0;;13185:2:1;69490:58:0::2;::::0;::::2;13167:21:1::0;13224:2;13204:18;;;13197:30;-1:-1:-1;;;13243:18:1;;;13236:49;13302:18;;69490:58:0::2;13157:169:1::0;69490:58:0::2;69559:15;69577:25;:15;4865:14:::0;;4773:114;69577:25:::2;69559:43;;69613:27;:15;4984:19:::0;;5002:1;4984:19;;;4895:127;69613:27:::2;69651:30;69661:10;69673:7;69651:9;:30::i;:::-;23569:1;24893::::1;;;;69348:341:::0;;:::o;48650:155::-;48745:52;17595:10;48778:8;48788;48745:18;:52::i;49770:323::-;49944:41;17595:10;49977:7;49944:18;:41::i;:::-;49936:100;;;;-1:-1:-1;;;49936:100:0;;;;;;;:::i;:::-;50047:38;50061:4;50067:2;50071:7;50080:4;50047:13;:38::i;:::-;49770:323;;;;:::o;22443:153::-;18850:13;:11;:13::i;:::-;22553:19:::1;:35:::0;;-1:-1:-1;;;;;;22553:35:0::1;-1:-1:-1::0;;;;;22553:35:0;;;::::1;::::0;;;::::1;::::0;;22443:153::o;69075:231::-;69176:13;69207:23;69222:7;69207:14;:23::i;:::-;69250:19;;-1:-1:-1;;;;;69250:19:0;:31;69282:7;69291:6;:4;:6::i;:::-;69250:48;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;69250:48:0;;;;;;;;;;;;:::i;68673:90::-;18850:13;:11;:13::i;:::-;68729:19:::1;:26:::0;;-1:-1:-1;;;;68729:26:0::1;-1:-1:-1::0;;;68729:26:0::1;::::0;;68673:90::o;68891:176::-;18850:13;:11;:13::i;:::-;68819:19:::1;::::0;-1:-1:-1;;;68819:19:0;::::1;;;68818:20;68810:53;;;::::0;-1:-1:-1;;;68810:53:0;;13533:2:1;68810:53:0::1;::::0;::::1;13515:21:1::0;13572:2;13552:18;;;13545:30;-1:-1:-1;;;13591:18:1;;;13584:50;13651:18;;68810:53:0::1;13505:170:1::0;68810:53:0::1;69027:19:::2;:32:::0;;-1:-1:-1;;;;;;69027:32:0::2;-1:-1:-1::0;;;;;69027:32:0;;;::::2;::::0;;;::::2;::::0;;68891:176::o;67933:675::-;67977:13;68003:30;:388;;;;;;;;;;;;;;;;;;;68542:24;68561:4;68542:18;:24::i;:::-;68449:136;;;;;;;;:::i;:::-;;;;;;;;;;;;;68404:196;;;67933:675;:::o;19870:201::-;18850:13;:11;:13::i;:::-;-1:-1:-1;;;;;19959:22:0;::::1;19951:73;;;::::0;-1:-1:-1;;;19951:73:0;;10503:2:1;19951:73:0::1;::::0;::::1;10485:21:1::0;10542:2;10522:18;;;10515:30;10581:34;10561:18;;;10554:62;-1:-1:-1;;;10632:18:1;;;10625:36;10678:19;;19951:73:0::1;10475:228:1::0;19951:73:0::1;20035:28;20054:8;20035:18;:28::i;60948:224::-:0;61050:4;-1:-1:-1;;;;;;61074:50:0;;-1:-1:-1;;;61074:50:0;;:90;;;61128:36;61152:11;61128:23;:36::i;56382:135::-;51665:4;51689:16;;;:7;:16;;;;;;-1:-1:-1;;;;;51689:16:0;56456:53;;;;-1:-1:-1;;;56456:53:0;;16539:2:1;56456:53:0;;;16521:21:1;16578:2;16558:18;;;16551:30;-1:-1:-1;;;16597:18:1;;;16590:54;16661:18;;56456:53:0;16511:174:1;55661::0;55736:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;55736:29:0;-1:-1:-1;;;;;55736:29:0;;;;;;;;:24;;55790:23;55736:24;55790:14;:23::i;:::-;-1:-1:-1;;;;;55781:46:0;;;;;;;;;;;55661:174;;:::o;51894:264::-;51987:4;52004:13;52020:23;52035:7;52020:14;:23::i;:::-;52004:39;;52073:5;-1:-1:-1;;;;;52062:16:0;:7;-1:-1:-1;;;;;52062:16:0;;:52;;;-1:-1:-1;;;;;;48997:25:0;;;48973:4;48997:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;52082:32;52062:87;;;;52142:7;-1:-1:-1;;;;;52118:31:0;:20;52130:7;52118:11;:20::i;:::-;-1:-1:-1;;;;;52118:31:0;;52062:87;52054:96;51894:264;-1:-1:-1;;;;51894:264:0:o;54917:625::-;55076:4;-1:-1:-1;;;;;55049:31:0;:23;55064:7;55049:14;:23::i;:::-;-1:-1:-1;;;;;55049:31:0;;55041:81;;;;-1:-1:-1;;;55041:81:0;;10910:2:1;55041:81:0;;;10892:21:1;10949:2;10929:18;;;10922:30;10988:34;10968:18;;;10961:62;-1:-1:-1;;;11039:18:1;;;11032:35;11084:19;;55041:81:0;10882:227:1;55041:81:0;-1:-1:-1;;;;;55141:16:0;;55133:65;;;;-1:-1:-1;;;55133:65:0;;11673:2:1;55133:65:0;;;11655:21:1;11712:2;11692:18;;;11685:30;11751:34;11731:18;;;11724:62;-1:-1:-1;;;11802:18:1;;;11795:34;11846:19;;55133:65:0;11645:226:1;55133:65:0;55211:39;55232:4;55238:2;55242:7;55211:20;:39::i;:::-;55315:29;55332:1;55336:7;55315:8;:29::i;:::-;-1:-1:-1;;;;;55357:15:0;;;;;;:9;:15;;;;;:20;;55376:1;;55357:15;:20;;55376:1;;55357:20;:::i;:::-;;;;-1:-1:-1;;;;;;;55388:13:0;;;;;;:9;:13;;;;;:18;;55405:1;;55388:13;:18;;55405:1;;55388:18;:::i;:::-;;;;-1:-1:-1;;55417:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;55417:21:0;-1:-1:-1;;;;;55417:21:0;;;;;;;;;55456:27;;55417:16;;55456:27;;;;;;;47924:417;;;:::o;19129:132::-;19037:6;;-1:-1:-1;;;;;19037:6:0;;;;;17595:10;19193:23;19185:68;;;;-1:-1:-1;;;19185:68:0;;16178:2:1;19185:68:0;;;16160:21:1;;;16197:18;;;16190:30;16256:34;16236:18;;;16229:62;16308:18;;19185:68:0;16150:182:1;26113:120:0;25122:16;:14;:16::i;:::-;26172:7:::1;:15:::0;;-1:-1:-1;;26172:15:0::1;::::0;;26203:22:::1;17595:10:::0;26212:12:::1;26203:22;::::0;-1:-1:-1;;;;;6591:32:1;;;6573:51;;6561:2;6546:18;26203:22:0::1;;;;;;;26113:120::o:0;52500:110::-;52576:26;52586:2;52590:7;52576:26;;;;;;;;;;;;:9;:26::i;54160:420::-;54220:13;54236:23;54251:7;54236:14;:23::i;:::-;54220:39;;54272:48;54293:5;54308:1;54312:7;54272:20;:48::i;:::-;54361:29;54378:1;54382:7;54361:8;:29::i;:::-;-1:-1:-1;;;;;54403:16:0;;;;;;:9;:16;;;;;:21;;54423:1;;54403:16;:21;;54423:1;;54403:21;:::i;:::-;;;;-1:-1:-1;;54442:16:0;;;;:7;:16;;;;;;54435:23;;-1:-1:-1;;;;;;54435:23:0;;;54476:36;54450:7;;54442:16;-1:-1:-1;;;;;54476:36:0;;;;;54442:16;;54476:36;18874:1:::1;69697:241:::0;:::o;20231:191::-;20324:6;;;-1:-1:-1;;;;;20341:17:0;;;20324:6;20341:17;;;-1:-1:-1;;;;;;20341:17:0;;;;;;20374:40;;20324:6;;;;;;;;20374:40;;20305:16;;20374:40;20231:191;;:::o;25854:118::-;24863:19;:17;:19::i;:::-;25914:7:::1;:14:::0;;-1:-1:-1;;25914:14:0::1;25924:4;25914:14;::::0;;25944:20:::1;25951:12;17595:10:::0;;17515:98;25417:108;25329:7;;;;25487:9;25479:38;;;;-1:-1:-1;;;25479:38:0;;13882:2:1;25479:38:0;;;13864:21:1;13921:2;13901:18;;;13894:30;-1:-1:-1;;;13940:18:1;;;13933:46;13996:18;;25479:38:0;13854:166:1;11719:231:0;11797:7;11818:17;11837:18;11859:27;11870:4;11876:9;11859:10;:27::i;:::-;11817:69;;;;11897:18;11909:5;11897:11;:18::i;:::-;-1:-1:-1;11933:9:0;11719:231;-1:-1:-1;;;11719:231:0:o;55978:315::-;56133:8;-1:-1:-1;;;;;56124:17:0;:5;-1:-1:-1;;;;;56124:17:0;;;56116:55;;;;-1:-1:-1;;;56116:55:0;;12078:2:1;56116:55:0;;;12060:21:1;12117:2;12097:18;;;12090:30;12156:27;12136:18;;;12129:55;12201:18;;56116:55:0;12050:175:1;56116:55:0;-1:-1:-1;;;;;56182:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;56182:46:0;;;;;;;;;;56244:41;;7268::1;;;56244::0;;7241:18:1;56244:41:0;;;;;;;55978:315;;;:::o;50974:313::-;51130:28;51140:4;51146:2;51150:7;51130:9;:28::i;:::-;51177:47;51200:4;51206:2;51210:7;51219:4;51177:22;:47::i;:::-;51169:110;;;;-1:-1:-1;;;51169:110:0;;;;;;;:::i;454:1828::-;590:11;;545:13;;616:8;612:23;;-1:-1:-1;;626:9:0;;;;;;;;;-1:-1:-1;626:9:0;;;454:1828;-1:-1:-1;454:1828:0:o;612:23::-;687:18;725:1;714:7;:3;720:1;714:7;:::i;:::-;713:13;;;;:::i;:::-;708:19;;:1;:19;:::i;:::-;687:40;-1:-1:-1;785:19:0;817:15;687:40;830:2;817:15;:::i;:::-;807:26;;;;;;-1:-1:-1;;;807:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;807:26:0;;785:48;;846:18;867:5;;;;;;;;;;;;;;;;;846:26;;936:1;929:5;925:13;981:2;973:6;969:15;1032:1;1000:960;1055:3;1052:1;1049:10;1000:960;;;1110:1;1153:12;;;;;1147:19;1248:4;1236:2;1232:14;;;;;1214:40;;1208:47;1400:2;1396:14;;;1392:25;;1378:40;;1372:47;1590:1;1586:13;;;1582:24;;1568:39;;1562:46;1771:16;;;;1757:31;;1751:38;1284:1;1280:11;;;1421:4;1368:58;;;1316:129;1470:11;;1558:57;;;1506:128;;;;1659:11;;1747:49;;1695:120;1844:3;1840:13;1873:22;;1943:1;1928:17;;;;1103:9;1000:960;;;1004:44;1992:1;1987:3;1983:11;2013:1;2008:84;;;;2111:1;2106:82;;;;1976:212;;2008:84;-1:-1:-1;;;;;2041:17:0;;2034:43;2008:84;;2106:82;-1:-1:-1;;;;;2139:17:0;;2132:41;1976:212;-1:-1:-1;;;2204:26:0;;;2211:6;454:1828;-1:-1:-1;;;;454:1828:0:o;45967:305::-;46069:4;-1:-1:-1;;;;;;46106:40:0;;-1:-1:-1;;;46106:40:0;;:105;;-1:-1:-1;;;;;;;46163:48:0;;-1:-1:-1;;;46163:48:0;46106:105;:158;;;-1:-1:-1;;;;;;;;;;37738:40:0;;;46228:36;37629:157;69988:558;24863:19;:17;:19::i;:::-;70164:45:::1;70191:4;70197:2;70201:7;70164:26;:45::i;:::-;-1:-1:-1::0;;;;;70356:18:0;::::1;::::0;;::::1;::::0;:51:::1;;-1:-1:-1::0;;;;;;70391:16:0;::::1;::::0;::::1;70356:51;:116;;;;-1:-1:-1::0;70430:42:0::1;-1:-1:-1::0;;;;;70424:48:0;::::1;;;70356:116;70338:201;;;70499:28;::::0;-1:-1:-1;;;70499:28:0;;17294:2:1;70499:28:0::1;::::0;::::1;17276:21:1::0;17333:2;17313:18;;;17306:30;-1:-1:-1;;;17352:18:1;;;17345:48;17410:18;;70499:28:0::1;17266:168:1::0;25602:108:0;25329:7;;;;25661:41;;;;-1:-1:-1;;;25661:41:0;;8963:2:1;25661:41:0;;;8945:21:1;9002:2;8982:18;;;8975:30;-1:-1:-1;;;9021:18:1;;;9014:50;9081:18;;25661:41:0;8935:170:1;52837:319:0;52966:18;52972:2;52976:7;52966:5;:18::i;:::-;53017:53;53048:1;53052:2;53056:7;53065:4;53017:22;:53::i;:::-;52995:153;;;;-1:-1:-1;;;52995:153:0;;;;;;;:::i;10170:747::-;10251:7;10260:12;10289:9;:16;10309:2;10289:22;10285:625;;;10633:4;10618:20;;10612:27;10683:4;10668:20;;10662:27;10741:4;10726:20;;10720:27;10328:9;10712:36;10784:25;10795:4;10712:36;10612:27;10662;10784:10;:25::i;:::-;10777:32;;;;;;;;;10285:625;-1:-1:-1;10858:1:0;;-1:-1:-1;10862:35:0;10285:625;10170:747;;;;;:::o;8441:643::-;8519:20;8510:5;:29;;;;;;-1:-1:-1;;;8510:29:0;;;;;;;;;;8506:571;;;8441:643;:::o;8506:571::-;8617:29;8608:5;:38;;;;;;-1:-1:-1;;;8608:38:0;;;;;;;;;;8604:473;;;8663:34;;-1:-1:-1;;;8663:34:0;;8610:2:1;8663:34:0;;;8592:21:1;8649:2;8629:18;;;8622:30;8688:26;8668:18;;;8661:54;8732:18;;8663:34:0;8582:174:1;8604:473:0;8728:35;8719:5;:44;;;;;;-1:-1:-1;;;8719:44:0;;;;;;;;;;8715:362;;;8780:41;;-1:-1:-1;;;8780:41:0;;9312:2:1;8780:41:0;;;9294:21:1;9351:2;9331:18;;;9324:30;9390:33;9370:18;;;9363:61;9441:18;;8780:41:0;9284:181:1;8715:362:0;8852:30;8843:5;:39;;;;;;-1:-1:-1;;;8843:39:0;;;;;;;;;;8839:238;;;8899:44;;-1:-1:-1;;;8899:44:0;;12782:2:1;8899:44:0;;;12764:21:1;12821:2;12801:18;;;12794:30;12860:34;12840:18;;;12833:62;-1:-1:-1;;;12911:18:1;;;12904:32;12953:19;;8899:44:0;12754:224:1;8839:238:0;8974:30;8965:5;:39;;;;;;-1:-1:-1;;;8965:39:0;;;;;;;;;;8961:116;;;9021:44;;-1:-1:-1;;;9021:44:0;;14637:2:1;9021:44:0;;;14619:21:1;14676:2;14656:18;;;14649:30;14715:34;14695:18;;;14688:62;-1:-1:-1;;;14766:18:1;;;14759:32;14808:19;;9021:44:0;14609:224:1;57081:853:0;57235:4;-1:-1:-1;;;;;57256:13:0;;27768:19;:23;57252:675;;57292:71;;-1:-1:-1;;;57292:71:0;;-1:-1:-1;;;;;57292:36:0;;;;;:71;;17595:10;;57343:4;;57349:7;;57358:4;;57292:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57292:71:0;;;;;;;;-1:-1:-1;;57292:71:0;;;;;;;;;;;;:::i;:::-;;;57288:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57533:13:0;;57529:328;;57576:60;;-1:-1:-1;;;57576:60:0;;;;;;;:::i;57529:328::-;57807:6;57801:13;57792:6;57788:2;57784:15;57777:38;57288:584;-1:-1:-1;;;;;;57414:51:0;-1:-1:-1;;;57414:51:0;;-1:-1:-1;57407:58:0;;57252:675;-1:-1:-1;57911:4:0;57081:853;;;;;;:::o;62624:589::-;-1:-1:-1;;;;;62830:18:0;;62826:187;;62865:40;62897:7;64040:10;:17;;64013:24;;;;:15;:24;;;;;:44;;;64068:24;;;;;;;;;;;;63936:164;62865:40;62826:187;;;62935:2;-1:-1:-1;;;;;62927:10:0;:4;-1:-1:-1;;;;;62927:10:0;;62923:90;;62954:47;62987:4;62993:7;62954:32;:47::i;:::-;-1:-1:-1;;;;;63027:16:0;;63023:183;;63060:45;63097:7;63060:36;:45::i;63023:183::-;63133:4;-1:-1:-1;;;;;63127:10:0;:2;-1:-1:-1;;;;;63127:10:0;;63123:83;;63154:40;63182:2;63186:7;63154:27;:40::i;53492:439::-;-1:-1:-1;;;;;53572:16:0;;53564:61;;;;-1:-1:-1;;;53564:61:0;;15471:2:1;53564:61:0;;;15453:21:1;;;15490:18;;;15483:30;15549:34;15529:18;;;15522:62;15601:18;;53564:61:0;15443:182:1;53564:61:0;51665:4;51689:16;;;:7;:16;;;;;;-1:-1:-1;;;;;51689:16:0;:30;53636:58;;;;-1:-1:-1;;;53636:58:0;;11316:2:1;53636:58:0;;;11298:21:1;11355:2;11335:18;;;11328:30;11394;11374:18;;;11367:58;11442:18;;53636:58:0;11288:178:1;53636:58:0;53707:45;53736:1;53740:2;53744:7;53707:20;:45::i;:::-;-1:-1:-1;;;;;53765:13:0;;;;;;:9;:13;;;;;:18;;53782:1;;53765:13;:18;;53782:1;;53765:18;:::i;:::-;;;;-1:-1:-1;;53794:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;53794:21:0;-1:-1:-1;;;;;53794:21:0;;;;;;;;53833:33;;53794:16;;;53833:33;;53794:16;;53833:33;18874:1:::1;69697:241:::0;:::o;13171:1632::-;13302:7;;14236:66;14223:79;;14219:163;;;-1:-1:-1;14335:1:0;;-1:-1:-1;14339:30:0;14319:51;;14219:163;14396:1;:7;;14401:2;14396:7;;:18;;;;;14407:1;:7;;14412:2;14407:7;;14396:18;14392:102;;;-1:-1:-1;14447:1:0;;-1:-1:-1;14451:30:0;14431:51;;14392:102;14608:24;;;14591:14;14608:24;;;;;;;;;8008:25:1;;;8081:4;8069:17;;8049:18;;;8042:45;;;;8103:18;;;8096:34;;;8146:18;;;8139:34;;;14608:24:0;;7980:19:1;;14608:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;14608:24:0;;-1:-1:-1;;14608:24:0;;;-1:-1:-1;;;;;;;14647:20:0;;14643:103;;14700:1;14704:29;14684:50;;;;;;;14643:103;14766:6;-1:-1:-1;14774:20:0;;-1:-1:-1;13171:1632:0;;;;;;;;:::o;64727:988::-;64993:22;65043:1;65018:22;65035:4;65018:16;:22::i;:::-;:26;;;;:::i;:::-;65055:18;65076:26;;;:17;:26;;;;;;64993:51;;-1:-1:-1;65209:28:0;;;65205:328;;-1:-1:-1;;;;;65276:18:0;;65254:19;65276:18;;;:12;:18;;;;;;;;:34;;;;;;;;;65327:30;;;;;;:44;;;65444:30;;:17;:30;;;;;:43;;;65205:328;-1:-1:-1;65629:26:0;;;;:17;:26;;;;;;;;65622:33;;;-1:-1:-1;;;;;65673:18:0;;;;;:12;:18;;;;;:34;;;;;;;65666:41;64727:988::o;66010:1079::-;66288:10;:17;66263:22;;66288:21;;66308:1;;66288:21;:::i;:::-;66320:18;66341:24;;;:15;:24;;;;;;66714:10;:26;;66263:46;;-1:-1:-1;66341:24:0;;66263:46;;66714:26;;;;-1:-1:-1;;;66714:26:0;;;;;;;;;;;;;;;;;66692:48;;66778:11;66753:10;66764;66753:22;;;;;;-1:-1:-1;;;66753:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;66858:28;;;:15;:28;;;;;;;:41;;;67030:24;;;;;67023:31;67065:10;:16;;;;;-1:-1:-1;;;67065:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;66010:1079;;;;:::o;63514:221::-;63599:14;63616:20;63633:2;63616:16;:20::i;:::-;-1:-1:-1;;;;;63647:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;63692:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;63514:221:0:o;14:257:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:2;;;147:6;139;132:22;94:2;191:9;178:23;210:31;235:5;210:31;:::i;:::-;260:5;84:187;-1:-1:-1;;;84:187:1:o;276:398::-;344:6;352;405:2;393:9;384:7;380:23;376:32;373:2;;;426:6;418;411:22;373:2;470:9;457:23;489:31;514:5;489:31;:::i;:::-;539:5;-1:-1:-1;596:2:1;581:18;;568:32;609:33;568:32;609:33;:::i;:::-;661:7;651:17;;;363:311;;;;;:::o;679:466::-;756:6;764;772;825:2;813:9;804:7;800:23;796:32;793:2;;;846:6;838;831:22;793:2;890:9;877:23;909:31;934:5;909:31;:::i;:::-;959:5;-1:-1:-1;1016:2:1;1001:18;;988:32;1029:33;988:32;1029:33;:::i;:::-;783:362;;1081:7;;-1:-1:-1;;;1135:2:1;1120:18;;;;1107:32;;783:362::o;1150:1061::-;1245:6;1253;1261;1269;1322:3;1310:9;1301:7;1297:23;1293:33;1290:2;;;1344:6;1336;1329:22;1290:2;1388:9;1375:23;1407:31;1432:5;1407:31;:::i;:::-;1457:5;-1:-1:-1;1514:2:1;1499:18;;1486:32;1527:33;1486:32;1527:33;:::i;:::-;1579:7;-1:-1:-1;1633:2:1;1618:18;;1605:32;;-1:-1:-1;1688:2:1;1673:18;;1660:32;1715:18;1704:30;;1701:2;;;1752:6;1744;1737:22;1701:2;1780:22;;1833:4;1825:13;;1821:27;-1:-1:-1;1811:2:1;;1867:6;1859;1852:22;1811:2;1908;1895:16;1933:48;1949:31;1977:2;1949:31;:::i;:::-;1933:48;:::i;:::-;2004:2;1997:5;1990:17;2044:7;2039:2;2034;2030;2026:11;2022:20;2019:33;2016:2;;;2070:6;2062;2055:22;2016:2;2130;2125;2121;2117:11;2112:2;2105:5;2101:14;2088:45;2153:14;;;2169:2;2149:23;2142:39;;;;-1:-1:-1;1280:931:1;;;;-1:-1:-1;1280:931:1;-1:-1:-1;1280:931:1:o;2216:436::-;2281:6;2289;2342:2;2330:9;2321:7;2317:23;2313:32;2310:2;;;2363:6;2355;2348:22;2310:2;2407:9;2394:23;2426:31;2451:5;2426:31;:::i;:::-;2476:5;-1:-1:-1;2533:2:1;2518:18;;2505:32;2575:15;;2568:23;2556:36;;2546:2;;2611:6;2603;2596:22;2657:325;2725:6;2733;2786:2;2774:9;2765:7;2761:23;2757:32;2754:2;;;2807:6;2799;2792:22;2754:2;2851:9;2838:23;2870:31;2895:5;2870:31;:::i;:::-;2920:5;2972:2;2957:18;;;;2944:32;;-1:-1:-1;;;2744:238:1:o;2987:255::-;3045:6;3098:2;3086:9;3077:7;3073:23;3069:32;3066:2;;;3119:6;3111;3104:22;3066:2;3163:9;3150:23;3182:30;3206:5;3182:30;:::i;3247:259::-;3316:6;3369:2;3357:9;3348:7;3344:23;3340:32;3337:2;;;3390:6;3382;3375:22;3337:2;3427:9;3421:16;3446:30;3470:5;3446:30;:::i;3511:641::-;3581:6;3589;3642:2;3630:9;3621:7;3617:23;3613:32;3610:2;;;3663:6;3655;3648:22;3610:2;3708:9;3695:23;3737:18;3778:2;3770:6;3767:14;3764:2;;;3799:6;3791;3784:22;3764:2;3842:6;3831:9;3827:22;3817:32;;3887:7;3880:4;3876:2;3872:13;3868:27;3858:2;;3914:6;3906;3899:22;3858:2;3959;3946:16;3985:2;3977:6;3974:14;3971:2;;;4006:6;3998;3991:22;3971:2;4056:7;4051:2;4042:6;4038:2;4034:15;4030:24;4027:37;4024:2;;;4082:6;4074;4067:22;4024:2;4118;4110:11;;;;;4140:6;;-1:-1:-1;3600:552:1;;-1:-1:-1;;;;3600:552:1:o;4440:675::-;4520:6;4573:2;4561:9;4552:7;4548:23;4544:32;4541:2;;;4594:6;4586;4579:22;4541:2;4632:9;4626:16;4665:18;4657:6;4654:30;4651:2;;;4702:6;4694;4687:22;4651:2;4730:22;;4783:4;4775:13;;4771:27;-1:-1:-1;4761:2:1;;4817:6;4809;4802:22;4761:2;4851;4845:9;4876:48;4892:31;4920:2;4892:31;:::i;4876:48::-;4947:2;4940:5;4933:17;4987:7;4982:2;4977;4973;4969:11;4965:20;4962:33;4959:2;;;5013:6;5005;4998:22;4959:2;5031:54;5082:2;5077;5070:5;5066:14;5061:2;5057;5053:11;5031:54;:::i;:::-;5104:5;4531:584;-1:-1:-1;;;;;4531:584:1:o;5120:190::-;5179:6;5232:2;5220:9;5211:7;5207:23;5203:32;5200:2;;;5253:6;5245;5238:22;5200:2;-1:-1:-1;5281:23:1;;5190:120;-1:-1:-1;5190:120:1:o;5315:257::-;5356:3;5394:5;5388:12;5421:6;5416:3;5409:19;5437:63;5493:6;5486:4;5481:3;5477:14;5470:4;5463:5;5459:16;5437:63;:::i;:::-;5554:2;5533:15;-1:-1:-1;;5529:29:1;5520:39;;;;5561:4;5516:50;;5364:208;-1:-1:-1;;5364:208:1:o;5974:448::-;6236:31;6231:3;6224:44;6206:3;6297:6;6291:13;6313:62;6368:6;6363:2;6358:3;6354:12;6347:4;6339:6;6335:17;6313:62;:::i;:::-;6395:16;;;;6413:2;6391:25;;6214:208;-1:-1:-1;;6214:208:1:o;6635:488::-;-1:-1:-1;;;;;6904:15:1;;;6886:34;;6956:15;;6951:2;6936:18;;6929:43;7003:2;6988:18;;6981:34;;;7051:3;7046:2;7031:18;;7024:31;;;6829:4;;7072:45;;7097:19;;7089:6;7072:45;:::i;:::-;7064:53;6838:285;-1:-1:-1;;;;;;6838:285:1:o;8184:219::-;8333:2;8322:9;8315:21;8296:4;8353:44;8393:2;8382:9;8378:18;8370:6;8353:44;:::i;9882:414::-;10084:2;10066:21;;;10123:2;10103:18;;;10096:30;10162:34;10157:2;10142:18;;10135:62;-1:-1:-1;;;10228:2:1;10213:18;;10206:48;10286:3;10271:19;;10056:240::o;17852:410::-;18054:2;18036:21;;;18093:2;18073:18;;;18066:30;18132:34;18127:2;18112:18;;18105:62;-1:-1:-1;;;18198:2:1;18183:18;;18176:44;18252:3;18237:19;;18026:236::o;18449:290::-;18626:6;18615:9;18608:25;18669:2;18664;18653:9;18649:18;18642:30;18589:4;18689:44;18729:2;18718:9;18714:18;18706:6;18689:44;:::i;18744:275::-;18815:2;18809:9;18880:2;18861:13;;-1:-1:-1;;18857:27:1;18845:40;;18915:18;18900:34;;18936:22;;;18897:62;18894:2;;;18962:18;;:::i;:::-;18998:2;18991:22;18789:230;;-1:-1:-1;18789:230:1:o;19024:186::-;19072:4;19105:18;19097:6;19094:30;19091:2;;;19127:18;;:::i;:::-;-1:-1:-1;19193:2:1;19172:15;-1:-1:-1;;19168:29:1;19199:4;19164:40;;19081:129::o;19215:128::-;19255:3;19286:1;19282:6;19279:1;19276:13;19273:2;;;19292:18;;:::i;:::-;-1:-1:-1;19328:9:1;;19263:80::o;19348:217::-;19388:1;19414;19404:2;;-1:-1:-1;;;19439:31:1;;19493:4;19490:1;19483:15;19521:4;19446:1;19511:15;19404:2;-1:-1:-1;19550:9:1;;19394:171::o;19570:168::-;19610:7;19676:1;19672;19668:6;19664:14;19661:1;19658:21;19653:1;19646:9;19639:17;19635:45;19632:2;;;19683:18;;:::i;:::-;-1:-1:-1;19723:9:1;;19622:116::o;19743:125::-;19783:4;19811:1;19808;19805:8;19802:2;;;19816:18;;:::i;:::-;-1:-1:-1;19853:9:1;;19792:76::o;19873:258::-;19945:1;19955:113;19969:6;19966:1;19963:13;19955:113;;;20045:11;;;20039:18;20026:11;;;20019:39;19991:2;19984:10;19955:113;;;20086:6;20083:1;20080:13;20077:2;;;-1:-1:-1;;20121:1:1;20103:16;;20096:27;19926:205::o;20136:380::-;20215:1;20211:12;;;;20258;;;20279:2;;20333:4;20325:6;20321:17;20311:27;;20279:2;20386;20378:6;20375:14;20355:18;20352:38;20349:2;;;20432:10;20427:3;20423:20;20420:1;20413:31;20467:4;20464:1;20457:15;20495:4;20492:1;20485:15;20349:2;;20191:325;;;:::o;20521:127::-;20582:10;20577:3;20573:20;20570:1;20563:31;20613:4;20610:1;20603:15;20637:4;20634:1;20627:15;20653:127;20714:10;20709:3;20705:20;20702:1;20695:31;20745:4;20742:1;20735:15;20769:4;20766:1;20759:15;20785:131;-1:-1:-1;;;;;20860:31:1;;20850:42;;20840:2;;20906:1;20903;20896:12;20921:131;-1:-1:-1;;;;;;20995:32:1;;20985:43;;20975:2;;21042:1;21039;21032:12

Swarm Source

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