ETH Price: $2,963.95 (+3.45%)
Gas: 1 Gwei

Token

The Millies Club (TMC)
 

Overview

Max Total Supply

6,116 TMC

Holders

1,241

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 TMC
0xaD015f00D380da858c76D736Ff0F266608dB0D98
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:
MILLIES_NFT

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 20000 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: GPL-3.0
// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (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.
 *
 * [WARNING]
 * ====
 *  Trying to delete such a structure from storage will likely result in data corruption, rendering the structure unusable.
 *  See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info.
 *
 *  In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an array of EnumerableSet.
 * ====
 */
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;

        /// @solidity memory-safe-assembly
        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;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }
}

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


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

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

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


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

pragma solidity ^0.8.0;


/**
 * @dev External interface of AccessControlEnumerable declared to support ERC165 detection.
 */
interface IAccessControlEnumerable is IAccessControl {
    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) external view returns (address);

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) external view returns (uint256);
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;





/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role);
        _;
    }

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleGranted} event.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleRevoked} event.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     *
     * May emit a {RoleRevoked} event.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * May emit a {RoleGranted} event.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleGranted} event.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleRevoked} event.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControlEnumerable.sol)

pragma solidity ^0.8.0;




/**
 * @dev Extension of {AccessControl} that allows enumerating the members of each role.
 */
abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl {
    using EnumerableSet for EnumerableSet.AddressSet;

    mapping(bytes32 => EnumerableSet.AddressSet) private _roleMembers;

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

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) public view virtual override returns (address) {
        return _roleMembers[role].at(index);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view virtual override returns (uint256) {
        return _roleMembers[role].length();
    }

    /**
     * @dev Overload {_grantRole} to track enumerable memberships
     */
    function _grantRole(bytes32 role, address account) internal virtual override {
        super._grantRole(role, account);
        _roleMembers[role].add(account);
    }

    /**
     * @dev Overload {_revokeRole} to track enumerable memberships
     */
    function _revokeRole(bytes32 role, address account) internal virtual override {
        super._revokeRole(role, account);
        _roleMembers[role].remove(account);
    }
}

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

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

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

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

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/MILLIES_NFT.sol



//                                        *                                       
//                                    *********                                  
//                              ********************                              
//                           ***************************                          
//                           ***************************                          
//                           ***************************                         
//                           ***************************                          
//                           ***************************                          
//                           ***************************                          
//                               *******************                               
//                                   ***********                                   
//                                        *                                       
//                                                                                
//                                                                                
//                          *                           *                         
//                     ***********                 ***********                     
//                 ********************       ********************                
//              ************************** *************************             
//                   ******************************************                 
//                       **********************************                      
//                           **************************                           
//                               ******************                               
//                                    *********                                   
//            ***                         *                        ***            
//        ***********                                          ***********       
//   ********************                                  ********************   
//****************************                         ****************************
//     ****************************               ***************************    
//         ****************************       ***************************        
//             *************************** **************************             
//                  ************|Developed by BEE3™|************                 
//                       **********************************                      
//                           **************************                          
//                                *****************                               
//                                    ********                                    
//                                        *                                        
//                                                                                
//                                                                                
//                           *                         *                          
//                           ******               ******                          
//                           *********         *********                          
//                           ************* *************                          
//                           ***************************                          
//                           ***************************                          
//                           ***************************                           
//                               *******************                               
//                                    *********
//                                        *

pragma solidity 0.8.16;






contract MILLIES_NFT is ERC721Enumerable, Ownable, AccessControlEnumerable {

    /**********************************************
     **********************************************
                    VARIABLES
    **********************************************                    
    **********************************************/

    using Strings for uint256;
    using Counters for Counters.Counter;

    // Admin role
    bytes32 public constant ADMIN_ROLE = keccak256("ADMIN_ROLE");

    // URI Control
    string private baseURI = "https://nftstorage.link/ipfs/bafybeiglxenm2iyk6f3lst7awa2qbaxcdh342fqfv2rekisaumyxocz5cq/";
    string public baseExtension = ".json";
    string private notRevealedUri = "https://nftstorage.link/ipfs/bafybeigcicp3irnxmbnfw2guamvvmd4yue5gmi6hieajteqdzeqmy56beu/MilliesNotRevealed.json";

    // Payment address
    address payable private payments;

    // Supply 6500 NFTs by default
    uint256 public maxSupply = 6500;
    
    // Precio de 0.04 Eth en WL y precio de 0.08 Eth Public Sale
    uint256 public wlCost = 0.04 ether;
    uint256 public mintCost = 0.08 ether;

    // Máximo de 5 NFTs por wallet
    uint256 public maxMintAmountinWL = 3;
    uint256 public maxMintAmount = 5;

    // 500 freemints (Últimos 500 NFTs)
    uint256 public constant freeMintAmount = 500;

    // Royalties del 5% de ventas secundarias.
    address payable private royaltiesAddress;           // ¿Donde se pagan los royalties?
    uint96 private royaltiesBasicPoints;                // Porcentaje a pagar
    uint96 private constant maxRoyaltiePoints = 1500;    // Maximo un 15%

    // Smart Contract | Control
    bool public isPaused = true;              // Pausar el mint
    bool private isRevealed = false;          // Revelar NFTs
    bool public isWhitelistEnabled = true;    // Whitelist activa?
    bool public isFreeMintEnabled = false;    // Freemints activos?

    // Mapeo direcciónWallet -> activo en whitelist
    bytes32 private wlRoot = 0xa9244026f69efee0ba376df3689d70a57a73c5e17a216a7b815ca48663e1e50a;
    bytes32 private ogRoot = 0xc23bffc5fd6cd6235d0fb70f2214e2d8847810efc9b15580b25a244a0c49305c;

    // Freeminters
    mapping(address => bool) private claimedFreeminters;

    // Mint amount control
    mapping(address => Counters.Counter) private addressMintedBalanceInWL;
    mapping(address => Counters.Counter) private addressMintedBalance;

    /**********************************************
     **********************************************
                    CONSTRUCTOR
    **********************************************                    
    **********************************************/

    constructor(address _paymentAddress, address _royaltiesAddress) ERC721("The Millies Club", "TMC") {
        
        // Rol de administrador para owner
        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
        _setupRole(ADMIN_ROLE, _msgSender());
        // Splitters
        payments = payable(_paymentAddress);
        royaltiesAddress = payable(_royaltiesAddress); //Contract creator by default
        // Porcentaje de royalties
        royaltiesBasicPoints = 500; // 5% default

        // ---------
        // Preminted
        // ---------
        // BEE3
        internalPreMint(0xd54cC4CCAc6974417A9B90fd15B7de08CbC9F1D7, 18);
        // (SORTEOS, REGALOS Y PERSONALES)
        internalPreMint(0xfB6171deec30DF5efA7f115e6F04C8DF23eEDeA4, 25);
        // (SORTEOS, REGALOS Y PERSONALES)
        internalPreMint(0xea777b2C50094bdA93D55c64393Ec6F0F92D3380, 25);
        // 
        internalPreMint(0xCe3f52A81D998f37692aC85e6Aa26029A3fAF24d, 5);
        // 
        internalPreMint(0x4894B2Bc59579c2574B5309C8343E8cF0e2ec67E, 3);
        //
        internalPreMint(0xF30f172Fa9EaAffe2146D414fE573a33387133dd, 3);
        //
        internalPreMint(0x494A38af8d9C9252ac52580ec7b5543333127c07, 3);
    }

    /**********************************************
     **********************************************
               URI AND METADATA FUNCTIONS
    **********************************************                    
    **********************************************/

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

    // ERC721 override
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        
        if(!isRevealed) return notRevealedUri;

        string memory currentBaseURI = _baseURI();

        return bytes(currentBaseURI).length > 0
            ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
            : "";
    }

    // Meta-data to show when it has not yet been revealed.
    function setNotRevealedURI(string memory _notRevealedURI) external {
        require(hasRole(ADMIN_ROLE, _msgSender()), "You do not have permissions.");
        notRevealedUri = _notRevealedURI;
    }

    function setBaseURI(string memory _newBaseURI) external {
        require(hasRole(ADMIN_ROLE, _msgSender()), "You do not have permissions.");
        baseURI = _newBaseURI;
    }

    function setBaseExtension(string memory _newBaseExtension) external {
        require(hasRole(ADMIN_ROLE, _msgSender()), "You do not have permissions.");
        baseExtension = _newBaseExtension;
    }

    // Reveal meta-data of NFTs.
    function reveal() external {
        require(hasRole(ADMIN_ROLE, _msgSender()), "You do not have permissions.");
        isRevealed = true;
    }

    /**********************************************
     **********************************************
                    MINTING FUNCTIONs
    **********************************************                    
    **********************************************/

    // Internal function - Easy mint and counting
    function internalBulkMint(address _to, uint256 _amount) internal {
        for(uint i = 0; i < _amount; i++) {
            _safeMint(_to, totalSupply());

            if(isWhitelistEnabled) addressMintedBalanceInWL[_to].increment();
            else addressMintedBalance[_to].increment();
        }
    }

    // Internal function - Easy pre-mint
    function internalPreMint(address _to, uint256 _amount) internal {
        for(uint i = 0; i < _amount; i++) {
            _safeMint(_to, totalSupply());
        }
    }

    // Public function
    function mint(uint256 _mintAmount, bytes32[] calldata _merkleProof) external payable {
        require(!isPaused, "Exception in mint: Contract is paused");
        require(!isFreeMintEnabled, "Exception in mint: Mint finished. Freemint enabled.");
        require(_mintAmount > 0, "Exception in mint: You have to mint at least one");

        require((totalSupply() + _mintAmount) <= (maxSupply-freeMintAmount), "Exception in mint: Try to mint less quantity.");
        require((remainingForMint() - _mintAmount) > freeMintAmount, "Exception in mint: Mint finished.");

        address _to = _msgSender();
        // 1ª Fase: Solo minteo con whitelist
        if(isWhitelistEnabled) {
            require(checkWhitelistValidity(_merkleProof), "Exception in mint: You are not in the WL.");
            require((addressMintedBalanceInWL[_to].current() + _mintAmount <= maxMintAmountinWL), "Exception in mint: You have exceeded the limit.");
            require(msg.value >= (wlCost * _mintAmount), "Exception in mint: A lower quantity has been sended.");
            internalBulkMint(_to, _mintAmount);
        }
        // 2ª Fase: Minteo público
        else if(!isWhitelistEnabled) {
            require((addressMintedBalance[_to].current() + _mintAmount <= maxMintAmount), "Exception in mint: You have exceeded the limit.");
            require(msg.value >= (mintCost * _mintAmount), "Exception in mint: A lower quantity has been sended.");
            internalBulkMint(_to, _mintAmount);
        }
    }

    function claimFreemint(bytes32[] calldata _merkleProof) external {
        require(checkFreemintValidity(_merkleProof), "Exception in claimFreemint: You do not have access to free mining.");
        require(!claimedFreeminters[_msgSender()], "Exception in claimFreemint: You have already claimed your NFT.");

        require(!isPaused, "Exception in claimFreemint: Claim is paused.");
        require(isFreeMintEnabled, "Exception in claimFreemint: Freemint is not activated.");
        
        require(remainingForMint() <= freeMintAmount, "Exception in claimFreemint: Not the last 500 NFTs yet!");

        claimedFreeminters[_msgSender()] = true;
        internalBulkMint(_msgSender(), 1);
    }

    function itsClaimed(address _addr) external view returns(bool) {
        return claimedFreeminters[_addr];
    }

    function adminMint(address _to, uint256 _amount) external {
        require(hasRole(ADMIN_ROLE, _msgSender()), "You do not have permissions.");
        internalBulkMint(_to, _amount);
    }

    // BE CAREFUL!!!
    function destroyTheRest() external {
        require(isPaused, "Exception in destroyTheRest: The contract needs to be suspended.");
        require(hasRole(ADMIN_ROLE, _msgSender()), "You do not have permissions.");

        uint burnAmount = (maxSupply - freeMintAmount) - totalSupply();
        maxSupply -= burnAmount;
        isFreeMintEnabled = true;
    }

    /**********************************************
     **********************************************
                   WHITELIST FUNCTIONs
    **********************************************                    
    **********************************************/

    function checkWhitelistValidity(bytes32[] calldata _merkleProof) public view returns (bool){
        bytes32 leaf = keccak256(abi.encodePacked(_msgSender()));
        require(MerkleProof.verify(_merkleProof, wlRoot, leaf), "Excetion in checkWhitelistValidity: Not whitelisted");
        return true;
    }

    function setWlRoot(bytes32 _root) external onlyOwner {
        wlRoot = _root;
    }

    function toggleWhitelist(bool toggle) external {
        require(hasRole(ADMIN_ROLE, _msgSender()), "You do not have permissions.");
        require(isWhitelistEnabled != toggle, "Exception in toggleWhitelist: Same values.");
        isWhitelistEnabled = toggle;
    }

    /**********************************************
     **********************************************
                   FREEMINTs FUNCTIONs
    **********************************************                    
    **********************************************/

    function checkFreemintValidity(bytes32[] calldata _merkleProof) public view returns (bool){
        bytes32 leaf = keccak256(abi.encodePacked(_msgSender()));
        require(MerkleProof.verify(_merkleProof, ogRoot, leaf), "Excetion in checkFreemintValidity: Not whitelisted");
        return true;
    }

    function setOgRoot(bytes32 _root) external onlyOwner {
        ogRoot = _root;
    }
   
    function toggleFreemint(bool toggle) external {
        require(hasRole(ADMIN_ROLE, _msgSender()), "You do not have permissions.");
        require(isFreeMintEnabled != toggle, "Exception in toggleFreemint: Same values.");
        isFreeMintEnabled = toggle;
    }

    /**********************************************
     **********************************************
                    UTILITY FUNCTIONs
    **********************************************                    
    **********************************************/

    function walletOfOwner(address wallet) external view returns (uint256[] memory) {
        uint256 ownerTokenCount = balanceOf(wallet);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);

        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(wallet, i);
        }

        return tokenIds;
    }

    function getWalletMinted(address wallet) external view returns(uint) {
        return addressMintedBalance[wallet].current();
    }

    //Public wrapper of _exists
    function exists(uint256 tokenId) public view returns (bool) {
        return _exists(tokenId);
    }

    function remainingForMint() public view returns(uint256) {
        return maxSupply - totalSupply();
    }

    function remainingForMintOneWallet(address wallet) external view returns(uint256) {
        uint256 resultado;

        if(isWhitelistEnabled) {
            resultado = maxMintAmountinWL - addressMintedBalanceInWL[wallet].current();
        } else {
            resultado = maxMintAmount - addressMintedBalance[wallet].current();
        }

        return resultado;
    }

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

    /**********************************************
     **********************************************
                    PAYMETS FUNCTIONs
    **********************************************                    
    **********************************************/

    function withdraw() external payable {
        require(hasRole(ADMIN_ROLE, _msgSender()), "You do not have permissions.");
        (bool itsOk, ) = payable(payments).call{value: address(this).balance}("");
        require(itsOk, "Failed withdraw.");
    }

    function setPaymentAddress(address newAddress) external onlyOwner {
        payments = payable(newAddress);
    }

    function viewPaymentAddress() external view onlyOwner returns(address) {
        return payments;
    }

    function setMintCost(uint256 _newCost) external {
        require(hasRole(ADMIN_ROLE, _msgSender()), "You do not have permissions.");
        mintCost = _newCost;
    }

    function setWlCost(uint256 _newCost) external {
        require(hasRole(ADMIN_ROLE, _msgSender()), "You do not have permissions.");
        wlCost = _newCost;
    }

    /**********************************************
     **********************************************
                    CONTROL FUNCTIONs
    **********************************************                    
    **********************************************/

    function setMaxMintAmount(uint256 _newmaxMintAmount) external {
        require(hasRole(ADMIN_ROLE, _msgSender()), "You do not have permissions.");
        maxMintAmount = _newmaxMintAmount;
    }

    function pause(bool _state) external {
        require(hasRole(ADMIN_ROLE, _msgSender()), "You do not have permissions.");
        isPaused = _state;
    }

    function manageRoles(address wallet, bool enabled) external {
        require(hasRole(ADMIN_ROLE, _msgSender()) || _msgSender() == owner(), "You do not have permissions.");
        if(enabled){
            _grantRole(ADMIN_ROLE, wallet);
        } else{
            _revokeRole(ADMIN_ROLE, wallet);
        } 
    }

    /**********************************************
     **********************************************
                   ROYALTIES FUNCTIONs
    **********************************************                    
    **********************************************/

    function royaltyInfo(uint256 _tokenId, uint256 _salePrice ) external view returns ( address receiver, uint256 royaltyAmount) {
        if(exists(_tokenId))
            return(royaltiesAddress, (_salePrice * royaltiesBasicPoints)/10000);        
        return (address(0), 0); 
    }

    function setRoyaltiesAddress(address payable rAddress) external {
        require(hasRole(ADMIN_ROLE, _msgSender()), "You do not have permissions.");
        require(rAddress != address(0), "Exception in setRoyaltiesAddress: Address zero.");
        royaltiesAddress = rAddress;
    }

    function setRoyaltiesBasicPoints(uint96 rBasicPoints) external {
        require(hasRole(ADMIN_ROLE, _msgSender()), "You do not have permissions.");
        require(rBasicPoints <= maxRoyaltiePoints, "Royaties error: Limit reached");
        royaltiesBasicPoints = rBasicPoints;
    }  

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_paymentAddress","type":"address"},{"internalType":"address","name":"_royaltiesAddress","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":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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":"ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"adminMint","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"checkFreemintValidity","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"checkWhitelistValidity","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"claimFreemint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"destroyTheRest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"getWalletMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isFreeMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"itsClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"bool","name":"enabled","type":"bool"}],"name":"manageRoles","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountinWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintCost","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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"remainingForMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"remainingForMintOneWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setMintCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setOgRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"setPaymentAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"rAddress","type":"address"}],"name":"setRoyaltiesAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint96","name":"rBasicPoints","type":"uint96"}],"name":"setRoyaltiesBasicPoints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setWlCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setWlRoot","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":"bool","name":"toggle","type":"bool"}],"name":"toggleFreemint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"toggle","type":"bool"}],"name":"toggleWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"viewPaymentAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"wlCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

61010060405260596080818152906200632660a039600d9062000023908262000c0f565b50604080518082019091526005815264173539b7b760d91b6020820152600e906200004f908262000c0f565b506040518060a00160405280607081526020016200637f60709139600f9062000079908262000c0f565b50611964601155668e1bc9bf04000060125567011c37937e080000601355600360145560056015556017805463ffffffff1916620100011790557fa9244026f69efee0ba376df3689d70a57a73c5e17a216a7b815ca48663e1e50a6018557fc23bffc5fd6cd6235d0fb70f2214e2d8847810efc9b15580b25a244a0c49305c6019553480156200010857600080fd5b50604051620063ef380380620063ef8339810160408190526200012b9162000cf8565b6040518060400160405280601081526020016f2a34329026b4b63634b2b99021b63ab160811b81525060405180604001604052806003815260200162544d4360e81b815250816000908162000181919062000c0f565b50600162000190828262000c0f565b505050620001ad620001a76200030060201b60201c565b62000304565b620001ba60003362000356565b620001e67fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c217753362000356565b601080546001600160a01b0319166001600160a01b03848116919091179091558116607d60a21b176016556200023273d54cc4ccac6974417a9b90fd15b7de08cbc9f1d7601262000366565b6200025373fb6171deec30df5efa7f115e6f04c8df23eedea4601962000366565b6200027473ea777b2c50094bda93d55c64393ec6f0f92d3380601962000366565b6200029573ce3f52a81d998f37692ac85e6aa26029a3faf24d600562000366565b620002b6734894b2bc59579c2574b5309c8343e8cf0e2ec67e600362000366565b620002d773f30f172fa9eaaffe2146d414fe573a33387133dd600362000366565b620002f873494a38af8d9c9252ac52580ec7b5543333127c07600362000366565b505062000e60565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620003628282620003a1565b5050565b60005b818110156200039c5762000387836200038160085490565b620003df565b80620003938162000d46565b91505062000369565b505050565b620003b882826200040160201b620031981760201c565b6000828152600c602090815260409091206200039c9183906200328c620004a5821b17901c565b62000362828260405180602001604052806000815250620004c560201b60201c565b6000828152600b602090815260408083206001600160a01b038516845290915290205460ff1662000362576000828152600b602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620004613390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000620004bc836001600160a01b0384166200053c565b90505b92915050565b620004d183836200058e565b620004e06000848484620006e4565b6200039c5760405162461bcd60e51b815260206004820152603260248201526000805160206200630683398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084015b60405180910390fd5b60008181526001830160205260408120546200058557508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155620004bf565b506000620004bf565b6001600160a01b038216620005e65760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640162000533565b6000818152600260205260409020546001600160a01b0316156200064d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640162000533565b6200065b6000838362000840565b6001600160a01b03821660009081526003602052604081208054600192906200068690849062000d62565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600062000705846001600160a01b03166200091c60201b620032ae1760201c565b156200083457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906200073f90339089908890889060040162000d78565b6020604051808303816000875af19250505080156200077d575060408051601f3d908101601f191682019092526200077a9181019062000deb565b60015b62000819573d808015620007ae576040519150601f19603f3d011682016040523d82523d6000602084013e620007b3565b606091505b508051600003620008115760405162461bcd60e51b815260206004820152603260248201526000805160206200630683398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840162000533565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905062000838565b5060015b949350505050565b620008588383836200039c60201b620010b61760201c565b6001600160a01b038316620008b657620008b081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b620008dc565b816001600160a01b0316836001600160a01b031614620008dc57620008dc83826200092b565b6001600160a01b038216620008f6576200039c81620009d8565b826001600160a01b0316826001600160a01b0316146200039c576200039c828262000a92565b6001600160a01b03163b151590565b60006001620009458462000ae360201b62001ab91760201c565b62000951919062000e1e565b600083815260076020526040902054909150808214620009a5576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090620009ec9060019062000e1e565b6000838152600960205260408120546008805493945090928490811062000a175762000a1762000e34565b90600052602060002001549050806008838154811062000a3b5762000a3b62000e34565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548062000a765762000a7662000e4a565b6001900381819060005260206000200160009055905550505050565b600062000aaa8362000ae360201b62001ab91760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b03821662000b4f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840162000533565b506001600160a01b031660009081526003602052604090205490565b634e487b7160e01b600052604160045260246000fd5b600181811c9082168062000b9657607f821691505b60208210810362000bb757634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200039c57600081815260208120601f850160051c8101602086101562000be65750805b601f850160051c820191505b8181101562000c075782815560010162000bf2565b505050505050565b81516001600160401b0381111562000c2b5762000c2b62000b6b565b62000c438162000c3c845462000b81565b8462000bbd565b602080601f83116001811462000c7b576000841562000c625750858301515b600019600386901b1c1916600185901b17855562000c07565b600085815260208120601f198616915b8281101562000cac5788860151825594840194600190910190840162000c8b565b508582101562000ccb5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80516001600160a01b038116811462000cf357600080fd5b919050565b6000806040838503121562000d0c57600080fd5b62000d178362000cdb565b915062000d276020840162000cdb565b90509250929050565b634e487b7160e01b600052601160045260246000fd5b60006001820162000d5b5762000d5b62000d30565b5060010190565b80820180821115620004bf57620004bf62000d30565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b8281101562000dc75785810182015185820160a00152810162000da9565b5050600060a0828501015260a0601f19601f83011684010191505095945050505050565b60006020828403121562000dfe57600080fd5b81516001600160e01b03198116811462000e1757600080fd5b9392505050565b81810381811115620004bf57620004bf62000d30565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b6154968062000e706000396000f3fe60806040526004361061044a5760003560e01c80638545f4ea11610243578063c668286211610143578063da3ef23f116100bb578063f12f6d5d1161008a578063f2fde38b1161006f578063f2fde38b14610d10578063f4283baf14610d30578063fe90c56614610d4557600080fd5b8063f12f6d5d14610cd0578063f2c4ce1e14610cf057600080fd5b8063da3ef23f14610c1a578063dc95c4a714610c3a578063e58306f914610c5a578063e985e9c514610c7a57600080fd5b8063ccc5208511610112578063d547741f116100f7578063d547741f14610bce578063d5abeb0114610bee578063d70a28d114610c0457600080fd5b8063ccc5208514610b8e578063cea3617814610bae57600080fd5b8063c668286214610b19578063c8792ba114610b2e578063c87b56dd14610b4e578063ca15c87314610b6e57600080fd5b8063a217fddf116101d6578063ad8bd82c116101a5578063b88d4fde1161018a578063b88d4fde14610ad0578063ba41b0c614610af0578063bdb4b84814610b0357600080fd5b8063ad8bd82c14610a96578063b187bd2614610ab657600080fd5b8063a217fddf14610a37578063a22cb46514610a4c578063a475b5dd14610a6c578063a49a7a2014610a8157600080fd5b806391d148541161021257806391d148541461098e578063928d54cc146109e157806395d89b4114610a0157806397554dd314610a1657600080fd5b80638545f4ea146108dd5780638da5cb5b146108fd5780639010d07c1461092857806390535ef91461094857600080fd5b80633a467e3d1161034e5780635de02adc116102e157806370a08231116102b057806375b238fc1161029557806375b238fc146108695780637dc694431461089d57806380e3f1ad146108bd57600080fd5b806370a0823114610834578063715018a61461085457600080fd5b80635de02adc146107be5780635e1e1004146107d45780635f563b45146107f45780636352211e1461081457600080fd5b80634f558e791161031d5780634f558e79146107495780634f6ccce71461076957806355f804b3146107895780635c9060a4146107a957600080fd5b80633a467e3d146106de5780633ccfd60b146106f457806342842e0e146106fc578063438b63001461071c57600080fd5b8063184d69ab116103e15780632a404d33116103b05780632f2ff15d116103955780632f2ff15d1461067e5780632f745c591461069e57806336568abe146106be57600080fd5b80632a404d33146106125780632a55205a1461063257600080fd5b8063184d69ab1461058c578063239c70ae146105ac57806323b872dd146105c2578063248a9ca3146105e257600080fd5b8063088a4ed01161041d578063088a4ed01461050d578063095ea7b31461052d57806311fdb52e1461054d57806318160ddd1461056d57600080fd5b806301ffc9a71461044f57806302329a291461048457806306fdde03146104a6578063081812fc146104c8575b600080fd5b34801561045b57600080fd5b5061046f61046a366004614a33565b610d65565b60405190151581526020015b60405180910390f35b34801561049057600080fd5b506104a461049f366004614a65565b610d76565b005b3480156104b257600080fd5b506104bb610e22565b60405161047b9190614aee565b3480156104d457600080fd5b506104e86104e3366004614b01565b610eb4565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161047b565b34801561051957600080fd5b506104a4610528366004614b01565b610ee8565b34801561053957600080fd5b506104a4610548366004614b3c565b610f63565b34801561055957600080fd5b506104a4610568366004614b68565b6110bb565b34801561057957600080fd5b506008545b60405190815260200161047b565b34801561059857600080fd5b5060175461046f9062010000900460ff1681565b3480156105b857600080fd5b5061057e60155481565b3480156105ce57600080fd5b506104a46105dd366004614b96565b6111dc565b3480156105ee57600080fd5b5061057e6105fd366004614b01565b6000908152600b602052604090206001015490565b34801561061e57600080fd5b506104a461062d366004614a65565b611263565b34801561063e57600080fd5b5061065261064d366004614bd7565b61139a565b6040805173ffffffffffffffffffffffffffffffffffffffff909316835260208301919091520161047b565b34801561068a57600080fd5b506104a4610699366004614bf9565b61141b565b3480156106aa57600080fd5b5061057e6106b9366004614b3c565b611440565b3480156106ca57600080fd5b506104a46106d9366004614bf9565b6114f5565b3480156106ea57600080fd5b5061057e6101f481565b6104a461158e565b34801561070857600080fd5b506104a4610717366004614b96565b6116b7565b34801561072857600080fd5b5061073c610737366004614c29565b6116d2565b60405161047b9190614c46565b34801561075557600080fd5b5061046f610764366004614b01565b611774565b34801561077557600080fd5b5061057e610784366004614b01565b6117a0565b34801561079557600080fd5b506104a46107a4366004614d4d565b611844565b3480156107b557600080fd5b506104e86118c6565b3480156107ca57600080fd5b5061057e60145481565b3480156107e057600080fd5b506104a46107ef366004614c29565b6118ed565b34801561080057600080fd5b5061046f61080f366004614ddb565b61193c565b34801561082057600080fd5b506104e861082f366004614b01565b611a47565b34801561084057600080fd5b5061057e61084f366004614c29565b611ab9565b34801561086057600080fd5b506104a4611b6d565b34801561087557600080fd5b5061057e7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177581565b3480156108a957600080fd5b506104a46108b8366004614ddb565b611b81565b3480156108c957600080fd5b506104a46108d8366004614a65565b611e65565b3480156108e957600080fd5b506104a46108f8366004614b01565b611f9b565b34801561090957600080fd5b50600a5473ffffffffffffffffffffffffffffffffffffffff166104e8565b34801561093457600080fd5b506104e8610943366004614bd7565b612016565b34801561095457600080fd5b5061046f610963366004614c29565b73ffffffffffffffffffffffffffffffffffffffff166000908152601a602052604090205460ff1690565b34801561099a57600080fd5b5061046f6109a9366004614bf9565b6000918252600b6020908152604080842073ffffffffffffffffffffffffffffffffffffffff93909316845291905290205460ff1690565b3480156109ed57600080fd5b506104a46109fc366004614e1d565b612035565b348015610a0d57600080fd5b506104bb612127565b348015610a2257600080fd5b5060175461046f906301000000900460ff1681565b348015610a4357600080fd5b5061057e600081565b348015610a5857600080fd5b506104a4610a67366004614e1d565b612136565b348015610a7857600080fd5b506104a4612141565b348015610a8d57600080fd5b5061057e6121e5565b348015610aa257600080fd5b506104a4610ab1366004614b01565b612202565b348015610ac257600080fd5b5060175461046f9060ff1681565b348015610adc57600080fd5b506104a4610aeb366004614e52565b61220f565b6104a4610afe366004614ed2565b61229d565b348015610b0f57600080fd5b5061057e60135481565b348015610b2557600080fd5b506104bb61283b565b348015610b3a57600080fd5b506104a4610b49366004614b01565b6128c9565b348015610b5a57600080fd5b506104bb610b69366004614b01565b6128d6565b348015610b7a57600080fd5b5061057e610b89366004614b01565b612a6f565b348015610b9a57600080fd5b5061057e610ba9366004614c29565b612a86565b348015610bba57600080fd5b5061046f610bc9366004614ddb565b612ab1565b348015610bda57600080fd5b506104a4610be9366004614bf9565b612bb2565b348015610bfa57600080fd5b5061057e60115481565b348015610c1057600080fd5b5061057e60125481565b348015610c2657600080fd5b506104a4610c35366004614d4d565b612bd7565b348015610c4657600080fd5b506104a4610c55366004614c29565b612c59565b348015610c6657600080fd5b506104a4610c75366004614b3c565b612d9f565b348015610c8657600080fd5b5061046f610c95366004614f1e565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610cdc57600080fd5b506104a4610ceb366004614b01565b612e1f565b348015610cfc57600080fd5b506104a4610d0b366004614d4d565b612e9a565b348015610d1c57600080fd5b506104a4610d2b366004614c29565b612f1c565b348015610d3c57600080fd5b506104a4612fb6565b348015610d5157600080fd5b5061057e610d60366004614c29565b613115565b6000610d70826132ca565b92915050565b610da07fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775336109a9565b610df15760405162461bcd60e51b815260206004820152601c60248201527f596f7520646f206e6f742068617665207065726d697373696f6e732e0000000060448201526064015b60405180910390fd5b601780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b606060008054610e3190614f4c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5d90614f4c565b8015610eaa5780601f10610e7f57610100808354040283529160200191610eaa565b820191906000526020600020905b815481529060010190602001808311610e8d57829003601f168201915b5050505050905090565b6000610ebf82613320565b5060009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b610f127fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775336109a9565b610f5e5760405162461bcd60e51b815260206004820152601c60248201527f596f7520646f206e6f742068617665207065726d697373696f6e732e000000006044820152606401610de8565b601555565b6000610f6e82611a47565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110115760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610de8565b3373ffffffffffffffffffffffffffffffffffffffff8216148061103a575061103a8133610c95565b6110ac5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610de8565b6110b68383613391565b505050565b6110e57fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775336109a9565b6111315760405162461bcd60e51b815260206004820152601c60248201527f596f7520646f206e6f742068617665207065726d697373696f6e732e000000006044820152606401610de8565b6105dc6bffffffffffffffffffffffff821611156111915760405162461bcd60e51b815260206004820152601d60248201527f526f796174696573206572726f723a204c696d697420726561636865640000006044820152606401610de8565b601680546bffffffffffffffffffffffff909216740100000000000000000000000000000000000000000273ffffffffffffffffffffffffffffffffffffffff909216919091179055565b6111e63382613431565b6112585760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206e6f7220617070726f7665640000000000000000000000000000000000006064820152608401610de8565b6110b68383836134f1565b61128d7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775336109a9565b6112d95760405162461bcd60e51b815260206004820152601c60248201527f596f7520646f206e6f742068617665207065726d697373696f6e732e000000006044820152606401610de8565b801515601760039054906101000a900460ff161515036113615760405162461bcd60e51b815260206004820152602960248201527f457863657074696f6e20696e20746f67676c65467265656d696e743a2053616d60448201527f652076616c7565732e00000000000000000000000000000000000000000000006064820152608401610de8565b601780549115156301000000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff909216919091179055565b6000806113a684611774565b1561140d5760165473ffffffffffffffffffffffffffffffffffffffff811690612710906113fa907401000000000000000000000000000000000000000090046bffffffffffffffffffffffff1686614fce565b611404919061503a565b91509150611414565b5060009050805b9250929050565b6000828152600b60205260409020600101546114368161372f565b6110b68383613739565b600061144b83611ab9565b82106114bf5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610de8565b5073ffffffffffffffffffffffffffffffffffffffff919091166000908152600660209081526040808320938352929052205490565b73ffffffffffffffffffffffffffffffffffffffff811633146115805760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c6600000000000000000000000000000000006064820152608401610de8565b61158a828261375b565b5050565b6115b87fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775336109a9565b6116045760405162461bcd60e51b815260206004820152601c60248201527f596f7520646f206e6f742068617665207065726d697373696f6e732e000000006044820152606401610de8565b60105460405160009173ffffffffffffffffffffffffffffffffffffffff169047908381818185875af1925050503d806000811461165e576040519150601f19603f3d011682016040523d82523d6000602084013e611663565b606091505b50509050806116b45760405162461bcd60e51b815260206004820152601060248201527f4661696c65642077697468647261772e000000000000000000000000000000006044820152606401610de8565b50565b6110b68383836040518060200160405280600081525061220f565b606060006116df83611ab9565b905060008167ffffffffffffffff8111156116fc576116fc614c8a565b604051908082528060200260200182016040528015611725578160200160208202803683370190505b50905060005b8281101561176c5761173d8582611440565b82828151811061174f5761174f61504e565b6020908102919091010152806117648161507d565b91505061172b565b509392505050565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff161515610d70565b60006117ab60085490565b821061181f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610de8565b600882815481106118325761183261504e565b90600052602060002001549050919050565b61186e7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775336109a9565b6118ba5760405162461bcd60e51b815260206004820152601c60248201527f596f7520646f206e6f742068617665207065726d697373696f6e732e000000006044820152606401610de8565b600d61158a8282615103565b60006118d061377d565b5060105473ffffffffffffffffffffffffffffffffffffffff1690565b6118f561377d565b601080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b16602082015260009081906034016040516020818303038152906040528051906020012090506119cb8484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060185491508490506137e4565b611a3d5760405162461bcd60e51b815260206004820152603360248201527f4578636574696f6e20696e20636865636b57686974656c69737456616c69646960448201527f74793a204e6f742077686974656c6973746564000000000000000000000000006064820152608401610de8565b5060019392505050565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff1680610d705760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610de8565b600073ffffffffffffffffffffffffffffffffffffffff8216611b445760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e657200000000000000000000000000000000000000000000006064820152608401610de8565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b611b7561377d565b611b7f60006137fa565b565b611b8b8282612ab1565b611c235760405162461bcd60e51b815260206004820152604260248201527f457863657074696f6e20696e20636c61696d467265656d696e743a20596f752060448201527f646f206e6f7420686176652061636365737320746f2066726565206d696e696e60648201527f672e000000000000000000000000000000000000000000000000000000000000608482015260a401610de8565b336000908152601a602052604090205460ff1615611ca95760405162461bcd60e51b815260206004820152603e60248201527f457863657074696f6e20696e20636c61696d467265656d696e743a20596f752060448201527f6861766520616c726561647920636c61696d656420796f7572204e46542e00006064820152608401610de8565b60175460ff1615611d225760405162461bcd60e51b815260206004820152602c60248201527f457863657074696f6e20696e20636c61696d467265656d696e743a20436c616960448201527f6d206973207061757365642e00000000000000000000000000000000000000006064820152608401610de8565b6017546301000000900460ff16611da15760405162461bcd60e51b815260206004820152603660248201527f457863657074696f6e20696e20636c61696d467265656d696e743a204672656560448201527f6d696e74206973206e6f74206163746976617465642e000000000000000000006064820152608401610de8565b6101f4611dac6121e5565b1115611e205760405162461bcd60e51b815260206004820152603660248201527f457863657074696f6e20696e20636c61696d467265656d696e743a204e6f742060448201527f746865206c61737420353030204e4654732079657421000000000000000000006064820152608401610de8565b336000818152601a6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600190811790915561158a9190613871565b611e8f7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775336109a9565b611edb5760405162461bcd60e51b815260206004820152601c60248201527f596f7520646f206e6f742068617665207065726d697373696f6e732e000000006044820152606401610de8565b801515601760029054906101000a900460ff16151503611f635760405162461bcd60e51b815260206004820152602a60248201527f457863657074696f6e20696e20746f67676c6557686974656c6973743a20536160448201527f6d652076616c7565732e000000000000000000000000000000000000000000006064820152608401610de8565b6017805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b611fc57fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775336109a9565b6120115760405162461bcd60e51b815260206004820152601c60248201527f596f7520646f206e6f742068617665207065726d697373696f6e732e000000006044820152606401610de8565b601355565b6000828152600c6020526040812061202e908361390f565b9392505050565b61205f7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775336109a9565b806120815750600a5473ffffffffffffffffffffffffffffffffffffffff1633145b6120cd5760405162461bcd60e51b815260206004820152601c60248201527f596f7520646f206e6f742068617665207065726d697373696f6e732e000000006044820152606401610de8565b80156120fd5761158a7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177583613739565b61158a7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c217758361375b565b606060018054610e3190614f4c565b61158a33838361391b565b61216b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775336109a9565b6121b75760405162461bcd60e51b815260206004820152601c60248201527f596f7520646f206e6f742068617665207065726d697373696f6e732e000000006044820152606401610de8565b601780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16610100179055565b60006121f060085490565b6011546121fd919061521d565b905090565b61220a61377d565b601855565b6122193383613431565b61228b5760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206e6f7220617070726f7665640000000000000000000000000000000000006064820152608401610de8565b61229784848484613a2e565b50505050565b60175460ff16156123165760405162461bcd60e51b815260206004820152602560248201527f457863657074696f6e20696e206d696e743a20436f6e7472616374206973207060448201527f61757365640000000000000000000000000000000000000000000000000000006064820152608401610de8565b6017546301000000900460ff16156123965760405162461bcd60e51b815260206004820152603360248201527f457863657074696f6e20696e206d696e743a204d696e742066696e697368656460448201527f2e20467265656d696e7420656e61626c65642e000000000000000000000000006064820152608401610de8565b6000831161240c5760405162461bcd60e51b815260206004820152603060248201527f457863657074696f6e20696e206d696e743a20596f75206861766520746f206d60448201527f696e74206174206c65617374206f6e65000000000000000000000000000000006064820152608401610de8565b6101f460115461241c919061521d565b8361242660085490565b6124309190615230565b11156124a45760405162461bcd60e51b815260206004820152602d60248201527f457863657074696f6e20696e206d696e743a2054727920746f206d696e74206c60448201527f657373207175616e746974792e000000000000000000000000000000000000006064820152608401610de8565b6101f4836124b06121e5565b6124ba919061521d565b1161252d5760405162461bcd60e51b815260206004820152602160248201527f457863657074696f6e20696e206d696e743a204d696e742066696e697368656460448201527f2e000000000000000000000000000000000000000000000000000000000000006064820152608401610de8565b601754339062010000900460ff16156126f65761254a838361193c565b6125bc5760405162461bcd60e51b815260206004820152602960248201527f457863657074696f6e20696e206d696e743a20596f7520617265206e6f74206960448201527f6e2074686520574c2e00000000000000000000000000000000000000000000006064820152608401610de8565b60145473ffffffffffffffffffffffffffffffffffffffff82166000908152601b60205260409020546125f0908690615230565b11156126645760405162461bcd60e51b815260206004820152602f60248201527f457863657074696f6e20696e206d696e743a20596f752068617665206578636560448201527f6564656420746865206c696d69742e00000000000000000000000000000000006064820152608401610de8565b836012546126729190614fce565b3410156126e75760405162461bcd60e51b815260206004820152603460248201527f457863657074696f6e20696e206d696e743a2041206c6f776572207175616e7460448201527f69747920686173206265656e2073656e6465642e0000000000000000000000006064820152608401610de8565b6126f18185613871565b612297565b60175462010000900460ff166122975760155473ffffffffffffffffffffffffffffffffffffffff82166000908152601c602052604090205461273a908690615230565b11156127ae5760405162461bcd60e51b815260206004820152602f60248201527f457863657074696f6e20696e206d696e743a20596f752068617665206578636560448201527f6564656420746865206c696d69742e00000000000000000000000000000000006064820152608401610de8565b836013546127bc9190614fce565b3410156128315760405162461bcd60e51b815260206004820152603460248201527f457863657074696f6e20696e206d696e743a2041206c6f776572207175616e7460448201527f69747920686173206265656e2073656e6465642e0000000000000000000000006064820152608401610de8565b6122978185613871565b600e805461284890614f4c565b80601f016020809104026020016040519081016040528092919081815260200182805461287490614f4c565b80156128c15780601f10612896576101008083540402835291602001916128c1565b820191906000526020600020905b8154815290600101906020018083116128a457829003601f168201915b505050505081565b6128d161377d565b601955565b60008181526002602052604090205460609073ffffffffffffffffffffffffffffffffffffffff166129705760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610de8565b601754610100900460ff16612a1157600f805461298c90614f4c565b80601f01602080910402602001604051908101604052809291908181526020018280546129b890614f4c565b8015612a055780601f106129da57610100808354040283529160200191612a05565b820191906000526020600020905b8154815290600101906020018083116129e857829003601f168201915b50505050509050919050565b6000612a1b613ab7565b90506000815111612a3b576040518060200160405280600081525061202e565b80612a4584613ac6565b600e604051602001612a5993929190615243565b6040516020818303038152906040529392505050565b6000818152600c60205260408120610d7090613bfb565b73ffffffffffffffffffffffffffffffffffffffff81166000908152601c6020526040812054610d70565b6040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b1660208201526000908190603401604051602081830303815290604052805190602001209050612b408484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060195491508490506137e4565b611a3d5760405162461bcd60e51b815260206004820152603260248201527f4578636574696f6e20696e20636865636b467265656d696e7456616c6964697460448201527f793a204e6f742077686974656c697374656400000000000000000000000000006064820152608401610de8565b6000828152600b6020526040902060010154612bcd8161372f565b6110b6838361375b565b612c017fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775336109a9565b612c4d5760405162461bcd60e51b815260206004820152601c60248201527f596f7520646f206e6f742068617665207065726d697373696f6e732e000000006044820152606401610de8565b600e61158a8282615103565b612c837fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775336109a9565b612ccf5760405162461bcd60e51b815260206004820152601c60248201527f596f7520646f206e6f742068617665207065726d697373696f6e732e000000006044820152606401610de8565b73ffffffffffffffffffffffffffffffffffffffff8116612d585760405162461bcd60e51b815260206004820152602f60248201527f457863657074696f6e20696e20736574526f79616c746965734164647265737360448201527f3a2041646472657373207a65726f2e00000000000000000000000000000000006064820152608401610de8565b601680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b612dc97fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775336109a9565b612e155760405162461bcd60e51b815260206004820152601c60248201527f596f7520646f206e6f742068617665207065726d697373696f6e732e000000006044820152606401610de8565b61158a8282613871565b612e497fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775336109a9565b612e955760405162461bcd60e51b815260206004820152601c60248201527f596f7520646f206e6f742068617665207065726d697373696f6e732e000000006044820152606401610de8565b601255565b612ec47fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775336109a9565b612f105760405162461bcd60e51b815260206004820152601c60248201527f596f7520646f206e6f742068617665207065726d697373696f6e732e000000006044820152606401610de8565b600f61158a8282615103565b612f2461377d565b73ffffffffffffffffffffffffffffffffffffffff8116612fad5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610de8565b6116b4816137fa565b60175460ff16613030576040805162461bcd60e51b81526020600482015260248101919091527f457863657074696f6e20696e2064657374726f79546865526573743a2054686560448201527f20636f6e7472616374206e6565647320746f2062652073757370656e6465642e6064820152608401610de8565b61305a7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775336109a9565b6130a65760405162461bcd60e51b815260206004820152601c60248201527f596f7520646f206e6f742068617665207065726d697373696f6e732e000000006044820152606401610de8565b60006130b160085490565b6101f46011546130c1919061521d565b6130cb919061521d565b905080601160008282546130df919061521d565b9091555050601780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff16630100000017905550565b601754600090819062010000900460ff16156131655773ffffffffffffffffffffffffffffffffffffffff83166000908152601b602052604090205460145461315e919061521d565b9050610d70565b73ffffffffffffffffffffffffffffffffffffffff83166000908152601c602052604090205460155461202e919061521d565b6000828152600b6020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff1661158a576000828152600b6020908152604080832073ffffffffffffffffffffffffffffffffffffffff85168452909152902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905561322e3390565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600061202e8373ffffffffffffffffffffffffffffffffffffffff8416613c05565b73ffffffffffffffffffffffffffffffffffffffff163b151590565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f5a05180f000000000000000000000000000000000000000000000000000000001480610d705750610d7082613c54565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff166116b45760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610de8565b600081815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff841690811790915581906133eb82611a47565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061343d83611a47565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806134ab575073ffffffffffffffffffffffffffffffffffffffff80821660009081526005602090815260408083209388168352929052205460ff165b806134e957508373ffffffffffffffffffffffffffffffffffffffff166134d184610eb4565b73ffffffffffffffffffffffffffffffffffffffff16145b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff1661351182611a47565b73ffffffffffffffffffffffffffffffffffffffff161461359a5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610de8565b73ffffffffffffffffffffffffffffffffffffffff82166136225760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610de8565b61362d838383613caa565b613638600082613391565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260036020526040812080546001929061366e90849061521d565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526003602052604081208054600192906136a9908490615230565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6116b48133613db0565b6137438282613198565b6000828152600c602052604090206110b6908261328c565b6137658282613e68565b6000828152600c602052604090206110b69082613f23565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611b7f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610de8565b6000826137f18584613f45565b14949350505050565b600a805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b818110156110b65761388e8361388960085490565b613f8a565b60175462010000900460ff16156138d05773ffffffffffffffffffffffffffffffffffffffff83166000908152601b60205260409020805460010190556138fd565b73ffffffffffffffffffffffffffffffffffffffff83166000908152601c60205260409020805460010190555b806139078161507d565b915050613874565b600061202e8383613fa4565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036139965760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610de8565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b613a398484846134f1565b613a4584848484613fce565b6122975760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610de8565b6060600d8054610e3190614f4c565b606081600003613b0957505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115613b335780613b1d8161507d565b9150613b2c9050600a8361503a565b9150613b0d565b60008167ffffffffffffffff811115613b4e57613b4e614c8a565b6040519080825280601f01601f191660200182016040528015613b78576020820181803683370190505b5090505b84156134e957613b8d60018361521d565b9150613b9a600a86615301565b613ba5906030615230565b60f81b818381518110613bba57613bba61504e565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350613bf4600a8661503a565b9450613b7c565b6000610d70825490565b6000818152600183016020526040812054613c4c57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610d70565b506000610d70565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b000000000000000000000000000000000000000000000000000000001480610d705750610d70826141a7565b73ffffffffffffffffffffffffffffffffffffffff8316613d1257613d0d81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b613d4f565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613d4f57613d4f83826141fd565b73ffffffffffffffffffffffffffffffffffffffff8216613d73576110b6816142b4565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146110b6576110b68282614363565b6000828152600b6020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff1661158a57613e088173ffffffffffffffffffffffffffffffffffffffff1660146143b4565b613e138360206143b4565b604051602001613e24929190615315565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529082905262461bcd60e51b8252610de891600401614aee565b6000828152600b6020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff161561158a576000828152600b6020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516808552925280832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600061202e8373ffffffffffffffffffffffffffffffffffffffff84166145dd565b600081815b845181101561176c57613f7682868381518110613f6957613f6961504e565b60200260200101516146d0565b915080613f828161507d565b915050613f4a565b61158a8282604051806020016040528060008152506146ff565b6000826000018281548110613fbb57613fbb61504e565b9060005260206000200154905092915050565b600073ffffffffffffffffffffffffffffffffffffffff84163b1561419c576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290614045903390899088908890600401615396565b6020604051808303816000875af192505050801561409e575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261409b918101906153df565b60015b614151573d8080156140cc576040519150601f19603f3d011682016040523d82523d6000602084013e6140d1565b606091505b5080516000036141495760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610de8565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490506134e9565b506001949350505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d63000000000000000000000000000000000000000000000000000000001480610d705750610d7082614788565b6000600161420a84611ab9565b614214919061521d565b6000838152600760205260409020549091508082146142745773ffffffffffffffffffffffffffffffffffffffff841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b50600091825260076020908152604080842084905573ffffffffffffffffffffffffffffffffffffffff9094168352600681528383209183525290812055565b6008546000906142c69060019061521d565b600083815260096020526040812054600880549394509092849081106142ee576142ee61504e565b90600052602060002001549050806008838154811061430f5761430f61504e565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480614347576143476153fc565b6001900381819060005260206000200160009055905550505050565b600061436e83611ab9565b73ffffffffffffffffffffffffffffffffffffffff9093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b606060006143c3836002614fce565b6143ce906002615230565b67ffffffffffffffff8111156143e6576143e6614c8a565b6040519080825280601f01601f191660200182016040528015614410576020820181803683370190505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106144475761444761504e565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106144aa576144aa61504e565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006144e6846002614fce565b6144f1906001615230565b90505b600181111561458e577f303132333435363738396162636465660000000000000000000000000000000085600f16601081106145325761453261504e565b1a60f81b8282815181106145485761454861504e565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060049490941c936145878161542b565b90506144f4565b50831561202e5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610de8565b600081815260018301602052604081205480156146c657600061460160018361521d565b85549091506000906146159060019061521d565b905081811461467a5760008660000182815481106146355761463561504e565b90600052602060002001549050808760000184815481106146585761465861504e565b6000918252602080832090910192909255918252600188019052604090208390555b855486908061468b5761468b6153fc565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610d70565b6000915050610d70565b60008183106146ec57600082815260208490526040902061202e565b600083815260208390526040902061202e565b614709838361486b565b6147166000848484613fce565b6110b65760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610de8565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061481b57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610d7057507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610d70565b73ffffffffffffffffffffffffffffffffffffffff82166148ce5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610de8565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff16156149405760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610de8565b61494c60008383613caa565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600360205260408120805460019290614982908490615230565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b7fffffffff00000000000000000000000000000000000000000000000000000000811681146116b457600080fd5b600060208284031215614a4557600080fd5b813561202e81614a05565b80358015158114614a6057600080fd5b919050565b600060208284031215614a7757600080fd5b61202e82614a50565b60005b83811015614a9b578181015183820152602001614a83565b50506000910152565b60008151808452614abc816020860160208601614a80565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061202e6020830184614aa4565b600060208284031215614b1357600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff811681146116b457600080fd5b60008060408385031215614b4f57600080fd5b8235614b5a81614b1a565b946020939093013593505050565b600060208284031215614b7a57600080fd5b81356bffffffffffffffffffffffff8116811461202e57600080fd5b600080600060608486031215614bab57600080fd5b8335614bb681614b1a565b92506020840135614bc681614b1a565b929592945050506040919091013590565b60008060408385031215614bea57600080fd5b50508035926020909101359150565b60008060408385031215614c0c57600080fd5b823591506020830135614c1e81614b1a565b809150509250929050565b600060208284031215614c3b57600080fd5b813561202e81614b1a565b6020808252825182820181905260009190848201906040850190845b81811015614c7e57835183529284019291840191600101614c62565b50909695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff80841115614cd457614cd4614c8a565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715614d1a57614d1a614c8a565b81604052809350858152868686011115614d3357600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215614d5f57600080fd5b813567ffffffffffffffff811115614d7657600080fd5b8201601f81018413614d8757600080fd5b6134e984823560208401614cb9565b60008083601f840112614da857600080fd5b50813567ffffffffffffffff811115614dc057600080fd5b6020830191508360208260051b850101111561141457600080fd5b60008060208385031215614dee57600080fd5b823567ffffffffffffffff811115614e0557600080fd5b614e1185828601614d96565b90969095509350505050565b60008060408385031215614e3057600080fd5b8235614e3b81614b1a565b9150614e4960208401614a50565b90509250929050565b60008060008060808587031215614e6857600080fd5b8435614e7381614b1a565b93506020850135614e8381614b1a565b925060408501359150606085013567ffffffffffffffff811115614ea657600080fd5b8501601f81018713614eb757600080fd5b614ec687823560208401614cb9565b91505092959194509250565b600080600060408486031215614ee757600080fd5b83359250602084013567ffffffffffffffff811115614f0557600080fd5b614f1186828701614d96565b9497909650939450505050565b60008060408385031215614f3157600080fd5b8235614f3c81614b1a565b91506020830135614c1e81614b1a565b600181811c90821680614f6057607f821691505b602082108103614f99577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561500657615006614f9f565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000826150495761504961500b565b500490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036150ae576150ae614f9f565b5060010190565b601f8211156110b657600081815260208120601f850160051c810160208610156150dc5750805b601f850160051c820191505b818110156150fb578281556001016150e8565b505050505050565b815167ffffffffffffffff81111561511d5761511d614c8a565b6151318161512b8454614f4c565b846150b5565b602080601f831160018114615184576000841561514e5750858301515b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600386901b1c1916600185901b1785556150fb565b6000858152602081207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08616915b828110156151d1578886015182559484019460019091019084016151b2565b508582101561520d57878501517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600388901b60f8161c191681555b5050505050600190811b01905550565b81810381811115610d7057610d70614f9f565b80820180821115610d7057610d70614f9f565b6000845160206152568285838a01614a80565b8551918401916152698184848a01614a80565b855492019160009061527a81614f4c565b6001828116801561529257600181146152c5576152f1565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00841687528215158302870194506152f1565b896000528560002060005b848110156152e9578154898201529083019087016152d0565b505082870194505b50929a9950505050505050505050565b6000826153105761531061500b565b500690565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835161534d816017850160208801614a80565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000601791840191820152835161538a816028840160208801614a80565b01602801949350505050565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526153d56080830184614aa4565b9695505050505050565b6000602082840312156153f157600080fd5b815161202e81614a05565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60008161543a5761543a614f9f565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff019056fea26469706673582212209ad44f94757b301011cfdef863a875f52517bc807f75078bf323bbf53265b7d964736f6c634300081000334552433732313a207472616e7366657220746f206e6f6e20455243373231526568747470733a2f2f6e667473746f726167652e6c696e6b2f697066732f62616679626569676c78656e6d3269796b3666336c7374376177613271626178636468333432667166763272656b697361756d79786f637a3563712f68747470733a2f2f6e667473746f726167652e6c696e6b2f697066732f6261667962656967636963703369726e786d626e6677326775616d76766d643479756535676d6936686965616a746571647a65716d7935366265752f4d696c6c6965734e6f7452657665616c65642e6a736f6e0000000000000000000000005c767dbe68a867cb585d65d9864acc17e0ced01c000000000000000000000000bd7c370e491a06ab8d6562a9ba60c6cc0502453e

Deployed Bytecode

0x60806040526004361061044a5760003560e01c80638545f4ea11610243578063c668286211610143578063da3ef23f116100bb578063f12f6d5d1161008a578063f2fde38b1161006f578063f2fde38b14610d10578063f4283baf14610d30578063fe90c56614610d4557600080fd5b8063f12f6d5d14610cd0578063f2c4ce1e14610cf057600080fd5b8063da3ef23f14610c1a578063dc95c4a714610c3a578063e58306f914610c5a578063e985e9c514610c7a57600080fd5b8063ccc5208511610112578063d547741f116100f7578063d547741f14610bce578063d5abeb0114610bee578063d70a28d114610c0457600080fd5b8063ccc5208514610b8e578063cea3617814610bae57600080fd5b8063c668286214610b19578063c8792ba114610b2e578063c87b56dd14610b4e578063ca15c87314610b6e57600080fd5b8063a217fddf116101d6578063ad8bd82c116101a5578063b88d4fde1161018a578063b88d4fde14610ad0578063ba41b0c614610af0578063bdb4b84814610b0357600080fd5b8063ad8bd82c14610a96578063b187bd2614610ab657600080fd5b8063a217fddf14610a37578063a22cb46514610a4c578063a475b5dd14610a6c578063a49a7a2014610a8157600080fd5b806391d148541161021257806391d148541461098e578063928d54cc146109e157806395d89b4114610a0157806397554dd314610a1657600080fd5b80638545f4ea146108dd5780638da5cb5b146108fd5780639010d07c1461092857806390535ef91461094857600080fd5b80633a467e3d1161034e5780635de02adc116102e157806370a08231116102b057806375b238fc1161029557806375b238fc146108695780637dc694431461089d57806380e3f1ad146108bd57600080fd5b806370a0823114610834578063715018a61461085457600080fd5b80635de02adc146107be5780635e1e1004146107d45780635f563b45146107f45780636352211e1461081457600080fd5b80634f558e791161031d5780634f558e79146107495780634f6ccce71461076957806355f804b3146107895780635c9060a4146107a957600080fd5b80633a467e3d146106de5780633ccfd60b146106f457806342842e0e146106fc578063438b63001461071c57600080fd5b8063184d69ab116103e15780632a404d33116103b05780632f2ff15d116103955780632f2ff15d1461067e5780632f745c591461069e57806336568abe146106be57600080fd5b80632a404d33146106125780632a55205a1461063257600080fd5b8063184d69ab1461058c578063239c70ae146105ac57806323b872dd146105c2578063248a9ca3146105e257600080fd5b8063088a4ed01161041d578063088a4ed01461050d578063095ea7b31461052d57806311fdb52e1461054d57806318160ddd1461056d57600080fd5b806301ffc9a71461044f57806302329a291461048457806306fdde03146104a6578063081812fc146104c8575b600080fd5b34801561045b57600080fd5b5061046f61046a366004614a33565b610d65565b60405190151581526020015b60405180910390f35b34801561049057600080fd5b506104a461049f366004614a65565b610d76565b005b3480156104b257600080fd5b506104bb610e22565b60405161047b9190614aee565b3480156104d457600080fd5b506104e86104e3366004614b01565b610eb4565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161047b565b34801561051957600080fd5b506104a4610528366004614b01565b610ee8565b34801561053957600080fd5b506104a4610548366004614b3c565b610f63565b34801561055957600080fd5b506104a4610568366004614b68565b6110bb565b34801561057957600080fd5b506008545b60405190815260200161047b565b34801561059857600080fd5b5060175461046f9062010000900460ff1681565b3480156105b857600080fd5b5061057e60155481565b3480156105ce57600080fd5b506104a46105dd366004614b96565b6111dc565b3480156105ee57600080fd5b5061057e6105fd366004614b01565b6000908152600b602052604090206001015490565b34801561061e57600080fd5b506104a461062d366004614a65565b611263565b34801561063e57600080fd5b5061065261064d366004614bd7565b61139a565b6040805173ffffffffffffffffffffffffffffffffffffffff909316835260208301919091520161047b565b34801561068a57600080fd5b506104a4610699366004614bf9565b61141b565b3480156106aa57600080fd5b5061057e6106b9366004614b3c565b611440565b3480156106ca57600080fd5b506104a46106d9366004614bf9565b6114f5565b3480156106ea57600080fd5b5061057e6101f481565b6104a461158e565b34801561070857600080fd5b506104a4610717366004614b96565b6116b7565b34801561072857600080fd5b5061073c610737366004614c29565b6116d2565b60405161047b9190614c46565b34801561075557600080fd5b5061046f610764366004614b01565b611774565b34801561077557600080fd5b5061057e610784366004614b01565b6117a0565b34801561079557600080fd5b506104a46107a4366004614d4d565b611844565b3480156107b557600080fd5b506104e86118c6565b3480156107ca57600080fd5b5061057e60145481565b3480156107e057600080fd5b506104a46107ef366004614c29565b6118ed565b34801561080057600080fd5b5061046f61080f366004614ddb565b61193c565b34801561082057600080fd5b506104e861082f366004614b01565b611a47565b34801561084057600080fd5b5061057e61084f366004614c29565b611ab9565b34801561086057600080fd5b506104a4611b6d565b34801561087557600080fd5b5061057e7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177581565b3480156108a957600080fd5b506104a46108b8366004614ddb565b611b81565b3480156108c957600080fd5b506104a46108d8366004614a65565b611e65565b3480156108e957600080fd5b506104a46108f8366004614b01565b611f9b565b34801561090957600080fd5b50600a5473ffffffffffffffffffffffffffffffffffffffff166104e8565b34801561093457600080fd5b506104e8610943366004614bd7565b612016565b34801561095457600080fd5b5061046f610963366004614c29565b73ffffffffffffffffffffffffffffffffffffffff166000908152601a602052604090205460ff1690565b34801561099a57600080fd5b5061046f6109a9366004614bf9565b6000918252600b6020908152604080842073ffffffffffffffffffffffffffffffffffffffff93909316845291905290205460ff1690565b3480156109ed57600080fd5b506104a46109fc366004614e1d565b612035565b348015610a0d57600080fd5b506104bb612127565b348015610a2257600080fd5b5060175461046f906301000000900460ff1681565b348015610a4357600080fd5b5061057e600081565b348015610a5857600080fd5b506104a4610a67366004614e1d565b612136565b348015610a7857600080fd5b506104a4612141565b348015610a8d57600080fd5b5061057e6121e5565b348015610aa257600080fd5b506104a4610ab1366004614b01565b612202565b348015610ac257600080fd5b5060175461046f9060ff1681565b348015610adc57600080fd5b506104a4610aeb366004614e52565b61220f565b6104a4610afe366004614ed2565b61229d565b348015610b0f57600080fd5b5061057e60135481565b348015610b2557600080fd5b506104bb61283b565b348015610b3a57600080fd5b506104a4610b49366004614b01565b6128c9565b348015610b5a57600080fd5b506104bb610b69366004614b01565b6128d6565b348015610b7a57600080fd5b5061057e610b89366004614b01565b612a6f565b348015610b9a57600080fd5b5061057e610ba9366004614c29565b612a86565b348015610bba57600080fd5b5061046f610bc9366004614ddb565b612ab1565b348015610bda57600080fd5b506104a4610be9366004614bf9565b612bb2565b348015610bfa57600080fd5b5061057e60115481565b348015610c1057600080fd5b5061057e60125481565b348015610c2657600080fd5b506104a4610c35366004614d4d565b612bd7565b348015610c4657600080fd5b506104a4610c55366004614c29565b612c59565b348015610c6657600080fd5b506104a4610c75366004614b3c565b612d9f565b348015610c8657600080fd5b5061046f610c95366004614f1e565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610cdc57600080fd5b506104a4610ceb366004614b01565b612e1f565b348015610cfc57600080fd5b506104a4610d0b366004614d4d565b612e9a565b348015610d1c57600080fd5b506104a4610d2b366004614c29565b612f1c565b348015610d3c57600080fd5b506104a4612fb6565b348015610d5157600080fd5b5061057e610d60366004614c29565b613115565b6000610d70826132ca565b92915050565b610da07fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775336109a9565b610df15760405162461bcd60e51b815260206004820152601c60248201527f596f7520646f206e6f742068617665207065726d697373696f6e732e0000000060448201526064015b60405180910390fd5b601780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b606060008054610e3190614f4c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5d90614f4c565b8015610eaa5780601f10610e7f57610100808354040283529160200191610eaa565b820191906000526020600020905b815481529060010190602001808311610e8d57829003601f168201915b5050505050905090565b6000610ebf82613320565b5060009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b610f127fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775336109a9565b610f5e5760405162461bcd60e51b815260206004820152601c60248201527f596f7520646f206e6f742068617665207065726d697373696f6e732e000000006044820152606401610de8565b601555565b6000610f6e82611a47565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110115760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610de8565b3373ffffffffffffffffffffffffffffffffffffffff8216148061103a575061103a8133610c95565b6110ac5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610de8565b6110b68383613391565b505050565b6110e57fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775336109a9565b6111315760405162461bcd60e51b815260206004820152601c60248201527f596f7520646f206e6f742068617665207065726d697373696f6e732e000000006044820152606401610de8565b6105dc6bffffffffffffffffffffffff821611156111915760405162461bcd60e51b815260206004820152601d60248201527f526f796174696573206572726f723a204c696d697420726561636865640000006044820152606401610de8565b601680546bffffffffffffffffffffffff909216740100000000000000000000000000000000000000000273ffffffffffffffffffffffffffffffffffffffff909216919091179055565b6111e63382613431565b6112585760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206e6f7220617070726f7665640000000000000000000000000000000000006064820152608401610de8565b6110b68383836134f1565b61128d7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775336109a9565b6112d95760405162461bcd60e51b815260206004820152601c60248201527f596f7520646f206e6f742068617665207065726d697373696f6e732e000000006044820152606401610de8565b801515601760039054906101000a900460ff161515036113615760405162461bcd60e51b815260206004820152602960248201527f457863657074696f6e20696e20746f67676c65467265656d696e743a2053616d60448201527f652076616c7565732e00000000000000000000000000000000000000000000006064820152608401610de8565b601780549115156301000000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff909216919091179055565b6000806113a684611774565b1561140d5760165473ffffffffffffffffffffffffffffffffffffffff811690612710906113fa907401000000000000000000000000000000000000000090046bffffffffffffffffffffffff1686614fce565b611404919061503a565b91509150611414565b5060009050805b9250929050565b6000828152600b60205260409020600101546114368161372f565b6110b68383613739565b600061144b83611ab9565b82106114bf5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610de8565b5073ffffffffffffffffffffffffffffffffffffffff919091166000908152600660209081526040808320938352929052205490565b73ffffffffffffffffffffffffffffffffffffffff811633146115805760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c6600000000000000000000000000000000006064820152608401610de8565b61158a828261375b565b5050565b6115b87fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775336109a9565b6116045760405162461bcd60e51b815260206004820152601c60248201527f596f7520646f206e6f742068617665207065726d697373696f6e732e000000006044820152606401610de8565b60105460405160009173ffffffffffffffffffffffffffffffffffffffff169047908381818185875af1925050503d806000811461165e576040519150601f19603f3d011682016040523d82523d6000602084013e611663565b606091505b50509050806116b45760405162461bcd60e51b815260206004820152601060248201527f4661696c65642077697468647261772e000000000000000000000000000000006044820152606401610de8565b50565b6110b68383836040518060200160405280600081525061220f565b606060006116df83611ab9565b905060008167ffffffffffffffff8111156116fc576116fc614c8a565b604051908082528060200260200182016040528015611725578160200160208202803683370190505b50905060005b8281101561176c5761173d8582611440565b82828151811061174f5761174f61504e565b6020908102919091010152806117648161507d565b91505061172b565b509392505050565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff161515610d70565b60006117ab60085490565b821061181f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610de8565b600882815481106118325761183261504e565b90600052602060002001549050919050565b61186e7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775336109a9565b6118ba5760405162461bcd60e51b815260206004820152601c60248201527f596f7520646f206e6f742068617665207065726d697373696f6e732e000000006044820152606401610de8565b600d61158a8282615103565b60006118d061377d565b5060105473ffffffffffffffffffffffffffffffffffffffff1690565b6118f561377d565b601080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b16602082015260009081906034016040516020818303038152906040528051906020012090506119cb8484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060185491508490506137e4565b611a3d5760405162461bcd60e51b815260206004820152603360248201527f4578636574696f6e20696e20636865636b57686974656c69737456616c69646960448201527f74793a204e6f742077686974656c6973746564000000000000000000000000006064820152608401610de8565b5060019392505050565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff1680610d705760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610de8565b600073ffffffffffffffffffffffffffffffffffffffff8216611b445760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e657200000000000000000000000000000000000000000000006064820152608401610de8565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b611b7561377d565b611b7f60006137fa565b565b611b8b8282612ab1565b611c235760405162461bcd60e51b815260206004820152604260248201527f457863657074696f6e20696e20636c61696d467265656d696e743a20596f752060448201527f646f206e6f7420686176652061636365737320746f2066726565206d696e696e60648201527f672e000000000000000000000000000000000000000000000000000000000000608482015260a401610de8565b336000908152601a602052604090205460ff1615611ca95760405162461bcd60e51b815260206004820152603e60248201527f457863657074696f6e20696e20636c61696d467265656d696e743a20596f752060448201527f6861766520616c726561647920636c61696d656420796f7572204e46542e00006064820152608401610de8565b60175460ff1615611d225760405162461bcd60e51b815260206004820152602c60248201527f457863657074696f6e20696e20636c61696d467265656d696e743a20436c616960448201527f6d206973207061757365642e00000000000000000000000000000000000000006064820152608401610de8565b6017546301000000900460ff16611da15760405162461bcd60e51b815260206004820152603660248201527f457863657074696f6e20696e20636c61696d467265656d696e743a204672656560448201527f6d696e74206973206e6f74206163746976617465642e000000000000000000006064820152608401610de8565b6101f4611dac6121e5565b1115611e205760405162461bcd60e51b815260206004820152603660248201527f457863657074696f6e20696e20636c61696d467265656d696e743a204e6f742060448201527f746865206c61737420353030204e4654732079657421000000000000000000006064820152608401610de8565b336000818152601a6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600190811790915561158a9190613871565b611e8f7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775336109a9565b611edb5760405162461bcd60e51b815260206004820152601c60248201527f596f7520646f206e6f742068617665207065726d697373696f6e732e000000006044820152606401610de8565b801515601760029054906101000a900460ff16151503611f635760405162461bcd60e51b815260206004820152602a60248201527f457863657074696f6e20696e20746f67676c6557686974656c6973743a20536160448201527f6d652076616c7565732e000000000000000000000000000000000000000000006064820152608401610de8565b6017805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b611fc57fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775336109a9565b6120115760405162461bcd60e51b815260206004820152601c60248201527f596f7520646f206e6f742068617665207065726d697373696f6e732e000000006044820152606401610de8565b601355565b6000828152600c6020526040812061202e908361390f565b9392505050565b61205f7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775336109a9565b806120815750600a5473ffffffffffffffffffffffffffffffffffffffff1633145b6120cd5760405162461bcd60e51b815260206004820152601c60248201527f596f7520646f206e6f742068617665207065726d697373696f6e732e000000006044820152606401610de8565b80156120fd5761158a7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177583613739565b61158a7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c217758361375b565b606060018054610e3190614f4c565b61158a33838361391b565b61216b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775336109a9565b6121b75760405162461bcd60e51b815260206004820152601c60248201527f596f7520646f206e6f742068617665207065726d697373696f6e732e000000006044820152606401610de8565b601780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16610100179055565b60006121f060085490565b6011546121fd919061521d565b905090565b61220a61377d565b601855565b6122193383613431565b61228b5760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206e6f7220617070726f7665640000000000000000000000000000000000006064820152608401610de8565b61229784848484613a2e565b50505050565b60175460ff16156123165760405162461bcd60e51b815260206004820152602560248201527f457863657074696f6e20696e206d696e743a20436f6e7472616374206973207060448201527f61757365640000000000000000000000000000000000000000000000000000006064820152608401610de8565b6017546301000000900460ff16156123965760405162461bcd60e51b815260206004820152603360248201527f457863657074696f6e20696e206d696e743a204d696e742066696e697368656460448201527f2e20467265656d696e7420656e61626c65642e000000000000000000000000006064820152608401610de8565b6000831161240c5760405162461bcd60e51b815260206004820152603060248201527f457863657074696f6e20696e206d696e743a20596f75206861766520746f206d60448201527f696e74206174206c65617374206f6e65000000000000000000000000000000006064820152608401610de8565b6101f460115461241c919061521d565b8361242660085490565b6124309190615230565b11156124a45760405162461bcd60e51b815260206004820152602d60248201527f457863657074696f6e20696e206d696e743a2054727920746f206d696e74206c60448201527f657373207175616e746974792e000000000000000000000000000000000000006064820152608401610de8565b6101f4836124b06121e5565b6124ba919061521d565b1161252d5760405162461bcd60e51b815260206004820152602160248201527f457863657074696f6e20696e206d696e743a204d696e742066696e697368656460448201527f2e000000000000000000000000000000000000000000000000000000000000006064820152608401610de8565b601754339062010000900460ff16156126f65761254a838361193c565b6125bc5760405162461bcd60e51b815260206004820152602960248201527f457863657074696f6e20696e206d696e743a20596f7520617265206e6f74206960448201527f6e2074686520574c2e00000000000000000000000000000000000000000000006064820152608401610de8565b60145473ffffffffffffffffffffffffffffffffffffffff82166000908152601b60205260409020546125f0908690615230565b11156126645760405162461bcd60e51b815260206004820152602f60248201527f457863657074696f6e20696e206d696e743a20596f752068617665206578636560448201527f6564656420746865206c696d69742e00000000000000000000000000000000006064820152608401610de8565b836012546126729190614fce565b3410156126e75760405162461bcd60e51b815260206004820152603460248201527f457863657074696f6e20696e206d696e743a2041206c6f776572207175616e7460448201527f69747920686173206265656e2073656e6465642e0000000000000000000000006064820152608401610de8565b6126f18185613871565b612297565b60175462010000900460ff166122975760155473ffffffffffffffffffffffffffffffffffffffff82166000908152601c602052604090205461273a908690615230565b11156127ae5760405162461bcd60e51b815260206004820152602f60248201527f457863657074696f6e20696e206d696e743a20596f752068617665206578636560448201527f6564656420746865206c696d69742e00000000000000000000000000000000006064820152608401610de8565b836013546127bc9190614fce565b3410156128315760405162461bcd60e51b815260206004820152603460248201527f457863657074696f6e20696e206d696e743a2041206c6f776572207175616e7460448201527f69747920686173206265656e2073656e6465642e0000000000000000000000006064820152608401610de8565b6122978185613871565b600e805461284890614f4c565b80601f016020809104026020016040519081016040528092919081815260200182805461287490614f4c565b80156128c15780601f10612896576101008083540402835291602001916128c1565b820191906000526020600020905b8154815290600101906020018083116128a457829003601f168201915b505050505081565b6128d161377d565b601955565b60008181526002602052604090205460609073ffffffffffffffffffffffffffffffffffffffff166129705760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610de8565b601754610100900460ff16612a1157600f805461298c90614f4c565b80601f01602080910402602001604051908101604052809291908181526020018280546129b890614f4c565b8015612a055780601f106129da57610100808354040283529160200191612a05565b820191906000526020600020905b8154815290600101906020018083116129e857829003601f168201915b50505050509050919050565b6000612a1b613ab7565b90506000815111612a3b576040518060200160405280600081525061202e565b80612a4584613ac6565b600e604051602001612a5993929190615243565b6040516020818303038152906040529392505050565b6000818152600c60205260408120610d7090613bfb565b73ffffffffffffffffffffffffffffffffffffffff81166000908152601c6020526040812054610d70565b6040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b1660208201526000908190603401604051602081830303815290604052805190602001209050612b408484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060195491508490506137e4565b611a3d5760405162461bcd60e51b815260206004820152603260248201527f4578636574696f6e20696e20636865636b467265656d696e7456616c6964697460448201527f793a204e6f742077686974656c697374656400000000000000000000000000006064820152608401610de8565b6000828152600b6020526040902060010154612bcd8161372f565b6110b6838361375b565b612c017fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775336109a9565b612c4d5760405162461bcd60e51b815260206004820152601c60248201527f596f7520646f206e6f742068617665207065726d697373696f6e732e000000006044820152606401610de8565b600e61158a8282615103565b612c837fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775336109a9565b612ccf5760405162461bcd60e51b815260206004820152601c60248201527f596f7520646f206e6f742068617665207065726d697373696f6e732e000000006044820152606401610de8565b73ffffffffffffffffffffffffffffffffffffffff8116612d585760405162461bcd60e51b815260206004820152602f60248201527f457863657074696f6e20696e20736574526f79616c746965734164647265737360448201527f3a2041646472657373207a65726f2e00000000000000000000000000000000006064820152608401610de8565b601680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b612dc97fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775336109a9565b612e155760405162461bcd60e51b815260206004820152601c60248201527f596f7520646f206e6f742068617665207065726d697373696f6e732e000000006044820152606401610de8565b61158a8282613871565b612e497fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775336109a9565b612e955760405162461bcd60e51b815260206004820152601c60248201527f596f7520646f206e6f742068617665207065726d697373696f6e732e000000006044820152606401610de8565b601255565b612ec47fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775336109a9565b612f105760405162461bcd60e51b815260206004820152601c60248201527f596f7520646f206e6f742068617665207065726d697373696f6e732e000000006044820152606401610de8565b600f61158a8282615103565b612f2461377d565b73ffffffffffffffffffffffffffffffffffffffff8116612fad5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610de8565b6116b4816137fa565b60175460ff16613030576040805162461bcd60e51b81526020600482015260248101919091527f457863657074696f6e20696e2064657374726f79546865526573743a2054686560448201527f20636f6e7472616374206e6565647320746f2062652073757370656e6465642e6064820152608401610de8565b61305a7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775336109a9565b6130a65760405162461bcd60e51b815260206004820152601c60248201527f596f7520646f206e6f742068617665207065726d697373696f6e732e000000006044820152606401610de8565b60006130b160085490565b6101f46011546130c1919061521d565b6130cb919061521d565b905080601160008282546130df919061521d565b9091555050601780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff16630100000017905550565b601754600090819062010000900460ff16156131655773ffffffffffffffffffffffffffffffffffffffff83166000908152601b602052604090205460145461315e919061521d565b9050610d70565b73ffffffffffffffffffffffffffffffffffffffff83166000908152601c602052604090205460155461202e919061521d565b6000828152600b6020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff1661158a576000828152600b6020908152604080832073ffffffffffffffffffffffffffffffffffffffff85168452909152902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905561322e3390565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600061202e8373ffffffffffffffffffffffffffffffffffffffff8416613c05565b73ffffffffffffffffffffffffffffffffffffffff163b151590565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f5a05180f000000000000000000000000000000000000000000000000000000001480610d705750610d7082613c54565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff166116b45760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610de8565b600081815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff841690811790915581906133eb82611a47565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061343d83611a47565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806134ab575073ffffffffffffffffffffffffffffffffffffffff80821660009081526005602090815260408083209388168352929052205460ff165b806134e957508373ffffffffffffffffffffffffffffffffffffffff166134d184610eb4565b73ffffffffffffffffffffffffffffffffffffffff16145b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff1661351182611a47565b73ffffffffffffffffffffffffffffffffffffffff161461359a5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610de8565b73ffffffffffffffffffffffffffffffffffffffff82166136225760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610de8565b61362d838383613caa565b613638600082613391565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260036020526040812080546001929061366e90849061521d565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526003602052604081208054600192906136a9908490615230565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6116b48133613db0565b6137438282613198565b6000828152600c602052604090206110b6908261328c565b6137658282613e68565b6000828152600c602052604090206110b69082613f23565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611b7f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610de8565b6000826137f18584613f45565b14949350505050565b600a805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b818110156110b65761388e8361388960085490565b613f8a565b60175462010000900460ff16156138d05773ffffffffffffffffffffffffffffffffffffffff83166000908152601b60205260409020805460010190556138fd565b73ffffffffffffffffffffffffffffffffffffffff83166000908152601c60205260409020805460010190555b806139078161507d565b915050613874565b600061202e8383613fa4565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036139965760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610de8565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b613a398484846134f1565b613a4584848484613fce565b6122975760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610de8565b6060600d8054610e3190614f4c565b606081600003613b0957505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115613b335780613b1d8161507d565b9150613b2c9050600a8361503a565b9150613b0d565b60008167ffffffffffffffff811115613b4e57613b4e614c8a565b6040519080825280601f01601f191660200182016040528015613b78576020820181803683370190505b5090505b84156134e957613b8d60018361521d565b9150613b9a600a86615301565b613ba5906030615230565b60f81b818381518110613bba57613bba61504e565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350613bf4600a8661503a565b9450613b7c565b6000610d70825490565b6000818152600183016020526040812054613c4c57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610d70565b506000610d70565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b000000000000000000000000000000000000000000000000000000001480610d705750610d70826141a7565b73ffffffffffffffffffffffffffffffffffffffff8316613d1257613d0d81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b613d4f565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613d4f57613d4f83826141fd565b73ffffffffffffffffffffffffffffffffffffffff8216613d73576110b6816142b4565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146110b6576110b68282614363565b6000828152600b6020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff1661158a57613e088173ffffffffffffffffffffffffffffffffffffffff1660146143b4565b613e138360206143b4565b604051602001613e24929190615315565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529082905262461bcd60e51b8252610de891600401614aee565b6000828152600b6020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff161561158a576000828152600b6020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516808552925280832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600061202e8373ffffffffffffffffffffffffffffffffffffffff84166145dd565b600081815b845181101561176c57613f7682868381518110613f6957613f6961504e565b60200260200101516146d0565b915080613f828161507d565b915050613f4a565b61158a8282604051806020016040528060008152506146ff565b6000826000018281548110613fbb57613fbb61504e565b9060005260206000200154905092915050565b600073ffffffffffffffffffffffffffffffffffffffff84163b1561419c576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290614045903390899088908890600401615396565b6020604051808303816000875af192505050801561409e575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261409b918101906153df565b60015b614151573d8080156140cc576040519150601f19603f3d011682016040523d82523d6000602084013e6140d1565b606091505b5080516000036141495760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610de8565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490506134e9565b506001949350505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d63000000000000000000000000000000000000000000000000000000001480610d705750610d7082614788565b6000600161420a84611ab9565b614214919061521d565b6000838152600760205260409020549091508082146142745773ffffffffffffffffffffffffffffffffffffffff841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b50600091825260076020908152604080842084905573ffffffffffffffffffffffffffffffffffffffff9094168352600681528383209183525290812055565b6008546000906142c69060019061521d565b600083815260096020526040812054600880549394509092849081106142ee576142ee61504e565b90600052602060002001549050806008838154811061430f5761430f61504e565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480614347576143476153fc565b6001900381819060005260206000200160009055905550505050565b600061436e83611ab9565b73ffffffffffffffffffffffffffffffffffffffff9093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b606060006143c3836002614fce565b6143ce906002615230565b67ffffffffffffffff8111156143e6576143e6614c8a565b6040519080825280601f01601f191660200182016040528015614410576020820181803683370190505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106144475761444761504e565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106144aa576144aa61504e565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006144e6846002614fce565b6144f1906001615230565b90505b600181111561458e577f303132333435363738396162636465660000000000000000000000000000000085600f16601081106145325761453261504e565b1a60f81b8282815181106145485761454861504e565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060049490941c936145878161542b565b90506144f4565b50831561202e5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610de8565b600081815260018301602052604081205480156146c657600061460160018361521d565b85549091506000906146159060019061521d565b905081811461467a5760008660000182815481106146355761463561504e565b90600052602060002001549050808760000184815481106146585761465861504e565b6000918252602080832090910192909255918252600188019052604090208390555b855486908061468b5761468b6153fc565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610d70565b6000915050610d70565b60008183106146ec57600082815260208490526040902061202e565b600083815260208390526040902061202e565b614709838361486b565b6147166000848484613fce565b6110b65760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610de8565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061481b57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610d7057507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610d70565b73ffffffffffffffffffffffffffffffffffffffff82166148ce5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610de8565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff16156149405760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610de8565b61494c60008383613caa565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600360205260408120805460019290614982908490615230565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b7fffffffff00000000000000000000000000000000000000000000000000000000811681146116b457600080fd5b600060208284031215614a4557600080fd5b813561202e81614a05565b80358015158114614a6057600080fd5b919050565b600060208284031215614a7757600080fd5b61202e82614a50565b60005b83811015614a9b578181015183820152602001614a83565b50506000910152565b60008151808452614abc816020860160208601614a80565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061202e6020830184614aa4565b600060208284031215614b1357600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff811681146116b457600080fd5b60008060408385031215614b4f57600080fd5b8235614b5a81614b1a565b946020939093013593505050565b600060208284031215614b7a57600080fd5b81356bffffffffffffffffffffffff8116811461202e57600080fd5b600080600060608486031215614bab57600080fd5b8335614bb681614b1a565b92506020840135614bc681614b1a565b929592945050506040919091013590565b60008060408385031215614bea57600080fd5b50508035926020909101359150565b60008060408385031215614c0c57600080fd5b823591506020830135614c1e81614b1a565b809150509250929050565b600060208284031215614c3b57600080fd5b813561202e81614b1a565b6020808252825182820181905260009190848201906040850190845b81811015614c7e57835183529284019291840191600101614c62565b50909695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff80841115614cd457614cd4614c8a565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715614d1a57614d1a614c8a565b81604052809350858152868686011115614d3357600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215614d5f57600080fd5b813567ffffffffffffffff811115614d7657600080fd5b8201601f81018413614d8757600080fd5b6134e984823560208401614cb9565b60008083601f840112614da857600080fd5b50813567ffffffffffffffff811115614dc057600080fd5b6020830191508360208260051b850101111561141457600080fd5b60008060208385031215614dee57600080fd5b823567ffffffffffffffff811115614e0557600080fd5b614e1185828601614d96565b90969095509350505050565b60008060408385031215614e3057600080fd5b8235614e3b81614b1a565b9150614e4960208401614a50565b90509250929050565b60008060008060808587031215614e6857600080fd5b8435614e7381614b1a565b93506020850135614e8381614b1a565b925060408501359150606085013567ffffffffffffffff811115614ea657600080fd5b8501601f81018713614eb757600080fd5b614ec687823560208401614cb9565b91505092959194509250565b600080600060408486031215614ee757600080fd5b83359250602084013567ffffffffffffffff811115614f0557600080fd5b614f1186828701614d96565b9497909650939450505050565b60008060408385031215614f3157600080fd5b8235614f3c81614b1a565b91506020830135614c1e81614b1a565b600181811c90821680614f6057607f821691505b602082108103614f99577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561500657615006614f9f565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000826150495761504961500b565b500490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036150ae576150ae614f9f565b5060010190565b601f8211156110b657600081815260208120601f850160051c810160208610156150dc5750805b601f850160051c820191505b818110156150fb578281556001016150e8565b505050505050565b815167ffffffffffffffff81111561511d5761511d614c8a565b6151318161512b8454614f4c565b846150b5565b602080601f831160018114615184576000841561514e5750858301515b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600386901b1c1916600185901b1785556150fb565b6000858152602081207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08616915b828110156151d1578886015182559484019460019091019084016151b2565b508582101561520d57878501517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600388901b60f8161c191681555b5050505050600190811b01905550565b81810381811115610d7057610d70614f9f565b80820180821115610d7057610d70614f9f565b6000845160206152568285838a01614a80565b8551918401916152698184848a01614a80565b855492019160009061527a81614f4c565b6001828116801561529257600181146152c5576152f1565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00841687528215158302870194506152f1565b896000528560002060005b848110156152e9578154898201529083019087016152d0565b505082870194505b50929a9950505050505050505050565b6000826153105761531061500b565b500690565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835161534d816017850160208801614a80565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000601791840191820152835161538a816028840160208801614a80565b01602801949350505050565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526153d56080830184614aa4565b9695505050505050565b6000602082840312156153f157600080fd5b815161202e81614a05565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60008161543a5761543a614f9f565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff019056fea26469706673582212209ad44f94757b301011cfdef863a875f52517bc807f75078bf323bbf53265b7d964736f6c63430008100033

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

0000000000000000000000005c767dbe68a867cb585d65d9864acc17e0ced01c000000000000000000000000bd7c370e491a06ab8d6562a9ba60c6cc0502453e

-----Decoded View---------------
Arg [0] : _paymentAddress (address): 0x5C767dbe68A867cb585D65D9864ACC17e0cEd01c
Arg [1] : _royaltiesAddress (address): 0xbd7C370e491A06Ab8D6562a9bA60C6cC0502453e

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000005c767dbe68a867cb585d65d9864acc17e0ced01c
Arg [1] : 000000000000000000000000bd7c370e491a06ab8d6562a9ba60c6cc0502453e


Deployed Bytecode Sourcemap

88478:16447:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101458:196;;;;;;;;;;-1:-1:-1;101458:196:0;;;;;:::i;:::-;;:::i;:::-;;;611:14:1;;604:22;586:41;;574:2;559:18;101458:196:0;;;;;;;;103270:158;;;;;;;;;;-1:-1:-1;103270:158:0;;;;;:::i;:::-;;:::i;:::-;;65028:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;66541:171::-;;;;;;;;;;-1:-1:-1;66541:171:0;;;;;:::i;:::-;;:::i;:::-;;;2164:42:1;2152:55;;;2134:74;;2122:2;2107:18;66541:171:0;1988:226:1;103063:199:0;;;;;;;;;;-1:-1:-1;103063:199:0;;;;;:::i;:::-;;:::i;66058:417::-;;;;;;;;;;-1:-1:-1;66058:417:0;;;;;:::i;:::-;;:::i;104630:288::-;;;;;;;;;;-1:-1:-1;104630:288:0;;;;;:::i;:::-;;:::i;78934:113::-;;;;;;;;;;-1:-1:-1;79022:10:0;:17;78934:113;;;3141:25:1;;;3129:2;3114:18;78934:113:0;2995:177:1;90302:37:0;;;;;;;;;;-1:-1:-1;90302:37:0;;;;;;;;;;;89709:32;;;;;;;;;;;;;;;;67241:336;;;;;;;;;;-1:-1:-1;67241:336:0;;;;;:::i;:::-;;:::i;49683:131::-;;;;;;;;;;-1:-1:-1;49683:131:0;;;;;:::i;:::-;49757:7;49784:12;;;:6;:12;;;;;:22;;;;49683:131;99748:268;;;;;;;;;;-1:-1:-1;99748:268:0;;;;;:::i;:::-;;:::i;104039:287::-;;;;;;;;;;-1:-1:-1;104039:287:0;;;;;:::i;:::-;;:::i;:::-;;;;4462:42:1;4450:55;;;4432:74;;4537:2;4522:18;;4515:34;;;;4405:18;104039:287:0;4258:297:1;50124:147:0;;;;;;;;;;-1:-1:-1;50124:147:0;;;;;:::i;:::-;;:::i;78602:256::-;;;;;;;;;;-1:-1:-1;78602:256:0;;;;;:::i;:::-;;:::i;51268:218::-;;;;;;;;;;-1:-1:-1;51268:218:0;;;;;:::i;:::-;;:::i;89792:44::-;;;;;;;;;;;;89833:3;89792:44;;101934:259;;;:::i;67648:185::-;;;;;;;;;;-1:-1:-1;67648:185:0;;;;;:::i;:::-;;:::i;100296:364::-;;;;;;;;;;-1:-1:-1;100296:364:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;100842:102::-;;;;;;;;;;-1:-1:-1;100842:102:0;;;;;:::i;:::-;;:::i;79124:233::-;;;;;;;;;;-1:-1:-1;79124:233:0;;;;;:::i;:::-;;:::i;93641:181::-;;;;;;;;;;-1:-1:-1;93641:181:0;;;;;:::i;:::-;;:::i;102324:105::-;;;;;;;;;;;;;:::i;89666:36::-;;;;;;;;;;;;;;;;102201:115;;;;;;;;;;-1:-1:-1;102201:115:0;;;;;:::i;:::-;;:::i;98372:309::-;;;;;;;;;;-1:-1:-1;98372:309:0;;;;;:::i;:::-;;:::i;64739:222::-;;;;;;;;;;-1:-1:-1;64739:222:0;;;;;:::i;:::-;;:::i;64470:207::-;;;;;;;;;;-1:-1:-1;64470:207:0;;;;;:::i;:::-;;:::i;32900:103::-;;;;;;;;;;;;;:::i;88921:60::-;;;;;;;;;;;;88958:23;88921:60;;96660:711;;;;;;;;;;-1:-1:-1;96660:711:0;;;;;:::i;:::-;;:::i;98783:272::-;;;;;;;;;;-1:-1:-1;98783:272:0;;;;;:::i;:::-;;:::i;102437:171::-;;;;;;;;;;-1:-1:-1;102437:171:0;;;;;:::i;:::-;;:::i;32252:87::-;;;;;;;;;;-1:-1:-1;32325:6:0;;;;32252:87;;54921:153;;;;;;;;;;-1:-1:-1;54921:153:0;;;;;:::i;:::-;;:::i;97379:114::-;;;;;;;;;;-1:-1:-1;97379:114:0;;;;;:::i;:::-;97460:25;;97436:4;97460:25;;;:18;:25;;;;;;;;;97379:114;48143:147;;;;;;;;;;-1:-1:-1;48143:147:0;;;;;:::i;:::-;48229:4;48253:12;;;:6;:12;;;;;;;;:29;;;;;;;;;;;;;;;;48143:147;103436:322;;;;;;;;;;-1:-1:-1;103436:322:0;;;;;:::i;:::-;;:::i;65197:104::-;;;;;;;;;;;;;:::i;90370:37::-;;;;;;;;;;-1:-1:-1;90370:37:0;;;;;;;;;;;47248:49;;;;;;;;;;-1:-1:-1;47248:49:0;47293:4;47248:49;;66784:155;;;;;;;;;;-1:-1:-1;66784:155:0;;;;;:::i;:::-;;:::i;94077:148::-;;;;;;;;;;;;;:::i;100952:108::-;;;;;;;;;;;;;:::i;98689:86::-;;;;;;;;;;-1:-1:-1;98689:86:0;;;;;:::i;:::-;;:::i;90174:27::-;;;;;;;;;;-1:-1:-1;90174:27:0;;;;;;;;67904:323;;;;;;;;;;-1:-1:-1;67904:323:0;;;;;:::i;:::-;;:::i;95121:1531::-;;;;;;:::i;:::-;;:::i;89584:36::-;;;;;;;;;;;;;;;;89133:37;;;;;;;;;;;;;:::i;99651:86::-;;;;;;;;;;-1:-1:-1;99651:86:0;;;;;:::i;:::-;;:::i;92905:456::-;;;;;;;;;;-1:-1:-1;92905:456:0;;;;;:::i;:::-;;:::i;55248:142::-;;;;;;;;;;-1:-1:-1;55248:142:0;;;;;:::i;:::-;;:::i;100668:133::-;;;;;;;;;;-1:-1:-1;100668:133:0;;;;;:::i;:::-;;:::i;99336:307::-;;;;;;;;;;-1:-1:-1;99336:307:0;;;;;:::i;:::-;;:::i;50564:149::-;;;;;;;;;;-1:-1:-1;50564:149:0;;;;;:::i;:::-;;:::i;89433:31::-;;;;;;;;;;;;;;;;89543:34;;;;;;;;;;;;;;;;93830:205;;;;;;;;;;-1:-1:-1;93830:205:0;;;;;:::i;:::-;;:::i;104334:288::-;;;;;;;;;;-1:-1:-1;104334:288:0;;;;;:::i;:::-;;:::i;97501:192::-;;;;;;;;;;-1:-1:-1;97501:192:0;;;;;:::i;:::-;;:::i;67010:164::-;;;;;;;;;;-1:-1:-1;67010:164:0;;;;;:::i;:::-;67131:25;;;;67107:4;67131:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;67010:164;102616:167;;;;;;;;;;-1:-1:-1;102616:167:0;;;;;:::i;:::-;;:::i;93430:203::-;;;;;;;;;;-1:-1:-1;93430:203:0;;;;;:::i;:::-;;:::i;33158:201::-;;;;;;;;;;-1:-1:-1;33158:201:0;;;;;:::i;:::-;;:::i;97723:368::-;;;;;;;;;;;;;:::i;101068:382::-;;;;;;;;;;-1:-1:-1;101068:382:0;;;;;:::i;:::-;;:::i;101458:196::-;101586:4;101610:36;101634:11;101610:23;:36::i;:::-;101603:43;101458:196;-1:-1:-1;;101458:196:0:o;103270:158::-;103326:33;88958:23;30883:10;48143:147;:::i;103326:33::-;103318:74;;;;-1:-1:-1;;;103318:74:0;;10662:2:1;103318:74:0;;;10644:21:1;10701:2;10681:18;;;10674:30;10740;10720:18;;;10713:58;10788:18;;103318:74:0;;;;;;;;;103403:8;:17;;;;;;;;;;;;;103270:158::o;65028:100::-;65082:13;65115:5;65108:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65028:100;:::o;66541:171::-;66617:7;66637:23;66652:7;66637:14;:23::i;:::-;-1:-1:-1;66680:24:0;;;;:15;:24;;;;;;;;;66541:171::o;103063:199::-;103144:33;88958:23;30883:10;48143:147;:::i;103144:33::-;103136:74;;;;-1:-1:-1;;;103136:74:0;;10662:2:1;103136:74:0;;;10644:21:1;10701:2;10681:18;;;10674:30;10740;10720:18;;;10713:58;10788:18;;103136:74:0;10460:352:1;103136:74:0;103221:13;:33;103063:199::o;66058:417::-;66139:13;66155:23;66170:7;66155:14;:23::i;:::-;66139:39;;66203:5;66197:11;;:2;:11;;;66189:57;;;;-1:-1:-1;;;66189:57:0;;11461:2:1;66189:57:0;;;11443:21:1;11500:2;11480:18;;;11473:30;11539:34;11519:18;;;11512:62;11610:3;11590:18;;;11583:31;11631:19;;66189:57:0;11259:397:1;66189:57:0;30883:10;66281:21;;;;;:62;;-1:-1:-1;66306:37:0;66323:5;30883:10;67010:164;:::i;66306:37::-;66259:174;;;;-1:-1:-1;;;66259:174:0;;11863:2:1;66259:174:0;;;11845:21:1;11902:2;11882:18;;;11875:30;11941:34;11921:18;;;11914:62;12012:32;11992:18;;;11985:60;12062:19;;66259:174:0;11661:426:1;66259:174:0;66446:21;66455:2;66459:7;66446:8;:21::i;:::-;66128:347;66058:417;;:::o;104630:288::-;104712:33;88958:23;30883:10;48143:147;:::i;104712:33::-;104704:74;;;;-1:-1:-1;;;104704:74:0;;10662:2:1;104704:74:0;;;10644:21:1;10701:2;10681:18;;;10674:30;10740;10720:18;;;10713:58;10788:18;;104704:74:0;10460:352:1;104704:74:0;90108:4;104797:33;;;;;104789:75;;;;-1:-1:-1;;;104789:75:0;;12294:2:1;104789:75:0;;;12276:21:1;12333:2;12313:18;;;12306:30;12372:31;12352:18;;;12345:59;12421:18;;104789:75:0;12092:353:1;104789:75:0;104875:20;:35;;;;;;;;;;;;;;;;;;104630:288::o;67241:336::-;67436:41;30883:10;67469:7;67436:18;:41::i;:::-;67428:100;;;;-1:-1:-1;;;67428:100:0;;12652:2:1;67428:100:0;;;12634:21:1;12691:2;12671:18;;;12664:30;12730:34;12710:18;;;12703:62;12801:16;12781:18;;;12774:44;12835:19;;67428:100:0;12450:410:1;67428:100:0;67541:28;67551:4;67557:2;67561:7;67541:9;:28::i;99748:268::-;99813:33;88958:23;30883:10;48143:147;:::i;99813:33::-;99805:74;;;;-1:-1:-1;;;99805:74:0;;10662:2:1;99805:74:0;;;10644:21:1;10701:2;10681:18;;;10674:30;10740;10720:18;;;10713:58;10788:18;;99805:74:0;10460:352:1;99805:74:0;99919:6;99898:27;;:17;;;;;;;;;;;:27;;;99890:81;;;;-1:-1:-1;;;99890:81:0;;13067:2:1;99890:81:0;;;13049:21:1;13106:2;13086:18;;;13079:30;13145:34;13125:18;;;13118:62;13216:11;13196:18;;;13189:39;13245:19;;99890:81:0;12865:405:1;99890:81:0;99982:17;:26;;;;;;;;;;;;;;;;;99748:268::o;104039:287::-;104123:16;104141:21;104178:16;104185:8;104178:6;:16::i;:::-;104175:101;;;104216:16;;;;;;104270:5;;104235:33;;104248:20;;;;;104235:10;:33;:::i;:::-;104234:41;;;;:::i;:::-;104209:67;;;;;;104175:101;-1:-1:-1;104311:1:0;;-1:-1:-1;104311:1:0;104039:287;;;;;;:::o;50124:147::-;49757:7;49784:12;;;:6;:12;;;;;:22;;;47739:16;47750:4;47739:10;:16::i;:::-;50238:25:::1;50249:4;50255:7;50238:10;:25::i;78602:256::-:0;78699:7;78735:23;78752:5;78735:16;:23::i;:::-;78727:5;:31;78719:87;;;;-1:-1:-1;;;78719:87:0;;14213:2:1;78719:87:0;;;14195:21:1;14252:2;14232:18;;;14225:30;14291:34;14271:18;;;14264:62;14362:13;14342:18;;;14335:41;14393:19;;78719:87:0;14011:407:1;78719:87:0;-1:-1:-1;78824:19:0;;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;78602:256::o;51268:218::-;51364:23;;;30883:10;51364:23;51356:83;;;;-1:-1:-1;;;51356:83:0;;14625:2:1;51356:83:0;;;14607:21:1;14664:2;14644:18;;;14637:30;14703:34;14683:18;;;14676:62;14774:17;14754:18;;;14747:45;14809:19;;51356:83:0;14423:411:1;51356:83:0;51452:26;51464:4;51470:7;51452:11;:26::i;:::-;51268:218;;:::o;101934:259::-;101990:33;88958:23;30883:10;48143:147;:::i;101990:33::-;101982:74;;;;-1:-1:-1;;;101982:74:0;;10662:2:1;101982:74:0;;;10644:21:1;10701:2;10681:18;;;10674:30;10740;10720:18;;;10713:58;10788:18;;101982:74:0;10460:352:1;101982:74:0;102092:8;;102084:56;;102068:10;;102092:8;;;102114:21;;102068:10;102084:56;102068:10;102084:56;102114:21;102092:8;102084:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102067:73;;;102159:5;102151:34;;;;-1:-1:-1;;;102151:34:0;;15251:2:1;102151:34:0;;;15233:21:1;15290:2;15270:18;;;15263:30;15329:18;15309;;;15302:46;15365:18;;102151:34:0;15049:340:1;102151:34:0;101971:222;101934:259::o;67648:185::-;67786:39;67803:4;67809:2;67813:7;67786:39;;;;;;;;;;;;:16;:39::i;100296:364::-;100358:16;100387:23;100413:17;100423:6;100413:9;:17::i;:::-;100387:43;;100441:25;100483:15;100469:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;100469:30:0;;100441:58;;100517:9;100512:113;100532:15;100528:1;:19;100512:113;;;100583:30;100603:6;100611:1;100583:19;:30::i;:::-;100569:8;100578:1;100569:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;100549:3;;;;:::i;:::-;;;;100512:113;;;-1:-1:-1;100644:8:0;100296:364;-1:-1:-1;;;100296:364:0:o;100842:102::-;100896:4;69823:16;;;:7;:16;;;;;;:30;:16;:30;;100920:16;69734:127;79124:233;79199:7;79235:30;79022:10;:17;;78934:113;79235:30;79227:5;:38;79219:95;;;;-1:-1:-1;;;79219:95:0;;15985:2:1;79219:95:0;;;15967:21:1;16024:2;16004:18;;;15997:30;16063:34;16043:18;;;16036:62;16134:14;16114:18;;;16107:42;16166:19;;79219:95:0;15783:408:1;79219:95:0;79332:10;79343:5;79332:17;;;;;;;;:::i;:::-;;;;;;;;;79325:24;;79124:233;;;:::o;93641:181::-;93716:33;88958:23;30883:10;48143:147;:::i;93716:33::-;93708:74;;;;-1:-1:-1;;;93708:74:0;;10662:2:1;93708:74:0;;;10644:21:1;10701:2;10681:18;;;10674:30;10740;10720:18;;;10713:58;10788:18;;93708:74:0;10460:352:1;93708:74:0;93793:7;:21;93803:11;93793:7;:21;:::i;102324:105::-;102386:7;32138:13;:11;:13::i;:::-;-1:-1:-1;102413:8:0::1;::::0;::::1;;102324:105:::0;:::o;102201:115::-;32138:13;:11;:13::i;:::-;102278:8:::1;:30:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;102201:115::o;98372:309::-;98499:30;;18741:66:1;30883:10:0;18728:2:1;18724:15;18720:88;98499:30:0;;;18708:101:1;98458:4:0;;;;18825:12:1;;98499:30:0;;;;;;;;;;;;98489:41;;;;;;98474:56;;98549:46;98568:12;;98549:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;98582:6:0;;;-1:-1:-1;98590:4:0;;-1:-1:-1;98549:18:0;:46::i;:::-;98541:110;;;;-1:-1:-1;;;98541:110:0;;19050:2:1;98541:110:0;;;19032:21:1;19089:2;19069:18;;;19062:30;19128:34;19108:18;;;19101:62;19199:21;19179:18;;;19172:49;19238:19;;98541:110:0;18848:415:1;98541:110:0;-1:-1:-1;98669:4:0;;98372:309;-1:-1:-1;;;98372:309:0:o;64739:222::-;64811:7;64847:16;;;:7;:16;;;;;;;;;64874:56;;;;-1:-1:-1;;;64874:56:0;;19470:2:1;64874:56:0;;;19452:21:1;19509:2;19489:18;;;19482:30;19548:26;19528:18;;;19521:54;19592:18;;64874:56:0;19268:348:1;64470:207:0;64542:7;64570:19;;;64562:73;;;;-1:-1:-1;;;64562:73:0;;19823:2:1;64562:73:0;;;19805:21:1;19862:2;19842:18;;;19835:30;19901:34;19881:18;;;19874:62;19972:11;19952:18;;;19945:39;20001:19;;64562:73:0;19621:405:1;64562:73:0;-1:-1:-1;64653:16:0;;;;;;:9;:16;;;;;;;64470:207::o;32900:103::-;32138:13;:11;:13::i;:::-;32965:30:::1;32992:1;32965:18;:30::i;:::-;32900:103::o:0;96660:711::-;96744:35;96766:12;;96744:21;:35::i;:::-;96736:114;;;;-1:-1:-1;;;96736:114:0;;20233:2:1;96736:114:0;;;20215:21:1;20272:2;20252:18;;;20245:30;20311:34;20291:18;;;20284:62;20382:34;20362:18;;;20355:62;20454:4;20433:19;;;20426:33;20476:19;;96736:114:0;20031:470:1;96736:114:0;30883:10;96870:32;;;;:18;:32;;;;;;;;96869:33;96861:108;;;;-1:-1:-1;;;96861:108:0;;20708:2:1;96861:108:0;;;20690:21:1;20747:2;20727:18;;;20720:30;20786:34;20766:18;;;20759:62;20857:32;20837:18;;;20830:60;20907:19;;96861:108:0;20506:426:1;96861:108:0;96991:8;;;;96990:9;96982:66;;;;-1:-1:-1;;;96982:66:0;;21139:2:1;96982:66:0;;;21121:21:1;21178:2;21158:18;;;21151:30;21217:34;21197:18;;;21190:62;21288:14;21268:18;;;21261:42;21320:19;;96982:66:0;20937:408:1;96982:66:0;97067:17;;;;;;;97059:84;;;;-1:-1:-1;;;97059:84:0;;21552:2:1;97059:84:0;;;21534:21:1;21591:2;21571:18;;;21564:30;21630:34;21610:18;;;21603:62;21701:24;21681:18;;;21674:52;21743:19;;97059:84:0;21350:418:1;97059:84:0;89833:3;97172:18;:16;:18::i;:::-;:36;;97164:103;;;;-1:-1:-1;;;97164:103:0;;21975:2:1;97164:103:0;;;21957:21:1;22014:2;21994:18;;;21987:30;22053:34;22033:18;;;22026:62;22124:24;22104:18;;;22097:52;22166:19;;97164:103:0;21773:418:1;97164:103:0;30883:10;97280:32;;;;:18;:32;;;;;:39;;;;97315:4;97280:39;;;;;;97330:33;;30883:10;97330:16;:33::i;98783:272::-;98849:33;88958:23;30883:10;48143:147;:::i;98849:33::-;98841:74;;;;-1:-1:-1;;;98841:74:0;;10662:2:1;98841:74:0;;;10644:21:1;10701:2;10681:18;;;10674:30;10740;10720:18;;;10713:58;10788:18;;98841:74:0;10460:352:1;98841:74:0;98956:6;98934:28;;:18;;;;;;;;;;;:28;;;98926:83;;;;-1:-1:-1;;;98926:83:0;;22398:2:1;98926:83:0;;;22380:21:1;22437:2;22417:18;;;22410:30;22476:34;22456:18;;;22449:62;22547:12;22527:18;;;22520:40;22577:19;;98926:83:0;22196:406:1;98926:83:0;99020:18;:27;;;;;;;;;;;;;;;;;98783:272::o;102437:171::-;102504:33;88958:23;30883:10;48143:147;:::i;102504:33::-;102496:74;;;;-1:-1:-1;;;102496:74:0;;10662:2:1;102496:74:0;;;10644:21:1;10701:2;10681:18;;;10674:30;10740;10720:18;;;10713:58;10788:18;;102496:74:0;10460:352:1;102496:74:0;102581:8;:19;102437:171::o;54921:153::-;55011:7;55038:18;;;:12;:18;;;;;:28;;55060:5;55038:21;:28::i;:::-;55031:35;54921:153;-1:-1:-1;;;54921:153:0:o;103436:322::-;103515:33;88958:23;30883:10;48143:147;:::i;103515:33::-;:60;;;-1:-1:-1;32325:6:0;;;;30883:10;103552:23;103515:60;103507:101;;;;-1:-1:-1;;;103507:101:0;;10662:2:1;103507:101:0;;;10644:21:1;10701:2;10681:18;;;10674:30;10740;10720:18;;;10713:58;10788:18;;103507:101:0;10460:352:1;103507:101:0;103622:7;103619:131;;;103645:30;88958:23;103668:6;103645:10;:30::i;103619:131::-;103707:31;88958:23;103731:6;103707:11;:31::i;65197:104::-;65253:13;65286:7;65279:14;;;;;:::i;66784:155::-;66879:52;30883:10;66912:8;66922;66879:18;:52::i;94077:148::-;94123:33;88958:23;30883:10;48143:147;:::i;94123:33::-;94115:74;;;;-1:-1:-1;;;94115:74:0;;10662:2:1;94115:74:0;;;10644:21:1;10701:2;10681:18;;;10674:30;10740;10720:18;;;10713:58;10788:18;;94115:74:0;10460:352:1;94115:74:0;94200:10;:17;;;;;;;;94077:148::o;100952:108::-;101000:7;101039:13;79022:10;:17;;78934:113;101039:13;101027:9;;:25;;;;:::i;:::-;101020:32;;100952:108;:::o;98689:86::-;32138:13;:11;:13::i;:::-;98753:6:::1;:14:::0;98689:86::o;67904:323::-;68078:41;30883:10;68111:7;68078:18;:41::i;:::-;68070:100;;;;-1:-1:-1;;;68070:100:0;;12652:2:1;68070:100:0;;;12634:21:1;12691:2;12671:18;;;12664:30;12730:34;12710:18;;;12703:62;12801:16;12781:18;;;12774:44;12835:19;;68070:100:0;12450:410:1;68070:100:0;68181:38;68195:4;68201:2;68205:7;68214:4;68181:13;:38::i;:::-;67904:323;;;;:::o;95121:1531::-;95226:8;;;;95225:9;95217:59;;;;-1:-1:-1;;;95217:59:0;;22942:2:1;95217:59:0;;;22924:21:1;22981:2;22961:18;;;22954:30;23020:34;23000:18;;;22993:62;23091:7;23071:18;;;23064:35;23116:19;;95217:59:0;22740:401:1;95217:59:0;95296:17;;;;;;;95295:18;95287:82;;;;-1:-1:-1;;;95287:82:0;;23348:2:1;95287:82:0;;;23330:21:1;23387:2;23367:18;;;23360:30;23426:34;23406:18;;;23399:62;23497:21;23477:18;;;23470:49;23536:19;;95287:82:0;23146:415:1;95287:82:0;95402:1;95388:11;:15;95380:76;;;;-1:-1:-1;;;95380:76:0;;23768:2:1;95380:76:0;;;23750:21:1;23807:2;23787:18;;;23780:30;23846:34;23826:18;;;23819:62;23917:18;23897;;;23890:46;23953:19;;95380:76:0;23566:412:1;95380:76:0;89833:3;95511:9;;:24;;;;:::i;:::-;95494:11;95478:13;79022:10;:17;;78934:113;95478:13;:27;;;;:::i;:::-;95477:59;;95469:117;;;;-1:-1:-1;;;95469:117:0;;24315:2:1;95469:117:0;;;24297:21:1;24354:2;24334:18;;;24327:30;24393:34;24373:18;;;24366:62;24464:15;24444:18;;;24437:43;24497:19;;95469:117:0;24113:409:1;95469:117:0;89833:3;95627:11;95606:18;:16;:18::i;:::-;:32;;;;:::i;:::-;95605:51;95597:97;;;;-1:-1:-1;;;95597:97:0;;24729:2:1;95597:97:0;;;24711:21:1;24768:2;24748:18;;;24741:30;24807:34;24787:18;;;24780:62;24878:3;24858:18;;;24851:31;24899:19;;95597:97:0;24527:397:1;95597:97:0;95795:18;;30883:10;;95795:18;;;;;95792:853;;;95838:36;95861:12;;95838:22;:36::i;:::-;95830:90;;;;-1:-1:-1;;;95830:90:0;;25131:2:1;95830:90:0;;;25113:21:1;25170:2;25150:18;;;25143:30;25209:34;25189:18;;;25182:62;25280:11;25260:18;;;25253:39;25309:19;;95830:90:0;24929:405:1;95830:90:0;96001:17;;95944:29;;;;;;;:24;:29;;;;;9726:14;95944:53;;95986:11;;95944:53;:::i;:::-;:74;;95935:136;;;;-1:-1:-1;;;95935:136:0;;25541:2:1;95935:136:0;;;25523:21:1;25580:2;25560:18;;;25553:30;25619:34;25599:18;;;25592:62;25690:17;25670:18;;;25663:45;25725:19;;95935:136:0;25339:411:1;95935:136:0;96117:11;96108:6;;:20;;;;:::i;:::-;96094:9;:35;;96086:100;;;;-1:-1:-1;;;96086:100:0;;25957:2:1;96086:100:0;;;25939:21:1;25996:2;25976:18;;;25969:30;26035:34;26015:18;;;26008:62;26106:22;26086:18;;;26079:50;26146:19;;96086:100:0;25755:416:1;96086:100:0;96201:34;96218:3;96223:11;96201:16;:34::i;:::-;95792:853;;;96304:18;;;;;;;96300:345;;96401:13;;96348:25;;;;;;;:20;:25;;;;;9726:14;96348:49;;96386:11;;96348:49;:::i;:::-;:66;;96339:128;;;;-1:-1:-1;;;96339:128:0;;25541:2:1;96339:128:0;;;25523:21:1;25580:2;25560:18;;;25553:30;25619:34;25599:18;;;25592:62;25690:17;25670:18;;;25663:45;25725:19;;96339:128:0;25339:411:1;96339:128:0;96515:11;96504:8;;:22;;;;:::i;:::-;96490:9;:37;;96482:102;;;;-1:-1:-1;;;96482:102:0;;25957:2:1;96482:102:0;;;25939:21:1;25996:2;25976:18;;;25969:30;26035:34;26015:18;;;26008:62;26106:22;26086:18;;;26079:50;26146:19;;96482:102:0;25755:416:1;96482:102:0;96599:34;96616:3;96621:11;96599:16;:34::i;89133:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;99651:86::-;32138:13;:11;:13::i;:::-;99715:6:::1;:14:::0;99651:86::o;92905:456::-;69799:4;69823:16;;;:7;:16;;;;;;92978:13;;69823:30;:16;93004:76;;;;-1:-1:-1;;;93004:76:0;;26378:2:1;93004:76:0;;;26360:21:1;26417:2;26397:18;;;26390:30;26456:34;26436:18;;;26429:62;26527:17;26507:18;;;26500:45;26562:19;;93004:76:0;26176:411:1;93004:76:0;93105:10;;;;;;;93101:37;;93124:14;93117:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92905:456;;;:::o;93101:37::-;93151:28;93182:10;:8;:10::i;:::-;93151:41;;93243:1;93218:14;93212:28;:32;:141;;;;;;;;;;;;;;;;;93284:14;93300:18;:7;:16;:18::i;:::-;93320:13;93267:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;93205:148;92905:456;-1:-1:-1;;;92905:456:0:o;55248:142::-;55328:7;55355:18;;;:12;:18;;;;;:27;;:25;:27::i;100668:133::-;100755:28;;;100731:4;100755:28;;;:20;:28;;;;;9726:14;100755:38;9634:114;99336:307;99462:30;;18741:66:1;30883:10:0;18728:2:1;18724:15;18720:88;99462:30:0;;;18708:101:1;99421:4:0;;;;18825:12:1;;99462:30:0;;;;;;;;;;;;99452:41;;;;;;99437:56;;99512:46;99531:12;;99512:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;99545:6:0;;;-1:-1:-1;99553:4:0;;-1:-1:-1;99512:18:0;:46::i;:::-;99504:109;;;;-1:-1:-1;;;99504:109:0;;28113:2:1;99504:109:0;;;28095:21:1;28152:2;28132:18;;;28125:30;28191:34;28171:18;;;28164:62;28262:20;28242:18;;;28235:48;28300:19;;99504:109:0;27911:414:1;50564:149:0;49757:7;49784:12;;;:6;:12;;;;;:22;;;47739:16;47750:4;47739:10;:16::i;:::-;50679:26:::1;50691:4;50697:7;50679:11;:26::i;93830:205::-:0;93917:33;88958:23;30883:10;48143:147;:::i;93917:33::-;93909:74;;;;-1:-1:-1;;;93909:74:0;;10662:2:1;93909:74:0;;;10644:21:1;10701:2;10681:18;;;10674:30;10740;10720:18;;;10713:58;10788:18;;93909:74:0;10460:352:1;93909:74:0;93994:13;:33;94010:17;93994:13;:33;:::i;104334:288::-;104417:33;88958:23;30883:10;48143:147;:::i;104417:33::-;104409:74;;;;-1:-1:-1;;;104409:74:0;;10662:2:1;104409:74:0;;;10644:21:1;10701:2;10681:18;;;10674:30;10740;10720:18;;;10713:58;10788:18;;104409:74:0;10460:352:1;104409:74:0;104502:22;;;104494:82;;;;-1:-1:-1;;;104494:82:0;;28532:2:1;104494:82:0;;;28514:21:1;28571:2;28551:18;;;28544:30;28610:34;28590:18;;;28583:62;28681:17;28661:18;;;28654:45;28716:19;;104494:82:0;28330:411:1;104494:82:0;104587:16;:27;;;;;;;;;;;;;;;104334:288::o;97501:192::-;97578:33;88958:23;30883:10;48143:147;:::i;97578:33::-;97570:74;;;;-1:-1:-1;;;97570:74:0;;10662:2:1;97570:74:0;;;10644:21:1;10701:2;10681:18;;;10674:30;10740;10720:18;;;10713:58;10788:18;;97570:74:0;10460:352:1;97570:74:0;97655:30;97672:3;97677:7;97655:16;:30::i;102616:167::-;102681:33;88958:23;30883:10;48143:147;:::i;102681:33::-;102673:74;;;;-1:-1:-1;;;102673:74:0;;10662:2:1;102673:74:0;;;10644:21:1;10701:2;10681:18;;;10674:30;10740;10720:18;;;10713:58;10788:18;;102673:74:0;10460:352:1;102673:74:0;102758:6;:17;102616:167::o;93430:203::-;93516:33;88958:23;30883:10;48143:147;:::i;93516:33::-;93508:74;;;;-1:-1:-1;;;93508:74:0;;10662:2:1;93508:74:0;;;10644:21:1;10701:2;10681:18;;;10674:30;10740;10720:18;;;10713:58;10788:18;;93508:74:0;10460:352:1;93508:74:0;93593:14;:32;93610:15;93593:14;:32;:::i;33158:201::-;32138:13;:11;:13::i;:::-;33247:22:::1;::::0;::::1;33239:73;;;::::0;-1:-1:-1;;;33239:73:0;;28948:2:1;33239:73:0::1;::::0;::::1;28930:21:1::0;28987:2;28967:18;;;28960:30;29026:34;29006:18;;;28999:62;29097:8;29077:18;;;29070:36;29123:19;;33239:73:0::1;28746:402:1::0;33239:73:0::1;33323:28;33342:8;33323:18;:28::i;97723:368::-:0;97777:8;;;;97769:85;;;;;-1:-1:-1;;;97769:85:0;;29355:2:1;97769:85:0;;;29337:21:1;29374:18;;;29367:30;;;;29433:34;29413:18;;;29406:62;29504:34;29484:18;;;29477:62;29556:19;;97769:85:0;29153:428:1;97769:85:0;97873:33;88958:23;30883:10;48143:147;:::i;97873:33::-;97865:74;;;;-1:-1:-1;;;97865:74:0;;10662:2:1;97865:74:0;;;10644:21:1;10701:2;10681:18;;;10674:30;10740;10720:18;;;10713:58;10788:18;;97865:74:0;10460:352:1;97865:74:0;97952:15;98001:13;79022:10;:17;;78934:113;98001:13;89833:3;97971:9;;:26;;;;:::i;:::-;97970:44;;;;:::i;:::-;97952:62;;98038:10;98025:9;;:23;;;;;;;:::i;:::-;;;;-1:-1:-1;;98059:17:0;:24;;;;;;;;-1:-1:-1;97723:368:0:o;101068:382::-;101194:18;;101141:7;;;;101194:18;;;;;101191:223;;;101261:32;;;;;;;:24;:32;;;;;9726:14;101241:17;;:62;;;;:::i;:::-;101229:74;;101191:223;;;101364:28;;;;;;;:20;:28;;;;;9726:14;101348:13;;:54;;;;:::i;52865:238::-;48229:4;48253:12;;;:6;:12;;;;;;;;:29;;;;;;;;;;;;;52944:152;;52988:12;;;;:6;:12;;;;;;;;:29;;;;;;;;;;:36;;;;53020:4;52988:36;;;53071:12;30883:10;;30803:98;53071:12;53044:40;;53062:7;53044:40;;53056:4;53044:40;;;;;;;;;;52865:238;;:::o;18523:152::-;18593:4;18617:50;18622:3;18642:23;;;18617:4;:50::i;34950:326::-;35245:19;;;:23;;;34950:326::o;54108:214::-;54193:4;54217:57;;;54232:42;54217:57;;:97;;;54278:36;54302:11;54278:23;:36::i;74516:135::-;69799:4;69823:16;;;:7;:16;;;;;;:30;:16;74590:53;;;;-1:-1:-1;;;74590:53:0;;19470:2:1;74590:53:0;;;19452:21:1;19509:2;19489:18;;;19482:30;19548:26;19528:18;;;19521:54;19592:18;;74590:53:0;19268:348:1;73795:174:0;73870:24;;;;:15;:24;;;;;:29;;;;;;;;;;;;;:24;;73924:23;73870:24;73924:14;:23::i;:::-;73915:46;;;;;;;;;;;;73795:174;;:::o;70028:264::-;70121:4;70138:13;70154:23;70169:7;70154:14;:23::i;:::-;70138:39;;70207:5;70196:16;;:7;:16;;;:52;;;-1:-1:-1;67131:25:0;;;;67107:4;67131:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;70216:32;70196:87;;;;70276:7;70252:31;;:20;70264:7;70252:11;:20::i;:::-;:31;;;70196:87;70188:96;70028:264;-1:-1:-1;;;;70028:264:0:o;73051:625::-;73210:4;73183:31;;:23;73198:7;73183:14;:23::i;:::-;:31;;;73175:81;;;;-1:-1:-1;;;73175:81:0;;29788:2:1;73175:81:0;;;29770:21:1;29827:2;29807:18;;;29800:30;29866:34;29846:18;;;29839:62;29937:7;29917:18;;;29910:35;29962:19;;73175:81:0;29586:401:1;73175:81:0;73275:16;;;73267:65;;;;-1:-1:-1;;;73267:65:0;;30194:2:1;73267:65:0;;;30176:21:1;30233:2;30213:18;;;30206:30;30272:34;30252:18;;;30245:62;30343:6;30323:18;;;30316:34;30367:19;;73267:65:0;29992:400:1;73267:65:0;73345:39;73366:4;73372:2;73376:7;73345:20;:39::i;:::-;73449:29;73466:1;73470:7;73449:8;:29::i;:::-;73491:15;;;;;;;:9;:15;;;;;:20;;73510:1;;73491:15;:20;;73510:1;;73491:20;:::i;:::-;;;;-1:-1:-1;;73522:13:0;;;;;;;:9;:13;;;;;:18;;73539:1;;73522:13;:18;;73539:1;;73522:18;:::i;:::-;;;;-1:-1:-1;;73551:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;;73590:27;;73551:16;;73590:27;;;;;;;66128:347;66058:417;;:::o;48594:105::-;48661:30;48672:4;30883:10;48661;:30::i;55483:169::-;55571:31;55588:4;55594:7;55571:16;:31::i;:::-;55613:18;;;;:12;:18;;;;;:31;;55636:7;55613:22;:31::i;55746:174::-;55835:32;55853:4;55859:7;55835:17;:32::i;:::-;55878:18;;;;:12;:18;;;;;:34;;55904:7;55878:25;:34::i;32417:132::-;32325:6;;32481:23;32325:6;30883:10;32481:23;32473:68;;;;-1:-1:-1;;;32473:68:0;;30599:2:1;32473:68:0;;;30581:21:1;;;30618:18;;;30611:30;30677:34;30657:18;;;30650:62;30729:18;;32473:68:0;30397:356:1;1256:190:0;1381:4;1434;1405:25;1418:5;1425:4;1405:12;:25::i;:::-;:33;;1256:190;-1:-1:-1;;;;1256:190:0:o;33519:191::-;33612:6;;;;33629:17;;;;;;;;;;;33662:40;;33612:6;;;33629:17;33612:6;;33662:40;;33593:16;;33662:40;33582:128;33519:191;:::o;94556:311::-;94636:6;94632:228;94652:7;94648:1;:11;94632:228;;;94681:29;94691:3;94696:13;79022:10;:17;;78934:113;94696:13;94681:9;:29::i;:::-;94730:18;;;;;;;94727:121;;;94750:29;;;;;;;:24;:29;;;;;9845:19;;9863:1;9845:19;;;94727:121;;;94811:25;;;;;;;:20;:25;;;;;9845:19;;9863:1;9845:19;;;94811:37;94661:3;;;;:::i;:::-;;;;94632:228;;19819:158;19893:7;19944:22;19948:3;19960:5;19944:3;:22::i;74112:315::-;74267:8;74258:17;;:5;:17;;;74250:55;;;;-1:-1:-1;;;74250:55:0;;30960:2:1;74250:55:0;;;30942:21:1;30999:2;30979:18;;;30972:30;31038:27;31018:18;;;31011:55;31083:18;;74250:55:0;30758:349:1;74250:55:0;74316:25;;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;;;;;;;;;;;;74378:41;;586::1;;;74378::0;;559:18:1;74378:41:0;;;;;;;74112:315;;;:::o;69108:313::-;69264:28;69274:4;69280:2;69284:7;69264:9;:28::i;:::-;69311:47;69334:4;69340:2;69344:7;69353:4;69311:22;:47::i;:::-;69303:110;;;;-1:-1:-1;;;69303:110:0;;31314:2:1;69303:110:0;;;31296:21:1;31353:2;31333:18;;;31326:30;31392:34;31372:18;;;31365:62;31463:20;31443:18;;;31436:48;31501:19;;69303:110:0;31112:414:1;92765:108:0;92825:13;92858:7;92851:14;;;;;:::i;28057:723::-;28113:13;28334:5;28343:1;28334:10;28330:53;;-1:-1:-1;;28361:10:0;;;;;;;;;;;;;;;;;;28057:723::o;28330:53::-;28408:5;28393:12;28449:78;28456:9;;28449:78;;28482:8;;;;:::i;:::-;;-1:-1:-1;28505:10:0;;-1:-1:-1;28513:2:0;28505:10;;:::i;:::-;;;28449:78;;;28537:19;28569:6;28559:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28559:17:0;;28537:39;;28587:154;28594:10;;28587:154;;28621:11;28631:1;28621:11;;:::i;:::-;;-1:-1:-1;28690:10:0;28698:2;28690:5;:10;:::i;:::-;28677:24;;:2;:24;:::i;:::-;28664:39;;28647:6;28654;28647:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;28718:11:0;28727:2;28718:11;;:::i;:::-;;;28587:154;;19348:117;19411:7;19438:19;19446:3;14832:18;;14749:109;12438:414;12501:4;14631:19;;;:12;;;:19;;;;;;12518:327;;-1:-1:-1;12561:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;12744:18;;12722:19;;;:12;;;:19;;;;;;:40;;;;12777:11;;12518:327;-1:-1:-1;12828:5:0;12821:12;;47847:204;47932:4;47956:47;;;47971:32;47956:47;;:87;;;48007:36;48031:11;48007:23;:36::i;79970:589::-;80176:18;;;80172:187;;80211:40;80243:7;81386:10;:17;;81359:24;;;;:15;:24;;;;;:44;;;81414:24;;;;;;;;;;;;81282:164;80211:40;80172:187;;;80281:2;80273:10;;:4;:10;;;80269:90;;80300:47;80333:4;80339:7;80300:32;:47::i;:::-;80373:16;;;80369:183;;80406:45;80443:7;80406:36;:45::i;80369:183::-;80479:4;80473:10;;:2;:10;;;80469:83;;80500:40;80528:2;80532:7;80500:27;:40::i;48989:505::-;48229:4;48253:12;;;:6;:12;;;;;;;;:29;;;;;;;;;;;;;49073:414;;49266:41;49294:7;49266:41;;49304:2;49266:19;:41::i;:::-;49380:38;49408:4;49415:2;49380:19;:38::i;:::-;49171:270;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;-1:-1:-1;;;49117:358:0;;;;;;;:::i;53283:239::-;48229:4;48253:12;;;:6;:12;;;;;;;;:29;;;;;;;;;;;;;53363:152;;;53438:5;53406:12;;;:6;:12;;;;;;;;:29;;;;;;;;;;;:37;;;;;;53463:40;30883:10;;53406:12;;53463:40;;53438:5;53463:40;53283:239;;:::o;18851:158::-;18924:4;18948:53;18956:3;18976:23;;;18948:7;:53::i;2123:296::-;2206:7;2249:4;2206:7;2264:118;2288:5;:12;2284:1;:16;2264:118;;;2337:33;2347:12;2361:5;2367:1;2361:8;;;;;;;;:::i;:::-;;;;;;;2337:9;:33::i;:::-;2322:48;-1:-1:-1;2302:3:0;;;;:::i;:::-;;;;2264:118;;70634:110;70710:26;70720:2;70724:7;70710:26;;;;;;;;;;;;:9;:26::i;15212:120::-;15279:7;15306:3;:11;;15318:5;15306:18;;;;;;;;:::i;:::-;;;;;;;;;15299:25;;15212:120;;;;:::o;75215:853::-;75369:4;75390:13;;;35245:19;:23;75386:675;;75426:71;;;;;:36;;;;;;:71;;30883:10;;75477:4;;75483:7;;75492:4;;75426:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;75426:71:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;75422:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75667:6;:13;75684:1;75667:18;75663:328;;75710:60;;-1:-1:-1;;;75710:60:0;;31314:2:1;75710:60:0;;;31296:21:1;31353:2;31333:18;;;31326:30;31392:34;31372:18;;;31365:62;31463:20;31443:18;;;31436:48;31501:19;;75710:60:0;31112:414:1;75663:328:0;75941:6;75935:13;75926:6;75922:2;75918:15;75911:38;75422:584;75548:51;;75558:41;75548:51;;-1:-1:-1;75541:58:0;;75386:675;-1:-1:-1;76045:4:0;75215:853;;;;;;:::o;78294:224::-;78396:4;78420:50;;;78435:35;78420:50;;:90;;;78474:36;78498:11;78474:23;:36::i;82073:988::-;82339:22;82389:1;82364:22;82381:4;82364:16;:22::i;:::-;:26;;;;:::i;:::-;82401:18;82422:26;;;:17;:26;;;;;;82339:51;;-1:-1:-1;82555:28:0;;;82551:328;;82622:18;;;82600:19;82622:18;;;:12;:18;;;;;;;;:34;;;;;;;;;82673:30;;;;;;:44;;;82790:30;;:17;:30;;;;;:43;;;82551:328;-1:-1:-1;82975:26:0;;;;:17;:26;;;;;;;;82968:33;;;83019:18;;;;;;:12;:18;;;;;:34;;;;;;;83012:41;82073:988::o;83356:1079::-;83634:10;:17;83609:22;;83634:21;;83654:1;;83634:21;:::i;:::-;83666:18;83687:24;;;:15;:24;;;;;;84060:10;:26;;83609:46;;-1:-1:-1;83687:24:0;;83609:46;;84060:26;;;;;;:::i;:::-;;;;;;;;;84038:48;;84124:11;84099:10;84110;84099:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;84204:28;;;:15;:28;;;;;;;:41;;;84376:24;;;;;84369:31;84411:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;83427:1008;;;83356:1079;:::o;80860:221::-;80945:14;80962:20;80979:2;80962:16;:20::i;:::-;80993:16;;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;81038:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;80860:221:0:o;29358:451::-;29433:13;29459:19;29491:10;29495:6;29491:1;:10;:::i;:::-;:14;;29504:1;29491:14;:::i;:::-;29481:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29481:25:0;;29459:47;;29517:15;:6;29524:1;29517:9;;;;;;;;:::i;:::-;;;;:15;;;;;;;;;;;29543;:6;29550:1;29543:9;;;;;;;;:::i;:::-;;;;:15;;;;;;;;;;-1:-1:-1;29574:9:0;29586:10;29590:6;29586:1;:10;:::i;:::-;:14;;29599:1;29586:14;:::i;:::-;29574:26;;29569:135;29606:1;29602;:5;29569:135;;;29641:12;29654:5;29662:3;29654:11;29641:25;;;;;;;:::i;:::-;;;;29629:6;29636:1;29629:9;;;;;;;;:::i;:::-;;;;:37;;;;;;;;;;-1:-1:-1;29691:1:0;29681:11;;;;;29609:3;;;:::i;:::-;;;29569:135;;;-1:-1:-1;29722:10:0;;29714:55;;;;-1:-1:-1;;;29714:55:0;;33828:2:1;29714:55:0;;;33810:21:1;;;33847:18;;;33840:30;33906:34;33886:18;;;33879:62;33958:18;;29714:55:0;33626:356:1;13028:1420:0;13094:4;13233:19;;;:12;;;:19;;;;;;13269:15;;13265:1176;;13644:21;13668:14;13681:1;13668:10;:14;:::i;:::-;13717:18;;13644:38;;-1:-1:-1;13697:17:0;;13717:22;;13738:1;;13717:22;:::i;:::-;13697:42;;13773:13;13760:9;:26;13756:405;;13807:17;13827:3;:11;;13839:9;13827:22;;;;;;;;:::i;:::-;;;;;;;;;13807:42;;13981:9;13952:3;:11;;13964:13;13952:26;;;;;;;;:::i;:::-;;;;;;;;;;;;:38;;;;14066:23;;;:12;;;:23;;;;;:36;;;13756:405;14242:17;;:3;;:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;14337:3;:12;;:19;14350:5;14337:19;;;;;;;;;;;14330:26;;;14380:4;14373:11;;;;;;;13265:1176;14424:5;14417:12;;;;;8330:149;8393:7;8424:1;8420;:5;:51;;8555:13;8649:15;;;8685:4;8678:15;;;8732:4;8716:21;;8420:51;;;8555:13;8649:15;;;8685:4;8678:15;;;8732:4;8716:21;;8428:20;8487:268;70971:319;71100:18;71106:2;71110:7;71100:5;:18::i;:::-;71151:53;71182:1;71186:2;71190:7;71199:4;71151:22;:53::i;:::-;71129:153;;;;-1:-1:-1;;;71129:153:0;;31314:2:1;71129:153:0;;;31296:21:1;31353:2;31333:18;;;31326:30;31392:34;31372:18;;;31365:62;31463:20;31443:18;;;31436:48;31501:19;;71129:153:0;31112:414:1;64101:305:0;64203:4;64240:40;;;64255:25;64240:40;;:105;;-1:-1:-1;64297:48:0;;;64312:33;64297:48;64240:105;:158;;;-1:-1:-1;45230:25:0;45215:40;;;;64362:36;45106:157;71626:439;71706:16;;;71698:61;;;;-1:-1:-1;;;71698:61:0;;34189:2:1;71698:61:0;;;34171:21:1;;;34208:18;;;34201:30;34267:34;34247:18;;;34240:62;34319:18;;71698:61:0;33987:356:1;71698:61:0;69799:4;69823:16;;;:7;:16;;;;;;:30;:16;:30;71770:58;;;;-1:-1:-1;;;71770:58:0;;34550:2:1;71770:58:0;;;34532:21:1;34589:2;34569:18;;;34562:30;34628;34608:18;;;34601:58;34676:18;;71770:58:0;34348:352:1;71770:58:0;71841:45;71870:1;71874:2;71878:7;71841:20;:45::i;:::-;71899:13;;;;;;;:9;:13;;;;;:18;;71916:1;;71899:13;:18;;71916:1;;71899:18;:::i;:::-;;;;-1:-1:-1;;71928:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;71967:33;;71928:16;;;71967:33;;71928:16;;71967:33;51268:218;;:::o;14:177:1:-;99:66;92:5;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;638:160::-;703:20;;759:13;;752:21;742:32;;732:60;;788:1;785;778:12;732:60;638:160;;;:::o;803:180::-;859:6;912:2;900:9;891:7;887:23;883:32;880:52;;;928:1;925;918:12;880:52;951:26;967:9;951:26;:::i;988:250::-;1073:1;1083:113;1097:6;1094:1;1091:13;1083:113;;;1173:11;;;1167:18;1154:11;;;1147:39;1119:2;1112:10;1083:113;;;-1:-1:-1;;1230:1:1;1212:16;;1205:27;988:250::o;1243:330::-;1285:3;1323:5;1317:12;1350:6;1345:3;1338:19;1366:76;1435:6;1428:4;1423:3;1419:14;1412:4;1405:5;1401:16;1366:76;:::i;:::-;1487:2;1475:15;1492:66;1471:88;1462:98;;;;1562:4;1458:109;;1243:330;-1:-1:-1;;1243:330:1:o;1578:220::-;1727:2;1716:9;1709:21;1690:4;1747:45;1788:2;1777:9;1773:18;1765:6;1747:45;:::i;1803:180::-;1862:6;1915:2;1903:9;1894:7;1890:23;1886:32;1883:52;;;1931:1;1928;1921:12;1883:52;-1:-1:-1;1954:23:1;;1803:180;-1:-1:-1;1803:180:1:o;2219:154::-;2305:42;2298:5;2294:54;2287:5;2284:65;2274:93;;2363:1;2360;2353:12;2378:315;2446:6;2454;2507:2;2495:9;2486:7;2482:23;2478:32;2475:52;;;2523:1;2520;2513:12;2475:52;2562:9;2549:23;2581:31;2606:5;2581:31;:::i;:::-;2631:5;2683:2;2668:18;;;;2655:32;;-1:-1:-1;;;2378:315:1:o;2698:292::-;2756:6;2809:2;2797:9;2788:7;2784:23;2780:32;2777:52;;;2825:1;2822;2815:12;2777:52;2864:9;2851:23;2914:26;2907:5;2903:38;2896:5;2893:49;2883:77;;2956:1;2953;2946:12;3177:456;3254:6;3262;3270;3323:2;3311:9;3302:7;3298:23;3294:32;3291:52;;;3339:1;3336;3329:12;3291:52;3378:9;3365:23;3397:31;3422:5;3397:31;:::i;:::-;3447:5;-1:-1:-1;3504:2:1;3489:18;;3476:32;3517:33;3476:32;3517:33;:::i;:::-;3177:456;;3569:7;;-1:-1:-1;;;3623:2:1;3608:18;;;;3595:32;;3177:456::o;4005:248::-;4073:6;4081;4134:2;4122:9;4113:7;4109:23;4105:32;4102:52;;;4150:1;4147;4140:12;4102:52;-1:-1:-1;;4173:23:1;;;4243:2;4228:18;;;4215:32;;-1:-1:-1;4005:248:1:o;4560:315::-;4628:6;4636;4689:2;4677:9;4668:7;4664:23;4660:32;4657:52;;;4705:1;4702;4695:12;4657:52;4741:9;4728:23;4718:33;;4801:2;4790:9;4786:18;4773:32;4814:31;4839:5;4814:31;:::i;:::-;4864:5;4854:15;;;4560:315;;;;;:::o;4880:247::-;4939:6;4992:2;4980:9;4971:7;4967:23;4963:32;4960:52;;;5008:1;5005;4998:12;4960:52;5047:9;5034:23;5066:31;5091:5;5066:31;:::i;5132:632::-;5303:2;5355:21;;;5425:13;;5328:18;;;5447:22;;;5274:4;;5303:2;5526:15;;;;5500:2;5485:18;;;5274:4;5569:169;5583:6;5580:1;5577:13;5569:169;;;5644:13;;5632:26;;5713:15;;;;5678:12;;;;5605:1;5598:9;5569:169;;;-1:-1:-1;5755:3:1;;5132:632;-1:-1:-1;;;;;;5132:632:1:o;5769:184::-;5821:77;5818:1;5811:88;5918:4;5915:1;5908:15;5942:4;5939:1;5932:15;5958:691;6023:5;6053:18;6094:2;6086:6;6083:14;6080:40;;;6100:18;;:::i;:::-;6234:2;6228:9;6300:2;6288:15;;6139:66;6284:24;;;6310:2;6280:33;6276:42;6264:55;;;6334:18;;;6354:22;;;6331:46;6328:72;;;6380:18;;:::i;:::-;6420:10;6416:2;6409:22;6449:6;6440:15;;6479:6;6471;6464:22;6519:3;6510:6;6505:3;6501:16;6498:25;6495:45;;;6536:1;6533;6526:12;6495:45;6586:6;6581:3;6574:4;6566:6;6562:17;6549:44;6641:1;6634:4;6625:6;6617;6613:19;6609:30;6602:41;;;;5958:691;;;;;:::o;6654:451::-;6723:6;6776:2;6764:9;6755:7;6751:23;6747:32;6744:52;;;6792:1;6789;6782:12;6744:52;6832:9;6819:23;6865:18;6857:6;6854:30;6851:50;;;6897:1;6894;6887:12;6851:50;6920:22;;6973:4;6965:13;;6961:27;-1:-1:-1;6951:55:1;;7002:1;6999;6992:12;6951:55;7025:74;7091:7;7086:2;7073:16;7068:2;7064;7060:11;7025:74;:::i;7110:367::-;7173:8;7183:6;7237:3;7230:4;7222:6;7218:17;7214:27;7204:55;;7255:1;7252;7245:12;7204:55;-1:-1:-1;7278:20:1;;7321:18;7310:30;;7307:50;;;7353:1;7350;7343:12;7307:50;7390:4;7382:6;7378:17;7366:29;;7450:3;7443:4;7433:6;7430:1;7426:14;7418:6;7414:27;7410:38;7407:47;7404:67;;;7467:1;7464;7457:12;7482:437;7568:6;7576;7629:2;7617:9;7608:7;7604:23;7600:32;7597:52;;;7645:1;7642;7635:12;7597:52;7685:9;7672:23;7718:18;7710:6;7707:30;7704:50;;;7750:1;7747;7740:12;7704:50;7789:70;7851:7;7842:6;7831:9;7827:22;7789:70;:::i;:::-;7878:8;;7763:96;;-1:-1:-1;7482:437:1;-1:-1:-1;;;;7482:437:1:o;8177:315::-;8242:6;8250;8303:2;8291:9;8282:7;8278:23;8274:32;8271:52;;;8319:1;8316;8309:12;8271:52;8358:9;8345:23;8377:31;8402:5;8377:31;:::i;:::-;8427:5;-1:-1:-1;8451:35:1;8482:2;8467:18;;8451:35;:::i;:::-;8441:45;;8177:315;;;;;:::o;8497:795::-;8592:6;8600;8608;8616;8669:3;8657:9;8648:7;8644:23;8640:33;8637:53;;;8686:1;8683;8676:12;8637:53;8725:9;8712:23;8744:31;8769:5;8744:31;:::i;:::-;8794:5;-1:-1:-1;8851:2:1;8836:18;;8823:32;8864:33;8823:32;8864:33;:::i;:::-;8916:7;-1:-1:-1;8970:2:1;8955:18;;8942:32;;-1:-1:-1;9025:2:1;9010:18;;8997:32;9052:18;9041:30;;9038:50;;;9084:1;9081;9074:12;9038:50;9107:22;;9160:4;9152:13;;9148:27;-1:-1:-1;9138:55:1;;9189:1;9186;9179:12;9138:55;9212:74;9278:7;9273:2;9260:16;9255:2;9251;9247:11;9212:74;:::i;:::-;9202:84;;;8497:795;;;;;;;:::o;9297:505::-;9392:6;9400;9408;9461:2;9449:9;9440:7;9436:23;9432:32;9429:52;;;9477:1;9474;9467:12;9429:52;9513:9;9500:23;9490:33;;9574:2;9563:9;9559:18;9546:32;9601:18;9593:6;9590:30;9587:50;;;9633:1;9630;9623:12;9587:50;9672:70;9734:7;9725:6;9714:9;9710:22;9672:70;:::i;:::-;9297:505;;9761:8;;-1:-1:-1;9646:96:1;;-1:-1:-1;;;;9297:505:1:o;10067:388::-;10135:6;10143;10196:2;10184:9;10175:7;10171:23;10167:32;10164:52;;;10212:1;10209;10202:12;10164:52;10251:9;10238:23;10270:31;10295:5;10270:31;:::i;:::-;10320:5;-1:-1:-1;10377:2:1;10362:18;;10349:32;10390:33;10349:32;10390:33;:::i;10817:437::-;10896:1;10892:12;;;;10939;;;10960:61;;11014:4;11006:6;11002:17;10992:27;;10960:61;11067:2;11059:6;11056:14;11036:18;11033:38;11030:218;;11104:77;11101:1;11094:88;11205:4;11202:1;11195:15;11233:4;11230:1;11223:15;11030:218;;10817:437;;;:::o;13275:184::-;13327:77;13324:1;13317:88;13424:4;13421:1;13414:15;13448:4;13445:1;13438:15;13464:228;13504:7;13630:1;13562:66;13558:74;13555:1;13552:81;13547:1;13540:9;13533:17;13529:105;13526:131;;;13637:18;;:::i;:::-;-1:-1:-1;13677:9:1;;13464:228::o;13697:184::-;13749:77;13746:1;13739:88;13846:4;13843:1;13836:15;13870:4;13867:1;13860:15;13886:120;13926:1;13952;13942:35;;13957:18;;:::i;:::-;-1:-1:-1;13991:9:1;;13886:120::o;15394:184::-;15446:77;15443:1;15436:88;15543:4;15540:1;15533:15;15567:4;15564:1;15557:15;15583:195;15622:3;15653:66;15646:5;15643:77;15640:103;;15723:18;;:::i;:::-;-1:-1:-1;15770:1:1;15759:13;;15583:195::o;16322:545::-;16424:2;16419:3;16416:11;16413:448;;;16460:1;16485:5;16481:2;16474:17;16530:4;16526:2;16516:19;16600:2;16588:10;16584:19;16581:1;16577:27;16571:4;16567:38;16636:4;16624:10;16621:20;16618:47;;;-1:-1:-1;16659:4:1;16618:47;16714:2;16709:3;16705:12;16702:1;16698:20;16692:4;16688:31;16678:41;;16769:82;16787:2;16780:5;16777:13;16769:82;;;16832:17;;;16813:1;16802:13;16769:82;;;16773:3;;;16322:545;;;:::o;17103:1471::-;17229:3;17223:10;17256:18;17248:6;17245:30;17242:56;;;17278:18;;:::i;:::-;17307:97;17397:6;17357:38;17389:4;17383:11;17357:38;:::i;:::-;17351:4;17307:97;:::i;:::-;17459:4;;17523:2;17512:14;;17540:1;17535:782;;;;18361:1;18378:6;18375:89;;;-1:-1:-1;18430:19:1;;;18424:26;18375:89;17009:66;17000:1;16996:11;;;16992:84;16988:89;16978:100;17084:1;17080:11;;;16975:117;18477:81;;17505:1063;;17535:782;16269:1;16262:14;;;16306:4;16293:18;;17583:66;17571:79;;;17748:236;17762:7;17759:1;17756:14;17748:236;;;17851:19;;;17845:26;17830:42;;17943:27;;;;17911:1;17899:14;;;;17778:19;;17748:236;;;17752:3;18012:6;18003:7;18000:19;17997:261;;;18073:19;;;18067:26;18174:66;18156:1;18152:14;;;18168:3;18148:24;18144:97;18140:102;18125:118;18110:134;;17997:261;-1:-1:-1;;;;;18304:1:1;18288:14;;;18284:22;18271:36;;-1:-1:-1;17103:1471:1:o;22607:128::-;22674:9;;;22695:11;;;22692:37;;;22709:18;;:::i;23983:125::-;24048:9;;;24069:10;;;24066:36;;;24082:18;;:::i;26592:1314::-;26816:3;26854:6;26848:13;26880:4;26893:64;26950:6;26945:3;26940:2;26932:6;26928:15;26893:64;:::i;:::-;27020:13;;26979:16;;;;27042:68;27020:13;26979:16;27077:15;;;27042:68;:::i;:::-;27199:13;;27132:20;;;27172:1;;27237:36;27199:13;27237:36;:::i;:::-;27292:1;27309:18;;;27336:199;;;;27549:1;27544:337;;;;27302:579;;27336:199;27386:66;27375:9;27371:82;27364:5;27357:97;27513:8;27506:16;27499:24;27489:8;27485:39;27478:5;27474:51;27467:58;;27336:199;;27544:337;27575:6;27572:1;27565:17;27623:2;27620:1;27610:16;27648:1;27662:169;27676:8;27673:1;27670:15;27662:169;;;27758:14;;27743:13;;;27736:37;27801:16;;;;27693:10;;27662:169;;;27666:3;;27862:8;27855:5;27851:20;27844:27;;27302:579;-1:-1:-1;27897:3:1;;26592:1314;-1:-1:-1;;;;;;;;;;26592:1314:1:o;31531:112::-;31563:1;31589;31579:35;;31594:18;;:::i;:::-;-1:-1:-1;31628:9:1;;31531:112::o;31648:812::-;32059:25;32054:3;32047:38;32029:3;32114:6;32108:13;32130:75;32198:6;32193:2;32188:3;32184:12;32177:4;32169:6;32165:17;32130:75;:::i;:::-;32269:19;32264:2;32224:16;;;32256:11;;;32249:40;32314:13;;32336:76;32314:13;32398:2;32390:11;;32383:4;32371:17;;32336:76;:::i;:::-;32432:17;32451:2;32428:26;;31648:812;-1:-1:-1;;;;31648:812:1:o;32465:512::-;32659:4;32688:42;32769:2;32761:6;32757:15;32746:9;32739:34;32821:2;32813:6;32809:15;32804:2;32793:9;32789:18;32782:43;;32861:6;32856:2;32845:9;32841:18;32834:34;32904:3;32899:2;32888:9;32884:18;32877:31;32925:46;32966:3;32955:9;32951:19;32943:6;32925:46;:::i;:::-;32917:54;32465:512;-1:-1:-1;;;;;;32465:512:1:o;32982:249::-;33051:6;33104:2;33092:9;33083:7;33079:23;33075:32;33072:52;;;33120:1;33117;33110:12;33072:52;33152:9;33146:16;33171:30;33195:5;33171:30;:::i;33236:184::-;33288:77;33285:1;33278:88;33385:4;33382:1;33375:15;33409:4;33406:1;33399:15;33425:196;33464:3;33492:5;33482:39;;33501:18;;:::i;:::-;-1:-1:-1;33548:66:1;33537:78;;33425:196::o

Swarm Source

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