ETH Price: $3,464.10 (-1.49%)
Gas: 4 Gwei

Token

NFTiff (NFTiff)
 

Overview

Max Total Supply

250 NFTiff

Holders

185

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 NFTiff
0x3924b7681c6110fcd3628164388c3307f79d1059
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

NFTiff is a collection of 250 custom NFTs designed to become a digital and physical pendant of the beholders CryptoPunk designed by Tiffany & Co.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
NFTiff

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// 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/math/SafeMath.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


// OpenZeppelin Contracts (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.0) (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) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        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 if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // 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))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } 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: @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/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/NFTiff.sol



// @title: NFTiff
// @author: Tiffany Team

pragma solidity ^0.8.7;







interface ICryptoPunks {
    function punkIndexToAddress(uint256) external view returns (address);
}

contract NFTiff is ERC721Enumerable, Ownable, ReentrancyGuard {
    using Strings for uint256;
    using ECDSA for bytes32;

    string public notRevealedUri;
    mapping(uint256 => string) private _tokenURIs;

    uint256 public cost = 30 ether;
    uint256 public maxSupply = 500;
    uint256 public maxMintAmount = 3;
    uint256 public presaleSupply = 150;
    uint256 public presaleEndTimestamp;
    bool public presaleActive = false;
    bool public publicSaleActive = false;
    bool public paused = false;
    bool public revealed = false;
    bool public isKycRequired = true;
    address private signer; // signer to make signature
    mapping(address => uint256) public whitelistMinted; // address => amount
    mapping(address => bool) public whitelistedAddresses;
    mapping(address => bool) public blacklistedAddresses;
    address public immutable punksContract; // mainnet punks - 0xb47e3cd837dDF8e4c57F05d70Ab865de6e193BBB

    uint256 public totalClaimed;
    mapping(uint256 => ClaimInfo) public claimInfo; // claimId => ClaimInfo
    mapping(uint256 => uint256) public nftiffClaims; // nftiffId => claimId
    mapping(uint256 => uint256) public punkClaims; // punkId => claimId

    /** DATA STRUCTURE */
    struct ClaimInfo {
        uint256 punkId;
        uint256 nftiffId;
        uint256 timestamp;        
        address claimer;
    }

    /** EVENTS */
    event TokenURIUpdated(uint256 indexed tokenId, string uri);
    event BaseURISet(string baseURI);
    event NFTiffMinted(address indexed to, uint256 indexed tokenId);
    event Claimed(uint256 claimId, address indexed to, uint256 punkId, uint256 nftiffId, uint256 timestamp);
    event UsersWhitelisted(address[] users);
    event UsersBlacklisted(address[] users);
    event SignerChanged(address signer);
    event KycRequireChanged(bool kycRequired);
    event PublicSaleStatusChanged(bool isActive);
    event PresaleStatusChanged(bool isActive);
    event MaxSupplyChanged(uint256 maxSupply);
    event NotRevealedUriChanged(string uri);
    event MaxMintAmountChanged(uint256 amount);
    event PresaleSupplyChanged(uint256 amount);
    event PresaleEndTimestampChanged(uint256 timestamp);
    event CostChanged(uint256 cost);
    event Paused(bool isPaused);
    event Revealed();

    /** METHODS */
    constructor(string memory _initNotRevealedUri, address punksContract_) ERC721("NFTiff", "NFTiff") {
        setNotRevealedURI(_initNotRevealedUri);
        signer = msg.sender;
        punksContract = punksContract_;
    }
    
    //MODIFIERS
    modifier notPaused {
         require(!paused, "Contract paused");
         _;
    }

    modifier notBlacklisted(address user_) {
         require(!blacklistedAddresses[user_], "Blacklisted user");
         _;
    }

    // INTERNAL

    function kycValidations(bytes memory _signature) internal view {
        if(isKycRequired) {
            bytes32 hash = keccak256(abi.encodePacked("kyc-approved", msg.sender));
            address signer_ = hash.toEthSignedMessageHash().recover(_signature);
            require(signer_ == signer, "Kyc not approved");
        }
    }

    //MINT
    function mint1(uint256 _mintAmount, bytes memory _signature) public payable notPaused nonReentrant notBlacklisted(msg.sender) {
        require(presaleActive, "Sale has not started yet");
        require(block.timestamp < presaleEndTimestamp, "Presale ended");
        require(whitelistedAddresses[msg.sender], "Not whitelisted user");
        require(msg.value >= cost * _mintAmount, "Insufficient funds");
        require(_mintAmount > 0, "Need to mint at least 1 NFT");
        require(_mintAmount + whitelistMinted[msg.sender] <= maxMintAmount, "Max mint amount exceeded");
        uint256 supply = totalSupply();
        require(supply + _mintAmount <= presaleSupply, "Presale supply limit exceeded");

        kycValidations(_signature);

        whitelistMinted[msg.sender] += _mintAmount;
        for (uint256 i = 1; i <= _mintAmount; i++) {
            _safeMint(msg.sender, supply + i);
            emit NFTiffMinted(msg.sender, supply + i);
        }
    }
    
    function gift(uint256 _mintAmount, address destination) public onlyOwner {
        require(_mintAmount > 0, "Need to mint at least 1 NFT");
        uint256 supply = totalSupply();
        require(supply + _mintAmount <= maxSupply, "Max NFT limit exceeded");

        for (uint256 i = 1; i <= _mintAmount; i++) {
            _safeMint(destination, supply + i);
            emit NFTiffMinted(destination, supply + i);
        }
    }

    //MINT Public
    function mintPublic(uint256 _mintAmount, bytes memory _signature) public payable notPaused nonReentrant notBlacklisted(msg.sender) {
        require(publicSaleActive, "Sale has not started yet");
        require(msg.value >= cost * _mintAmount, "Insufficient funds");
        require(_mintAmount > 0, "Need to mint at least 1 NFT");
        require(_mintAmount + whitelistMinted[msg.sender] <= maxMintAmount, "Max mint amount exceeded");
        uint256 supply = totalSupply();
        require(supply + _mintAmount <= maxSupply, "Max NFT limit exceeded");

        kycValidations(_signature);

        whitelistMinted[msg.sender] += _mintAmount;
        for (uint256 i = 1; i <= _mintAmount; i++) {
            _safeMint(msg.sender, supply + i);
            emit NFTiffMinted(msg.sender, supply + i);
        }
    }

    //CLAIM
    function claim(uint256 punk_, uint256 nftiff_, bytes memory _signature) public payable notPaused nonReentrant notBlacklisted(msg.sender) {
        require(nftiffClaims[nftiff_] == 0, "Already claimed nftiff");
        require(punkClaims[punk_] == 0, "Already claimed punk");
        require(ownerOf(nftiff_) == msg.sender, "Not nftiff owner");
        require(ICryptoPunks(punksContract).punkIndexToAddress(punk_) == msg.sender, "Not punks owner");

        bytes32 hash = keccak256(abi.encodePacked("shipping-verified", punk_, nftiff_, msg.sender));
        address signer_ = hash.toEthSignedMessageHash().recover(_signature);
        require(signer_ == signer, "Shipping not verified");

        totalClaimed++;
        nftiffClaims[nftiff_] = totalClaimed;
        punkClaims[punk_] = totalClaimed;

        claimInfo[totalClaimed] = ClaimInfo({
            punkId: punk_,
            nftiffId: nftiff_,
            timestamp: block.timestamp,
            claimer: msg.sender
        });
        emit Claimed(totalClaimed, msg.sender, punk_, nftiff_, block.timestamp);
    }

    // Cold Wallet Link
    function claimCold(uint256 punk_, uint256 nftiff_, address coldWallet_, bytes memory shipSignature_, bytes memory coldSignature_) public payable notPaused nonReentrant notBlacklisted(msg.sender) {
        require(nftiffClaims[nftiff_] == 0, "Already claimed nftiff");
        require(punkClaims[punk_] == 0, "Already claimed punk");
        require(ownerOf(nftiff_) == msg.sender, "Not nftiff owner");
        require(ICryptoPunks(punksContract).punkIndexToAddress(punk_) == coldWallet_, "Cold wallet not punks owner");

        bytes32 hash = keccak256(abi.encodePacked("shipping-verified", punk_, nftiff_, msg.sender));
        address signer_ = hash.toEthSignedMessageHash().recover(shipSignature_);
        require(signer_ == signer, "Shipping not verified");

        hash = keccak256(abi.encodePacked("cold-verified", punk_, nftiff_, msg.sender, coldWallet_));
        signer_ = hash.toEthSignedMessageHash().recover(coldSignature_);
        require(signer_ == signer, "Cold wallet not verified");

        totalClaimed++;
        nftiffClaims[nftiff_] = totalClaimed;
        punkClaims[punk_] = totalClaimed;

        claimInfo[totalClaimed] = ClaimInfo({
            punkId: punk_,
            nftiffId: nftiff_,
            timestamp: block.timestamp,
            claimer: msg.sender
        });
        emit Claimed(totalClaimed, msg.sender, punk_, nftiff_, block.timestamp);
    }

    //PUBLIC VIEWS

    function getSigner() public view returns (address) {
        return signer;
    }

    function walletOfOwner(address _owner) public view returns (uint256[] memory) {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIds;
    }

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

        string memory _tokenURI; 
        if (!revealed) {
            _tokenURI = notRevealedUri;
        } else {
            _tokenURI = _tokenURIs[tokenId];
        }

        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        // if baseURI exists and tokenURI not set, returns ""
        return ""; // super.tokenURI(tokenId);
    }

    //ONLY OWNER SETTERS
    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
        emit BaseURISet(baseURI);
    }

    function setTokenURI(uint256 tokenId, string memory _tokenURI) public onlyOwner {
        require(_exists(tokenId), "URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
        emit TokenURIUpdated(tokenId, _tokenURI);
    }

    function reveal() public onlyOwner {
        revealed = true;
        emit Revealed();
    }

    function pause(bool _state) public onlyOwner {
        paused = _state;
        emit Paused(_state);
    }

    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
        emit CostChanged(_newCost);
    }

    function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmount = _newmaxMintAmount;
        emit MaxMintAmountChanged(_newmaxMintAmount);
    }

    function setPresaleSupply(uint256 _amount) public onlyOwner {
        require(_amount <= maxSupply, "Max supply limit exceeded");
        presaleSupply = _amount;
        emit PresaleSupplyChanged(_amount);
    }

    function setPresaleEndTimestamp(uint256 _timestamp) public onlyOwner {
        require(_timestamp > block.timestamp, "Invalid timestamp");
        presaleEndTimestamp = _timestamp;
        emit PresaleEndTimestampChanged(_timestamp);
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
        emit NotRevealedUriChanged(_notRevealedURI);
    }

    function setMaxSupply(uint256 _maxSupply) public onlyOwner {
        require(_maxSupply >= totalSupply(), "Max supply should be greater");
        maxSupply = _maxSupply;
        emit MaxSupplyChanged(_maxSupply);
    }

    function setPresaleStatus(bool _saleActive) public onlyOwner {
        presaleActive = _saleActive;
        emit PresaleStatusChanged(_saleActive);
    }

    function setPublicSaleStatus(bool _saleActive) public onlyOwner {
        publicSaleActive = _saleActive;
        emit PublicSaleStatusChanged(_saleActive);
    }

    function setKycRequired(bool _required) public onlyOwner {
        isKycRequired = _required;
        emit KycRequireChanged(_required);
    }

    function setSigner(address signer_) public onlyOwner {
        signer = signer_;
        emit SignerChanged(signer_);
    }

    function whitelistUsers(address[] memory addresses) public onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            whitelistedAddresses[addresses[i]] = true;
        }
        emit UsersWhitelisted(addresses);
    }

    function blacklistUsers(address[] memory addresses) public onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            blacklistedAddresses[addresses[i]] = true;
        }
        emit UsersBlacklisted(addresses);
    }

    function withdraw() public payable onlyOwner {
        (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
        require(success, "Transfer failed");
    }

    // metadata URI
    string private _baseTokenURI;

    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initNotRevealedUri","type":"string"},{"internalType":"address","name":"punksContract_","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":false,"internalType":"string","name":"baseURI","type":"string"}],"name":"BaseURISet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"claimId","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"punkId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"nftiffId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"Claimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"cost","type":"uint256"}],"name":"CostChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"kycRequired","type":"bool"}],"name":"KycRequireChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"MaxMintAmountChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxSupply","type":"uint256"}],"name":"MaxSupplyChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"NFTiffMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"uri","type":"string"}],"name":"NotRevealedUriChanged","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":"bool","name":"isPaused","type":"bool"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"PresaleEndTimestampChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"isActive","type":"bool"}],"name":"PresaleStatusChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PresaleSupplyChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"isActive","type":"bool"}],"name":"PublicSaleStatusChanged","type":"event"},{"anonymous":false,"inputs":[],"name":"Revealed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"signer","type":"address"}],"name":"SignerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"uri","type":"string"}],"name":"TokenURIUpdated","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":"users","type":"address[]"}],"name":"UsersBlacklisted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"users","type":"address[]"}],"name":"UsersWhitelisted","type":"event"},{"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":"address[]","name":"addresses","type":"address[]"}],"name":"blacklistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklistedAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"punk_","type":"uint256"},{"internalType":"uint256","name":"nftiff_","type":"uint256"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"punk_","type":"uint256"},{"internalType":"uint256","name":"nftiff_","type":"uint256"},{"internalType":"address","name":"coldWallet_","type":"address"},{"internalType":"bytes","name":"shipSignature_","type":"bytes"},{"internalType":"bytes","name":"coldSignature_","type":"bytes"}],"name":"claimCold","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"claimInfo","outputs":[{"internalType":"uint256","name":"punkId","type":"uint256"},{"internalType":"uint256","name":"nftiffId","type":"uint256"},{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"address","name":"claimer","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":"isKycRequired","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"mint1","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"nftiffClaims","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleEndTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"punkClaims","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"punksContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_required","type":"bool"}],"name":"setKycRequired","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_timestamp","type":"uint256"}],"name":"setPresaleEndTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_saleActive","type":"bool"}],"name":"setPresaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setPresaleSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_saleActive","type":"bool"}],"name":"setPublicSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"signer_","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","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":"totalClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60a06040526801a055690d9db80000600e556101f4600f55600360105560966011556013805464ffffffffff19166401000000001790553480156200004357600080fd5b5060405162004951380380620049518339810160408190526200006691620002f4565b60408051808201825260068082526527232a34b33360d11b602080840182815285518087019096529285528401528151919291620000a79160009162000231565b508051620000bd90600190602084019062000231565b505050620000da620000d46200011e60201b60201c565b62000122565b6001600b55620000ea8262000174565b60138054600160281b600160c81b03191633650100000000000217905560601b6001600160601b031916608052506200047c565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200017e620001d0565b80516200019390600c90602084019062000231565b507f5b4603fcb3d3d9b6dba69e8b60ea02082aa1d621d2cc96d5bbfab381f6164e6e81604051620001c59190620003c1565b60405180910390a150565b600a546001600160a01b031633146200022f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b8280546200023f9062000429565b90600052602060002090601f016020900481019282620002635760008555620002ae565b82601f106200027e57805160ff1916838001178555620002ae565b82800160010185558215620002ae579182015b82811115620002ae57825182559160200191906001019062000291565b50620002bc929150620002c0565b5090565b5b80821115620002bc5760008155600101620002c1565b80516001600160a01b0381168114620002ef57600080fd5b919050565b600080604083850312156200030857600080fd5b82516001600160401b03808211156200032057600080fd5b818501915085601f8301126200033557600080fd5b8151818111156200034a576200034a62000466565b604051601f8201601f19908116603f0116810190838211818310171562000375576200037562000466565b816040528281528860208487010111156200038f57600080fd5b620003a2836020830160208801620003f6565b8096505050505050620003b860208401620002d7565b90509250929050565b6020815260008251806020840152620003e2816040850160208701620003f6565b601f01601f19169190910160400192915050565b60005b8381101562000413578181015183820152602001620003f9565b8381111562000423576000848401525b50505050565b600181811c908216806200043e57607f821691505b602082108114156200046057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160601c6144a8620004a960003960008181610b0b01528181611762015261268001526144a86000f3fe6080604052600436106103ad5760003560e01c8063715018a6116101e7578063b3a196e91161010d578063d5749d42116100a0578063e985e9c51161006f578063e985e9c514610b2d578063edec5f2714610b76578063f2c4ce1e14610b96578063f2fde38b14610bb657600080fd5b8063d5749d4214610aa0578063d5abeb0114610ad0578063d9994cdb14610ae6578063e46317b514610af957600080fd5b8063bb3d676a116100dc578063bb3d676a14610a2b578063bc8893b414610a4b578063c87b56dd14610a6a578063d54ad2a114610a8a57600080fd5b8063b3a196e9146109b5578063b423fe67146109cb578063b88d4fde146109eb578063b96502cb14610a0b57600080fd5b80638895283f1161018557806398a8cffe1161015457806398a8cffe14610926578063a1d557c514610953578063a22cb46514610980578063a475b5dd146109a057600080fd5b80638895283f146108c05780638b9a10d7146108e05780638da5cb5b146108f357806395d89b411461091157600080fd5b80637b4b9ddc116101c15780637b4b9ddc146108335780637c25d647146108535780637f00c7a61461088057806383a076be146108a057600080fd5b8063715018a6146107e357806378da7ba1146107f85780637ac3c02f1461080e57600080fd5b80633e4191dc116102d757806355f804b31161026a5780636352211e116102395780636352211e146107635780636c19e783146107835780636f8b44b0146107a357806370a08231146107c357600080fd5b806355f804b31461069c5780635c362233146106bc5780635c975abb146107305780635eddd1571461075057600080fd5b806344a8715b116102a657806344a8715b1461062e5780634f6ccce714610641578063518302271461066157806353135ca01461068257600080fd5b80633e4191dc1461059f57806342842e0e146105c1578063438b6300146105e157806344a0d68a1461060e57600080fd5b806313faede61161034f578063239c70ae1161031e578063239c70ae1461054157806323b872dd146105575780632f745c59146105775780633ccfd60b1461059757600080fd5b806313faede6146104c8578063150909f7146104ec578063162094c41461050c57806318160ddd1461052c57600080fd5b806306fdde031161038b57806306fdde0314610439578063081812fc1461045b578063081c8c4414610493578063095ea7b3146104a857600080fd5b806301ffc9a7146103b257806302329a29146103e757806306c933d814610409575b600080fd5b3480156103be57600080fd5b506103d26103cd366004613d99565b610bd6565b60405190151581526020015b60405180910390f35b3480156103f357600080fd5b50610407610402366004613d7e565b610c01565b005b34801561041557600080fd5b506103d2610424366004613b3d565b60156020526000908152604090205460ff1681565b34801561044557600080fd5b5061044e610c5f565b6040516103de9190614164565b34801561046757600080fd5b5061047b610476366004613e7a565b610cf1565b6040516001600160a01b0390911681526020016103de565b34801561049f57600080fd5b5061044e610d18565b3480156104b457600080fd5b506104076104c3366004613c99565b610da6565b3480156104d457600080fd5b506104de600e5481565b6040519081526020016103de565b3480156104f857600080fd5b50610407610507366004613d7e565b610ec1565b34801561051857600080fd5b50610407610527366004613eb8565b610f18565b34801561053857600080fd5b506008546104de565b34801561054d57600080fd5b506104de60105481565b34801561056357600080fd5b50610407610572366004613bb7565b610fe0565b34801561058357600080fd5b506104de610592366004613c99565b611011565b6104076110a7565b3480156105ab57600080fd5b506013546103d290640100000000900460ff1681565b3480156105cd57600080fd5b506104076105dc366004613bb7565b61113c565b3480156105ed57600080fd5b506106016105fc366004613b3d565b611157565b6040516103de91906140fd565b34801561061a57600080fd5b50610407610629366004613e7a565b6111f9565b61040761063c366004613eb8565b611236565b34801561064d57600080fd5b506104de61065c366004613e7a565b6114e1565b34801561066d57600080fd5b506013546103d2906301000000900460ff1681565b34801561068e57600080fd5b506013546103d29060ff1681565b3480156106a857600080fd5b506104076106b7366004613dd3565b611574565b3480156106c857600080fd5b506107076106d7366004613e7a565b6018602052600090815260409020805460018201546002830154600390930154919290916001600160a01b031684565b604080519485526020850193909352918301526001600160a01b031660608201526080016103de565b34801561073c57600080fd5b506013546103d29062010000900460ff1681565b61040761075e366004613f89565b6115c6565b34801561076f57600080fd5b5061047b61077e366004613e7a565b6119b7565b34801561078f57600080fd5b5061040761079e366004613b3d565b611a17565b3480156107af57600080fd5b506104076107be366004613e7a565b611a7b565b3480156107cf57600080fd5b506104de6107de366004613b3d565b611b0a565b3480156107ef57600080fd5b50610407611b90565b34801561080457600080fd5b506104de60125481565b34801561081a57600080fd5b50601354600160281b90046001600160a01b031661047b565b34801561083f57600080fd5b5061040761084e366004613e7a565b611ba4565b34801561085f57600080fd5b506104de61086e366004613e7a565b60196020526000908152604090205481565b34801561088c57600080fd5b5061040761089b366004613e7a565b611c24565b3480156108ac57600080fd5b506104076108bb366004613e93565b611c61565b3480156108cc57600080fd5b506104076108db366004613d7e565b611d59565b6104076108ee366004613eb8565b611da2565b3480156108ff57600080fd5b50600a546001600160a01b031661047b565b34801561091d57600080fd5b5061044e6120d5565b34801561093257600080fd5b506104de610941366004613b3d565b60146020526000908152604090205481565b34801561095f57600080fd5b506104de61096e366004613e7a565b601a6020526000908152604090205481565b34801561098c57600080fd5b5061040761099b366004613c64565b6120e4565b3480156109ac57600080fd5b506104076120f3565b3480156109c157600080fd5b506104de60115481565b3480156109d757600080fd5b506104076109e6366004613d7e565b612139565b3480156109f757600080fd5b50610407610a06366004613bf8565b61218a565b348015610a1757600080fd5b50610407610a26366004613e7a565b6121bc565b348015610a3757600080fd5b50610407610a46366004613cc5565b61224b565b348015610a5757600080fd5b506013546103d290610100900460ff1681565b348015610a7657600080fd5b5061044e610a85366004613e7a565b6122eb565b348015610a9657600080fd5b506104de60175481565b348015610aac57600080fd5b506103d2610abb366004613b3d565b60166020526000908152604090205460ff1681565b348015610adc57600080fd5b506104de600f5481565b610407610af4366004613eff565b6124f8565b348015610b0557600080fd5b5061047b7f000000000000000000000000000000000000000000000000000000000000000081565b348015610b3957600080fd5b506103d2610b48366004613b7e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610b8257600080fd5b50610407610b91366004613cc5565b6129d6565b348015610ba257600080fd5b50610407610bb1366004613e45565b612a76565b348015610bc257600080fd5b50610407610bd1366004613b3d565b612ac1565b60006001600160e01b0319821663780e9d6360e01b1480610bfb5750610bfb82612b37565b92915050565b610c09612b87565b60138054821515620100000262ff0000199091161790556040517f0e2fb031ee032dc02d8011dc50b816eb450cf856abd8261680dac74f72165bd290610c5490831515815260200190565b60405180910390a150565b606060008054610c6e90614383565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9a90614383565b8015610ce75780601f10610cbc57610100808354040283529160200191610ce7565b820191906000526020600020905b815481529060010190602001808311610cca57829003601f168201915b5050505050905090565b6000610cfc82612be1565b506000908152600460205260409020546001600160a01b031690565b600c8054610d2590614383565b80601f0160208091040260200160405190810160405280929190818152602001828054610d5190614383565b8015610d9e5780601f10610d7357610100808354040283529160200191610d9e565b820191906000526020600020905b815481529060010190602001808311610d8157829003601f168201915b505050505081565b6000610db1826119b7565b9050806001600160a01b0316836001600160a01b03161415610e245760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b0382161480610e405750610e408133610b48565b610eb25760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610e1b565b610ebc8383612c40565b505050565b610ec9612b87565b601380548215156401000000000264ff00000000199091161790556040517f9c6bc9b1655d51a0ba04b966dafa4a63b361d41aea8a5bd188e79270ae78498290610c5490831515815260200190565b610f20612b87565b6000828152600260205260409020546001600160a01b0316610f845760405162461bcd60e51b815260206004820152601c60248201527f55524920736574206f66206e6f6e6578697374656e7420746f6b656e000000006044820152606401610e1b565b6000828152600d602090815260409091208251610fa3928401906139ab565b50817f931f495b9a8e5d8e61946ea5d61e021f636cfe213a801f97589c18c152e408bd82604051610fd49190614164565b60405180910390a25050565b610fea3382612cae565b6110065760405162461bcd60e51b8152600401610e1b9061421c565b610ebc838383612d2d565b600061101c83611b0a565b821061107e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610e1b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6110af612b87565b604051600090339047908381818185875af1925050503d80600081146110f1576040519150601f19603f3d011682016040523d82523d6000602084013e6110f6565b606091505b50509050806111395760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610e1b565b50565b610ebc8383836040518060200160405280600081525061218a565b6060600061116483611b0a565b905060008167ffffffffffffffff81111561118157611181614431565b6040519080825280602002602001820160405280156111aa578160200160208202803683370190505b50905060005b828110156111f1576111c28582611011565b8282815181106111d4576111d461441b565b6020908102919091010152806111e9816143be565b9150506111b0565b509392505050565b611201612b87565b600e8190556040518181527f5d3cc44bbc86a70941868a14a9f66a647d7f7499d4d3789f68e4486c11ea46da90602001610c54565b60135462010000900460ff161561125f5760405162461bcd60e51b8152600401610e1b906141c9565b6002600b5414156112825760405162461bcd60e51b8152600401610e1b9061426a565b6002600b553360008181526016602052604090205460ff16156112b75760405162461bcd60e51b8152600401610e1b906141f2565b601354610100900460ff166113095760405162461bcd60e51b815260206004820152601860248201527714d85b19481a185cc81b9bdd081cdd185c9d1959081e595d60421b6044820152606401610e1b565b82600e546113179190614321565b34101561135b5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610e1b565b6000831161137b5760405162461bcd60e51b8152600401610e1b906142a1565b601054336000908152601460205260409020546113989085614309565b11156113e15760405162461bcd60e51b815260206004820152601860248201527713585e081b5a5b9d08185b5bdd5b9d08195e18d95959195960421b6044820152606401610e1b565b60006113ec60085490565b600f549091506113fc8583614309565b11156114435760405162461bcd60e51b815260206004820152601660248201527513585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610e1b565b61144c83612ed4565b336000908152601460205260408120805486929061146b908490614309565b90915550600190505b8481116114d55761148e336114898385614309565b612f98565b6114988183614309565b60405133907fbb06c934d5d088f12f303c757020e73ec03ae3217e26be764425bb34855c8b9490600090a3806114cd816143be565b915050611474565b50506001600b55505050565b60006114ec60085490565b821061154f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610e1b565b600882815481106115625761156261441b565b90600052602060002001549050919050565b61157c612b87565b611588601b8383613a2f565b507ff9c7803e94e0d3c02900d8a90893a6d5e90dd04d32a4cfe825520f82bf9f32f682826040516115ba929190614135565b60405180910390a15050565b60135462010000900460ff16156115ef5760405162461bcd60e51b8152600401610e1b906141c9565b6002600b5414156116125760405162461bcd60e51b8152600401610e1b9061426a565b6002600b553360008181526016602052604090205460ff16156116475760405162461bcd60e51b8152600401610e1b906141f2565b6000838152601960205260409020541561169c5760405162461bcd60e51b815260206004820152601660248201527520b63932b0b23c9031b630b4b6b2b21037333a34b33360511b6044820152606401610e1b565b6000848152601a6020526040902054156116ef5760405162461bcd60e51b8152602060048201526014602482015273416c726561647920636c61696d65642070756e6b60601b6044820152606401610e1b565b336116f9846119b7565b6001600160a01b0316146117425760405162461bcd60e51b815260206004820152601060248201526f2737ba1037333a34b3331037bbb732b960811b6044820152606401610e1b565b604051630b02f02d60e31b81526004810185905233906001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063581781689060240160206040518083038186803b1580156117a457600080fd5b505afa1580156117b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117dc9190613b61565b6001600160a01b0316146118245760405162461bcd60e51b815260206004820152600f60248201526e2737ba10383ab735b99037bbb732b960891b6044820152606401610e1b565b600084843360405160200161183b93929190614034565b60405160208183030381529060405280519060200120905060006118688461186284612fb2565b90613005565b6013549091506001600160a01b03808316600160281b90920416146118c75760405162461bcd60e51b815260206004820152601560248201527414da1a5c1c1a5b99c81b9bdd081d995c9a599a5959605a1b6044820152606401610e1b565b601780549060006118d7836143be565b90915550506017805460008781526019602090815260408083208490558a8352601a82528083208490558051608080820183528c82528184018c8152428385018181523360608087018281529a8a52601889529887902095518655925160018601555160028501559651600390930180546001600160a01b0319166001600160a01b0390941693909317909255955482519081529283018c90529082018a905291810192909252917f528937b330082d892a98d4e428ab2dcca7844b51d227a1c0ae67f0b5261acbd9910160405180910390a250506001600b5550505050565b6000818152600260205260408120546001600160a01b031680610bfb5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610e1b565b611a1f612b87565b6013805465010000000000600160c81b031916600160281b6001600160a01b038416908102919091179091556040519081527f5719a5656c5cfdaafa148ecf366fd3b0a7fae06449ce2a46225977fb7417e29d90602001610c54565b611a83612b87565b600854811015611ad55760405162461bcd60e51b815260206004820152601c60248201527f4d617820737570706c792073686f756c642062652067726561746572000000006044820152606401610e1b565b600f8190556040518181527f28a10a2e0b5582da7164754cb994f6214b8af6aa7f7e003305fbc09e7106c51390602001610c54565b60006001600160a01b038216611b745760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610e1b565b506001600160a01b031660009081526003602052604090205490565b611b98612b87565b611ba26000613021565b565b611bac612b87565b428111611bef5760405162461bcd60e51b81526020600482015260116024820152700496e76616c69642074696d657374616d7607c1b6044820152606401610e1b565b60128190556040518181527fb58f7999ee6aec0a8a4c4c4c4d551dba5d353977562c9daf2eda32fc9c50fa2890602001610c54565b611c2c612b87565b60108190556040518181527f71ef44637f994911a9fa6bc89bc19c9bbf6f510a992e74f90880ffbccd7b2c6b90602001610c54565b611c69612b87565b60008211611c895760405162461bcd60e51b8152600401610e1b906142a1565b6000611c9460085490565b600f54909150611ca48483614309565b1115611ceb5760405162461bcd60e51b815260206004820152601660248201527513585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610e1b565b60015b838111611d5357611d03836114898385614309565b611d0d8183614309565b6040516001600160a01b038516907fbb06c934d5d088f12f303c757020e73ec03ae3217e26be764425bb34855c8b9490600090a380611d4b816143be565b915050611cee565b50505050565b611d61612b87565b6013805460ff19168215159081179091556040519081527f1f1a6b0fcc71315f2c3aeddbd1f6d527595d21eea9b73160e78d6fa49b7897a690602001610c54565b60135462010000900460ff1615611dcb5760405162461bcd60e51b8152600401610e1b906141c9565b6002600b541415611dee5760405162461bcd60e51b8152600401610e1b9061426a565b6002600b553360008181526016602052604090205460ff1615611e235760405162461bcd60e51b8152600401610e1b906141f2565b60135460ff16611e705760405162461bcd60e51b815260206004820152601860248201527714d85b19481a185cc81b9bdd081cdd185c9d1959081e595d60421b6044820152606401610e1b565b6012544210611eb15760405162461bcd60e51b815260206004820152600d60248201526c141c995cd85b1948195b991959609a1b6044820152606401610e1b565b3360009081526015602052604090205460ff16611f075760405162461bcd60e51b81526020600482015260146024820152732737ba103bb434ba32b634b9ba32b2103ab9b2b960611b6044820152606401610e1b565b82600e54611f159190614321565b341015611f595760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610e1b565b60008311611f795760405162461bcd60e51b8152600401610e1b906142a1565b60105433600090815260146020526040902054611f969085614309565b1115611fdf5760405162461bcd60e51b815260206004820152601860248201527713585e081b5a5b9d08185b5bdd5b9d08195e18d95959195960421b6044820152606401610e1b565b6000611fea60085490565b601154909150611ffa8583614309565b11156120485760405162461bcd60e51b815260206004820152601d60248201527f50726573616c6520737570706c79206c696d69742065786365656465640000006044820152606401610e1b565b61205183612ed4565b3360009081526014602052604081208054869290612070908490614309565b90915550600190505b8481116114d55761208e336114898385614309565b6120988183614309565b60405133907fbb06c934d5d088f12f303c757020e73ec03ae3217e26be764425bb34855c8b9490600090a3806120cd816143be565b915050612079565b606060018054610c6e90614383565b6120ef338383613073565b5050565b6120fb612b87565b6013805463ff000000191663010000001790556040517fe2a7169cedebe39671840370ae19ca4fc41be6191d4c77f174f189a4d8cd08c890600090a1565b612141612b87565b601380548215156101000261ff00199091161790556040517f36b97db79058521017a18d3f5261657061fa019ef5637747834f022e588ec07490610c5490831515815260200190565b6121943383612cae565b6121b05760405162461bcd60e51b8152600401610e1b9061421c565b611d5384848484613142565b6121c4612b87565b600f548111156122165760405162461bcd60e51b815260206004820152601960248201527f4d617820737570706c79206c696d6974206578636565646564000000000000006044820152606401610e1b565b60118190556040518181527feb2de784e253e45c726847a619e0b24b8aa3f97f10bd74f94e5264c21786996090602001610c54565b612253612b87565b60005b81518110156122bb576001601660008484815181106122775761227761441b565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806122b3816143be565b915050612256565b507fb0acc561764f1521c892494310b184e20cafc08c4d047edaeeed1b55af37fe3081604051610c5491906140b0565b6000818152600260205260409020546060906001600160a01b03166123525760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610e1b565b6013546060906301000000900460ff166123f857600c805461237390614383565b80601f016020809104026020016040519081016040528092919081815260200182805461239f90614383565b80156123ec5780601f106123c1576101008083540402835291602001916123ec565b820191906000526020600020905b8154815290600101906020018083116123cf57829003601f168201915b50505050509050612492565b6000838152600d60205260409020805461241190614383565b80601f016020809104026020016040519081016040528092919081815260200182805461243d90614383565b801561248a5780601f1061245f5761010080835404028352916020019161248a565b820191906000526020600020905b81548152906001019060200180831161246d57829003601f168201915b505050505090505b600061249c613175565b90508051600014156124af575092915050565b8151156124e15780826040516020016124c9929190614005565b60405160208183030381529060405292505050919050565b505060408051602081019091526000815292915050565b60135462010000900460ff16156125215760405162461bcd60e51b8152600401610e1b906141c9565b6002600b5414156125445760405162461bcd60e51b8152600401610e1b9061426a565b6002600b553360008181526016602052604090205460ff16156125795760405162461bcd60e51b8152600401610e1b906141f2565b600085815260196020526040902054156125ce5760405162461bcd60e51b815260206004820152601660248201527520b63932b0b23c9031b630b4b6b2b21037333a34b33360511b6044820152606401610e1b565b6000868152601a6020526040902054156126215760405162461bcd60e51b8152602060048201526014602482015273416c726561647920636c61696d65642070756e6b60601b6044820152606401610e1b565b3361262b866119b7565b6001600160a01b0316146126745760405162461bcd60e51b815260206004820152601060248201526f2737ba1037333a34b3331037bbb732b960811b6044820152606401610e1b565b836001600160a01b03167f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166358178168886040518263ffffffff1660e01b81526004016126cc91815260200190565b60206040518083038186803b1580156126e457600080fd5b505afa1580156126f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061271c9190613b61565b6001600160a01b0316146127725760405162461bcd60e51b815260206004820152601b60248201527f436f6c642077616c6c6574206e6f742070756e6b73206f776e657200000000006044820152606401610e1b565b600086863360405160200161278993929190614034565b60405160208183030381529060405280519060200120905060006127b08561186284612fb2565b6013549091506001600160a01b03808316600160281b909204161461280f5760405162461bcd60e51b815260206004820152601560248201527414da1a5c1c1a5b99c81b9bdd081d995c9a599a5959605a1b6044820152606401610e1b565b6040516c18dbdb190b5d995c9a599a5959609a1b6020820152602d8101899052604d81018890526001600160601b031933606090811b8216606d84015288901b16608182015260950160405160208183030381529060405280519060200120915061287d8461186284612fb2565b6013549091506001600160a01b03808316600160281b90920416146128e45760405162461bcd60e51b815260206004820152601860248201527f436f6c642077616c6c6574206e6f7420766572696669656400000000000000006044820152606401610e1b565b601780549060006128f4836143be565b90915550506017805460008981526019602090815260408083208490558c8352601a82528083208490558051608080820183528e82528184018e8152428385018181523360608087018281529a8a52601889529887902095518655925160018601555160028501559651600390930180546001600160a01b0319166001600160a01b0390941693909317909255955482519081529283018e90529082018c905291810192909252917f528937b330082d892a98d4e428ab2dcca7844b51d227a1c0ae67f0b5261acbd9910160405180910390a250506001600b55505050505050565b6129de612b87565b60005b8151811015612a4657600160156000848481518110612a0257612a0261441b565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580612a3e816143be565b9150506129e1565b507f6141feff42f24e29d1af3d91bffa3d40521e53485e9c92e358c4d946c0adbd3881604051610c5491906140b0565b612a7e612b87565b8051612a9190600c9060208401906139ab565b507f5b4603fcb3d3d9b6dba69e8b60ea02082aa1d621d2cc96d5bbfab381f6164e6e81604051610c549190614164565b612ac9612b87565b6001600160a01b038116612b2e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e1b565b61113981613021565b60006001600160e01b031982166380ac58cd60e01b1480612b6857506001600160e01b03198216635b5e139f60e01b145b80610bfb57506301ffc9a760e01b6001600160e01b0319831614610bfb565b600a546001600160a01b03163314611ba25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e1b565b6000818152600260205260409020546001600160a01b03166111395760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610e1b565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612c75826119b7565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080612cba836119b7565b9050806001600160a01b0316846001600160a01b03161480612d0157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80612d255750836001600160a01b0316612d1a84610cf1565b6001600160a01b0316145b949350505050565b826001600160a01b0316612d40826119b7565b6001600160a01b031614612da45760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610e1b565b6001600160a01b038216612e065760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610e1b565b612e11838383613184565b612e1c600082612c40565b6001600160a01b0383166000908152600360205260408120805460019290612e45908490614340565b90915550506001600160a01b0382166000908152600360205260408120805460019290612e73908490614309565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b601354640100000000900460ff161561113957604080516b1ade58cb585c1c1c9bdd995960a21b60208201526001600160601b03193360601b16602c820152600091016040516020818303038152906040528051906020012090506000612f3e8361186284612fb2565b6013549091506001600160a01b03808316600160281b9092041614610ebc5760405162461bcd60e51b815260206004820152601060248201526f12de58c81b9bdd08185c1c1c9bdd995960821b6044820152606401610e1b565b6120ef82826040518060200160405280600081525061323c565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b6000806000613014858561326f565b915091506111f1816132df565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156130d55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610e1b565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61314d848484612d2d565b6131598484848461349a565b611d535760405162461bcd60e51b8152600401610e1b90614177565b6060601b8054610c6e90614383565b6001600160a01b0383166131df576131da81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b613202565b816001600160a01b0316836001600160a01b0316146132025761320283826135a7565b6001600160a01b03821661321957610ebc81613644565b826001600160a01b0316826001600160a01b031614610ebc57610ebc82826136f3565b6132468383613737565b613253600084848461349a565b610ebc5760405162461bcd60e51b8152600401610e1b90614177565b6000808251604114156132a65760208301516040840151606085015160001a61329a87828585613885565b945094505050506132d8565b8251604014156132d057602083015160408401516132c5868383613972565b9350935050506132d8565b506000905060025b9250929050565b60008160048111156132f3576132f36143ef565b14156132fc5750565b6001816004811115613310576133106143ef565b141561335e5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610e1b565b6002816004811115613372576133726143ef565b14156133c05760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610e1b565b60038160048111156133d4576133d46143ef565b141561342d5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610e1b565b6004816004811115613441576134416143ef565b14156111395760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610e1b565b60006001600160a01b0384163b1561359c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906134de903390899088908890600401614073565b602060405180830381600087803b1580156134f857600080fd5b505af1925050508015613528575060408051601f3d908101601f1916820190925261352591810190613db6565b60015b613582573d808015613556576040519150601f19603f3d011682016040523d82523d6000602084013e61355b565b606091505b50805161357a5760405162461bcd60e51b8152600401610e1b90614177565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612d25565b506001949350505050565b600060016135b484611b0a565b6135be9190614340565b600083815260076020526040902054909150808214613611576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061365690600190614340565b6000838152600960205260408120546008805493945090928490811061367e5761367e61441b565b90600052602060002001549050806008838154811061369f5761369f61441b565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806136d7576136d7614405565b6001900381819060005260206000200160009055905550505050565b60006136fe83611b0a565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661378d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610e1b565b6000818152600260205260409020546001600160a01b0316156137f25760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610e1b565b6137fe60008383613184565b6001600160a01b0382166000908152600360205260408120805460019290613827908490614309565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156138bc5750600090506003613969565b8460ff16601b141580156138d457508460ff16601c14155b156138e55750600090506004613969565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015613939573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661396257600060019250925050613969565b9150600090505b94509492505050565b6000806001600160ff1b0383168161398f60ff86901c601b614309565b905061399d87828885613885565b935093505050935093915050565b8280546139b790614383565b90600052602060002090601f0160209004810192826139d95760008555613a1f565b82601f106139f257805160ff1916838001178555613a1f565b82800160010185558215613a1f579182015b82811115613a1f578251825591602001919060010190613a04565b50613a2b929150613aa3565b5090565b828054613a3b90614383565b90600052602060002090601f016020900481019282613a5d5760008555613a1f565b82601f10613a765782800160ff19823516178555613a1f565b82800160010185558215613a1f579182015b82811115613a1f578235825591602001919060010190613a88565b5b80821115613a2b5760008155600101613aa4565b80358015158114613ac857600080fd5b919050565b600082601f830112613ade57600080fd5b813567ffffffffffffffff811115613af857613af8614431565b613b0b601f8201601f19166020016142d8565b818152846020838601011115613b2057600080fd5b816020850160208301376000918101602001919091529392505050565b600060208284031215613b4f57600080fd5b8135613b5a81614447565b9392505050565b600060208284031215613b7357600080fd5b8151613b5a81614447565b60008060408385031215613b9157600080fd5b8235613b9c81614447565b91506020830135613bac81614447565b809150509250929050565b600080600060608486031215613bcc57600080fd5b8335613bd781614447565b92506020840135613be781614447565b929592945050506040919091013590565b60008060008060808587031215613c0e57600080fd5b8435613c1981614447565b93506020850135613c2981614447565b925060408501359150606085013567ffffffffffffffff811115613c4c57600080fd5b613c5887828801613acd565b91505092959194509250565b60008060408385031215613c7757600080fd5b8235613c8281614447565b9150613c9060208401613ab8565b90509250929050565b60008060408385031215613cac57600080fd5b8235613cb781614447565b946020939093013593505050565b60006020808385031215613cd857600080fd5b823567ffffffffffffffff80821115613cf057600080fd5b818501915085601f830112613d0457600080fd5b813581811115613d1657613d16614431565b8060051b9150613d278483016142d8565b8181528481019084860184860187018a1015613d4257600080fd5b600095505b83861015613d715780359450613d5c85614447565b84835260019590950194918601918601613d47565b5098975050505050505050565b600060208284031215613d9057600080fd5b613b5a82613ab8565b600060208284031215613dab57600080fd5b8135613b5a8161445c565b600060208284031215613dc857600080fd5b8151613b5a8161445c565b60008060208385031215613de657600080fd5b823567ffffffffffffffff80821115613dfe57600080fd5b818501915085601f830112613e1257600080fd5b813581811115613e2157600080fd5b866020828501011115613e3357600080fd5b60209290920196919550909350505050565b600060208284031215613e5757600080fd5b813567ffffffffffffffff811115613e6e57600080fd5b612d2584828501613acd565b600060208284031215613e8c57600080fd5b5035919050565b60008060408385031215613ea657600080fd5b823591506020830135613bac81614447565b60008060408385031215613ecb57600080fd5b82359150602083013567ffffffffffffffff811115613ee957600080fd5b613ef585828601613acd565b9150509250929050565b600080600080600060a08688031215613f1757600080fd5b85359450602086013593506040860135613f3081614447565b9250606086013567ffffffffffffffff80821115613f4d57600080fd5b613f5989838a01613acd565b93506080880135915080821115613f6f57600080fd5b50613f7c88828901613acd565b9150509295509295909350565b600080600060608486031215613f9e57600080fd5b8335925060208401359150604084013567ffffffffffffffff811115613fc357600080fd5b613fcf86828701613acd565b9150509250925092565b60008151808452613ff1816020860160208601614357565b601f01601f19169290920160200192915050565b60008351614017818460208801614357565b83519083019061402b818360208801614357565b01949350505050565b701cda1a5c1c1a5b99cb5d995c9a599a5959607a1b81526011810193909352603183019190915260601b6001600160601b031916605182015260650190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906140a690830184613fd9565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156140f15783516001600160a01b0316835292840192918401916001016140cc565b50909695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156140f157835183529284019291840191600101614119565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b602081526000613b5a6020830184613fd9565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600f908201526e10dbdb9d1c9858dd081c185d5cd959608a1b604082015260600190565b60208082526010908201526f213630b1b5b634b9ba32b2103ab9b2b960811b604082015260600190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252601b908201527f4e65656420746f206d696e74206174206c656173742031204e46540000000000604082015260600190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561430157614301614431565b604052919050565b6000821982111561431c5761431c6143d9565b500190565b600081600019048311821515161561433b5761433b6143d9565b500290565b600082821015614352576143526143d9565b500390565b60005b8381101561437257818101518382015260200161435a565b83811115611d535750506000910152565b600181811c9082168061439757607f821691505b602082108114156143b857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156143d2576143d26143d9565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461113957600080fd5b6001600160e01b03198116811461113957600080fdfea26469706673582212209326ec9a4fbb4d14eedcd5eabdd9f07ec42216eb6006cdd6f4885e0178f3091064736f6c634300080700330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000b47e3cd837ddf8e4c57f05d70ab865de6e193bbb00000000000000000000000000000000000000000000000000000000000000522268747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d626f4a774c3867755739426f5643773936555573774b4833565374703853766148567a377a54313946646155220000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103ad5760003560e01c8063715018a6116101e7578063b3a196e91161010d578063d5749d42116100a0578063e985e9c51161006f578063e985e9c514610b2d578063edec5f2714610b76578063f2c4ce1e14610b96578063f2fde38b14610bb657600080fd5b8063d5749d4214610aa0578063d5abeb0114610ad0578063d9994cdb14610ae6578063e46317b514610af957600080fd5b8063bb3d676a116100dc578063bb3d676a14610a2b578063bc8893b414610a4b578063c87b56dd14610a6a578063d54ad2a114610a8a57600080fd5b8063b3a196e9146109b5578063b423fe67146109cb578063b88d4fde146109eb578063b96502cb14610a0b57600080fd5b80638895283f1161018557806398a8cffe1161015457806398a8cffe14610926578063a1d557c514610953578063a22cb46514610980578063a475b5dd146109a057600080fd5b80638895283f146108c05780638b9a10d7146108e05780638da5cb5b146108f357806395d89b411461091157600080fd5b80637b4b9ddc116101c15780637b4b9ddc146108335780637c25d647146108535780637f00c7a61461088057806383a076be146108a057600080fd5b8063715018a6146107e357806378da7ba1146107f85780637ac3c02f1461080e57600080fd5b80633e4191dc116102d757806355f804b31161026a5780636352211e116102395780636352211e146107635780636c19e783146107835780636f8b44b0146107a357806370a08231146107c357600080fd5b806355f804b31461069c5780635c362233146106bc5780635c975abb146107305780635eddd1571461075057600080fd5b806344a8715b116102a657806344a8715b1461062e5780634f6ccce714610641578063518302271461066157806353135ca01461068257600080fd5b80633e4191dc1461059f57806342842e0e146105c1578063438b6300146105e157806344a0d68a1461060e57600080fd5b806313faede61161034f578063239c70ae1161031e578063239c70ae1461054157806323b872dd146105575780632f745c59146105775780633ccfd60b1461059757600080fd5b806313faede6146104c8578063150909f7146104ec578063162094c41461050c57806318160ddd1461052c57600080fd5b806306fdde031161038b57806306fdde0314610439578063081812fc1461045b578063081c8c4414610493578063095ea7b3146104a857600080fd5b806301ffc9a7146103b257806302329a29146103e757806306c933d814610409575b600080fd5b3480156103be57600080fd5b506103d26103cd366004613d99565b610bd6565b60405190151581526020015b60405180910390f35b3480156103f357600080fd5b50610407610402366004613d7e565b610c01565b005b34801561041557600080fd5b506103d2610424366004613b3d565b60156020526000908152604090205460ff1681565b34801561044557600080fd5b5061044e610c5f565b6040516103de9190614164565b34801561046757600080fd5b5061047b610476366004613e7a565b610cf1565b6040516001600160a01b0390911681526020016103de565b34801561049f57600080fd5b5061044e610d18565b3480156104b457600080fd5b506104076104c3366004613c99565b610da6565b3480156104d457600080fd5b506104de600e5481565b6040519081526020016103de565b3480156104f857600080fd5b50610407610507366004613d7e565b610ec1565b34801561051857600080fd5b50610407610527366004613eb8565b610f18565b34801561053857600080fd5b506008546104de565b34801561054d57600080fd5b506104de60105481565b34801561056357600080fd5b50610407610572366004613bb7565b610fe0565b34801561058357600080fd5b506104de610592366004613c99565b611011565b6104076110a7565b3480156105ab57600080fd5b506013546103d290640100000000900460ff1681565b3480156105cd57600080fd5b506104076105dc366004613bb7565b61113c565b3480156105ed57600080fd5b506106016105fc366004613b3d565b611157565b6040516103de91906140fd565b34801561061a57600080fd5b50610407610629366004613e7a565b6111f9565b61040761063c366004613eb8565b611236565b34801561064d57600080fd5b506104de61065c366004613e7a565b6114e1565b34801561066d57600080fd5b506013546103d2906301000000900460ff1681565b34801561068e57600080fd5b506013546103d29060ff1681565b3480156106a857600080fd5b506104076106b7366004613dd3565b611574565b3480156106c857600080fd5b506107076106d7366004613e7a565b6018602052600090815260409020805460018201546002830154600390930154919290916001600160a01b031684565b604080519485526020850193909352918301526001600160a01b031660608201526080016103de565b34801561073c57600080fd5b506013546103d29062010000900460ff1681565b61040761075e366004613f89565b6115c6565b34801561076f57600080fd5b5061047b61077e366004613e7a565b6119b7565b34801561078f57600080fd5b5061040761079e366004613b3d565b611a17565b3480156107af57600080fd5b506104076107be366004613e7a565b611a7b565b3480156107cf57600080fd5b506104de6107de366004613b3d565b611b0a565b3480156107ef57600080fd5b50610407611b90565b34801561080457600080fd5b506104de60125481565b34801561081a57600080fd5b50601354600160281b90046001600160a01b031661047b565b34801561083f57600080fd5b5061040761084e366004613e7a565b611ba4565b34801561085f57600080fd5b506104de61086e366004613e7a565b60196020526000908152604090205481565b34801561088c57600080fd5b5061040761089b366004613e7a565b611c24565b3480156108ac57600080fd5b506104076108bb366004613e93565b611c61565b3480156108cc57600080fd5b506104076108db366004613d7e565b611d59565b6104076108ee366004613eb8565b611da2565b3480156108ff57600080fd5b50600a546001600160a01b031661047b565b34801561091d57600080fd5b5061044e6120d5565b34801561093257600080fd5b506104de610941366004613b3d565b60146020526000908152604090205481565b34801561095f57600080fd5b506104de61096e366004613e7a565b601a6020526000908152604090205481565b34801561098c57600080fd5b5061040761099b366004613c64565b6120e4565b3480156109ac57600080fd5b506104076120f3565b3480156109c157600080fd5b506104de60115481565b3480156109d757600080fd5b506104076109e6366004613d7e565b612139565b3480156109f757600080fd5b50610407610a06366004613bf8565b61218a565b348015610a1757600080fd5b50610407610a26366004613e7a565b6121bc565b348015610a3757600080fd5b50610407610a46366004613cc5565b61224b565b348015610a5757600080fd5b506013546103d290610100900460ff1681565b348015610a7657600080fd5b5061044e610a85366004613e7a565b6122eb565b348015610a9657600080fd5b506104de60175481565b348015610aac57600080fd5b506103d2610abb366004613b3d565b60166020526000908152604090205460ff1681565b348015610adc57600080fd5b506104de600f5481565b610407610af4366004613eff565b6124f8565b348015610b0557600080fd5b5061047b7f000000000000000000000000b47e3cd837ddf8e4c57f05d70ab865de6e193bbb81565b348015610b3957600080fd5b506103d2610b48366004613b7e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610b8257600080fd5b50610407610b91366004613cc5565b6129d6565b348015610ba257600080fd5b50610407610bb1366004613e45565b612a76565b348015610bc257600080fd5b50610407610bd1366004613b3d565b612ac1565b60006001600160e01b0319821663780e9d6360e01b1480610bfb5750610bfb82612b37565b92915050565b610c09612b87565b60138054821515620100000262ff0000199091161790556040517f0e2fb031ee032dc02d8011dc50b816eb450cf856abd8261680dac74f72165bd290610c5490831515815260200190565b60405180910390a150565b606060008054610c6e90614383565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9a90614383565b8015610ce75780601f10610cbc57610100808354040283529160200191610ce7565b820191906000526020600020905b815481529060010190602001808311610cca57829003601f168201915b5050505050905090565b6000610cfc82612be1565b506000908152600460205260409020546001600160a01b031690565b600c8054610d2590614383565b80601f0160208091040260200160405190810160405280929190818152602001828054610d5190614383565b8015610d9e5780601f10610d7357610100808354040283529160200191610d9e565b820191906000526020600020905b815481529060010190602001808311610d8157829003601f168201915b505050505081565b6000610db1826119b7565b9050806001600160a01b0316836001600160a01b03161415610e245760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b0382161480610e405750610e408133610b48565b610eb25760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610e1b565b610ebc8383612c40565b505050565b610ec9612b87565b601380548215156401000000000264ff00000000199091161790556040517f9c6bc9b1655d51a0ba04b966dafa4a63b361d41aea8a5bd188e79270ae78498290610c5490831515815260200190565b610f20612b87565b6000828152600260205260409020546001600160a01b0316610f845760405162461bcd60e51b815260206004820152601c60248201527f55524920736574206f66206e6f6e6578697374656e7420746f6b656e000000006044820152606401610e1b565b6000828152600d602090815260409091208251610fa3928401906139ab565b50817f931f495b9a8e5d8e61946ea5d61e021f636cfe213a801f97589c18c152e408bd82604051610fd49190614164565b60405180910390a25050565b610fea3382612cae565b6110065760405162461bcd60e51b8152600401610e1b9061421c565b610ebc838383612d2d565b600061101c83611b0a565b821061107e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610e1b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6110af612b87565b604051600090339047908381818185875af1925050503d80600081146110f1576040519150601f19603f3d011682016040523d82523d6000602084013e6110f6565b606091505b50509050806111395760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610e1b565b50565b610ebc8383836040518060200160405280600081525061218a565b6060600061116483611b0a565b905060008167ffffffffffffffff81111561118157611181614431565b6040519080825280602002602001820160405280156111aa578160200160208202803683370190505b50905060005b828110156111f1576111c28582611011565b8282815181106111d4576111d461441b565b6020908102919091010152806111e9816143be565b9150506111b0565b509392505050565b611201612b87565b600e8190556040518181527f5d3cc44bbc86a70941868a14a9f66a647d7f7499d4d3789f68e4486c11ea46da90602001610c54565b60135462010000900460ff161561125f5760405162461bcd60e51b8152600401610e1b906141c9565b6002600b5414156112825760405162461bcd60e51b8152600401610e1b9061426a565b6002600b553360008181526016602052604090205460ff16156112b75760405162461bcd60e51b8152600401610e1b906141f2565b601354610100900460ff166113095760405162461bcd60e51b815260206004820152601860248201527714d85b19481a185cc81b9bdd081cdd185c9d1959081e595d60421b6044820152606401610e1b565b82600e546113179190614321565b34101561135b5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610e1b565b6000831161137b5760405162461bcd60e51b8152600401610e1b906142a1565b601054336000908152601460205260409020546113989085614309565b11156113e15760405162461bcd60e51b815260206004820152601860248201527713585e081b5a5b9d08185b5bdd5b9d08195e18d95959195960421b6044820152606401610e1b565b60006113ec60085490565b600f549091506113fc8583614309565b11156114435760405162461bcd60e51b815260206004820152601660248201527513585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610e1b565b61144c83612ed4565b336000908152601460205260408120805486929061146b908490614309565b90915550600190505b8481116114d55761148e336114898385614309565b612f98565b6114988183614309565b60405133907fbb06c934d5d088f12f303c757020e73ec03ae3217e26be764425bb34855c8b9490600090a3806114cd816143be565b915050611474565b50506001600b55505050565b60006114ec60085490565b821061154f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610e1b565b600882815481106115625761156261441b565b90600052602060002001549050919050565b61157c612b87565b611588601b8383613a2f565b507ff9c7803e94e0d3c02900d8a90893a6d5e90dd04d32a4cfe825520f82bf9f32f682826040516115ba929190614135565b60405180910390a15050565b60135462010000900460ff16156115ef5760405162461bcd60e51b8152600401610e1b906141c9565b6002600b5414156116125760405162461bcd60e51b8152600401610e1b9061426a565b6002600b553360008181526016602052604090205460ff16156116475760405162461bcd60e51b8152600401610e1b906141f2565b6000838152601960205260409020541561169c5760405162461bcd60e51b815260206004820152601660248201527520b63932b0b23c9031b630b4b6b2b21037333a34b33360511b6044820152606401610e1b565b6000848152601a6020526040902054156116ef5760405162461bcd60e51b8152602060048201526014602482015273416c726561647920636c61696d65642070756e6b60601b6044820152606401610e1b565b336116f9846119b7565b6001600160a01b0316146117425760405162461bcd60e51b815260206004820152601060248201526f2737ba1037333a34b3331037bbb732b960811b6044820152606401610e1b565b604051630b02f02d60e31b81526004810185905233906001600160a01b037f000000000000000000000000b47e3cd837ddf8e4c57f05d70ab865de6e193bbb169063581781689060240160206040518083038186803b1580156117a457600080fd5b505afa1580156117b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117dc9190613b61565b6001600160a01b0316146118245760405162461bcd60e51b815260206004820152600f60248201526e2737ba10383ab735b99037bbb732b960891b6044820152606401610e1b565b600084843360405160200161183b93929190614034565b60405160208183030381529060405280519060200120905060006118688461186284612fb2565b90613005565b6013549091506001600160a01b03808316600160281b90920416146118c75760405162461bcd60e51b815260206004820152601560248201527414da1a5c1c1a5b99c81b9bdd081d995c9a599a5959605a1b6044820152606401610e1b565b601780549060006118d7836143be565b90915550506017805460008781526019602090815260408083208490558a8352601a82528083208490558051608080820183528c82528184018c8152428385018181523360608087018281529a8a52601889529887902095518655925160018601555160028501559651600390930180546001600160a01b0319166001600160a01b0390941693909317909255955482519081529283018c90529082018a905291810192909252917f528937b330082d892a98d4e428ab2dcca7844b51d227a1c0ae67f0b5261acbd9910160405180910390a250506001600b5550505050565b6000818152600260205260408120546001600160a01b031680610bfb5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610e1b565b611a1f612b87565b6013805465010000000000600160c81b031916600160281b6001600160a01b038416908102919091179091556040519081527f5719a5656c5cfdaafa148ecf366fd3b0a7fae06449ce2a46225977fb7417e29d90602001610c54565b611a83612b87565b600854811015611ad55760405162461bcd60e51b815260206004820152601c60248201527f4d617820737570706c792073686f756c642062652067726561746572000000006044820152606401610e1b565b600f8190556040518181527f28a10a2e0b5582da7164754cb994f6214b8af6aa7f7e003305fbc09e7106c51390602001610c54565b60006001600160a01b038216611b745760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610e1b565b506001600160a01b031660009081526003602052604090205490565b611b98612b87565b611ba26000613021565b565b611bac612b87565b428111611bef5760405162461bcd60e51b81526020600482015260116024820152700496e76616c69642074696d657374616d7607c1b6044820152606401610e1b565b60128190556040518181527fb58f7999ee6aec0a8a4c4c4c4d551dba5d353977562c9daf2eda32fc9c50fa2890602001610c54565b611c2c612b87565b60108190556040518181527f71ef44637f994911a9fa6bc89bc19c9bbf6f510a992e74f90880ffbccd7b2c6b90602001610c54565b611c69612b87565b60008211611c895760405162461bcd60e51b8152600401610e1b906142a1565b6000611c9460085490565b600f54909150611ca48483614309565b1115611ceb5760405162461bcd60e51b815260206004820152601660248201527513585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610e1b565b60015b838111611d5357611d03836114898385614309565b611d0d8183614309565b6040516001600160a01b038516907fbb06c934d5d088f12f303c757020e73ec03ae3217e26be764425bb34855c8b9490600090a380611d4b816143be565b915050611cee565b50505050565b611d61612b87565b6013805460ff19168215159081179091556040519081527f1f1a6b0fcc71315f2c3aeddbd1f6d527595d21eea9b73160e78d6fa49b7897a690602001610c54565b60135462010000900460ff1615611dcb5760405162461bcd60e51b8152600401610e1b906141c9565b6002600b541415611dee5760405162461bcd60e51b8152600401610e1b9061426a565b6002600b553360008181526016602052604090205460ff1615611e235760405162461bcd60e51b8152600401610e1b906141f2565b60135460ff16611e705760405162461bcd60e51b815260206004820152601860248201527714d85b19481a185cc81b9bdd081cdd185c9d1959081e595d60421b6044820152606401610e1b565b6012544210611eb15760405162461bcd60e51b815260206004820152600d60248201526c141c995cd85b1948195b991959609a1b6044820152606401610e1b565b3360009081526015602052604090205460ff16611f075760405162461bcd60e51b81526020600482015260146024820152732737ba103bb434ba32b634b9ba32b2103ab9b2b960611b6044820152606401610e1b565b82600e54611f159190614321565b341015611f595760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610e1b565b60008311611f795760405162461bcd60e51b8152600401610e1b906142a1565b60105433600090815260146020526040902054611f969085614309565b1115611fdf5760405162461bcd60e51b815260206004820152601860248201527713585e081b5a5b9d08185b5bdd5b9d08195e18d95959195960421b6044820152606401610e1b565b6000611fea60085490565b601154909150611ffa8583614309565b11156120485760405162461bcd60e51b815260206004820152601d60248201527f50726573616c6520737570706c79206c696d69742065786365656465640000006044820152606401610e1b565b61205183612ed4565b3360009081526014602052604081208054869290612070908490614309565b90915550600190505b8481116114d55761208e336114898385614309565b6120988183614309565b60405133907fbb06c934d5d088f12f303c757020e73ec03ae3217e26be764425bb34855c8b9490600090a3806120cd816143be565b915050612079565b606060018054610c6e90614383565b6120ef338383613073565b5050565b6120fb612b87565b6013805463ff000000191663010000001790556040517fe2a7169cedebe39671840370ae19ca4fc41be6191d4c77f174f189a4d8cd08c890600090a1565b612141612b87565b601380548215156101000261ff00199091161790556040517f36b97db79058521017a18d3f5261657061fa019ef5637747834f022e588ec07490610c5490831515815260200190565b6121943383612cae565b6121b05760405162461bcd60e51b8152600401610e1b9061421c565b611d5384848484613142565b6121c4612b87565b600f548111156122165760405162461bcd60e51b815260206004820152601960248201527f4d617820737570706c79206c696d6974206578636565646564000000000000006044820152606401610e1b565b60118190556040518181527feb2de784e253e45c726847a619e0b24b8aa3f97f10bd74f94e5264c21786996090602001610c54565b612253612b87565b60005b81518110156122bb576001601660008484815181106122775761227761441b565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806122b3816143be565b915050612256565b507fb0acc561764f1521c892494310b184e20cafc08c4d047edaeeed1b55af37fe3081604051610c5491906140b0565b6000818152600260205260409020546060906001600160a01b03166123525760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610e1b565b6013546060906301000000900460ff166123f857600c805461237390614383565b80601f016020809104026020016040519081016040528092919081815260200182805461239f90614383565b80156123ec5780601f106123c1576101008083540402835291602001916123ec565b820191906000526020600020905b8154815290600101906020018083116123cf57829003601f168201915b50505050509050612492565b6000838152600d60205260409020805461241190614383565b80601f016020809104026020016040519081016040528092919081815260200182805461243d90614383565b801561248a5780601f1061245f5761010080835404028352916020019161248a565b820191906000526020600020905b81548152906001019060200180831161246d57829003601f168201915b505050505090505b600061249c613175565b90508051600014156124af575092915050565b8151156124e15780826040516020016124c9929190614005565b60405160208183030381529060405292505050919050565b505060408051602081019091526000815292915050565b60135462010000900460ff16156125215760405162461bcd60e51b8152600401610e1b906141c9565b6002600b5414156125445760405162461bcd60e51b8152600401610e1b9061426a565b6002600b553360008181526016602052604090205460ff16156125795760405162461bcd60e51b8152600401610e1b906141f2565b600085815260196020526040902054156125ce5760405162461bcd60e51b815260206004820152601660248201527520b63932b0b23c9031b630b4b6b2b21037333a34b33360511b6044820152606401610e1b565b6000868152601a6020526040902054156126215760405162461bcd60e51b8152602060048201526014602482015273416c726561647920636c61696d65642070756e6b60601b6044820152606401610e1b565b3361262b866119b7565b6001600160a01b0316146126745760405162461bcd60e51b815260206004820152601060248201526f2737ba1037333a34b3331037bbb732b960811b6044820152606401610e1b565b836001600160a01b03167f000000000000000000000000b47e3cd837ddf8e4c57f05d70ab865de6e193bbb6001600160a01b03166358178168886040518263ffffffff1660e01b81526004016126cc91815260200190565b60206040518083038186803b1580156126e457600080fd5b505afa1580156126f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061271c9190613b61565b6001600160a01b0316146127725760405162461bcd60e51b815260206004820152601b60248201527f436f6c642077616c6c6574206e6f742070756e6b73206f776e657200000000006044820152606401610e1b565b600086863360405160200161278993929190614034565b60405160208183030381529060405280519060200120905060006127b08561186284612fb2565b6013549091506001600160a01b03808316600160281b909204161461280f5760405162461bcd60e51b815260206004820152601560248201527414da1a5c1c1a5b99c81b9bdd081d995c9a599a5959605a1b6044820152606401610e1b565b6040516c18dbdb190b5d995c9a599a5959609a1b6020820152602d8101899052604d81018890526001600160601b031933606090811b8216606d84015288901b16608182015260950160405160208183030381529060405280519060200120915061287d8461186284612fb2565b6013549091506001600160a01b03808316600160281b90920416146128e45760405162461bcd60e51b815260206004820152601860248201527f436f6c642077616c6c6574206e6f7420766572696669656400000000000000006044820152606401610e1b565b601780549060006128f4836143be565b90915550506017805460008981526019602090815260408083208490558c8352601a82528083208490558051608080820183528e82528184018e8152428385018181523360608087018281529a8a52601889529887902095518655925160018601555160028501559651600390930180546001600160a01b0319166001600160a01b0390941693909317909255955482519081529283018e90529082018c905291810192909252917f528937b330082d892a98d4e428ab2dcca7844b51d227a1c0ae67f0b5261acbd9910160405180910390a250506001600b55505050505050565b6129de612b87565b60005b8151811015612a4657600160156000848481518110612a0257612a0261441b565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580612a3e816143be565b9150506129e1565b507f6141feff42f24e29d1af3d91bffa3d40521e53485e9c92e358c4d946c0adbd3881604051610c5491906140b0565b612a7e612b87565b8051612a9190600c9060208401906139ab565b507f5b4603fcb3d3d9b6dba69e8b60ea02082aa1d621d2cc96d5bbfab381f6164e6e81604051610c549190614164565b612ac9612b87565b6001600160a01b038116612b2e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e1b565b61113981613021565b60006001600160e01b031982166380ac58cd60e01b1480612b6857506001600160e01b03198216635b5e139f60e01b145b80610bfb57506301ffc9a760e01b6001600160e01b0319831614610bfb565b600a546001600160a01b03163314611ba25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e1b565b6000818152600260205260409020546001600160a01b03166111395760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610e1b565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612c75826119b7565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080612cba836119b7565b9050806001600160a01b0316846001600160a01b03161480612d0157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80612d255750836001600160a01b0316612d1a84610cf1565b6001600160a01b0316145b949350505050565b826001600160a01b0316612d40826119b7565b6001600160a01b031614612da45760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610e1b565b6001600160a01b038216612e065760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610e1b565b612e11838383613184565b612e1c600082612c40565b6001600160a01b0383166000908152600360205260408120805460019290612e45908490614340565b90915550506001600160a01b0382166000908152600360205260408120805460019290612e73908490614309565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b601354640100000000900460ff161561113957604080516b1ade58cb585c1c1c9bdd995960a21b60208201526001600160601b03193360601b16602c820152600091016040516020818303038152906040528051906020012090506000612f3e8361186284612fb2565b6013549091506001600160a01b03808316600160281b9092041614610ebc5760405162461bcd60e51b815260206004820152601060248201526f12de58c81b9bdd08185c1c1c9bdd995960821b6044820152606401610e1b565b6120ef82826040518060200160405280600081525061323c565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b6000806000613014858561326f565b915091506111f1816132df565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156130d55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610e1b565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61314d848484612d2d565b6131598484848461349a565b611d535760405162461bcd60e51b8152600401610e1b90614177565b6060601b8054610c6e90614383565b6001600160a01b0383166131df576131da81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b613202565b816001600160a01b0316836001600160a01b0316146132025761320283826135a7565b6001600160a01b03821661321957610ebc81613644565b826001600160a01b0316826001600160a01b031614610ebc57610ebc82826136f3565b6132468383613737565b613253600084848461349a565b610ebc5760405162461bcd60e51b8152600401610e1b90614177565b6000808251604114156132a65760208301516040840151606085015160001a61329a87828585613885565b945094505050506132d8565b8251604014156132d057602083015160408401516132c5868383613972565b9350935050506132d8565b506000905060025b9250929050565b60008160048111156132f3576132f36143ef565b14156132fc5750565b6001816004811115613310576133106143ef565b141561335e5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610e1b565b6002816004811115613372576133726143ef565b14156133c05760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610e1b565b60038160048111156133d4576133d46143ef565b141561342d5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610e1b565b6004816004811115613441576134416143ef565b14156111395760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610e1b565b60006001600160a01b0384163b1561359c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906134de903390899088908890600401614073565b602060405180830381600087803b1580156134f857600080fd5b505af1925050508015613528575060408051601f3d908101601f1916820190925261352591810190613db6565b60015b613582573d808015613556576040519150601f19603f3d011682016040523d82523d6000602084013e61355b565b606091505b50805161357a5760405162461bcd60e51b8152600401610e1b90614177565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612d25565b506001949350505050565b600060016135b484611b0a565b6135be9190614340565b600083815260076020526040902054909150808214613611576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061365690600190614340565b6000838152600960205260408120546008805493945090928490811061367e5761367e61441b565b90600052602060002001549050806008838154811061369f5761369f61441b565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806136d7576136d7614405565b6001900381819060005260206000200160009055905550505050565b60006136fe83611b0a565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661378d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610e1b565b6000818152600260205260409020546001600160a01b0316156137f25760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610e1b565b6137fe60008383613184565b6001600160a01b0382166000908152600360205260408120805460019290613827908490614309565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156138bc5750600090506003613969565b8460ff16601b141580156138d457508460ff16601c14155b156138e55750600090506004613969565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015613939573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661396257600060019250925050613969565b9150600090505b94509492505050565b6000806001600160ff1b0383168161398f60ff86901c601b614309565b905061399d87828885613885565b935093505050935093915050565b8280546139b790614383565b90600052602060002090601f0160209004810192826139d95760008555613a1f565b82601f106139f257805160ff1916838001178555613a1f565b82800160010185558215613a1f579182015b82811115613a1f578251825591602001919060010190613a04565b50613a2b929150613aa3565b5090565b828054613a3b90614383565b90600052602060002090601f016020900481019282613a5d5760008555613a1f565b82601f10613a765782800160ff19823516178555613a1f565b82800160010185558215613a1f579182015b82811115613a1f578235825591602001919060010190613a88565b5b80821115613a2b5760008155600101613aa4565b80358015158114613ac857600080fd5b919050565b600082601f830112613ade57600080fd5b813567ffffffffffffffff811115613af857613af8614431565b613b0b601f8201601f19166020016142d8565b818152846020838601011115613b2057600080fd5b816020850160208301376000918101602001919091529392505050565b600060208284031215613b4f57600080fd5b8135613b5a81614447565b9392505050565b600060208284031215613b7357600080fd5b8151613b5a81614447565b60008060408385031215613b9157600080fd5b8235613b9c81614447565b91506020830135613bac81614447565b809150509250929050565b600080600060608486031215613bcc57600080fd5b8335613bd781614447565b92506020840135613be781614447565b929592945050506040919091013590565b60008060008060808587031215613c0e57600080fd5b8435613c1981614447565b93506020850135613c2981614447565b925060408501359150606085013567ffffffffffffffff811115613c4c57600080fd5b613c5887828801613acd565b91505092959194509250565b60008060408385031215613c7757600080fd5b8235613c8281614447565b9150613c9060208401613ab8565b90509250929050565b60008060408385031215613cac57600080fd5b8235613cb781614447565b946020939093013593505050565b60006020808385031215613cd857600080fd5b823567ffffffffffffffff80821115613cf057600080fd5b818501915085601f830112613d0457600080fd5b813581811115613d1657613d16614431565b8060051b9150613d278483016142d8565b8181528481019084860184860187018a1015613d4257600080fd5b600095505b83861015613d715780359450613d5c85614447565b84835260019590950194918601918601613d47565b5098975050505050505050565b600060208284031215613d9057600080fd5b613b5a82613ab8565b600060208284031215613dab57600080fd5b8135613b5a8161445c565b600060208284031215613dc857600080fd5b8151613b5a8161445c565b60008060208385031215613de657600080fd5b823567ffffffffffffffff80821115613dfe57600080fd5b818501915085601f830112613e1257600080fd5b813581811115613e2157600080fd5b866020828501011115613e3357600080fd5b60209290920196919550909350505050565b600060208284031215613e5757600080fd5b813567ffffffffffffffff811115613e6e57600080fd5b612d2584828501613acd565b600060208284031215613e8c57600080fd5b5035919050565b60008060408385031215613ea657600080fd5b823591506020830135613bac81614447565b60008060408385031215613ecb57600080fd5b82359150602083013567ffffffffffffffff811115613ee957600080fd5b613ef585828601613acd565b9150509250929050565b600080600080600060a08688031215613f1757600080fd5b85359450602086013593506040860135613f3081614447565b9250606086013567ffffffffffffffff80821115613f4d57600080fd5b613f5989838a01613acd565b93506080880135915080821115613f6f57600080fd5b50613f7c88828901613acd565b9150509295509295909350565b600080600060608486031215613f9e57600080fd5b8335925060208401359150604084013567ffffffffffffffff811115613fc357600080fd5b613fcf86828701613acd565b9150509250925092565b60008151808452613ff1816020860160208601614357565b601f01601f19169290920160200192915050565b60008351614017818460208801614357565b83519083019061402b818360208801614357565b01949350505050565b701cda1a5c1c1a5b99cb5d995c9a599a5959607a1b81526011810193909352603183019190915260601b6001600160601b031916605182015260650190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906140a690830184613fd9565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156140f15783516001600160a01b0316835292840192918401916001016140cc565b50909695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156140f157835183529284019291840191600101614119565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b602081526000613b5a6020830184613fd9565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600f908201526e10dbdb9d1c9858dd081c185d5cd959608a1b604082015260600190565b60208082526010908201526f213630b1b5b634b9ba32b2103ab9b2b960811b604082015260600190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252601b908201527f4e65656420746f206d696e74206174206c656173742031204e46540000000000604082015260600190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561430157614301614431565b604052919050565b6000821982111561431c5761431c6143d9565b500190565b600081600019048311821515161561433b5761433b6143d9565b500290565b600082821015614352576143526143d9565b500390565b60005b8381101561437257818101518382015260200161435a565b83811115611d535750506000910152565b600181811c9082168061439757607f821691505b602082108114156143b857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156143d2576143d26143d9565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461113957600080fd5b6001600160e01b03198116811461113957600080fdfea26469706673582212209326ec9a4fbb4d14eedcd5eabdd9f07ec42216eb6006cdd6f4885e0178f3091064736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000b47e3cd837ddf8e4c57f05d70ab865de6e193bbb00000000000000000000000000000000000000000000000000000000000000522268747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d626f4a774c3867755739426f5643773936555573774b4833565374703853766148567a377a54313946646155220000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initNotRevealedUri (string): "https://gateway.pinata.cloud/ipfs/QmboJwL8guW9BoVCw96UUswKH3VStp8SvaHVz7zT19FdaU"
Arg [1] : punksContract_ (address): 0xb47e3cd837dDF8e4c57F05d70Ab865de6e193BBB

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 000000000000000000000000b47e3cd837ddf8e4c57f05d70ab865de6e193bbb
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000052
Arg [3] : 2268747470733a2f2f676174657761792e70696e6174612e636c6f75642f6970
Arg [4] : 66732f516d626f4a774c3867755739426f5643773936555573774b4833565374
Arg [5] : 703853766148567a377a54313946646155220000000000000000000000000000


Deployed Bytecode Sourcemap

67282:12861:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60905:224;;;;;;;;;;-1:-1:-1;60905:224:0;;;;;:::i;:::-;;:::i;:::-;;;13615:14:1;;13608:22;13590:41;;13578:2;13563:18;60905:224:0;;;;;;;;77314:109;;;;;;;;;;-1:-1:-1;77314:109:0;;;;;:::i;:::-;;:::i;:::-;;68024:52;;;;;;;;;;-1:-1:-1;68024:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;47639:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;49152:171::-;;;;;;;;;;-1:-1:-1;49152:171:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;11613:32:1;;;11595:51;;11583:2;11568:18;49152:171:0;11449:203:1;67415:28:0;;;;;;;;;;;;;:::i;48669:417::-;;;;;;;;;;-1:-1:-1;48669:417:0;;;;;:::i;:::-;;:::i;67504:30::-;;;;;;;;;;;;;;;;;;;31004:25:1;;;30992:2;30977:18;67504:30:0;30858:177:1;78978:145:0;;;;;;;;;;-1:-1:-1;78978:145:0;;;;;:::i;:::-;;:::i;76954:249::-;;;;;;;;;;-1:-1:-1;76954:249:0;;;;;:::i;:::-;;:::i;61545:113::-;;;;;;;;;;-1:-1:-1;61633:10:0;:17;61545:113;;67578:32;;;;;;;;;;;;;;;;49852:336;;;;;;;;;;-1:-1:-1;49852:336:0;;;;;:::i;:::-;;:::i;61213:256::-;;;;;;;;;;-1:-1:-1;61213:256:0;;;;;:::i;:::-;;:::i;79771:187::-;;;:::i;67850:32::-;;;;;;;;;;-1:-1:-1;67850:32:0;;;;;;;;;;;50259:185;;;;;;;;;;-1:-1:-1;50259:185:0;;;;;:::i;:::-;;:::i;75488:358::-;;;;;;;;;;-1:-1:-1;75488:358:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;77431:123::-;;;;;;;;;;-1:-1:-1;77431:123:0;;;;;:::i;:::-;;:::i;71967:831::-;;;;;;:::i;:::-;;:::i;61735:233::-;;;;;;;;;;-1:-1:-1;61735:233:0;;;;;:::i;:::-;;:::i;67815:28::-;;;;;;;;;;-1:-1:-1;67815:28:0;;;;;;;;;;;67699:33;;;;;;;;;;-1:-1:-1;67699:33:0;;;;;;;;76805:141;;;;;;;;;;-1:-1:-1;76805:141:0;;;;;:::i;:::-;;:::i;68285:46::-;;;;;;;;;;-1:-1:-1;68285:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;68285:46:0;;;;;;;31271:25:1;;;31327:2;31312:18;;31305:34;;;;31355:18;;;31348:34;-1:-1:-1;;;;;31418:32:1;31413:2;31398:18;;31391:60;31258:3;31243:19;68285:46:0;31040:417:1;67782:26:0;;;;;;;;;;-1:-1:-1;67782:26:0;;;;;;;;;;;72819:1098;;;;;;:::i;:::-;;:::i;47350:222::-;;;;;;;;;;-1:-1:-1;47350:222:0;;;;;:::i;:::-;;:::i;79131:126::-;;;;;;;;;;-1:-1:-1;79131:126:0;;;;;:::i;:::-;;:::i;78410:223::-;;;;;;;;;;-1:-1:-1;78410:223:0;;;;;:::i;:::-;;:::i;47081:207::-;;;;;;;;;;-1:-1:-1;47081:207:0;;;;;:::i;:::-;;:::i;26168:103::-;;;;;;;;;;;;;:::i;67658:34::-;;;;;;;;;;;;;;;;75397:83;;;;;;;;;;-1:-1:-1;75466:6:0;;-1:-1:-1;;;75466:6:0;;-1:-1:-1;;;;;75466:6:0;75397:83;;77971:243;;;;;;;;;;-1:-1:-1;77971:243:0;;;;;:::i;:::-;;:::i;68362:47::-;;;;;;;;;;-1:-1:-1;68362:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;77562:177;;;;;;;;;;-1:-1:-1;77562:177:0;;;;;:::i;:::-;;:::i;71500:440::-;;;;;;;;;;-1:-1:-1;71500:440:0;;;;;:::i;:::-;;:::i;78641:156::-;;;;;;;;;;-1:-1:-1;78641:156:0;;;;;:::i;:::-;;:::i;70504:984::-;;;;;;:::i;:::-;;:::i;25520:87::-;;;;;;;;;;-1:-1:-1;25593:6:0;;-1:-1:-1;;;;;25593:6:0;25520:87;;47808:104;;;;;;;;;;;;;:::i;67946:50::-;;;;;;;;;;-1:-1:-1;67946:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;68439:45;;;;;;;;;;-1:-1:-1;68439:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;49395:155;;;;;;;;;;-1:-1:-1;49395:155:0;;;;;:::i;:::-;;:::i;77211:95::-;;;;;;;;;;;;;:::i;67617:34::-;;;;;;;;;;;;;;;;78805:165;;;;;;;;;;-1:-1:-1;78805:165:0;;;;;:::i;:::-;;:::i;50515:323::-;;;;;;;;;;-1:-1:-1;50515:323:0;;;;;:::i;:::-;;:::i;77747:216::-;;;;;;;;;;-1:-1:-1;77747:216:0;;;;;:::i;:::-;;:::i;79518:245::-;;;;;;;;;;-1:-1:-1;79518:245:0;;;;;:::i;:::-;;:::i;67739:36::-;;;;;;;;;;-1:-1:-1;67739:36:0;;;;;;;;;;;75917:854;;;;;;;;;;-1:-1:-1;75917:854:0;;;;;:::i;:::-;;:::i;68251:27::-;;;;;;;;;;;;;;;;68083:52;;;;;;;;;;-1:-1:-1;68083:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;67541:30;;;;;;;;;;;;;;;;73950:1417;;;;;;:::i;:::-;;:::i;68142:38::-;;;;;;;;;;;;;;;49621:164;;;;;;;;;;-1:-1:-1;49621:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;49742:25:0;;;49718:4;49742:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;49621:164;79265:245;;;;;;;;;;-1:-1:-1;79265:245:0;;;;;:::i;:::-;;:::i;78222:180::-;;;;;;;;;;-1:-1:-1;78222:180:0;;;;;:::i;:::-;;:::i;26426:201::-;;;;;;;;;;-1:-1:-1;26426:201:0;;;;;:::i;:::-;;:::i;60905:224::-;61007:4;-1:-1:-1;;;;;;61031:50:0;;-1:-1:-1;;;61031:50:0;;:90;;;61085:36;61109:11;61085:23;:36::i;:::-;61024:97;60905:224;-1:-1:-1;;60905:224:0:o;77314:109::-;25406:13;:11;:13::i;:::-;77370:6:::1;:15:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;77370:15:0;;::::1;;::::0;;77401:14:::1;::::0;::::1;::::0;::::1;::::0;77379:6;13615:14:1;13608:22;13590:41;;13578:2;13563:18;;13450:187;77401:14:0::1;;;;;;;;77314:109:::0;:::o;47639:100::-;47693:13;47726:5;47719:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47639:100;:::o;49152:171::-;49228:7;49248:23;49263:7;49248:14;:23::i;:::-;-1:-1:-1;49291:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;49291:24:0;;49152:171::o;67415:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48669:417::-;48750:13;48766:23;48781:7;48766:14;:23::i;:::-;48750:39;;48814:5;-1:-1:-1;;;;;48808:11:0;:2;-1:-1:-1;;;;;48808:11:0;;;48800:57;;;;-1:-1:-1;;;48800:57:0;;27713:2:1;48800:57:0;;;27695:21:1;27752:2;27732:18;;;27725:30;27791:34;27771:18;;;27764:62;-1:-1:-1;;;27842:18:1;;;27835:31;27883:19;;48800:57:0;;;;;;;;;24151:10;-1:-1:-1;;;;;48892:21:0;;;;:62;;-1:-1:-1;48917:37:0;48934:5;24151:10;49621:164;:::i;48917:37::-;48870:174;;;;-1:-1:-1;;;48870:174:0;;24445:2:1;48870:174:0;;;24427:21:1;24484:2;24464:18;;;24457:30;24523:34;24503:18;;;24496:62;24594:32;24574:18;;;24567:60;24644:19;;48870:174:0;24243:426:1;48870:174:0;49057:21;49066:2;49070:7;49057:8;:21::i;:::-;48739:347;48669:417;;:::o;78978:145::-;25406:13;:11;:13::i;:::-;79046::::1;:25:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;79046:25:0;;::::1;;::::0;;79087:28:::1;::::0;::::1;::::0;::::1;::::0;79062:9;13615:14:1;13608:22;13590:41;;13578:2;13563:18;;13450:187;76954:249:0;25406:13;:11;:13::i;:::-;52410:4;52434:16;;;:7;:16;;;;;;-1:-1:-1;;;;;52434:16:0;77045:57:::1;;;::::0;-1:-1:-1;;;77045:57:0;;26647:2:1;77045:57:0::1;::::0;::::1;26629:21:1::0;26686:2;26666:18;;;26659:30;26725;26705:18;;;26698:58;26773:18;;77045:57:0::1;26445:352:1::0;77045:57:0::1;77113:19;::::0;;;:10:::1;:19;::::0;;;;;;;:31;;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;;77176:7;77160:35;77185:9;77160:35;;;;;;:::i;:::-;;;;;;;;76954:249:::0;;:::o;49852:336::-;50047:41;24151:10;50080:7;50047:18;:41::i;:::-;50039:100;;;;-1:-1:-1;;;50039:100:0;;;;;;;:::i;:::-;50152:28;50162:4;50168:2;50172:7;50152:9;:28::i;61213:256::-;61310:7;61346:23;61363:5;61346:16;:23::i;:::-;61338:5;:31;61330:87;;;;-1:-1:-1;;;61330:87:0;;16292:2:1;61330:87:0;;;16274:21:1;16331:2;16311:18;;;16304:30;16370:34;16350:18;;;16343:62;-1:-1:-1;;;16421:18:1;;;16414:41;16472:19;;61330:87:0;16090:407:1;61330:87:0;-1:-1:-1;;;;;;61435:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;61213:256::o;79771:187::-;25406:13;:11;:13::i;:::-;79846:58:::1;::::0;79828:12:::1;::::0;79854:10:::1;::::0;79878:21:::1;::::0;79828:12;79846:58;79828:12;79846:58;79878:21;79854:10;79846:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79827:77;;;79923:7;79915:35;;;::::0;-1:-1:-1;;;79915:35:0;;17530:2:1;79915:35:0::1;::::0;::::1;17512:21:1::0;17569:2;17549:18;;;17542:30;-1:-1:-1;;;17588:18:1;;;17581:45;17643:18;;79915:35:0::1;17328:339:1::0;79915:35:0::1;79816:142;79771:187::o:0;50259:185::-;50397:39;50414:4;50420:2;50424:7;50397:39;;;;;;;;;;;;:16;:39::i;75488:358::-;75548:16;75577:23;75603:17;75613:6;75603:9;:17::i;:::-;75577:43;;75631:25;75673:15;75659:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;75659:30:0;;75631:58;;75705:9;75700:113;75720:15;75716:1;:19;75700:113;;;75771:30;75791:6;75799:1;75771:19;:30::i;:::-;75757:8;75766:1;75757:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;75737:3;;;;:::i;:::-;;;;75700:113;;;-1:-1:-1;75830:8:0;75488:358;-1:-1:-1;;;75488:358:0:o;77431:123::-;25406:13;:11;:13::i;:::-;77494:4:::1;:15:::0;;;77525:21:::1;::::0;31004:25:1;;;77525:21:0::1;::::0;30992:2:1;30977:18;77525:21:0::1;30858:177:1::0;71967:831:0;69934:6;;;;;;;69933:7;69925:35;;;;-1:-1:-1;;;69925:35:0;;;;;;;:::i;:::-;10318:1:::1;10916:7;;:19;;10908:63;;;;-1:-1:-1::0;;;10908:63:0::1;;;;;;;:::i;:::-;10318:1;11049:7;:18:::0;72086:10:::2;70049:27;::::0;;;:20:::2;:27;::::0;;;;;::::2;;70048:28;70040:57;;;;-1:-1:-1::0;;;70040:57:0::2;;;;;;;:::i;:::-;72117:16:::3;::::0;::::3;::::0;::::3;;;72109:53;;;::::0;-1:-1:-1;;;72109:53:0;;15219:2:1;72109:53:0::3;::::0;::::3;15201:21:1::0;15258:2;15238:18;;;15231:30;-1:-1:-1;;;15277:18:1;;;15270:54;15341:18;;72109:53:0::3;15017:348:1::0;72109:53:0::3;72201:11;72194:4;;:18;;;;:::i;:::-;72181:9;:31;;72173:62;;;::::0;-1:-1:-1;;;72173:62:0;;21892:2:1;72173:62:0::3;::::0;::::3;21874:21:1::0;21931:2;21911:18;;;21904:30;-1:-1:-1;;;21950:18:1;;;21943:48;22008:18;;72173:62:0::3;21690:342:1::0;72173:62:0::3;72268:1;72254:11;:15;72246:55;;;;-1:-1:-1::0;;;72246:55:0::3;;;;;;;:::i;:::-;72365:13;::::0;72350:10:::3;72334:27;::::0;;;:15:::3;:27;::::0;;;;;72320:41:::3;::::0;:11;:41:::3;:::i;:::-;:58;;72312:95;;;::::0;-1:-1:-1;;;72312:95:0;;22649:2:1;72312:95:0::3;::::0;::::3;22631:21:1::0;22688:2;22668:18;;;22661:30;-1:-1:-1;;;22707:18:1;;;22700:54;22771:18;;72312:95:0::3;22447:348:1::0;72312:95:0::3;72418:14;72435:13;61633:10:::0;:17;;61545:113;72435:13:::3;72491:9;::::0;72418:30;;-1:-1:-1;72467:20:0::3;72476:11:::0;72418:30;72467:20:::3;:::i;:::-;:33;;72459:68;;;::::0;-1:-1:-1;;;72459:68:0;;23002:2:1;72459:68:0::3;::::0;::::3;22984:21:1::0;23041:2;23021:18;;;23014:30;-1:-1:-1;;;23060:18:1;;;23053:52;23122:18;;72459:68:0::3;22800:346:1::0;72459:68:0::3;72540:26;72555:10;72540:14;:26::i;:::-;72595:10;72579:27;::::0;;;:15:::3;:27;::::0;;;;:42;;72610:11;;72579:27;:42:::3;::::0;72610:11;;72579:42:::3;:::i;:::-;::::0;;;-1:-1:-1;72649:1:0::3;::::0;-1:-1:-1;72632:159:0::3;72657:11;72652:1;:16;72632:159;;72690:33;72700:10;72712;72721:1:::0;72712:6;:10:::3;:::i;:::-;72690:9;:33::i;:::-;72768:10;72777:1:::0;72768:6;:10:::3;:::i;:::-;72743:36;::::0;72756:10:::3;::::0;72743:36:::3;::::0;;;::::3;72670:3:::0;::::3;::::0;::::3;:::i;:::-;;;;72632:159;;;-1:-1:-1::0;;10274:1:0::1;11228:7;:22:::0;-1:-1:-1;;;71967:831:0:o;61735:233::-;61810:7;61846:30;61633:10;:17;;61545:113;61846:30;61838:5;:38;61830:95;;;;-1:-1:-1;;;61830:95:0;;28115:2:1;61830:95:0;;;28097:21:1;28154:2;28134:18;;;28127:30;28193:34;28173:18;;;28166:62;-1:-1:-1;;;28244:18:1;;;28237:42;28296:19;;61830:95:0;27913:408:1;61830:95:0;61943:10;61954:5;61943:17;;;;;;;;:::i;:::-;;;;;;;;;61936:24;;61735:233;;;:::o;76805:141::-;25406:13;:11;:13::i;:::-;76880:23:::1;:13;76896:7:::0;;76880:23:::1;:::i;:::-;;76919:19;76930:7;;76919:19;;;;;;;:::i;:::-;;;;;;;;76805:141:::0;;:::o;72819:1098::-;69934:6;;;;;;;69933:7;69925:35;;;;-1:-1:-1;;;69925:35:0;;;;;;;:::i;:::-;10318:1:::1;10916:7;;:19;;10908:63;;;;-1:-1:-1::0;;;10908:63:0::1;;;;;;;:::i;:::-;10318:1;11049:7;:18:::0;72944:10:::2;70049:27;::::0;;;:20:::2;:27;::::0;;;;;::::2;;70048:28;70040:57;;;;-1:-1:-1::0;;;70040:57:0::2;;;;;;;:::i;:::-;72975:21:::3;::::0;;;:12:::3;:21;::::0;;;;;:26;72967:61:::3;;;::::0;-1:-1:-1;;;72967:61:0;;19386:2:1;72967:61:0::3;::::0;::::3;19368:21:1::0;19425:2;19405:18;;;19398:30;-1:-1:-1;;;19444:18:1;;;19437:52;19506:18;;72967:61:0::3;19184:346:1::0;72967:61:0::3;73047:17;::::0;;;:10:::3;:17;::::0;;;;;:22;73039:55:::3;;;::::0;-1:-1:-1;;;73039:55:0;;25940:2:1;73039:55:0::3;::::0;::::3;25922:21:1::0;25979:2;25959:18;;;25952:30;-1:-1:-1;;;25998:18:1;;;25991:50;26058:18;;73039:55:0::3;25738:344:1::0;73039:55:0::3;73133:10;73113:16;73121:7:::0;73113::::3;:16::i;:::-;-1:-1:-1::0;;;;;73113:30:0::3;;73105:59;;;::::0;-1:-1:-1;;;73105:59:0;;23353:2:1;73105:59:0::3;::::0;::::3;23335:21:1::0;23392:2;23372:18;;;23365:30;-1:-1:-1;;;23411:18:1;;;23404:46;23467:18;;73105:59:0::3;23151:340:1::0;73105:59:0::3;73183:53;::::0;-1:-1:-1;;;73183:53:0;;::::3;::::0;::::3;31004:25:1::0;;;73240:10:0::3;::::0;-1:-1:-1;;;;;73196:13:0::3;73183:46;::::0;::::3;::::0;30977:18:1;;73183:53:0::3;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;73183:67:0::3;;73175:95;;;::::0;-1:-1:-1;;;73175:95:0;;24101:2:1;73175:95:0::3;::::0;::::3;24083:21:1::0;24140:2;24120:18;;;24113:30;-1:-1:-1;;;24159:18:1;;;24152:45;24214:18;;73175:95:0::3;23899:339:1::0;73175:95:0::3;73283:12;73346:5;73353:7;73362:10;73308:65;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;73298:76;;;;;;73283:91;;73385:15;73403:49;73441:10;73403:29;:4;:27;:29::i;:::-;:37:::0;::::3;:49::i;:::-;73482:6;::::0;73385:67;;-1:-1:-1;;;;;;73471:17:0;;::::3;-1:-1:-1::0;;;73482:6:0;;::::3;;73471:17;73463:51;;;::::0;-1:-1:-1;;;73463:51:0;;30710:2:1;73463:51:0::3;::::0;::::3;30692:21:1::0;30749:2;30729:18;;;30722:30;-1:-1:-1;;;30768:18:1;;;30761:51;30829:18;;73463:51:0::3;30508:345:1::0;73463:51:0::3;73527:12;:14:::0;;;:12:::3;:14;::::0;::::3;:::i;:::-;::::0;;;-1:-1:-1;;73576:12:0::3;::::0;;73552:21:::3;::::0;;;:12:::3;:21;::::0;;;;;;;:36;;;73599:17;;;:10:::3;:17:::0;;;;;:32;;;73670:157;;::::3;::::0;;::::3;::::0;;;;;;;::::3;::::0;;;73766:15:::3;73670:157:::0;;;;;;73805:10:::3;73670:157:::0;;;;;;;73644:23;;;:9:::3;:23:::0;;;;;;:183;;;;;;::::3;::::0;::::3;::::0;;::::3;::::0;::::3;::::0;;;::::3;::::0;;::::3;::::0;;-1:-1:-1;;;;;;73644:183:0::3;-1:-1:-1::0;;;;;73644:183:0;;::::3;::::0;;;::::3;::::0;;;73851:12;;73843:66;;31693:25:1;;;31734:18;;;31727:34;;;31777:18;;;31770:34;;;31820:18;;;31813:34;;;;73805:10:0;73843:66:::3;::::0;31665:19:1;73843:66:0::3;;;;;;;-1:-1:-1::0;;10274:1:0::1;11228:7;:22:::0;-1:-1:-1;;;;72819:1098:0:o;47350:222::-;47422:7;47458:16;;;:7;:16;;;;;;-1:-1:-1;;;;;47458:16:0;47493:19;47485:56;;;;-1:-1:-1;;;47485:56:0;;27004:2:1;47485:56:0;;;26986:21:1;27043:2;27023:18;;;27016:30;-1:-1:-1;;;27062:18:1;;;27055:54;27126:18;;47485:56:0;26802:348:1;79131:126:0;25406:13;:11;:13::i;:::-;79195:6:::1;:16:::0;;-1:-1:-1;;;;;;79195:16:0::1;-1:-1:-1::0;;;;;;;;79195:16:0;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;79227:22:::1;::::0;11595:51:1;;;79227:22:0::1;::::0;11583:2:1;11568:18;79227:22:0::1;11449:203:1::0;78410:223:0;25406:13;:11;:13::i;:::-;61633:10;:17;78488:10:::1;:27;;78480:68;;;::::0;-1:-1:-1;;;78480:68:0;;28528:2:1;78480:68:0::1;::::0;::::1;28510:21:1::0;28567:2;28547:18;;;28540:30;28606;28586:18;;;28579:58;28654:18;;78480:68:0::1;28326:352:1::0;78480:68:0::1;78559:9;:22:::0;;;78597:28:::1;::::0;31004:25:1;;;78597:28:0::1;::::0;30992:2:1;30977:18;78597:28:0::1;30858:177:1::0;47081:207:0;47153:7;-1:-1:-1;;;;;47181:19:0;;47173:73;;;;-1:-1:-1;;;47173:73:0;;22239:2:1;47173:73:0;;;22221:21:1;22278:2;22258:18;;;22251:30;22317:34;22297:18;;;22290:62;-1:-1:-1;;;22368:18:1;;;22361:39;22417:19;;47173:73:0;22037:405:1;47173:73:0;-1:-1:-1;;;;;;47264:16:0;;;;;:9;:16;;;;;;;47081:207::o;26168:103::-;25406:13;:11;:13::i;:::-;26233:30:::1;26260:1;26233:18;:30::i;:::-;26168:103::o:0;77971:243::-;25406:13;:11;:13::i;:::-;78072:15:::1;78059:10;:28;78051:58;;;::::0;-1:-1:-1;;;78051:58:0;;20091:2:1;78051:58:0::1;::::0;::::1;20073:21:1::0;20130:2;20110:18;;;20103:30;-1:-1:-1;;;20149:18:1;;;20142:47;20206:18;;78051:58:0::1;19889:341:1::0;78051:58:0::1;78120:19;:32:::0;;;78168:38:::1;::::0;31004:25:1;;;78168:38:0::1;::::0;30992:2:1;30977:18;78168:38:0::1;30858:177:1::0;77562::0;25406:13;:11;:13::i;:::-;77643::::1;:33:::0;;;77692:39:::1;::::0;31004:25:1;;;77692:39:0::1;::::0;30992:2:1;30977:18;77692:39:0::1;30858:177:1::0;71500:440:0;25406:13;:11;:13::i;:::-;71606:1:::1;71592:11;:15;71584:55;;;;-1:-1:-1::0;;;71584:55:0::1;;;;;;;:::i;:::-;71650:14;71667:13;61633:10:::0;:17;;61545:113;71667:13:::1;71723:9;::::0;71650:30;;-1:-1:-1;71699:20:0::1;71708:11:::0;71650:30;71699:20:::1;:::i;:::-;:33;;71691:68;;;::::0;-1:-1:-1;;;71691:68:0;;23002:2:1;71691:68:0::1;::::0;::::1;22984:21:1::0;23041:2;23021:18;;;23014:30;-1:-1:-1;;;23060:18:1;;;23053:52;23122:18;;71691:68:0::1;22800:346:1::0;71691:68:0::1;71789:1;71772:161;71797:11;71792:1;:16;71772:161;;71830:34;71840:11:::0;71853:10:::1;71862:1:::0;71853:6;:10:::1;:::i;71830:34::-;71910:10;71919:1:::0;71910:6;:10:::1;:::i;:::-;71884:37;::::0;-1:-1:-1;;;;;71884:37:0;::::1;::::0;::::1;::::0;;;::::1;71810:3:::0;::::1;::::0;::::1;:::i;:::-;;;;71772:161;;;;71573:367;71500:440:::0;;:::o;78641:156::-;25406:13;:11;:13::i;:::-;78713::::1;:27:::0;;-1:-1:-1;;78713:27:0::1;::::0;::::1;;::::0;;::::1;::::0;;;78756:33:::1;::::0;13590:41:1;;;78756:33:0::1;::::0;13578:2:1;13563:18;78756:33:0::1;13450:187:1::0;70504:984:0;69934:6;;;;;;;69933:7;69925:35;;;;-1:-1:-1;;;69925:35:0;;;;;;;:::i;:::-;10318:1:::1;10916:7;;:19;;10908:63;;;;-1:-1:-1::0;;;10908:63:0::1;;;;;;;:::i;:::-;10318:1;11049:7;:18:::0;70618:10:::2;70049:27;::::0;;;:20:::2;:27;::::0;;;;;::::2;;70048:28;70040:57;;;;-1:-1:-1::0;;;70040:57:0::2;;;;;;;:::i;:::-;70649:13:::3;::::0;::::3;;70641:50;;;::::0;-1:-1:-1;;;70641:50:0;;15219:2:1;70641:50:0::3;::::0;::::3;15201:21:1::0;15258:2;15238:18;;;15231:30;-1:-1:-1;;;15277:18:1;;;15270:54;15341:18;;70641:50:0::3;15017:348:1::0;70641:50:0::3;70728:19;;70710:15;:37;70702:63;;;::::0;-1:-1:-1;;;70702:63:0;;25598:2:1;70702:63:0::3;::::0;::::3;25580:21:1::0;25637:2;25617:18;;;25610:30;-1:-1:-1;;;25656:18:1;;;25649:43;25709:18;;70702:63:0::3;25396:337:1::0;70702:63:0::3;70805:10;70784:32;::::0;;;:20:::3;:32;::::0;;;;;::::3;;70776:65;;;::::0;-1:-1:-1;;;70776:65:0;;28885:2:1;70776:65:0::3;::::0;::::3;28867:21:1::0;28924:2;28904:18;;;28897:30;-1:-1:-1;;;28943:18:1;;;28936:50;29003:18;;70776:65:0::3;28683:344:1::0;70776:65:0::3;70880:11;70873:4;;:18;;;;:::i;:::-;70860:9;:31;;70852:62;;;::::0;-1:-1:-1;;;70852:62:0;;21892:2:1;70852:62:0::3;::::0;::::3;21874:21:1::0;21931:2;21911:18;;;21904:30;-1:-1:-1;;;21950:18:1;;;21943:48;22008:18;;70852:62:0::3;21690:342:1::0;70852:62:0::3;70947:1;70933:11;:15;70925:55;;;;-1:-1:-1::0;;;70925:55:0::3;;;;;;;:::i;:::-;71044:13;::::0;71029:10:::3;71013:27;::::0;;;:15:::3;:27;::::0;;;;;70999:41:::3;::::0;:11;:41:::3;:::i;:::-;:58;;70991:95;;;::::0;-1:-1:-1;;;70991:95:0;;22649:2:1;70991:95:0::3;::::0;::::3;22631:21:1::0;22688:2;22668:18;;;22661:30;-1:-1:-1;;;22707:18:1;;;22700:54;22771:18;;70991:95:0::3;22447:348:1::0;70991:95:0::3;71097:14;71114:13;61633:10:::0;:17;;61545:113;71114:13:::3;71170;::::0;71097:30;;-1:-1:-1;71146:20:0::3;71155:11:::0;71097:30;71146:20:::3;:::i;:::-;:37;;71138:79;;;::::0;-1:-1:-1;;;71138:79:0;;26289:2:1;71138:79:0::3;::::0;::::3;26271:21:1::0;26328:2;26308:18;;;26301:30;26367:31;26347:18;;;26340:59;26416:18;;71138:79:0::3;26087:353:1::0;71138:79:0::3;71230:26;71245:10;71230:14;:26::i;:::-;71285:10;71269:27;::::0;;;:15:::3;:27;::::0;;;;:42;;71300:11;;71269:27;:42:::3;::::0;71300:11;;71269:42:::3;:::i;:::-;::::0;;;-1:-1:-1;71339:1:0::3;::::0;-1:-1:-1;71322:159:0::3;71347:11;71342:1;:16;71322:159;;71380:33;71390:10;71402;71411:1:::0;71402:6;:10:::3;:::i;71380:33::-;71458:10;71467:1:::0;71458:6;:10:::3;:::i;:::-;71433:36;::::0;71446:10:::3;::::0;71433:36:::3;::::0;;;::::3;71360:3:::0;::::3;::::0;::::3;:::i;:::-;;;;71322:159;;47808:104:::0;47864:13;47897:7;47890:14;;;;;:::i;49395:155::-;49490:52;24151:10;49523:8;49533;49490:18;:52::i;:::-;49395:155;;:::o;77211:95::-;25406:13;:11;:13::i;:::-;77257:8:::1;:15:::0;;-1:-1:-1;;77257:15:0::1;::::0;::::1;::::0;;77288:10:::1;::::0;::::1;::::0;77257:15;;77288:10:::1;77211:95::o:0;78805:165::-;25406:13;:11;:13::i;:::-;78880:16:::1;:30:::0;;;::::1;;;;-1:-1:-1::0;;78880:30:0;;::::1;;::::0;;78926:36:::1;::::0;::::1;::::0;::::1;::::0;78899:11;13615:14:1;13608:22;13590:41;;13578:2;13563:18;;13450:187;50515:323:0;50689:41;24151:10;50722:7;50689:18;:41::i;:::-;50681:100;;;;-1:-1:-1;;;50681:100:0;;;;;;;:::i;:::-;50792:38;50806:4;50812:2;50816:7;50825:4;50792:13;:38::i;77747:216::-;25406:13;:11;:13::i;:::-;77837:9:::1;;77826:7;:20;;77818:58;;;::::0;-1:-1:-1;;;77818:58:0;;21538:2:1;77818:58:0::1;::::0;::::1;21520:21:1::0;21577:2;21557:18;;;21550:30;21616:27;21596:18;;;21589:55;21661:18;;77818:58:0::1;21336:349:1::0;77818:58:0::1;77887:13;:23:::0;;;77926:29:::1;::::0;31004:25:1;;;77926:29:0::1;::::0;30992:2:1;30977:18;77926:29:0::1;30858:177:1::0;79518:245:0;25406:13;:11;:13::i;:::-;79603:9:::1;79598:115;79622:9;:16;79618:1;:20;79598:115;;;79697:4;79660:20;:34;79681:9;79691:1;79681:12;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;79660:34:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;79660:34:0;:41;;-1:-1:-1;;79660:41:0::1;::::0;::::1;;::::0;;;::::1;::::0;;79640:3;::::1;::::0;::::1;:::i;:::-;;;;79598:115;;;;79728:27;79745:9;79728:27;;;;;;:::i;75917:854::-:0;52410:4;52434:16;;;:7;:16;;;;;;75990:13;;-1:-1:-1;;;;;52434:16:0;76016:60;;;;-1:-1:-1;;;76016:60:0;;15932:2:1;76016:60:0;;;15914:21:1;15971:2;15951:18;;;15944:30;16010:33;15990:18;;;15983:61;16061:18;;76016:60:0;15730:355:1;76016:60:0;76129:8;;76089:23;;76129:8;;;;;76124:132;;76166:14;76154:26;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76124:132;;;76225:19;;;;:10;:19;;;;;76213:31;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76124:132;76268:18;76289:10;:8;:10::i;:::-;76268:31;;76381:4;76375:18;76397:1;76375:23;76371:72;;;-1:-1:-1;76422:9:0;75917:854;-1:-1:-1;;75917:854:0:o;76371:72::-;76547:23;;:27;76543:108;;76622:4;76628:9;76605:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;76591:48;;;;75917:854;;;:::o;76543:108::-;-1:-1:-1;;76726:9:0;;;;;;;;;-1:-1:-1;76726:9:0;;;75917:854;-1:-1:-1;;75917:854:0:o;73950:1417::-;69934:6;;;;;;;69933:7;69925:35;;;;-1:-1:-1;;;69925:35:0;;;;;;;:::i;:::-;10318:1:::1;10916:7;;:19;;10908:63;;;;-1:-1:-1::0;;;10908:63:0::1;;;;;;;:::i;:::-;10318:1;11049:7;:18:::0;74133:10:::2;70049:27;::::0;;;:20:::2;:27;::::0;;;;;::::2;;70048:28;70040:57;;;;-1:-1:-1::0;;;70040:57:0::2;;;;;;;:::i;:::-;74164:21:::3;::::0;;;:12:::3;:21;::::0;;;;;:26;74156:61:::3;;;::::0;-1:-1:-1;;;74156:61:0;;19386:2:1;74156:61:0::3;::::0;::::3;19368:21:1::0;19425:2;19405:18;;;19398:30;-1:-1:-1;;;19444:18:1;;;19437:52;19506:18;;74156:61:0::3;19184:346:1::0;74156:61:0::3;74236:17;::::0;;;:10:::3;:17;::::0;;;;;:22;74228:55:::3;;;::::0;-1:-1:-1;;;74228:55:0;;25940:2:1;74228:55:0::3;::::0;::::3;25922:21:1::0;25979:2;25959:18;;;25952:30;-1:-1:-1;;;25998:18:1;;;25991:50;26058:18;;74228:55:0::3;25738:344:1::0;74228:55:0::3;74322:10;74302:16;74310:7:::0;74302::::3;:16::i;:::-;-1:-1:-1::0;;;;;74302:30:0::3;;74294:59;;;::::0;-1:-1:-1;;;74294:59:0;;23353:2:1;74294:59:0::3;::::0;::::3;23335:21:1::0;23392:2;23372:18;;;23365:30;-1:-1:-1;;;23411:18:1;;;23404:46;23467:18;;74294:59:0::3;23151:340:1::0;74294:59:0::3;74429:11;-1:-1:-1::0;;;;;74372:68:0::3;74385:13;-1:-1:-1::0;;;;;74372:46:0::3;;74419:5;74372:53;;;;;;;;;;;;;31004:25:1::0;;30992:2;30977:18;;30858:177;74372:53:0::3;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;74372:68:0::3;;74364:108;;;::::0;-1:-1:-1;;;74364:108:0;;27357:2:1;74364:108:0::3;::::0;::::3;27339:21:1::0;27396:2;27376:18;;;27369:30;27435:29;27415:18;;;27408:57;27482:18;;74364:108:0::3;27155:351:1::0;74364:108:0::3;74485:12;74548:5;74555:7;74564:10;74510:65;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;74500:76;;;;;;74485:91;;74587:15;74605:53;74643:14;74605:29;:4;:27;:29::i;:53::-;74688:6;::::0;74587:71;;-1:-1:-1;;;;;;74677:17:0;;::::3;-1:-1:-1::0;;;74688:6:0;;::::3;;74677:17;74669:51;;;::::0;-1:-1:-1;;;74669:51:0;;30710:2:1;74669:51:0::3;::::0;::::3;30692:21:1::0;30749:2;30729:18;;;30722:30;-1:-1:-1;;;30768:18:1;;;30761:51;30829:18;;74669:51:0::3;30508:345:1::0;74669:51:0::3;74750:74;::::0;-1:-1:-1;;;74750:74:0::3;::::0;::::3;9656:28:1::0;9700:12;;;9693:28;;;9737:12;;;9730:28;;;-1:-1:-1;;;;;;74800:10:0::3;9846:2:1::0;9842:15;;;9838:24;;9824:12;;;9817:46;9897:15;;;9893:24;9879:12;;;9872:46;9934:13;;74750:74:0::3;;;;;;;;;;;;74740:85;;;;;;74733:92;;74846:53;74884:14;74846:29;:4;:27;:29::i;:53::-;74929:6;::::0;74836:63;;-1:-1:-1;;;;;;74918:17:0;;::::3;-1:-1:-1::0;;;74929:6:0;;::::3;;74918:17;74910:54;;;::::0;-1:-1:-1;;;74910:54:0;;20437:2:1;74910:54:0::3;::::0;::::3;20419:21:1::0;20476:2;20456:18;;;20449:30;20515:26;20495:18;;;20488:54;20559:18;;74910:54:0::3;20235:348:1::0;74910:54:0::3;74977:12;:14:::0;;;:12:::3;:14;::::0;::::3;:::i;:::-;::::0;;;-1:-1:-1;;75026:12:0::3;::::0;;75002:21:::3;::::0;;;:12:::3;:21;::::0;;;;;;;:36;;;75049:17;;;:10:::3;:17:::0;;;;;:32;;;75120:157;;::::3;::::0;;::::3;::::0;;;;;;;::::3;::::0;;;75216:15:::3;75120:157:::0;;;;;;75255:10:::3;75120:157:::0;;;;;;;75094:23;;;:9:::3;:23:::0;;;;;;:183;;;;;;::::3;::::0;::::3;::::0;;::::3;::::0;::::3;::::0;;;::::3;::::0;;::::3;::::0;;-1:-1:-1;;;;;;75094:183:0::3;-1:-1:-1::0;;;;;75094:183:0;;::::3;::::0;;;::::3;::::0;;;75301:12;;75293:66;;31693:25:1;;;31734:18;;;31727:34;;;31777:18;;;31770:34;;;31820:18;;;31813:34;;;;75255:10:0;75293:66:::3;::::0;31665:19:1;75293:66:0::3;;;;;;;-1:-1:-1::0;;10274:1:0::1;11228:7;:22:::0;-1:-1:-1;;;;;;73950:1417:0:o;79265:245::-;25406:13;:11;:13::i;:::-;79350:9:::1;79345:115;79369:9;:16;79365:1;:20;79345:115;;;79444:4;79407:20;:34;79428:9;79438:1;79428:12;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;79407:34:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;79407:34:0;:41;;-1:-1:-1;;79407:41:0::1;::::0;::::1;;::::0;;;::::1;::::0;;79387:3;::::1;::::0;::::1;:::i;:::-;;;;79345:115;;;;79475:27;79492:9;79475:27;;;;;;:::i;78222:180::-:0;25406:13;:11;:13::i;:::-;78308:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;:::-;;78356:38;78378:15;78356:38;;;;;;:::i;26426:201::-:0;25406:13;:11;:13::i;:::-;-1:-1:-1;;;;;26515:22:0;::::1;26507:73;;;::::0;-1:-1:-1;;;26507:73:0;;17123:2:1;26507:73:0::1;::::0;::::1;17105:21:1::0;17162:2;17142:18;;;17135:30;17201:34;17181:18;;;17174:62;-1:-1:-1;;;17252:18:1;;;17245:36;17298:19;;26507:73:0::1;16921:402:1::0;26507:73:0::1;26591:28;26610:8;26591:18;:28::i;46712:305::-:0;46814:4;-1:-1:-1;;;;;;46851:40:0;;-1:-1:-1;;;46851:40:0;;:105;;-1:-1:-1;;;;;;;46908:48:0;;-1:-1:-1;;;46908:48:0;46851:105;:158;;;-1:-1:-1;;;;;;;;;;38483:40:0;;;46973:36;38374:157;25685:132;25593:6;;-1:-1:-1;;;;;25593:6:0;24151:10;25749:23;25741:68;;;;-1:-1:-1;;;25741:68:0;;25237:2:1;25741:68:0;;;25219:21:1;;;25256:18;;;25249:30;25315:34;25295:18;;;25288:62;25367:18;;25741:68:0;25035:356:1;57127:135:0;52410:4;52434:16;;;:7;:16;;;;;;-1:-1:-1;;;;;52434:16:0;57201:53;;;;-1:-1:-1;;;57201:53:0;;27004:2:1;57201:53:0;;;26986:21:1;27043:2;27023:18;;;27016:30;-1:-1:-1;;;27062:18:1;;;27055:54;27126:18;;57201:53:0;26802:348:1;56406:174:0;56481:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;56481:29:0;-1:-1:-1;;;;;56481:29:0;;;;;;;;:24;;56535:23;56481:24;56535:14;:23::i;:::-;-1:-1:-1;;;;;56526:46:0;;;;;;;;;;;56406:174;;:::o;52639:264::-;52732:4;52749:13;52765:23;52780:7;52765:14;:23::i;:::-;52749:39;;52818:5;-1:-1:-1;;;;;52807:16:0;:7;-1:-1:-1;;;;;52807:16:0;;:52;;;-1:-1:-1;;;;;;49742:25:0;;;49718:4;49742:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;52827:32;52807:87;;;;52887:7;-1:-1:-1;;;;;52863:31:0;:20;52875:7;52863:11;:20::i;:::-;-1:-1:-1;;;;;52863:31:0;;52807:87;52799:96;52639:264;-1:-1:-1;;;;52639:264:0:o;55662:625::-;55821:4;-1:-1:-1;;;;;55794:31:0;:23;55809:7;55794:14;:23::i;:::-;-1:-1:-1;;;;;55794:31:0;;55786:81;;;;-1:-1:-1;;;55786:81:0;;17874:2:1;55786:81:0;;;17856:21:1;17913:2;17893:18;;;17886:30;17952:34;17932:18;;;17925:62;-1:-1:-1;;;18003:18:1;;;17996:35;18048:19;;55786:81:0;17672:401:1;55786:81:0;-1:-1:-1;;;;;55886:16:0;;55878:65;;;;-1:-1:-1;;;55878:65:0;;18981:2:1;55878:65:0;;;18963:21:1;19020:2;19000:18;;;18993:30;19059:34;19039:18;;;19032:62;-1:-1:-1;;;19110:18:1;;;19103:34;19154:19;;55878:65:0;18779:400:1;55878:65:0;55956:39;55977:4;55983:2;55987:7;55956:20;:39::i;:::-;56060:29;56077:1;56081:7;56060:8;:29::i;:::-;-1:-1:-1;;;;;56102:15:0;;;;;;:9;:15;;;;;:20;;56121:1;;56102:15;:20;;56121:1;;56102:20;:::i;:::-;;;;-1:-1:-1;;;;;;;56133:13:0;;;;;;:9;:13;;;;;:18;;56150:1;;56133:13;:18;;56150:1;;56133:18;:::i;:::-;;;;-1:-1:-1;;56162:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;56162:21:0;-1:-1:-1;;;;;56162:21:0;;;;;;;;;56201:27;;56162:16;;56201:27;;;;;;;48739:347;48669:417;;:::o;70145:339::-;70222:13;;;;;;;70219:258;;;70277:44;;;-1:-1:-1;;;70277:44:0;;;11089:27:1;-1:-1:-1;;;;;;70310:10:0;11154:2:1;11150:15;11146:53;11132:12;;;11125:75;70252:12:0;;11216::1;70277:44:0;;;;;;;;;;;;70267:55;;;;;;70252:70;;70337:15;70355:49;70393:10;70355:29;:4;:27;:29::i;:49::-;70438:6;;70337:67;;-1:-1:-1;;;;;;70427:17:0;;;-1:-1:-1;;;70438:6:0;;;;70427:17;70419:46;;;;-1:-1:-1;;;70419:46:0;;29234:2:1;70419:46:0;;;29216:21:1;29273:2;29253:18;;;29246:30;-1:-1:-1;;;29292:18:1;;;29285:46;29348:18;;70419:46:0;29032:340:1;53245:110:0;53321:26;53331:2;53335:7;53321:26;;;;;;;;;;;;:9;:26::i;22077:269::-;22279:58;;10200:66:1;22279:58:0;;;10188:79:1;10283:12;;;10276:28;;;22146:7:0;;10320:12:1;;22279:58:0;;;;;;;;;;;;22269:69;;;;;;22262:76;;22077:269;;;:::o;18275:231::-;18353:7;18374:17;18393:18;18415:27;18426:4;18432:9;18415:10;:27::i;:::-;18373:69;;;;18453:18;18465:5;18453:11;:18::i;26787:191::-;26880:6;;;-1:-1:-1;;;;;26897:17:0;;;-1:-1:-1;;;;;;26897:17:0;;;;;;;26930:40;;26880:6;;;26897:17;26880:6;;26930:40;;26861:16;;26930:40;26850:128;26787:191;:::o;56723:315::-;56878:8;-1:-1:-1;;;;;56869:17:0;:5;-1:-1:-1;;;;;56869:17:0;;;56861:55;;;;-1:-1:-1;;;56861:55:0;;19737:2:1;56861:55:0;;;19719:21:1;19776:2;19756:18;;;19749:30;19815:27;19795:18;;;19788:55;19860:18;;56861:55:0;19535:349:1;56861:55:0;-1:-1:-1;;;;;56927:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;56927:46:0;;;;;;;;;;56989:41;;13590::1;;;56989::0;;13563:18:1;56989:41:0;;;;;;;56723:315;;;:::o;51719:313::-;51875:28;51885:4;51891:2;51895:7;51875:9;:28::i;:::-;51922:47;51945:4;51951:2;51955:7;51964:4;51922:22;:47::i;:::-;51914:110;;;;-1:-1:-1;;;51914:110:0;;;;;;;:::i;80024:114::-;80084:13;80117;80110:20;;;;;:::i;62581:589::-;-1:-1:-1;;;;;62787:18:0;;62783:187;;62822:40;62854:7;63997:10;:17;;63970:24;;;;:15;:24;;;;;:44;;;64025:24;;;;;;;;;;;;63893:164;62822:40;62783:187;;;62892:2;-1:-1:-1;;;;;62884:10:0;:4;-1:-1:-1;;;;;62884:10:0;;62880:90;;62911:47;62944:4;62950:7;62911:32;:47::i;:::-;-1:-1:-1;;;;;62984:16:0;;62980:183;;63017:45;63054:7;63017:36;:45::i;62980:183::-;63090:4;-1:-1:-1;;;;;63084:10:0;:2;-1:-1:-1;;;;;63084:10:0;;63080:83;;63111:40;63139:2;63143:7;63111:27;:40::i;53582:319::-;53711:18;53717:2;53721:7;53711:5;:18::i;:::-;53762:53;53793:1;53797:2;53801:7;53810:4;53762:22;:53::i;:::-;53740:153;;;;-1:-1:-1;;;53740:153:0;;;;;;;:::i;16069:1404::-;16150:7;16159:12;16384:9;:16;16404:2;16384:22;16380:1086;;;16728:4;16713:20;;16707:27;16778:4;16763:20;;16757:27;16836:4;16821:20;;16815:27;16423:9;16807:36;16879:25;16890:4;16807:36;16707:27;16757;16879:10;:25::i;:::-;16872:32;;;;;;;;;16380:1086;16926:9;:16;16946:2;16926:22;16922:544;;;17249:4;17234:20;;17228:27;17300:4;17285:20;;17279:27;17342:23;17353:4;17228:27;17279;17342:10;:23::i;:::-;17335:30;;;;;;;;16922:544;-1:-1:-1;17414:1:0;;-1:-1:-1;17418:35:0;16922:544;16069:1404;;;;;:::o;14340:643::-;14418:20;14409:5;:29;;;;;;;;:::i;:::-;;14405:571;;;14340:643;:::o;14405:571::-;14516:29;14507:5;:38;;;;;;;;:::i;:::-;;14503:473;;;14562:34;;-1:-1:-1;;;14562:34:0;;14866:2:1;14562:34:0;;;14848:21:1;14905:2;14885:18;;;14878:30;14944:26;14924:18;;;14917:54;14988:18;;14562:34:0;14664:348:1;14503:473:0;14627:35;14618:5;:44;;;;;;;;:::i;:::-;;14614:362;;;14679:41;;-1:-1:-1;;;14679:41:0;;15572:2:1;14679:41:0;;;15554:21:1;15611:2;15591:18;;;15584:30;15650:33;15630:18;;;15623:61;15701:18;;14679:41:0;15370:355:1;14614:362:0;14751:30;14742:5;:39;;;;;;;;:::i;:::-;;14738:238;;;14798:44;;-1:-1:-1;;;14798:44:0;;21135:2:1;14798:44:0;;;21117:21:1;21174:2;21154:18;;;21147:30;21213:34;21193:18;;;21186:62;-1:-1:-1;;;21264:18:1;;;21257:32;21306:19;;14798:44:0;20933:398:1;14738:238:0;14873:30;14864:5;:39;;;;;;;;:::i;:::-;;14860:116;;;14920:44;;-1:-1:-1;;;14920:44:0;;23698:2:1;14920:44:0;;;23680:21:1;23737:2;23717:18;;;23710:30;23776:34;23756:18;;;23749:62;-1:-1:-1;;;23827:18:1;;;23820:32;23869:19;;14920:44:0;23496:398:1;57826:853:0;57980:4;-1:-1:-1;;;;;58001:13:0;;28513:19;:23;57997:675;;58037:71;;-1:-1:-1;;;58037:71:0;;-1:-1:-1;;;;;58037:36:0;;;;;:71;;24151:10;;58088:4;;58094:7;;58103:4;;58037:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58037:71:0;;;;;;;;-1:-1:-1;;58037:71:0;;;;;;;;;;;;:::i;:::-;;;58033:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58278:13:0;;58274:328;;58321:60;;-1:-1:-1;;;58321:60:0;;;;;;;:::i;58274:328::-;58552:6;58546:13;58537:6;58533:2;58529:15;58522:38;58033:584;-1:-1:-1;;;;;;58159:51:0;-1:-1:-1;;;58159:51:0;;-1:-1:-1;58152:58:0;;57997:675;-1:-1:-1;58656:4:0;57826:853;;;;;;:::o;64684:988::-;64950:22;65000:1;64975:22;64992:4;64975:16;:22::i;:::-;:26;;;;:::i;:::-;65012:18;65033:26;;;:17;:26;;;;;;64950:51;;-1:-1:-1;65166:28:0;;;65162:328;;-1:-1:-1;;;;;65233:18:0;;65211:19;65233:18;;;:12;:18;;;;;;;;:34;;;;;;;;;65284:30;;;;;;:44;;;65401:30;;:17;:30;;;;;:43;;;65162:328;-1:-1:-1;65586:26:0;;;;:17;:26;;;;;;;;65579:33;;;-1:-1:-1;;;;;65630:18:0;;;;;:12;:18;;;;;:34;;;;;;;65623:41;64684:988::o;65967:1079::-;66245:10;:17;66220:22;;66245:21;;66265:1;;66245:21;:::i;:::-;66277:18;66298:24;;;:15;:24;;;;;;66671:10;:26;;66220:46;;-1:-1:-1;66298:24:0;;66220:46;;66671:26;;;;;;:::i;:::-;;;;;;;;;66649:48;;66735:11;66710:10;66721;66710:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;66815:28;;;:15;:28;;;;;;;:41;;;66987:24;;;;;66980:31;67022:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;66038:1008;;;65967:1079;:::o;63471:221::-;63556:14;63573:20;63590:2;63573:16;:20::i;:::-;-1:-1:-1;;;;;63604:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;63649:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;63471:221:0:o;54237:439::-;-1:-1:-1;;;;;54317:16:0;;54309:61;;;;-1:-1:-1;;;54309:61:0;;24876:2:1;54309:61:0;;;24858:21:1;;;24895:18;;;24888:30;24954:34;24934:18;;;24927:62;25006:18;;54309:61:0;24674:356:1;54309:61:0;52410:4;52434:16;;;:7;:16;;;;;;-1:-1:-1;;;;;52434:16:0;:30;54381:58;;;;-1:-1:-1;;;54381:58:0;;18280:2:1;54381:58:0;;;18262:21:1;18319:2;18299:18;;;18292:30;18358;18338:18;;;18331:58;18406:18;;54381:58:0;18078:352:1;54381:58:0;54452:45;54481:1;54485:2;54489:7;54452:20;:45::i;:::-;-1:-1:-1;;;;;54510:13:0;;;;;;:9;:13;;;;;:18;;54527:1;;54510:13;:18;;54527:1;;54510:18;:::i;:::-;;;;-1:-1:-1;;54539:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;54539:21:0;-1:-1:-1;;;;;54539:21:0;;;;;;;;54578:33;;54539:16;;;54578:33;;54539:16;;54578:33;49395:155;;:::o;19727:1632::-;19858:7;;20792:66;20779:79;;20775:163;;;-1:-1:-1;20891:1:0;;-1:-1:-1;20895:30:0;20875:51;;20775:163;20952:1;:7;;20957:2;20952:7;;:18;;;;;20963:1;:7;;20968:2;20963:7;;20952:18;20948:102;;;-1:-1:-1;21003:1:0;;-1:-1:-1;21007:30:0;20987:51;;20948:102;21164:24;;;21147:14;21164:24;;;;;;;;;13869:25:1;;;13942:4;13930:17;;13910:18;;;13903:45;;;;13964:18;;;13957:34;;;14007:18;;;14000:34;;;21164:24:0;;13841:19:1;;21164:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;21164:24:0;;-1:-1:-1;;21164:24:0;;;-1:-1:-1;;;;;;;21203:20:0;;21199:103;;21256:1;21260:29;21240:50;;;;;;;21199:103;21322:6;-1:-1:-1;21330:20:0;;-1:-1:-1;19727:1632:0;;;;;;;;:::o;18769:344::-;18883:7;;-1:-1:-1;;;;;18929:80:0;;18883:7;19036:25;19052:3;19037:18;;;19059:2;19036:25;:::i;:::-;19020:42;;19080:25;19091:4;19097:1;19100;19103;19080:10;:25::i;:::-;19073:32;;;;;;18769:344;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:160:1;79:20;;135:13;;128:21;118:32;;108:60;;164:1;161;154:12;108:60;14:160;;;:::o;179:530::-;221:5;274:3;267:4;259:6;255:17;251:27;241:55;;292:1;289;282:12;241:55;328:6;315:20;354:18;350:2;347:26;344:52;;;376:18;;:::i;:::-;420:55;463:2;444:13;;-1:-1:-1;;440:27:1;469:4;436:38;420:55;:::i;:::-;500:2;491:7;484:19;546:3;539:4;534:2;526:6;522:15;518:26;515:35;512:55;;;563:1;560;553:12;512:55;628:2;621:4;613:6;609:17;602:4;593:7;589:18;576:55;676:1;651:16;;;669:4;647:27;640:38;;;;655:7;179:530;-1:-1:-1;;;179:530:1:o;714:247::-;773:6;826:2;814:9;805:7;801:23;797:32;794:52;;;842:1;839;832:12;794:52;881:9;868:23;900:31;925:5;900:31;:::i;:::-;950:5;714:247;-1:-1:-1;;;714:247:1:o;966:251::-;1036:6;1089:2;1077:9;1068:7;1064:23;1060:32;1057:52;;;1105:1;1102;1095:12;1057:52;1137:9;1131:16;1156:31;1181:5;1156:31;:::i;1222:388::-;1290:6;1298;1351:2;1339:9;1330:7;1326:23;1322:32;1319:52;;;1367:1;1364;1357:12;1319:52;1406:9;1393:23;1425:31;1450:5;1425:31;:::i;:::-;1475:5;-1:-1:-1;1532:2:1;1517:18;;1504:32;1545:33;1504:32;1545:33;:::i;:::-;1597:7;1587:17;;;1222:388;;;;;:::o;1615:456::-;1692:6;1700;1708;1761:2;1749:9;1740:7;1736:23;1732:32;1729:52;;;1777:1;1774;1767:12;1729:52;1816:9;1803:23;1835:31;1860:5;1835:31;:::i;:::-;1885:5;-1:-1:-1;1942:2:1;1927:18;;1914:32;1955:33;1914:32;1955:33;:::i;:::-;1615:456;;2007:7;;-1:-1:-1;;;2061:2:1;2046:18;;;;2033:32;;1615:456::o;2076:665::-;2171:6;2179;2187;2195;2248:3;2236:9;2227:7;2223:23;2219:33;2216:53;;;2265:1;2262;2255:12;2216:53;2304:9;2291:23;2323:31;2348:5;2323:31;:::i;:::-;2373:5;-1:-1:-1;2430:2:1;2415:18;;2402:32;2443:33;2402:32;2443:33;:::i;:::-;2495:7;-1:-1:-1;2549:2:1;2534:18;;2521:32;;-1:-1:-1;2604:2:1;2589:18;;2576:32;2631:18;2620:30;;2617:50;;;2663:1;2660;2653:12;2617:50;2686:49;2727:7;2718:6;2707:9;2703:22;2686:49;:::i;:::-;2676:59;;;2076:665;;;;;;;:::o;2746:315::-;2811:6;2819;2872:2;2860:9;2851:7;2847:23;2843:32;2840:52;;;2888:1;2885;2878:12;2840:52;2927:9;2914:23;2946:31;2971:5;2946:31;:::i;:::-;2996:5;-1:-1:-1;3020:35:1;3051:2;3036:18;;3020:35;:::i;:::-;3010:45;;2746:315;;;;;:::o;3066:::-;3134:6;3142;3195:2;3183:9;3174:7;3170:23;3166:32;3163:52;;;3211:1;3208;3201:12;3163:52;3250:9;3237:23;3269:31;3294:5;3269:31;:::i;:::-;3319:5;3371:2;3356:18;;;;3343:32;;-1:-1:-1;;;3066:315:1:o;3386:1032::-;3470:6;3501:2;3544;3532:9;3523:7;3519:23;3515:32;3512:52;;;3560:1;3557;3550:12;3512:52;3600:9;3587:23;3629:18;3670:2;3662:6;3659:14;3656:34;;;3686:1;3683;3676:12;3656:34;3724:6;3713:9;3709:22;3699:32;;3769:7;3762:4;3758:2;3754:13;3750:27;3740:55;;3791:1;3788;3781:12;3740:55;3827:2;3814:16;3849:2;3845;3842:10;3839:36;;;3855:18;;:::i;:::-;3901:2;3898:1;3894:10;3884:20;;3924:28;3948:2;3944;3940:11;3924:28;:::i;:::-;3986:15;;;4017:12;;;;4049:11;;;4079;;;4075:20;;4072:33;-1:-1:-1;4069:53:1;;;4118:1;4115;4108:12;4069:53;4140:1;4131:10;;4150:238;4164:2;4161:1;4158:9;4150:238;;;4235:3;4222:17;4209:30;;4252:31;4277:5;4252:31;:::i;:::-;4296:18;;;4182:1;4175:9;;;;;4334:12;;;;4366;;4150:238;;;-1:-1:-1;4407:5:1;3386:1032;-1:-1:-1;;;;;;;;3386:1032:1:o;4423:180::-;4479:6;4532:2;4520:9;4511:7;4507:23;4503:32;4500:52;;;4548:1;4545;4538:12;4500:52;4571:26;4587:9;4571:26;:::i;4608:245::-;4666:6;4719:2;4707:9;4698:7;4694:23;4690:32;4687:52;;;4735:1;4732;4725:12;4687:52;4774:9;4761:23;4793:30;4817:5;4793:30;:::i;4858:249::-;4927:6;4980:2;4968:9;4959:7;4955:23;4951:32;4948:52;;;4996:1;4993;4986:12;4948:52;5028:9;5022:16;5047:30;5071:5;5047:30;:::i;5112:592::-;5183:6;5191;5244:2;5232:9;5223:7;5219:23;5215:32;5212:52;;;5260:1;5257;5250:12;5212:52;5300:9;5287:23;5329:18;5370:2;5362:6;5359:14;5356:34;;;5386:1;5383;5376:12;5356:34;5424:6;5413:9;5409:22;5399:32;;5469:7;5462:4;5458:2;5454:13;5450:27;5440:55;;5491:1;5488;5481:12;5440:55;5531:2;5518:16;5557:2;5549:6;5546:14;5543:34;;;5573:1;5570;5563:12;5543:34;5618:7;5613:2;5604:6;5600:2;5596:15;5592:24;5589:37;5586:57;;;5639:1;5636;5629:12;5586:57;5670:2;5662:11;;;;;5692:6;;-1:-1:-1;5112:592:1;;-1:-1:-1;;;;5112:592:1:o;5709:321::-;5778:6;5831:2;5819:9;5810:7;5806:23;5802:32;5799:52;;;5847:1;5844;5837:12;5799:52;5887:9;5874:23;5920:18;5912:6;5909:30;5906:50;;;5952:1;5949;5942:12;5906:50;5975:49;6016:7;6007:6;5996:9;5992:22;5975:49;:::i;6035:180::-;6094:6;6147:2;6135:9;6126:7;6122:23;6118:32;6115:52;;;6163:1;6160;6153:12;6115:52;-1:-1:-1;6186:23:1;;6035:180;-1:-1:-1;6035:180:1:o;6220:315::-;6288:6;6296;6349:2;6337:9;6328:7;6324:23;6320:32;6317:52;;;6365:1;6362;6355:12;6317:52;6401:9;6388:23;6378:33;;6461:2;6450:9;6446:18;6433:32;6474:31;6499:5;6474:31;:::i;6540:388::-;6617:6;6625;6678:2;6666:9;6657:7;6653:23;6649:32;6646:52;;;6694:1;6691;6684:12;6646:52;6730:9;6717:23;6707:33;;6791:2;6780:9;6776:18;6763:32;6818:18;6810:6;6807:30;6804:50;;;6850:1;6847;6840:12;6804:50;6873:49;6914:7;6905:6;6894:9;6890:22;6873:49;:::i;:::-;6863:59;;;6540:388;;;;;:::o;7327:812::-;7440:6;7448;7456;7464;7472;7525:3;7513:9;7504:7;7500:23;7496:33;7493:53;;;7542:1;7539;7532:12;7493:53;7578:9;7565:23;7555:33;;7635:2;7624:9;7620:18;7607:32;7597:42;;7689:2;7678:9;7674:18;7661:32;7702:31;7727:5;7702:31;:::i;:::-;7752:5;-1:-1:-1;7808:2:1;7793:18;;7780:32;7831:18;7861:14;;;7858:34;;;7888:1;7885;7878:12;7858:34;7911:49;7952:7;7943:6;7932:9;7928:22;7911:49;:::i;:::-;7901:59;;8013:3;8002:9;7998:19;7985:33;7969:49;;8043:2;8033:8;8030:16;8027:36;;;8059:1;8056;8049:12;8027:36;;8082:51;8125:7;8114:8;8103:9;8099:24;8082:51;:::i;:::-;8072:61;;;7327:812;;;;;;;;:::o;8144:456::-;8230:6;8238;8246;8299:2;8287:9;8278:7;8274:23;8270:32;8267:52;;;8315:1;8312;8305:12;8267:52;8351:9;8338:23;8328:33;;8408:2;8397:9;8393:18;8380:32;8370:42;;8463:2;8452:9;8448:18;8435:32;8490:18;8482:6;8479:30;8476:50;;;8522:1;8519;8512:12;8476:50;8545:49;8586:7;8577:6;8566:9;8562:22;8545:49;:::i;:::-;8535:59;;;8144:456;;;;;:::o;8605:257::-;8646:3;8684:5;8678:12;8711:6;8706:3;8699:19;8727:63;8783:6;8776:4;8771:3;8767:14;8760:4;8753:5;8749:16;8727:63;:::i;:::-;8844:2;8823:15;-1:-1:-1;;8819:29:1;8810:39;;;;8851:4;8806:50;;8605:257;-1:-1:-1;;8605:257:1:o;8867:470::-;9046:3;9084:6;9078:13;9100:53;9146:6;9141:3;9134:4;9126:6;9122:17;9100:53;:::i;:::-;9216:13;;9175:16;;;;9238:57;9216:13;9175:16;9272:4;9260:17;;9238:57;:::i;:::-;9311:20;;8867:470;-1:-1:-1;;;;8867:470:1:o;10343:511::-;-1:-1:-1;;;10629:32:1;;10686:2;10677:12;;10670:28;;;;10723:2;10714:12;;10707:28;;;;10773:2;10769:15;-1:-1:-1;;;;;;10765:53:1;10760:2;10751:12;;10744:75;10844:3;10835:13;;10343:511::o;11657:488::-;-1:-1:-1;;;;;11926:15:1;;;11908:34;;11978:15;;11973:2;11958:18;;11951:43;12025:2;12010:18;;12003:34;;;12073:3;12068:2;12053:18;;12046:31;;;11851:4;;12094:45;;12119:19;;12111:6;12094:45;:::i;:::-;12086:53;11657:488;-1:-1:-1;;;;;;11657:488:1:o;12150:658::-;12321:2;12373:21;;;12443:13;;12346:18;;;12465:22;;;12292:4;;12321:2;12544:15;;;;12518:2;12503:18;;;12292:4;12587:195;12601:6;12598:1;12595:13;12587:195;;;12666:13;;-1:-1:-1;;;;;12662:39:1;12650:52;;12757:15;;;;12722:12;;;;12698:1;12616:9;12587:195;;;-1:-1:-1;12799:3:1;;12150:658;-1:-1:-1;;;;;;12150:658:1:o;12813:632::-;12984:2;13036:21;;;13106:13;;13009:18;;;13128:22;;;12955:4;;12984:2;13207:15;;;;13181:2;13166:18;;;12955:4;13250:169;13264:6;13261:1;13258:13;13250:169;;;13325:13;;13313:26;;13394:15;;;;13359:12;;;;13286:1;13279:9;13250:169;;14045:390;14204:2;14193:9;14186:21;14243:6;14238:2;14227:9;14223:18;14216:34;14300:6;14292;14287:2;14276:9;14272:18;14259:48;14356:1;14327:22;;;14351:2;14323:31;;;14316:42;;;;14419:2;14398:15;;;-1:-1:-1;;14394:29:1;14379:45;14375:54;;14045:390;-1:-1:-1;14045:390:1:o;14440:219::-;14589:2;14578:9;14571:21;14552:4;14609:44;14649:2;14638:9;14634:18;14626:6;14609:44;:::i;16502:414::-;16704:2;16686:21;;;16743:2;16723:18;;;16716:30;16782:34;16777:2;16762:18;;16755:62;-1:-1:-1;;;16848:2:1;16833:18;;16826:48;16906:3;16891:19;;16502:414::o;18435:339::-;18637:2;18619:21;;;18676:2;18656:18;;;18649:30;-1:-1:-1;;;18710:2:1;18695:18;;18688:45;18765:2;18750:18;;18435:339::o;20588:340::-;20790:2;20772:21;;;20829:2;20809:18;;;20802:30;-1:-1:-1;;;20863:2:1;20848:18;;20841:46;20919:2;20904:18;;20588:340::o;29377:410::-;29579:2;29561:21;;;29618:2;29598:18;;;29591:30;29657:34;29652:2;29637:18;;29630:62;-1:-1:-1;;;29723:2:1;29708:18;;29701:44;29777:3;29762:19;;29377:410::o;29792:355::-;29994:2;29976:21;;;30033:2;30013:18;;;30006:30;30072:33;30067:2;30052:18;;30045:61;30138:2;30123:18;;29792:355::o;30152:351::-;30354:2;30336:21;;;30393:2;30373:18;;;30366:30;30432:29;30427:2;30412:18;;30405:57;30494:2;30479:18;;30152:351::o;31858:275::-;31929:2;31923:9;31994:2;31975:13;;-1:-1:-1;;31971:27:1;31959:40;;32029:18;32014:34;;32050:22;;;32011:62;32008:88;;;32076:18;;:::i;:::-;32112:2;32105:22;31858:275;;-1:-1:-1;31858:275:1:o;32138:128::-;32178:3;32209:1;32205:6;32202:1;32199:13;32196:39;;;32215:18;;:::i;:::-;-1:-1:-1;32251:9:1;;32138:128::o;32271:168::-;32311:7;32377:1;32373;32369:6;32365:14;32362:1;32359:21;32354:1;32347:9;32340:17;32336:45;32333:71;;;32384:18;;:::i;:::-;-1:-1:-1;32424:9:1;;32271:168::o;32444:125::-;32484:4;32512:1;32509;32506:8;32503:34;;;32517:18;;:::i;:::-;-1:-1:-1;32554:9:1;;32444:125::o;32574:258::-;32646:1;32656:113;32670:6;32667:1;32664:13;32656:113;;;32746:11;;;32740:18;32727:11;;;32720:39;32692:2;32685:10;32656:113;;;32787:6;32784:1;32781:13;32778:48;;;-1:-1:-1;;32822:1:1;32804:16;;32797:27;32574:258::o;32837:380::-;32916:1;32912:12;;;;32959;;;32980:61;;33034:4;33026:6;33022:17;33012:27;;32980:61;33087:2;33079:6;33076:14;33056:18;33053:38;33050:161;;;33133:10;33128:3;33124:20;33121:1;33114:31;33168:4;33165:1;33158:15;33196:4;33193:1;33186:15;33050:161;;32837:380;;;:::o;33222:135::-;33261:3;-1:-1:-1;;33282:17:1;;33279:43;;;33302:18;;:::i;:::-;-1:-1:-1;33349:1:1;33338:13;;33222:135::o;33362:127::-;33423:10;33418:3;33414:20;33411:1;33404:31;33454:4;33451:1;33444:15;33478:4;33475:1;33468:15;33494:127;33555:10;33550:3;33546:20;33543:1;33536:31;33586:4;33583:1;33576:15;33610:4;33607:1;33600:15;33626:127;33687:10;33682:3;33678:20;33675:1;33668:31;33718:4;33715:1;33708:15;33742:4;33739:1;33732:15;33758:127;33819:10;33814:3;33810:20;33807:1;33800:31;33850:4;33847:1;33840:15;33874:4;33871:1;33864:15;33890:127;33951:10;33946:3;33942:20;33939:1;33932:31;33982:4;33979:1;33972:15;34006:4;34003:1;33996:15;34022:131;-1:-1:-1;;;;;34097:31:1;;34087:42;;34077:70;;34143:1;34140;34133:12;34158:131;-1:-1:-1;;;;;;34232:32:1;;34222:43;;34212:71;;34279:1;34276;34269:12

Swarm Source

ipfs://9326ec9a4fbb4d14eedcd5eabdd9f07ec42216eb6006cdd6f4885e0178f30910
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.