ETH Price: $2,279.28 (-4.39%)

Token

Note NFT (NOTE)
 

Overview

Max Total Supply

64 NOTE

Holders

64

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
gundan.eth
Balance
1 NOTE
0x4485dea633ca375b0bc07970f7e231fa21439fad
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
NoteNFT

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/utils/structs/EnumerableSet.sol


// OpenZeppelin Contracts v4.4.1 (utils/structs/EnumerableSet.sol)

pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastvalue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastvalue;
                // Update the index for the moved value
                set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        return set._values[index];
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
        return _values(set._inner);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        assembly {
            result := store
        }

        return result;
    }
}

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


// OpenZeppelin Contracts v4.4.1 (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 substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (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 tokenId);

    /**
     * @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 v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

// File: @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: NoteNFT/noteNft.sol


pragma solidity 0.8.10;







contract NoteNFT is ERC721Enumerable, Ownable {
    using EnumerableSet for EnumerableSet.AddressSet;

    uint256 public constant MaxSupply = 1024;
    uint256 public tokenId = 0;
    string public baseURI = "";

    address public creator;
    uint256 public constant mintPrice = 0.05 ether;
    uint256 public wlStartTime;
    uint256 public publicStartTime;

    uint256 public constant WhitelistMaxNumber = 124;
    EnumerableSet.AddressSet private whitelist;
    mapping(address => bool) public whiteMintedMap;

    // 1643126400,1646150400,0xe01976f2f246f2c36C61718EbdEbe411455babFB
    constructor(uint256 _wlStartTime, uint256 _publicStartTime, address _creator) ERC721("Note NFT", "NOTE") {
        wlStartTime = _wlStartTime;
        publicStartTime = _publicStartTime;
        creator = _creator;
    }

    function addWhitelist(address[] memory _whitelist) external onlyOwner {
        for (uint i = 0; i < _whitelist.length; i++) {
            if (!whitelist.contains(_whitelist[i])) {
                whitelist.add(_whitelist[i]);
            }
        }
    }

    function whitelistLength() external view returns(uint256) {
        return whitelist.length();
    }

    function isExistInWhitelist(address _userAddr) external view returns(bool) {
        return whitelist.contains(_userAddr);
    }

    function getAllWhitelist() external view returns(address[] memory wlAddrs) {
        uint256 length = whitelist.length();
        wlAddrs = new address[](length);
        for (uint256 i = 0; i < length; i++) {
            wlAddrs[i] = whitelist.at(i);
        }
    }

    function setPublicTime(uint256 _publicStartTime) external onlyOwner {
        require(_publicStartTime > wlStartTime, "Public sale time should be larger.");
        publicStartTime = _publicStartTime;
    }

    function mint() payable external {
        require(msg.value == mintPrice, "Mint price is 0.05 ETH");
        require(tokenId < MaxSupply, "Exceed max supply 1024");
        require(block.timestamp >= wlStartTime, "NOT start");
        require(!whiteMintedMap[msg.sender], "One account can NOT mint more than once");
        if (block.timestamp < publicStartTime) {
            require(whitelist.contains(msg.sender), "NOT in whitelist");
            require(tokenId < WhitelistMaxNumber, "Exceed wl supply 124");
            tokenId++;
            whiteMintedMap[msg.sender] = true;
            _mint(msg.sender, tokenId);
            return;
        } 
        
        whiteMintedMap[msg.sender] = true;
        tokenId++;
        _mint(msg.sender, tokenId);
    }

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

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

    function withdraw() external {
        require(msg.sender == creator, "Only creator can withdraw");
        payable(creator).transfer(address(this).balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_wlStartTime","type":"uint256"},{"internalType":"uint256","name":"_publicStartTime","type":"uint256"},{"internalType":"address","name":"_creator","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WhitelistMaxNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_whitelist","type":"address[]"}],"name":"addWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"creator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAllWhitelist","outputs":[{"internalType":"address[]","name":"wlAddrs","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_userAddr","type":"address"}],"name":"isExistInWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"_publicStartTime","type":"uint256"}],"name":"setPublicTime","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":[],"name":"tokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whiteMintedMap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

6000600b81905560a0604081905260808290526200002191600c919062000155565b503480156200002f57600080fd5b5060405162002813380380620028138339810160408190526200005291620001fb565b6040805180820182526008815267139bdd194813919560c21b6020808301918252835180850190945260048452634e4f544560e01b9084015281519192916200009e9160009162000155565b508051620000b490600190602084019062000155565b505050620000d1620000cb620000ff60201b60201c565b62000103565b600e92909255600f55600d80546001600160a01b0319166001600160a01b0390921691909117905562000280565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001639062000243565b90600052602060002090601f016020900481019282620001875760008555620001d2565b82601f10620001a257805160ff1916838001178555620001d2565b82800160010185558215620001d2579182015b82811115620001d2578251825591602001919060010190620001b5565b50620001e0929150620001e4565b5090565b5b80821115620001e05760008155600101620001e5565b6000806000606084860312156200021157600080fd5b83516020850151604086015191945092506001600160a01b03811681146200023857600080fd5b809150509250925092565b600181811c908216806200025857607f821691505b602082108114156200027a57634e487b7160e01b600052602260045260246000fd5b50919050565b61258380620002906000396000f3fe60806040526004361061020f5760003560e01c80636817c76c11610118578063b36c1284116100a0578063e388b4011161006f578063e388b401146105ac578063e418b204146105c1578063e985e9c5146105f1578063edac985b1461063a578063f2fde38b1461065a57600080fd5b8063b36c128414610540578063b88d4fde14610556578063be9feb3014610576578063c87b56dd1461058c57600080fd5b806378bb5164116100e757806378bb5164146104b65780638da5cb5b146104cb57806395d89b41146104e9578063a22cb465146104fe578063b29ba15e1461051e57600080fd5b80636817c76c146104515780636c0360eb1461046c57806370a0823114610481578063715018a6146104a157600080fd5b80631faead681161019b57806342842e0e1161016a57806342842e0e146103bb5780634f6ccce7146103db57806355f804b3146103fb5780635fd1bbc41461041b5780636352211e1461043157600080fd5b80631faead681461034657806323b872dd146103665780632f745c59146103865780633ccfd60b146103a657600080fd5b8063095ea7b3116101e2578063095ea7b3146102c35780631249c58b146102e5578063150c5c26146102ed57806317d70f7c1461030d57806318160ddd1461033157600080fd5b806301ffc9a71461021457806302d05d3f1461024957806306fdde0314610281578063081812fc146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004611edc565b61067a565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b50600d54610269906001600160a01b031681565b6040516001600160a01b039091168152602001610240565b34801561028d57600080fd5b506102966106a5565b6040516102409190611f51565b3480156102af57600080fd5b506102696102be366004611f64565b610737565b3480156102cf57600080fd5b506102e36102de366004611f99565b6107d1565b005b6102e36108e7565b3480156102f957600080fd5b506102e3610308366004611f64565b610b44565b34801561031957600080fd5b50610323600b5481565b604051908152602001610240565b34801561033d57600080fd5b50600854610323565b34801561035257600080fd5b50610234610361366004611fc3565b610bcf565b34801561037257600080fd5b506102e3610381366004611fde565b610bdc565b34801561039257600080fd5b506103236103a1366004611f99565b610c0d565b3480156103b257600080fd5b506102e3610ca3565b3480156103c757600080fd5b506102e36103d6366004611fde565b610d39565b3480156103e757600080fd5b506103236103f6366004611f64565b610d54565b34801561040757600080fd5b506102e36104163660046120b9565b610de7565b34801561042757600080fd5b50610323600f5481565b34801561043d57600080fd5b5061026961044c366004611f64565b610e28565b34801561045d57600080fd5b5061032366b1a2bc2ec5000081565b34801561047857600080fd5b50610296610e9f565b34801561048d57600080fd5b5061032361049c366004611fc3565b610f2d565b3480156104ad57600080fd5b506102e3610fb4565b3480156104c257600080fd5b50610323610fe8565b3480156104d757600080fd5b50600a546001600160a01b0316610269565b3480156104f557600080fd5b50610296610ff9565b34801561050a57600080fd5b506102e3610519366004612102565b611008565b34801561052a57600080fd5b50610533611013565b604051610240919061213e565b34801561054c57600080fd5b5061032361040081565b34801561056257600080fd5b506102e361057136600461218b565b6110bf565b34801561058257600080fd5b50610323600e5481565b34801561059857600080fd5b506102966105a7366004611f64565b6110f7565b3480156105b857600080fd5b50610323607c81565b3480156105cd57600080fd5b506102346105dc366004611fc3565b60126020526000908152604090205460ff1681565b3480156105fd57600080fd5b5061023461060c366004612207565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561064657600080fd5b506102e361065536600461223a565b6111d2565b34801561066657600080fd5b506102e3610675366004611fc3565b61127a565b60006001600160e01b0319821663780e9d6360e01b148061069f575061069f82611312565b92915050565b6060600080546106b4906122e7565b80601f01602080910402602001604051908101604052809291908181526020018280546106e0906122e7565b801561072d5780601f106107025761010080835404028352916020019161072d565b820191906000526020600020905b81548152906001019060200180831161071057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107b55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107dc82610e28565b9050806001600160a01b0316836001600160a01b0316141561084a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107ac565b336001600160a01b03821614806108665750610866813361060c565b6108d85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107ac565b6108e28383611362565b505050565b66b1a2bc2ec5000034146109365760405162461bcd60e51b815260206004820152601660248201527509ad2dce840e0e4d2c6ca40d2e640605c606a408aa8960531b60448201526064016107ac565b610400600b54106109825760405162461bcd60e51b8152602060048201526016602482015275115e18d95959081b585e081cdd5c1c1b1e480c4c0c8d60521b60448201526064016107ac565b600e544210156109c05760405162461bcd60e51b81526020600482015260096024820152681393d5081cdd185c9d60ba1b60448201526064016107ac565b3360009081526012602052604090205460ff1615610a305760405162461bcd60e51b815260206004820152602760248201527f4f6e65206163636f756e742063616e204e4f54206d696e74206d6f7265207468604482015266616e206f6e636560c81b60648201526084016107ac565b600f54421015610b0b57610a456010336113d0565b610a845760405162461bcd60e51b815260206004820152601060248201526f1393d5081a5b881dda1a5d195b1a5cdd60821b60448201526064016107ac565b607c600b5410610acd5760405162461bcd60e51b8152602060048201526014602482015273115e18d95959081ddb081cdd5c1c1b1e480c4c8d60621b60448201526064016107ac565b600b8054906000610add83612338565b9091555050336000818152601260205260409020805460ff19166001179055600b54610b0991906113f2565b565b336000908152601260205260408120805460ff19166001179055600b805491610b3383612338565b9190505550610b0933600b546113f2565b600a546001600160a01b03163314610b6e5760405162461bcd60e51b81526004016107ac90612353565b600e548111610bca5760405162461bcd60e51b815260206004820152602260248201527f5075626c69632073616c652074696d652073686f756c64206265206c61726765604482015261391760f11b60648201526084016107ac565b600f55565b600061069f6010836113d0565b610be63382611540565b610c025760405162461bcd60e51b81526004016107ac90612388565b6108e2838383611637565b6000610c1883610f2d565b8210610c7a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107ac565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600d546001600160a01b03163314610cfd5760405162461bcd60e51b815260206004820152601960248201527f4f6e6c792063726561746f722063616e2077697468647261770000000000000060448201526064016107ac565b600d546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610d36573d6000803e3d6000fd5b50565b6108e2838383604051806020016040528060008152506110bf565b6000610d5f60085490565b8210610dc25760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107ac565b60088281548110610dd557610dd56123d9565b90600052602060002001549050919050565b600a546001600160a01b03163314610e115760405162461bcd60e51b81526004016107ac90612353565b8051610e2490600c906020840190611e2d565b5050565b6000818152600260205260408120546001600160a01b03168061069f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107ac565b600c8054610eac906122e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed8906122e7565b8015610f255780601f10610efa57610100808354040283529160200191610f25565b820191906000526020600020905b815481529060010190602001808311610f0857829003601f168201915b505050505081565b60006001600160a01b038216610f985760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107ac565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610fde5760405162461bcd60e51b81526004016107ac90612353565b610b0960006117e2565b6000610ff46010611834565b905090565b6060600180546106b4906122e7565b610e2433838361183e565b606060006110216010611834565b90508067ffffffffffffffff81111561103c5761103c61201a565b604051908082528060200260200182016040528015611065578160200160208202803683370190505b50915060005b818110156110ba5761107e60108261190d565b838281518110611090576110906123d9565b6001600160a01b0390921660209283029190910190910152806110b281612338565b91505061106b565b505090565b6110c93383611540565b6110e55760405162461bcd60e51b81526004016107ac90612388565b6110f184848484611919565b50505050565b6000818152600260205260409020546060906001600160a01b03166111765760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107ac565b600061118061194c565b905060008151116111a057604051806020016040528060008152506111cb565b806111aa8461195b565b6040516020016111bb9291906123ef565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146111fc5760405162461bcd60e51b81526004016107ac90612353565b60005b8151811015610e245761123582828151811061121d5761121d6123d9565b602002602001015160106113d090919063ffffffff16565b6112685761126682828151811061124e5761124e6123d9565b60200260200101516010611a5990919063ffffffff16565b505b8061127281612338565b9150506111ff565b600a546001600160a01b031633146112a45760405162461bcd60e51b81526004016107ac90612353565b6001600160a01b0381166113095760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ac565b610d36816117e2565b60006001600160e01b031982166380ac58cd60e01b148061134357506001600160e01b03198216635b5e139f60e01b145b8061069f57506301ffc9a760e01b6001600160e01b031983161461069f565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061139782610e28565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6001600160a01b038116600090815260018301602052604081205415156111cb565b6001600160a01b0382166114485760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107ac565b6000818152600260205260409020546001600160a01b0316156114ad5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107ac565b6114b960008383611a6e565b6001600160a01b03821660009081526003602052604081208054600192906114e290849061241e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000818152600260205260408120546001600160a01b03166115b95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107ac565b60006115c483610e28565b9050806001600160a01b0316846001600160a01b031614806115ff5750836001600160a01b03166115f484610737565b6001600160a01b0316145b8061162f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661164a82610e28565b6001600160a01b0316146116b25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107ac565b6001600160a01b0382166117145760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107ac565b61171f838383611a6e565b61172a600082611362565b6001600160a01b0383166000908152600360205260408120805460019290611753908490612436565b90915550506001600160a01b038216600090815260036020526040812080546001929061178190849061241e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061069f825490565b816001600160a01b0316836001600160a01b031614156118a05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107ac565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60006111cb8383611b26565b611924848484611637565b61193084848484611b50565b6110f15760405162461bcd60e51b81526004016107ac9061244d565b6060600c80546106b4906122e7565b60608161197f5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119a9578061199381612338565b91506119a29050600a836124b5565b9150611983565b60008167ffffffffffffffff8111156119c4576119c461201a565b6040519080825280601f01601f1916602001820160405280156119ee576020820181803683370190505b5090505b841561162f57611a03600183612436565b9150611a10600a866124c9565b611a1b90603061241e565b60f81b818381518110611a3057611a306123d9565b60200101906001600160f81b031916908160001a905350611a52600a866124b5565b94506119f2565b60006111cb836001600160a01b038416611c4e565b6001600160a01b038316611ac957611ac481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611aec565b816001600160a01b0316836001600160a01b031614611aec57611aec8382611c9d565b6001600160a01b038216611b03576108e281611d3a565b826001600160a01b0316826001600160a01b0316146108e2576108e28282611de9565b6000826000018281548110611b3d57611b3d6123d9565b9060005260206000200154905092915050565b60006001600160a01b0384163b15611c4357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b949033908990889088906004016124dd565b6020604051808303816000875af1925050508015611bcf575060408051601f3d908101601f19168201909252611bcc9181019061251a565b60015b611c29573d808015611bfd576040519150601f19603f3d011682016040523d82523d6000602084013e611c02565b606091505b508051611c215760405162461bcd60e51b81526004016107ac9061244d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061162f565b506001949350505050565b6000818152600183016020526040812054611c955750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561069f565b50600061069f565b60006001611caa84610f2d565b611cb49190612436565b600083815260076020526040902054909150808214611d07576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d4c90600190612436565b60008381526009602052604081205460088054939450909284908110611d7457611d746123d9565b906000526020600020015490508060088381548110611d9557611d956123d9565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611dcd57611dcd612537565b6001900381819060005260206000200160009055905550505050565b6000611df483610f2d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611e39906122e7565b90600052602060002090601f016020900481019282611e5b5760008555611ea1565b82601f10611e7457805160ff1916838001178555611ea1565b82800160010185558215611ea1579182015b82811115611ea1578251825591602001919060010190611e86565b50611ead929150611eb1565b5090565b5b80821115611ead5760008155600101611eb2565b6001600160e01b031981168114610d3657600080fd5b600060208284031215611eee57600080fd5b81356111cb81611ec6565b60005b83811015611f14578181015183820152602001611efc565b838111156110f15750506000910152565b60008151808452611f3d816020860160208601611ef9565b601f01601f19169290920160200192915050565b6020815260006111cb6020830184611f25565b600060208284031215611f7657600080fd5b5035919050565b80356001600160a01b0381168114611f9457600080fd5b919050565b60008060408385031215611fac57600080fd5b611fb583611f7d565b946020939093013593505050565b600060208284031215611fd557600080fd5b6111cb82611f7d565b600080600060608486031215611ff357600080fd5b611ffc84611f7d565b925061200a60208501611f7d565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156120595761205961201a565b604052919050565b600067ffffffffffffffff83111561207b5761207b61201a565b61208e601f8401601f1916602001612030565b90508281528383830111156120a257600080fd5b828260208301376000602084830101529392505050565b6000602082840312156120cb57600080fd5b813567ffffffffffffffff8111156120e257600080fd5b8201601f810184136120f357600080fd5b61162f84823560208401612061565b6000806040838503121561211557600080fd5b61211e83611f7d565b91506020830135801515811461213357600080fd5b809150509250929050565b6020808252825182820181905260009190848201906040850190845b8181101561217f5783516001600160a01b03168352928401929184019160010161215a565b50909695505050505050565b600080600080608085870312156121a157600080fd5b6121aa85611f7d565b93506121b860208601611f7d565b925060408501359150606085013567ffffffffffffffff8111156121db57600080fd5b8501601f810187136121ec57600080fd5b6121fb87823560208401612061565b91505092959194509250565b6000806040838503121561221a57600080fd5b61222383611f7d565b915061223160208401611f7d565b90509250929050565b6000602080838503121561224d57600080fd5b823567ffffffffffffffff8082111561226557600080fd5b818501915085601f83011261227957600080fd5b81358181111561228b5761228b61201a565b8060051b915061229c848301612030565b81815291830184019184810190888411156122b657600080fd5b938501935b838510156122db576122cc85611f7d565b825293850193908501906122bb565b98975050505050505050565b600181811c908216806122fb57607f821691505b6020821081141561231c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600060001982141561234c5761234c612322565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b60008351612401818460208801611ef9565b835190830190612415818360208801611ef9565b01949350505050565b6000821982111561243157612431612322565b500190565b60008282101561244857612448612322565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826124c4576124c461249f565b500490565b6000826124d8576124d861249f565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061251090830184611f25565b9695505050505050565b60006020828403121561252c57600080fd5b81516111cb81611ec6565b634e487b7160e01b600052603160045260246000fdfea264697066735822122067d670bdb793e0dbeefb57b555b9f2919d2c4dc8475a110b6afd4ba9d14a0a9e64736f6c634300080a00330000000000000000000000000000000000000000000000000000000061f01e8000000000000000000000000000000000000000000000000000000000621e4300000000000000000000000000e01976f2f246f2c36c61718ebdebe411455babfb

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80636817c76c11610118578063b36c1284116100a0578063e388b4011161006f578063e388b401146105ac578063e418b204146105c1578063e985e9c5146105f1578063edac985b1461063a578063f2fde38b1461065a57600080fd5b8063b36c128414610540578063b88d4fde14610556578063be9feb3014610576578063c87b56dd1461058c57600080fd5b806378bb5164116100e757806378bb5164146104b65780638da5cb5b146104cb57806395d89b41146104e9578063a22cb465146104fe578063b29ba15e1461051e57600080fd5b80636817c76c146104515780636c0360eb1461046c57806370a0823114610481578063715018a6146104a157600080fd5b80631faead681161019b57806342842e0e1161016a57806342842e0e146103bb5780634f6ccce7146103db57806355f804b3146103fb5780635fd1bbc41461041b5780636352211e1461043157600080fd5b80631faead681461034657806323b872dd146103665780632f745c59146103865780633ccfd60b146103a657600080fd5b8063095ea7b3116101e2578063095ea7b3146102c35780631249c58b146102e5578063150c5c26146102ed57806317d70f7c1461030d57806318160ddd1461033157600080fd5b806301ffc9a71461021457806302d05d3f1461024957806306fdde0314610281578063081812fc146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004611edc565b61067a565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b50600d54610269906001600160a01b031681565b6040516001600160a01b039091168152602001610240565b34801561028d57600080fd5b506102966106a5565b6040516102409190611f51565b3480156102af57600080fd5b506102696102be366004611f64565b610737565b3480156102cf57600080fd5b506102e36102de366004611f99565b6107d1565b005b6102e36108e7565b3480156102f957600080fd5b506102e3610308366004611f64565b610b44565b34801561031957600080fd5b50610323600b5481565b604051908152602001610240565b34801561033d57600080fd5b50600854610323565b34801561035257600080fd5b50610234610361366004611fc3565b610bcf565b34801561037257600080fd5b506102e3610381366004611fde565b610bdc565b34801561039257600080fd5b506103236103a1366004611f99565b610c0d565b3480156103b257600080fd5b506102e3610ca3565b3480156103c757600080fd5b506102e36103d6366004611fde565b610d39565b3480156103e757600080fd5b506103236103f6366004611f64565b610d54565b34801561040757600080fd5b506102e36104163660046120b9565b610de7565b34801561042757600080fd5b50610323600f5481565b34801561043d57600080fd5b5061026961044c366004611f64565b610e28565b34801561045d57600080fd5b5061032366b1a2bc2ec5000081565b34801561047857600080fd5b50610296610e9f565b34801561048d57600080fd5b5061032361049c366004611fc3565b610f2d565b3480156104ad57600080fd5b506102e3610fb4565b3480156104c257600080fd5b50610323610fe8565b3480156104d757600080fd5b50600a546001600160a01b0316610269565b3480156104f557600080fd5b50610296610ff9565b34801561050a57600080fd5b506102e3610519366004612102565b611008565b34801561052a57600080fd5b50610533611013565b604051610240919061213e565b34801561054c57600080fd5b5061032361040081565b34801561056257600080fd5b506102e361057136600461218b565b6110bf565b34801561058257600080fd5b50610323600e5481565b34801561059857600080fd5b506102966105a7366004611f64565b6110f7565b3480156105b857600080fd5b50610323607c81565b3480156105cd57600080fd5b506102346105dc366004611fc3565b60126020526000908152604090205460ff1681565b3480156105fd57600080fd5b5061023461060c366004612207565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561064657600080fd5b506102e361065536600461223a565b6111d2565b34801561066657600080fd5b506102e3610675366004611fc3565b61127a565b60006001600160e01b0319821663780e9d6360e01b148061069f575061069f82611312565b92915050565b6060600080546106b4906122e7565b80601f01602080910402602001604051908101604052809291908181526020018280546106e0906122e7565b801561072d5780601f106107025761010080835404028352916020019161072d565b820191906000526020600020905b81548152906001019060200180831161071057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107b55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107dc82610e28565b9050806001600160a01b0316836001600160a01b0316141561084a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107ac565b336001600160a01b03821614806108665750610866813361060c565b6108d85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107ac565b6108e28383611362565b505050565b66b1a2bc2ec5000034146109365760405162461bcd60e51b815260206004820152601660248201527509ad2dce840e0e4d2c6ca40d2e640605c606a408aa8960531b60448201526064016107ac565b610400600b54106109825760405162461bcd60e51b8152602060048201526016602482015275115e18d95959081b585e081cdd5c1c1b1e480c4c0c8d60521b60448201526064016107ac565b600e544210156109c05760405162461bcd60e51b81526020600482015260096024820152681393d5081cdd185c9d60ba1b60448201526064016107ac565b3360009081526012602052604090205460ff1615610a305760405162461bcd60e51b815260206004820152602760248201527f4f6e65206163636f756e742063616e204e4f54206d696e74206d6f7265207468604482015266616e206f6e636560c81b60648201526084016107ac565b600f54421015610b0b57610a456010336113d0565b610a845760405162461bcd60e51b815260206004820152601060248201526f1393d5081a5b881dda1a5d195b1a5cdd60821b60448201526064016107ac565b607c600b5410610acd5760405162461bcd60e51b8152602060048201526014602482015273115e18d95959081ddb081cdd5c1c1b1e480c4c8d60621b60448201526064016107ac565b600b8054906000610add83612338565b9091555050336000818152601260205260409020805460ff19166001179055600b54610b0991906113f2565b565b336000908152601260205260408120805460ff19166001179055600b805491610b3383612338565b9190505550610b0933600b546113f2565b600a546001600160a01b03163314610b6e5760405162461bcd60e51b81526004016107ac90612353565b600e548111610bca5760405162461bcd60e51b815260206004820152602260248201527f5075626c69632073616c652074696d652073686f756c64206265206c61726765604482015261391760f11b60648201526084016107ac565b600f55565b600061069f6010836113d0565b610be63382611540565b610c025760405162461bcd60e51b81526004016107ac90612388565b6108e2838383611637565b6000610c1883610f2d565b8210610c7a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107ac565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600d546001600160a01b03163314610cfd5760405162461bcd60e51b815260206004820152601960248201527f4f6e6c792063726561746f722063616e2077697468647261770000000000000060448201526064016107ac565b600d546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610d36573d6000803e3d6000fd5b50565b6108e2838383604051806020016040528060008152506110bf565b6000610d5f60085490565b8210610dc25760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107ac565b60088281548110610dd557610dd56123d9565b90600052602060002001549050919050565b600a546001600160a01b03163314610e115760405162461bcd60e51b81526004016107ac90612353565b8051610e2490600c906020840190611e2d565b5050565b6000818152600260205260408120546001600160a01b03168061069f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107ac565b600c8054610eac906122e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed8906122e7565b8015610f255780601f10610efa57610100808354040283529160200191610f25565b820191906000526020600020905b815481529060010190602001808311610f0857829003601f168201915b505050505081565b60006001600160a01b038216610f985760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107ac565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610fde5760405162461bcd60e51b81526004016107ac90612353565b610b0960006117e2565b6000610ff46010611834565b905090565b6060600180546106b4906122e7565b610e2433838361183e565b606060006110216010611834565b90508067ffffffffffffffff81111561103c5761103c61201a565b604051908082528060200260200182016040528015611065578160200160208202803683370190505b50915060005b818110156110ba5761107e60108261190d565b838281518110611090576110906123d9565b6001600160a01b0390921660209283029190910190910152806110b281612338565b91505061106b565b505090565b6110c93383611540565b6110e55760405162461bcd60e51b81526004016107ac90612388565b6110f184848484611919565b50505050565b6000818152600260205260409020546060906001600160a01b03166111765760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107ac565b600061118061194c565b905060008151116111a057604051806020016040528060008152506111cb565b806111aa8461195b565b6040516020016111bb9291906123ef565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146111fc5760405162461bcd60e51b81526004016107ac90612353565b60005b8151811015610e245761123582828151811061121d5761121d6123d9565b602002602001015160106113d090919063ffffffff16565b6112685761126682828151811061124e5761124e6123d9565b60200260200101516010611a5990919063ffffffff16565b505b8061127281612338565b9150506111ff565b600a546001600160a01b031633146112a45760405162461bcd60e51b81526004016107ac90612353565b6001600160a01b0381166113095760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ac565b610d36816117e2565b60006001600160e01b031982166380ac58cd60e01b148061134357506001600160e01b03198216635b5e139f60e01b145b8061069f57506301ffc9a760e01b6001600160e01b031983161461069f565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061139782610e28565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6001600160a01b038116600090815260018301602052604081205415156111cb565b6001600160a01b0382166114485760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107ac565b6000818152600260205260409020546001600160a01b0316156114ad5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107ac565b6114b960008383611a6e565b6001600160a01b03821660009081526003602052604081208054600192906114e290849061241e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000818152600260205260408120546001600160a01b03166115b95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107ac565b60006115c483610e28565b9050806001600160a01b0316846001600160a01b031614806115ff5750836001600160a01b03166115f484610737565b6001600160a01b0316145b8061162f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661164a82610e28565b6001600160a01b0316146116b25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107ac565b6001600160a01b0382166117145760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107ac565b61171f838383611a6e565b61172a600082611362565b6001600160a01b0383166000908152600360205260408120805460019290611753908490612436565b90915550506001600160a01b038216600090815260036020526040812080546001929061178190849061241e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061069f825490565b816001600160a01b0316836001600160a01b031614156118a05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107ac565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60006111cb8383611b26565b611924848484611637565b61193084848484611b50565b6110f15760405162461bcd60e51b81526004016107ac9061244d565b6060600c80546106b4906122e7565b60608161197f5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119a9578061199381612338565b91506119a29050600a836124b5565b9150611983565b60008167ffffffffffffffff8111156119c4576119c461201a565b6040519080825280601f01601f1916602001820160405280156119ee576020820181803683370190505b5090505b841561162f57611a03600183612436565b9150611a10600a866124c9565b611a1b90603061241e565b60f81b818381518110611a3057611a306123d9565b60200101906001600160f81b031916908160001a905350611a52600a866124b5565b94506119f2565b60006111cb836001600160a01b038416611c4e565b6001600160a01b038316611ac957611ac481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611aec565b816001600160a01b0316836001600160a01b031614611aec57611aec8382611c9d565b6001600160a01b038216611b03576108e281611d3a565b826001600160a01b0316826001600160a01b0316146108e2576108e28282611de9565b6000826000018281548110611b3d57611b3d6123d9565b9060005260206000200154905092915050565b60006001600160a01b0384163b15611c4357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b949033908990889088906004016124dd565b6020604051808303816000875af1925050508015611bcf575060408051601f3d908101601f19168201909252611bcc9181019061251a565b60015b611c29573d808015611bfd576040519150601f19603f3d011682016040523d82523d6000602084013e611c02565b606091505b508051611c215760405162461bcd60e51b81526004016107ac9061244d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061162f565b506001949350505050565b6000818152600183016020526040812054611c955750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561069f565b50600061069f565b60006001611caa84610f2d565b611cb49190612436565b600083815260076020526040902054909150808214611d07576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d4c90600190612436565b60008381526009602052604081205460088054939450909284908110611d7457611d746123d9565b906000526020600020015490508060088381548110611d9557611d956123d9565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611dcd57611dcd612537565b6001900381819060005260206000200160009055905550505050565b6000611df483610f2d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611e39906122e7565b90600052602060002090601f016020900481019282611e5b5760008555611ea1565b82601f10611e7457805160ff1916838001178555611ea1565b82800160010185558215611ea1579182015b82811115611ea1578251825591602001919060010190611e86565b50611ead929150611eb1565b5090565b5b80821115611ead5760008155600101611eb2565b6001600160e01b031981168114610d3657600080fd5b600060208284031215611eee57600080fd5b81356111cb81611ec6565b60005b83811015611f14578181015183820152602001611efc565b838111156110f15750506000910152565b60008151808452611f3d816020860160208601611ef9565b601f01601f19169290920160200192915050565b6020815260006111cb6020830184611f25565b600060208284031215611f7657600080fd5b5035919050565b80356001600160a01b0381168114611f9457600080fd5b919050565b60008060408385031215611fac57600080fd5b611fb583611f7d565b946020939093013593505050565b600060208284031215611fd557600080fd5b6111cb82611f7d565b600080600060608486031215611ff357600080fd5b611ffc84611f7d565b925061200a60208501611f7d565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156120595761205961201a565b604052919050565b600067ffffffffffffffff83111561207b5761207b61201a565b61208e601f8401601f1916602001612030565b90508281528383830111156120a257600080fd5b828260208301376000602084830101529392505050565b6000602082840312156120cb57600080fd5b813567ffffffffffffffff8111156120e257600080fd5b8201601f810184136120f357600080fd5b61162f84823560208401612061565b6000806040838503121561211557600080fd5b61211e83611f7d565b91506020830135801515811461213357600080fd5b809150509250929050565b6020808252825182820181905260009190848201906040850190845b8181101561217f5783516001600160a01b03168352928401929184019160010161215a565b50909695505050505050565b600080600080608085870312156121a157600080fd5b6121aa85611f7d565b93506121b860208601611f7d565b925060408501359150606085013567ffffffffffffffff8111156121db57600080fd5b8501601f810187136121ec57600080fd5b6121fb87823560208401612061565b91505092959194509250565b6000806040838503121561221a57600080fd5b61222383611f7d565b915061223160208401611f7d565b90509250929050565b6000602080838503121561224d57600080fd5b823567ffffffffffffffff8082111561226557600080fd5b818501915085601f83011261227957600080fd5b81358181111561228b5761228b61201a565b8060051b915061229c848301612030565b81815291830184019184810190888411156122b657600080fd5b938501935b838510156122db576122cc85611f7d565b825293850193908501906122bb565b98975050505050505050565b600181811c908216806122fb57607f821691505b6020821081141561231c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600060001982141561234c5761234c612322565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b60008351612401818460208801611ef9565b835190830190612415818360208801611ef9565b01949350505050565b6000821982111561243157612431612322565b500190565b60008282101561244857612448612322565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826124c4576124c461249f565b500490565b6000826124d8576124d861249f565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061251090830184611f25565b9695505050505050565b60006020828403121561252c57600080fd5b81516111cb81611ec6565b634e487b7160e01b600052603160045260246000fdfea264697066735822122067d670bdb793e0dbeefb57b555b9f2919d2c4dc8475a110b6afd4ba9d14a0a9e64736f6c634300080a0033

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

0000000000000000000000000000000000000000000000000000000061f01e8000000000000000000000000000000000000000000000000000000000621e4300000000000000000000000000e01976f2f246f2c36c61718ebdebe411455babfb

-----Decoded View---------------
Arg [0] : _wlStartTime (uint256): 1643126400
Arg [1] : _publicStartTime (uint256): 1646150400
Arg [2] : _creator (address): 0xe01976f2f246f2c36C61718EbdEbe411455babFB

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000061f01e80
Arg [1] : 00000000000000000000000000000000000000000000000000000000621e4300
Arg [2] : 000000000000000000000000e01976f2f246f2c36c61718ebdebe411455babfb


Deployed Bytecode Sourcemap

64091:3036:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57870:224;;;;;;;;;;-1:-1:-1;57870:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;57870:224:0;;;;;;;;64316:22;;;;;;;;;;-1:-1:-1;64316:22:0;;;;-1:-1:-1;;;;;64316:22:0;;;;;;-1:-1:-1;;;;;756:32:1;;;738:51;;726:2;711:18;64316:22:0;592:203:1;45364:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;46923:221::-;;;;;;;;;;-1:-1:-1;46923:221:0;;;;;:::i;:::-;;:::i;46446:411::-;;;;;;;;;;-1:-1:-1;46446:411:0;;;;;:::i;:::-;;:::i;:::-;;65950:784;;;:::i;65733:209::-;;;;;;;;;;-1:-1:-1;65733:209:0;;;;;:::i;:::-;;:::i;64248:26::-;;;;;;;;;;;;;;;;;;;2319:25:1;;;2307:2;2292:18;64248:26:0;2173:177:1;58510:113:0;;;;;;;;;;-1:-1:-1;58598:10:0;:17;58510:113;;65314:130;;;;;;;;;;-1:-1:-1;65314:130:0;;;;;:::i;:::-;;:::i;47673:339::-;;;;;;;;;;-1:-1:-1;47673:339:0;;;;;:::i;:::-;;:::i;58178:256::-;;;;;;;;;;-1:-1:-1;58178:256:0;;;;;:::i;:::-;;:::i;66958:166::-;;;;;;;;;;;;;:::i;48083:185::-;;;;;;;;;;-1:-1:-1;48083:185:0;;;;;:::i;:::-;;:::i;58700:233::-;;;;;;;;;;-1:-1:-1;58700:233:0;;;;;:::i;:::-;;:::i;66850:100::-;;;;;;;;;;-1:-1:-1;66850:100:0;;;;;:::i;:::-;;:::i;64431:30::-;;;;;;;;;;;;;;;;45058:239;;;;;;;;;;-1:-1:-1;45058:239:0;;;;;:::i;:::-;;:::i;64345:46::-;;;;;;;;;;;;64381:10;64345:46;;64281:26;;;;;;;;;;;;;:::i;44788:208::-;;;;;;;;;;-1:-1:-1;44788:208:0;;;;;:::i;:::-;;:::i;24334:103::-;;;;;;;;;;;;;:::i;65204:102::-;;;;;;;;;;;;;:::i;23683:87::-;;;;;;;;;;-1:-1:-1;23756:6:0;;-1:-1:-1;;;;;23756:6:0;23683:87;;45533:104;;;;;;;;;;;;;:::i;47216:155::-;;;;;;;;;;-1:-1:-1;47216:155:0;;;;;:::i;:::-;;:::i;65452:273::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;64201:40::-;;;;;;;;;;;;64237:4;64201:40;;48339:328;;;;;;;;;;-1:-1:-1;48339:328:0;;;;;:::i;:::-;;:::i;64398:26::-;;;;;;;;;;;;;;;;45708:334;;;;;;;;;;-1:-1:-1;45708:334:0;;;;;:::i;:::-;;:::i;64470:48::-;;;;;;;;;;;;64515:3;64470:48;;64574:46;;;;;;;;;;-1:-1:-1;64574:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;47442:164;;;;;;;;;;-1:-1:-1;47442:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;47563:25:0;;;47539:4;47563:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;47442:164;64934:262;;;;;;;;;;-1:-1:-1;64934:262:0;;;;;:::i;:::-;;:::i;24592:201::-;;;;;;;;;;-1:-1:-1;24592:201:0;;;;;:::i;:::-;;:::i;57870:224::-;57972:4;-1:-1:-1;;;;;;57996:50:0;;-1:-1:-1;;;57996:50:0;;:90;;;58050:36;58074:11;58050:23;:36::i;:::-;57989:97;57870:224;-1:-1:-1;;57870:224:0:o;45364:100::-;45418:13;45451:5;45444:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45364:100;:::o;46923:221::-;46999:7;50266:16;;;:7;:16;;;;;;-1:-1:-1;;;;;50266:16:0;47019:73;;;;-1:-1:-1;;;47019:73:0;;7655:2:1;47019:73:0;;;7637:21:1;7694:2;7674:18;;;7667:30;7733:34;7713:18;;;7706:62;-1:-1:-1;;;7784:18:1;;;7777:42;7836:19;;47019:73:0;;;;;;;;;-1:-1:-1;47112:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;47112:24:0;;46923:221::o;46446:411::-;46527:13;46543:23;46558:7;46543:14;:23::i;:::-;46527:39;;46591:5;-1:-1:-1;;;;;46585:11:0;:2;-1:-1:-1;;;;;46585:11:0;;;46577:57;;;;-1:-1:-1;;;46577:57:0;;8068:2:1;46577:57:0;;;8050:21:1;8107:2;8087:18;;;8080:30;8146:34;8126:18;;;8119:62;-1:-1:-1;;;8197:18:1;;;8190:31;8238:19;;46577:57:0;7866:397:1;46577:57:0;22487:10;-1:-1:-1;;;;;46669:21:0;;;;:62;;-1:-1:-1;46694:37:0;46711:5;22487:10;47442:164;:::i;46694:37::-;46647:168;;;;-1:-1:-1;;;46647:168:0;;8470:2:1;46647:168:0;;;8452:21:1;8509:2;8489:18;;;8482:30;8548:34;8528:18;;;8521:62;8619:26;8599:18;;;8592:54;8663:19;;46647:168:0;8268:420:1;46647:168:0;46828:21;46837:2;46841:7;46828:8;:21::i;:::-;46516:341;46446:411;;:::o;65950:784::-;64381:10;66002:9;:22;65994:57;;;;-1:-1:-1;;;65994:57:0;;8895:2:1;65994:57:0;;;8877:21:1;8934:2;8914:18;;;8907:30;-1:-1:-1;;;8953:18:1;;;8946:52;9015:18;;65994:57:0;8693:346:1;65994:57:0;64237:4;66070:7;;:19;66062:54;;;;-1:-1:-1;;;66062:54:0;;9246:2:1;66062:54:0;;;9228:21:1;9285:2;9265:18;;;9258:30;-1:-1:-1;;;9304:18:1;;;9297:52;9366:18;;66062:54:0;9044:346:1;66062:54:0;66154:11;;66135:15;:30;;66127:52;;;;-1:-1:-1;;;66127:52:0;;9597:2:1;66127:52:0;;;9579:21:1;9636:1;9616:18;;;9609:29;-1:-1:-1;;;9654:18:1;;;9647:39;9703:18;;66127:52:0;9395:332:1;66127:52:0;66214:10;66199:26;;;;:14;:26;;;;;;;;66198:27;66190:79;;;;-1:-1:-1;;;66190:79:0;;9934:2:1;66190:79:0;;;9916:21:1;9973:2;9953:18;;;9946:30;10012:34;9992:18;;;9985:62;-1:-1:-1;;;10063:18:1;;;10056:37;10110:19;;66190:79:0;9732:403:1;66190:79:0;66302:15;;66284;:33;66280:335;;;66342:30;:9;66361:10;66342:18;:30::i;:::-;66334:59;;;;-1:-1:-1;;;66334:59:0;;10342:2:1;66334:59:0;;;10324:21:1;10381:2;10361:18;;;10354:30;-1:-1:-1;;;10400:18:1;;;10393:46;10456:18;;66334:59:0;10140:340:1;66334:59:0;64515:3;66416:7;;:28;66408:61;;;;-1:-1:-1;;;66408:61:0;;10687:2:1;66408:61:0;;;10669:21:1;10726:2;10706:18;;;10699:30;-1:-1:-1;;;10745:18:1;;;10738:50;10805:18;;66408:61:0;10485:344:1;66408:61:0;66484:7;:9;;;:7;:9;;;:::i;:::-;;;;-1:-1:-1;;66523:10:0;66508:26;;;;:14;:26;;;;;:33;;-1:-1:-1;;66508:33:0;66537:4;66508:33;;;66574:7;;66556:26;;66523:10;66556:5;:26::i;:::-;65950:784::o;66280:335::-;66651:10;66636:26;;;;:14;:26;;;;;:33;;-1:-1:-1;;66636:33:0;66665:4;66636:33;;;66680:7;:9;;;;;;:::i;:::-;;;;;;66700:26;66706:10;66718:7;;66700:5;:26::i;65733:209::-;23756:6;;-1:-1:-1;;;;;23756:6:0;22487:10;23903:23;23895:68;;;;-1:-1:-1;;;23895:68:0;;;;;;;:::i;:::-;65839:11:::1;;65820:16;:30;65812:77;;;::::0;-1:-1:-1;;;65812:77:0;;11669:2:1;65812:77:0::1;::::0;::::1;11651:21:1::0;11708:2;11688:18;;;11681:30;11747:34;11727:18;;;11720:62;-1:-1:-1;;;11798:18:1;;;11791:32;11840:19;;65812:77:0::1;11467:398:1::0;65812:77:0::1;65900:15;:34:::0;65733:209::o;65314:130::-;65383:4;65407:29;:9;65426;65407:18;:29::i;47673:339::-;47868:41;22487:10;47901:7;47868:18;:41::i;:::-;47860:103;;;;-1:-1:-1;;;47860:103:0;;;;;;;:::i;:::-;47976:28;47986:4;47992:2;47996:7;47976:9;:28::i;58178:256::-;58275:7;58311:23;58328:5;58311:16;:23::i;:::-;58303:5;:31;58295:87;;;;-1:-1:-1;;;58295:87:0;;12490:2:1;58295:87:0;;;12472:21:1;12529:2;12509:18;;;12502:30;12568:34;12548:18;;;12541:62;-1:-1:-1;;;12619:18:1;;;12612:41;12670:19;;58295:87:0;12288:407:1;58295:87:0;-1:-1:-1;;;;;;58400:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;58178:256::o;66958:166::-;67020:7;;-1:-1:-1;;;;;67020:7:0;67006:10;:21;66998:59;;;;-1:-1:-1;;;66998:59:0;;12902:2:1;66998:59:0;;;12884:21:1;12941:2;12921:18;;;12914:30;12980:27;12960:18;;;12953:55;13025:18;;66998:59:0;12700:349:1;66998:59:0;67076:7;;67068:48;;-1:-1:-1;;;;;67076:7:0;;;;67094:21;67068:48;;;;;67076:7;67068:48;67076:7;67068:48;67094:21;67076:7;67068:48;;;;;;;;;;;;;;;;;;;;;66958:166::o;48083:185::-;48221:39;48238:4;48244:2;48248:7;48221:39;;;;;;;;;;;;:16;:39::i;58700:233::-;58775:7;58811:30;58598:10;:17;;58510:113;58811:30;58803:5;:38;58795:95;;;;-1:-1:-1;;;58795:95:0;;13256:2:1;58795:95:0;;;13238:21:1;13295:2;13275:18;;;13268:30;13334:34;13314:18;;;13307:62;-1:-1:-1;;;13385:18:1;;;13378:42;13437:19;;58795:95:0;13054:408:1;58795:95:0;58908:10;58919:5;58908:17;;;;;;;;:::i;:::-;;;;;;;;;58901:24;;58700:233;;;:::o;66850:100::-;23756:6;;-1:-1:-1;;;;;23756:6:0;22487:10;23903:23;23895:68;;;;-1:-1:-1;;;23895:68:0;;;;;;;:::i;:::-;66924:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;66850:100:::0;:::o;45058:239::-;45130:7;45166:16;;;:7;:16;;;;;;-1:-1:-1;;;;;45166:16:0;45201:19;45193:73;;;;-1:-1:-1;;;45193:73:0;;13801:2:1;45193:73:0;;;13783:21:1;13840:2;13820:18;;;13813:30;13879:34;13859:18;;;13852:62;-1:-1:-1;;;13930:18:1;;;13923:39;13979:19;;45193:73:0;13599:405:1;64281:26:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44788:208::-;44860:7;-1:-1:-1;;;;;44888:19:0;;44880:74;;;;-1:-1:-1;;;44880:74:0;;14211:2:1;44880:74:0;;;14193:21:1;14250:2;14230:18;;;14223:30;14289:34;14269:18;;;14262:62;-1:-1:-1;;;14340:18:1;;;14333:40;14390:19;;44880:74:0;14009:406:1;44880:74:0;-1:-1:-1;;;;;;44972:16:0;;;;;:9;:16;;;;;;;44788:208::o;24334:103::-;23756:6;;-1:-1:-1;;;;;23756:6:0;22487:10;23903:23;23895:68;;;;-1:-1:-1;;;23895:68:0;;;;;;;:::i;:::-;24399:30:::1;24426:1;24399:18;:30::i;65204:102::-:0;65253:7;65280:18;:9;:16;:18::i;:::-;65273:25;;65204:102;:::o;45533:104::-;45589:13;45622:7;45615:14;;;;;:::i;47216:155::-;47311:52;22487:10;47344:8;47354;47311:18;:52::i;65452:273::-;65501:24;65538:14;65555:18;:9;:16;:18::i;:::-;65538:35;;65608:6;65594:21;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;65594:21:0;;65584:31;;65631:9;65626:92;65650:6;65646:1;:10;65626:92;;;65691:15;:9;65704:1;65691:12;:15::i;:::-;65678:7;65686:1;65678:10;;;;;;;;:::i;:::-;-1:-1:-1;;;;;65678:28:0;;;:10;;;;;;;;;;;:28;65658:3;;;;:::i;:::-;;;;65626:92;;;;65527:198;65452:273;:::o;48339:328::-;48514:41;22487:10;48547:7;48514:18;:41::i;:::-;48506:103;;;;-1:-1:-1;;;48506:103:0;;;;;;;:::i;:::-;48620:39;48634:4;48640:2;48644:7;48653:5;48620:13;:39::i;:::-;48339:328;;;;:::o;45708:334::-;50242:4;50266:16;;;:7;:16;;;;;;45781:13;;-1:-1:-1;;;;;50266:16:0;45807:76;;;;-1:-1:-1;;;45807:76:0;;14622:2:1;45807:76:0;;;14604:21:1;14661:2;14641:18;;;14634:30;14700:34;14680:18;;;14673:62;-1:-1:-1;;;14751:18:1;;;14744:45;14806:19;;45807:76:0;14420:411:1;45807:76:0;45896:21;45920:10;:8;:10::i;:::-;45896:34;;45972:1;45954:7;45948:21;:25;:86;;;;;;;;;;;;;;;;;46000:7;46009:18;:7;:16;:18::i;:::-;45983:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45948:86;45941:93;45708:334;-1:-1:-1;;;45708:334:0:o;64934:262::-;23756:6;;-1:-1:-1;;;;;23756:6:0;22487:10;23903:23;23895:68;;;;-1:-1:-1;;;23895:68:0;;;;;;;:::i;:::-;65020:6:::1;65015:174;65036:10;:17;65032:1;:21;65015:174;;;65080:33;65099:10;65110:1;65099:13;;;;;;;;:::i;:::-;;;;;;;65080:9;:18;;:33;;;;:::i;:::-;65075:103;;65134:28;65148:10;65159:1;65148:13;;;;;;;;:::i;:::-;;;;;;;65134:9;:13;;:28;;;;:::i;:::-;;65075:103;65055:3:::0;::::1;::::0;::::1;:::i;:::-;;;;65015:174;;24592:201:::0;23756:6;;-1:-1:-1;;;;;23756:6:0;22487:10;23903:23;23895:68;;;;-1:-1:-1;;;23895:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;24681:22:0;::::1;24673:73;;;::::0;-1:-1:-1;;;24673:73:0;;15513:2:1;24673:73:0::1;::::0;::::1;15495:21:1::0;15552:2;15532:18;;;15525:30;15591:34;15571:18;;;15564:62;-1:-1:-1;;;15642:18:1;;;15635:36;15688:19;;24673:73:0::1;15311:402:1::0;24673:73:0::1;24757:28;24776:8;24757:18;:28::i;44419:305::-:0;44521:4;-1:-1:-1;;;;;;44558:40:0;;-1:-1:-1;;;44558:40:0;;:105;;-1:-1:-1;;;;;;;44615:48:0;;-1:-1:-1;;;44615:48:0;44558:105;:158;;;-1:-1:-1;;;;;;;;;;36224:40:0;;;44680:36;36115:157;54159:174;54234:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;54234:29:0;-1:-1:-1;;;;;54234:29:0;;;;;;;;:24;;54288:23;54234:24;54288:14;:23::i;:::-;-1:-1:-1;;;;;54279:46:0;;;;;;;;;;;54159:174;;:::o;8444:167::-;-1:-1:-1;;;;;8578:23:0;;8524:4;3980:19;;;:12;;;:19;;;;;;:24;;8548:55;3883:129;52155:382;-1:-1:-1;;;;;52235:16:0;;52227:61;;;;-1:-1:-1;;;52227:61:0;;15920:2:1;52227:61:0;;;15902:21:1;;;15939:18;;;15932:30;15998:34;15978:18;;;15971:62;16050:18;;52227:61:0;15718:356:1;52227:61:0;50242:4;50266:16;;;:7;:16;;;;;;-1:-1:-1;;;;;50266:16:0;:30;52299:58;;;;-1:-1:-1;;;52299:58:0;;16281:2:1;52299:58:0;;;16263:21:1;16320:2;16300:18;;;16293:30;16359;16339:18;;;16332:58;16407:18;;52299:58:0;16079:352:1;52299:58:0;52370:45;52399:1;52403:2;52407:7;52370:20;:45::i;:::-;-1:-1:-1;;;;;52428:13:0;;;;;;:9;:13;;;;;:18;;52445:1;;52428:13;:18;;52445:1;;52428:18;:::i;:::-;;;;-1:-1:-1;;52457:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;52457:21:0;-1:-1:-1;;;;;52457:21:0;;;;;;;;52496:33;;52457:16;;;52496:33;;52457:16;;52496:33;52155:382;;:::o;50471:348::-;50564:4;50266:16;;;:7;:16;;;;;;-1:-1:-1;;;;;50266:16:0;50581:73;;;;-1:-1:-1;;;50581:73:0;;16771:2:1;50581:73:0;;;16753:21:1;16810:2;16790:18;;;16783:30;16849:34;16829:18;;;16822:62;-1:-1:-1;;;16900:18:1;;;16893:42;16952:19;;50581:73:0;16569:408:1;50581:73:0;50665:13;50681:23;50696:7;50681:14;:23::i;:::-;50665:39;;50734:5;-1:-1:-1;;;;;50723:16:0;:7;-1:-1:-1;;;;;50723:16:0;;:51;;;;50767:7;-1:-1:-1;;;;;50743:31:0;:20;50755:7;50743:11;:20::i;:::-;-1:-1:-1;;;;;50743:31:0;;50723:51;:87;;;-1:-1:-1;;;;;;47563:25:0;;;47539:4;47563:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;50778:32;50715:96;50471:348;-1:-1:-1;;;;50471:348:0:o;53463:578::-;53622:4;-1:-1:-1;;;;;53595:31:0;:23;53610:7;53595:14;:23::i;:::-;-1:-1:-1;;;;;53595:31:0;;53587:85;;;;-1:-1:-1;;;53587:85:0;;17184:2:1;53587:85:0;;;17166:21:1;17223:2;17203:18;;;17196:30;17262:34;17242:18;;;17235:62;-1:-1:-1;;;17313:18:1;;;17306:39;17362:19;;53587:85:0;16982:405:1;53587:85:0;-1:-1:-1;;;;;53691:16:0;;53683:65;;;;-1:-1:-1;;;53683:65:0;;17594:2:1;53683:65:0;;;17576:21:1;17633:2;17613:18;;;17606:30;17672:34;17652:18;;;17645:62;-1:-1:-1;;;17723:18:1;;;17716:34;17767:19;;53683:65:0;17392:400:1;53683:65:0;53761:39;53782:4;53788:2;53792:7;53761:20;:39::i;:::-;53865:29;53882:1;53886:7;53865:8;:29::i;:::-;-1:-1:-1;;;;;53907:15:0;;;;;;:9;:15;;;;;:20;;53926:1;;53907:15;:20;;53926:1;;53907:20;:::i;:::-;;;;-1:-1:-1;;;;;;;53938:13:0;;;;;;:9;:13;;;;;:18;;53955:1;;53938:13;:18;;53955:1;;53938:18;:::i;:::-;;;;-1:-1:-1;;53967:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;53967:21:0;-1:-1:-1;;;;;53967:21:0;;;;;;;;;54006:27;;53967:16;;54006:27;;;;;;;53463:578;;;:::o;24953:191::-;25046:6;;;-1:-1:-1;;;;;25063:17:0;;;-1:-1:-1;;;;;;25063:17:0;;;;;;;25096:40;;25046:6;;;25063:17;25046:6;;25096:40;;25027:16;;25096:40;25016:128;24953:191;:::o;8697:117::-;8760:7;8787:19;8795:3;4181:18;;4098:109;54475:315;54630:8;-1:-1:-1;;;;;54621:17:0;:5;-1:-1:-1;;;;;54621:17:0;;;54613:55;;;;-1:-1:-1;;;54613:55:0;;18129:2:1;54613:55:0;;;18111:21:1;18168:2;18148:18;;;18141:30;18207:27;18187:18;;;18180:55;18252:18;;54613:55:0;17927:349:1;54613:55:0;-1:-1:-1;;;;;54679:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;54679:46:0;;;;;;;;;;54741:41;;540::1;;;54741::0;;513:18:1;54741:41:0;;;;;;;54475:315;;;:::o;9168:158::-;9242:7;9293:22;9297:3;9309:5;9293:3;:22::i;49549:315::-;49706:28;49716:4;49722:2;49726:7;49706:9;:28::i;:::-;49753:48;49776:4;49782:2;49786:7;49795:5;49753:22;:48::i;:::-;49745:111;;;;-1:-1:-1;;;49745:111:0;;;;;;;:::i;66742:100::-;66794:13;66827:7;66820:14;;;;;:::i;19969:723::-;20025:13;20246:10;20242:53;;-1:-1:-1;;20273:10:0;;;;;;;;;;;;-1:-1:-1;;;20273:10:0;;;;;19969:723::o;20242:53::-;20320:5;20305:12;20361:78;20368:9;;20361:78;;20394:8;;;;:::i;:::-;;-1:-1:-1;20417:10:0;;-1:-1:-1;20425:2:0;20417:10;;:::i;:::-;;;20361:78;;;20449:19;20481:6;20471:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20471:17:0;;20449:39;;20499:154;20506:10;;20499:154;;20533:11;20543:1;20533:11;;:::i;:::-;;-1:-1:-1;20602:10:0;20610:2;20602:5;:10;:::i;:::-;20589:24;;:2;:24;:::i;:::-;20576:39;;20559:6;20566;20559:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;20559:56:0;;;;;;;;-1:-1:-1;20630:11:0;20639:2;20630:11;;:::i;:::-;;;20499:154;;7872:152;7942:4;7966:50;7971:3;-1:-1:-1;;;;;7991:23:0;;7966:4;:50::i;59546:589::-;-1:-1:-1;;;;;59752:18:0;;59748:187;;59787:40;59819:7;60962:10;:17;;60935:24;;;;:15;:24;;;;;:44;;;60990:24;;;;;;;;;;;;60858:164;59787:40;59748:187;;;59857:2;-1:-1:-1;;;;;59849:10:0;:4;-1:-1:-1;;;;;59849:10:0;;59845:90;;59876:47;59909:4;59915:7;59876:32;:47::i;:::-;-1:-1:-1;;;;;59949:16:0;;59945:183;;59982:45;60019:7;59982:36;:45::i;59945:183::-;60055:4;-1:-1:-1;;;;;60049:10:0;:2;-1:-1:-1;;;;;60049:10:0;;60045:83;;60076:40;60104:2;60108:7;60076:27;:40::i;4561:120::-;4628:7;4655:3;:11;;4667:5;4655:18;;;;;;;;:::i;:::-;;;;;;;;;4648:25;;4561:120;;;;:::o;55355:799::-;55510:4;-1:-1:-1;;;;;55531:13:0;;26294:20;26342:8;55527:620;;55567:72;;-1:-1:-1;;;55567:72:0;;-1:-1:-1;;;;;55567:36:0;;;;;:72;;22487:10;;55618:4;;55624:7;;55633:5;;55567:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55567:72:0;;;;;;;;-1:-1:-1;;55567:72:0;;;;;;;;;;;;:::i;:::-;;;55563:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55809:13:0;;55805:272;;55852:60;;-1:-1:-1;;;55852:60:0;;;;;;;:::i;55805:272::-;56027:6;56021:13;56012:6;56008:2;56004:15;55997:38;55563:529;-1:-1:-1;;;;;;55690:51:0;-1:-1:-1;;;55690:51:0;;-1:-1:-1;55683:58:0;;55527:620;-1:-1:-1;56131:4:0;55355:799;;;;;;:::o;1787:414::-;1850:4;3980:19;;;:12;;;:19;;;;;;1867:327;;-1:-1:-1;1910:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;2093:18;;2071:19;;;:12;;;:19;;;;;;:40;;;;2126:11;;1867:327;-1:-1:-1;2177:5:0;2170:12;;61649:988;61915:22;61965:1;61940:22;61957:4;61940:16;:22::i;:::-;:26;;;;:::i;:::-;61977:18;61998:26;;;:17;:26;;;;;;61915:51;;-1:-1:-1;62131:28:0;;;62127:328;;-1:-1:-1;;;;;62198:18:0;;62176:19;62198:18;;;:12;:18;;;;;;;;:34;;;;;;;;;62249:30;;;;;;:44;;;62366:30;;:17;:30;;;;;:43;;;62127:328;-1:-1:-1;62551:26:0;;;;:17;:26;;;;;;;;62544:33;;;-1:-1:-1;;;;;62595:18:0;;;;;:12;:18;;;;;:34;;;;;;;62588:41;61649:988::o;62932:1079::-;63210:10;:17;63185:22;;63210:21;;63230:1;;63210:21;:::i;:::-;63242:18;63263:24;;;:15;:24;;;;;;63636:10;:26;;63185:46;;-1:-1:-1;63263:24:0;;63185:46;;63636:26;;;;;;:::i;:::-;;;;;;;;;63614:48;;63700:11;63675:10;63686;63675:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;63780:28;;;:15;:28;;;;;;;:41;;;63952:24;;;;;63945:31;63987:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;63003:1008;;;62932:1079;:::o;60436:221::-;60521:14;60538:20;60555:2;60538:16;:20::i;:::-;-1:-1:-1;;;;;60569:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;60614:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;60436:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;800:258::-;872:1;882:113;896:6;893:1;890:13;882:113;;;972:11;;;966:18;953:11;;;946:39;918:2;911:10;882:113;;;1013:6;1010:1;1007:13;1004:48;;;-1:-1:-1;;1048:1:1;1030:16;;1023:27;800:258::o;1063:::-;1105:3;1143:5;1137:12;1170:6;1165:3;1158:19;1186:63;1242:6;1235:4;1230:3;1226:14;1219:4;1212:5;1208:16;1186:63;:::i;:::-;1303:2;1282:15;-1:-1:-1;;1278:29:1;1269:39;;;;1310:4;1265:50;;1063:258;-1:-1:-1;;1063:258:1:o;1326:220::-;1475:2;1464:9;1457:21;1438:4;1495:45;1536:2;1525:9;1521:18;1513:6;1495:45;:::i;1551:180::-;1610:6;1663:2;1651:9;1642:7;1638:23;1634:32;1631:52;;;1679:1;1676;1669:12;1631:52;-1:-1:-1;1702:23:1;;1551:180;-1:-1:-1;1551:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:186::-;2414:6;2467:2;2455:9;2446:7;2442:23;2438:32;2435:52;;;2483:1;2480;2473:12;2435:52;2506:29;2525:9;2506:29;:::i;2546:328::-;2623:6;2631;2639;2692:2;2680:9;2671:7;2667:23;2663:32;2660:52;;;2708:1;2705;2698:12;2660:52;2731:29;2750:9;2731:29;:::i;:::-;2721:39;;2779:38;2813:2;2802:9;2798:18;2779:38;:::i;:::-;2769:48;;2864:2;2853:9;2849:18;2836:32;2826:42;;2546:328;;;;;:::o;2879:127::-;2940:10;2935:3;2931:20;2928:1;2921:31;2971:4;2968:1;2961:15;2995:4;2992:1;2985:15;3011:275;3082:2;3076:9;3147:2;3128:13;;-1:-1:-1;;3124:27:1;3112:40;;3182:18;3167:34;;3203:22;;;3164:62;3161:88;;;3229:18;;:::i;:::-;3265:2;3258:22;3011:275;;-1:-1:-1;3011:275:1:o;3291:407::-;3356:5;3390:18;3382:6;3379:30;3376:56;;;3412:18;;:::i;:::-;3450:57;3495:2;3474:15;;-1:-1:-1;;3470:29:1;3501:4;3466:40;3450:57;:::i;:::-;3441:66;;3530:6;3523:5;3516:21;3570:3;3561:6;3556:3;3552:16;3549:25;3546:45;;;3587:1;3584;3577:12;3546:45;3636:6;3631:3;3624:4;3617:5;3613:16;3600:43;3690:1;3683:4;3674:6;3667:5;3663:18;3659:29;3652:40;3291:407;;;;;:::o;3703:451::-;3772:6;3825:2;3813:9;3804:7;3800:23;3796:32;3793:52;;;3841:1;3838;3831:12;3793:52;3881:9;3868:23;3914:18;3906:6;3903:30;3900:50;;;3946:1;3943;3936:12;3900:50;3969:22;;4022:4;4014:13;;4010:27;-1:-1:-1;4000:55:1;;4051:1;4048;4041:12;4000:55;4074:74;4140:7;4135:2;4122:16;4117:2;4113;4109:11;4074:74;:::i;4159:347::-;4224:6;4232;4285:2;4273:9;4264:7;4260:23;4256:32;4253:52;;;4301:1;4298;4291:12;4253:52;4324:29;4343:9;4324:29;:::i;:::-;4314:39;;4403:2;4392:9;4388:18;4375:32;4450:5;4443:13;4436:21;4429:5;4426:32;4416:60;;4472:1;4469;4462:12;4416:60;4495:5;4485:15;;;4159:347;;;;;:::o;4511:658::-;4682:2;4734:21;;;4804:13;;4707:18;;;4826:22;;;4653:4;;4682:2;4905:15;;;;4879:2;4864:18;;;4653:4;4948:195;4962:6;4959:1;4956:13;4948:195;;;5027:13;;-1:-1:-1;;;;;5023:39:1;5011:52;;5118:15;;;;5083:12;;;;5059:1;4977:9;4948:195;;;-1:-1:-1;5160:3:1;;4511:658;-1:-1:-1;;;;;;4511:658:1:o;5174:667::-;5269:6;5277;5285;5293;5346:3;5334:9;5325:7;5321:23;5317:33;5314:53;;;5363:1;5360;5353:12;5314:53;5386:29;5405:9;5386:29;:::i;:::-;5376:39;;5434:38;5468:2;5457:9;5453:18;5434:38;:::i;:::-;5424:48;;5519:2;5508:9;5504:18;5491:32;5481:42;;5574:2;5563:9;5559:18;5546:32;5601:18;5593:6;5590:30;5587:50;;;5633:1;5630;5623:12;5587:50;5656:22;;5709:4;5701:13;;5697:27;-1:-1:-1;5687:55:1;;5738:1;5735;5728:12;5687:55;5761:74;5827:7;5822:2;5809:16;5804:2;5800;5796:11;5761:74;:::i;:::-;5751:84;;;5174:667;;;;;;;:::o;5846:260::-;5914:6;5922;5975:2;5963:9;5954:7;5950:23;5946:32;5943:52;;;5991:1;5988;5981:12;5943:52;6014:29;6033:9;6014:29;:::i;:::-;6004:39;;6062:38;6096:2;6085:9;6081:18;6062:38;:::i;:::-;6052:48;;5846:260;;;;;:::o;6111:952::-;6195:6;6226:2;6269;6257:9;6248:7;6244:23;6240:32;6237:52;;;6285:1;6282;6275:12;6237:52;6325:9;6312:23;6354:18;6395:2;6387:6;6384:14;6381:34;;;6411:1;6408;6401:12;6381:34;6449:6;6438:9;6434:22;6424:32;;6494:7;6487:4;6483:2;6479:13;6475:27;6465:55;;6516:1;6513;6506:12;6465:55;6552:2;6539:16;6574:2;6570;6567:10;6564:36;;;6580:18;;:::i;:::-;6626:2;6623:1;6619:10;6609:20;;6649:28;6673:2;6669;6665:11;6649:28;:::i;:::-;6711:15;;;6781:11;;;6777:20;;;6742:12;;;;6809:19;;;6806:39;;;6841:1;6838;6831:12;6806:39;6865:11;;;;6885:148;6901:6;6896:3;6893:15;6885:148;;;6967:23;6986:3;6967:23;:::i;:::-;6955:36;;6918:12;;;;7011;;;;6885:148;;;7052:5;6111:952;-1:-1:-1;;;;;;;;6111:952:1:o;7068:380::-;7147:1;7143:12;;;;7190;;;7211:61;;7265:4;7257:6;7253:17;7243:27;;7211:61;7318:2;7310:6;7307:14;7287:18;7284:38;7281:161;;;7364:10;7359:3;7355:20;7352:1;7345:31;7399:4;7396:1;7389:15;7427:4;7424:1;7417:15;7281:161;;7068:380;;;:::o;10834:127::-;10895:10;10890:3;10886:20;10883:1;10876:31;10926:4;10923:1;10916:15;10950:4;10947:1;10940:15;10966:135;11005:3;-1:-1:-1;;11026:17:1;;11023:43;;;11046:18;;:::i;:::-;-1:-1:-1;11093:1:1;11082:13;;10966:135::o;11106:356::-;11308:2;11290:21;;;11327:18;;;11320:30;11386:34;11381:2;11366:18;;11359:62;11453:2;11438:18;;11106:356::o;11870:413::-;12072:2;12054:21;;;12111:2;12091:18;;;12084:30;12150:34;12145:2;12130:18;;12123:62;-1:-1:-1;;;12216:2:1;12201:18;;12194:47;12273:3;12258:19;;11870:413::o;13467:127::-;13528:10;13523:3;13519:20;13516:1;13509:31;13559:4;13556:1;13549:15;13583:4;13580:1;13573:15;14836:470;15015:3;15053:6;15047:13;15069:53;15115:6;15110:3;15103:4;15095:6;15091:17;15069:53;:::i;:::-;15185:13;;15144:16;;;;15207:57;15185:13;15144:16;15241:4;15229:17;;15207:57;:::i;:::-;15280:20;;14836:470;-1:-1:-1;;;;14836:470:1:o;16436:128::-;16476:3;16507:1;16503:6;16500:1;16497:13;16494:39;;;16513:18;;:::i;:::-;-1:-1:-1;16549:9:1;;16436:128::o;17797:125::-;17837:4;17865:1;17862;17859:8;17856:34;;;17870:18;;:::i;:::-;-1:-1:-1;17907:9:1;;17797:125::o;18281:414::-;18483:2;18465:21;;;18522:2;18502:18;;;18495:30;18561:34;18556:2;18541:18;;18534:62;-1:-1:-1;;;18627:2:1;18612:18;;18605:48;18685:3;18670:19;;18281:414::o;18700:127::-;18761:10;18756:3;18752:20;18749:1;18742:31;18792:4;18789:1;18782:15;18816:4;18813:1;18806:15;18832:120;18872:1;18898;18888:35;;18903:18;;:::i;:::-;-1:-1:-1;18937:9:1;;18832:120::o;18957:112::-;18989:1;19015;19005:35;;19020:18;;:::i;:::-;-1:-1:-1;19054:9:1;;18957:112::o;19074:489::-;-1:-1:-1;;;;;19343:15:1;;;19325:34;;19395:15;;19390:2;19375:18;;19368:43;19442:2;19427:18;;19420:34;;;19490:3;19485:2;19470:18;;19463:31;;;19268:4;;19511:46;;19537:19;;19529:6;19511:46;:::i;:::-;19503:54;19074:489;-1:-1:-1;;;;;;19074:489:1:o;19568:249::-;19637:6;19690:2;19678:9;19669:7;19665:23;19661:32;19658:52;;;19706:1;19703;19696:12;19658:52;19738:9;19732:16;19757:30;19781:5;19757:30;:::i;19822:127::-;19883:10;19878:3;19874:20;19871:1;19864:31;19914:4;19911:1;19904:15;19938:4;19935:1;19928:15

Swarm Source

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