ETH Price: $3,252.63 (-3.70%)

Token

SPHERICX (SPHERICX)
 

Overview

Max Total Supply

940 SPHERICX

Holders

91

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 SPHERICX
0x159e5f6e68d3e93aba144e34b48798518530a883
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:
SPHERICX

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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


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

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

library Strings {
    bytes16 private constant alphabet = "0123456789abcdef";

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

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

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

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

}

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;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            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] = toDeleteIndex + 1; // All indexes are 1-based

            // 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) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

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

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


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

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;
        }
    }
}

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

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

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

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

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

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

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

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

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

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);
}

abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

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

    bool private _paused;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

interface IAccessControl {
    function hasRole(bytes32 role, address account) external view returns (bool);
    function getRoleAdmin(bytes32 role) external view returns (bytes32);
    function grantRole(bytes32 role, address account) external;
    function revokeRole(bytes32 role, address account) external;
    function renounceRole(bytes32 role, address account) external;
}

/**
 * @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 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 {_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 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 override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @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 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.
     */
    function grantRole(bytes32 role, address account) public virtual override {
        require(hasRole(getRoleAdmin(role), _msgSender()), "AccessControl: sender must be an admin to grant");

        _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.
     */
    function revokeRole(bytes32 role, address account) public virtual override {
        require(hasRole(getRoleAdmin(role), _msgSender()), "AccessControl: sender must be an admin to revoke");

        _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 granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    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.
     *
     * [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}.
     * ====
     */
    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 {
        emit RoleAdminChanged(role, getRoleAdmin(role), adminRole);
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

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);
}

interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

interface IAccessControlEnumerable {
    function getRoleMember(bytes32 role, uint256 index) external view returns (address);
    function getRoleMemberCount(bytes32 role) external view returns (uint256);
}

/**
 * @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 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 override returns (uint256) {
        return _roleMembers[role].length();
    }

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

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

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

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

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();
error TokenIndexOutOfBounds();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Owner Address
    address public _owner;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
        _owner = msg.sender;
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 1;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view returns (uint256) {
        if (index >= totalSupply()) revert TokenIndexOutOfBounds();
        return index;
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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 {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}


/** ERC721APausable */

error ContractPaused();

/**
 * @dev ERC721A token with pausable token transfers, minting and burning.
 *
 * Based off of OpenZeppelin's ERC721Pausable extension.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721APausable is ERC721A, Pausable {
    /**
     * @dev See {ERC721A-_beforeTokenTransfers}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual override(ERC721A) {
        super._beforeTokenTransfers(from, to, startTokenId, quantity);
        if (paused()) revert ContractPaused();
    }
}



/** ERC721ABurnable */

/**
 * @title ERC721A Burnable Token
 * @dev ERC721A Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721ABurnable is ERC721A {
    /**
     * @dev Burns `tokenId`. See {ERC721A-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        _burn(tokenId, true);
    }
}

contract ERC721PresetMinterPauserAutoId is Context, AccessControlEnumerable, ERC721A, ERC721ABurnable, ERC721APausable, Ownable {

    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");

    string private _baseTokenURI;

    /**
     * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE` and `PAUSER_ROLE` to the
     * account that deploys the contract.
     *
     * Token URIs will be autogenerated based on `baseURI` and their token IDs.
     * See {ERC721-tokenURI}.
     */
    constructor(string memory name, string memory symbol, string memory baseTokenURI) ERC721A(name, symbol) {
        _baseTokenURI = baseTokenURI;

        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());

        _setupRole(MINTER_ROLE, _msgSender());
        _setupRole(PAUSER_ROLE, _msgSender());
    }

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

    function setTokenUri(string memory _baseTokenUri) public onlyOwner {
        _baseTokenURI = _baseTokenUri;
    }

    /**
     * @dev Pauses all token transfers.
     *
     * See {ERC721Pausable} and {Pausable-_pause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function pause() public virtual {
        require(hasRole(PAUSER_ROLE, _msgSender()), "ERC721PresetMinterPauserAutoId: must have pauser role to pause");
        _pause();
    }

    /**
     * @dev Unpauses all token transfers.
     *
     * See {ERC721Pausable} and {Pausable-_unpause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function unpause() public virtual {
        require(hasRole(PAUSER_ROLE, _msgSender()), "ERC721PresetMinterPauserAutoId: must have pauser role to unpause");
        _unpause();
    }

    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual override(ERC721APausable, ERC721A) {
        super._beforeTokenTransfers(from, to, startTokenId, quantity);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(AccessControlEnumerable, ERC721A) returns (bool) {
        return super.supportsInterface(interfaceId);
    }
}

contract SPHERICX is ERC721PresetMinterPauserAutoId, ReentrancyGuard {

    using SafeMath for uint256;

    bool public launched = false;
    uint256 public launchedAt;

    mapping(address => uint256) public totalPublicMint;

    uint256 public constant MAX_SUPPLY = 8888;
    uint256 public constant MAX_PUBLIC_MINT = 8;
    uint256 public PUBLIC_SALE_PRICE = .1 ether;

    bool public teamMinted;

    constructor(string memory _name, string memory _symbol, string memory _baseURI) ERC721PresetMinterPauserAutoId(_name, _symbol, _baseURI) {}

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "Cannot be called by a contract");
        _;
    }

    function updatePublicSalePrice(uint256 _newPrice) public onlyOwner {
        PUBLIC_SALE_PRICE = _newPrice;
    }

    function launch(uint256 _teamMintQuantity) public onlyOwner {
        launched = true;
        launchedAt = block.timestamp;
        teamMint(_teamMintQuantity);
    }

    function teamMint(uint256 _quantity) public onlyOwner{
        require(!teamMinted, "Team already minted");
        teamMinted = true;
        _safeMint(msg.sender, _quantity);
    }

    function publicMint(uint256 _quantity) public nonReentrant payable {
        require(launched, "Yet to be launched");
        require(totalSupply().add(_quantity) <= MAX_SUPPLY, "Exceeds NFT total supply");
        require(msg.value == PUBLIC_SALE_PRICE.mul(_quantity), "Insufficient ETH sent");
        require((totalPublicMint[msg.sender].add(_quantity)) <= MAX_PUBLIC_MINT, "Maximum minting quantity exceeded");
        totalPublicMint[msg.sender] += _quantity;
        _safeMint(msg.sender, _quantity);
    }

    function withdrawETH() public onlyOwner {
        payable(_owner).transfer(address(this).balance);
    }
    
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"ContractPaused","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"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":[{"internalType":"uint256","name":"_teamMintQuantity","type":"uint256"}],"name":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launched","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchedAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","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":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenUri","type":"string"}],"name":"setTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalPublicMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"updatePublicSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600e60006101000a81548160ff02191690831515021790555067016345785d8a00006011553480156200003857600080fd5b50604051620059413803806200594183398181016040528101906200005e91906200068f565b828282828281600490805190602001906200007b92919062000561565b5080600590805190602001906200009492919062000561565b50620000a5620001fc60201b60201c565b60028190555033600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050506000600b60006101000a81548160ff021916908315150217905550620001296200011d6200020560201b60201c565b6200020d60201b60201c565b80600c90805190602001906200014192919062000561565b50620001666000801b6200015a6200020560201b60201c565b620002d360201b60201c565b620001a77f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66200019b6200020560201b60201c565b620002d360201b60201c565b620001e87f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a620001dc6200020560201b60201c565b620002d360201b60201c565b5050506001600d81905550505050620008cc565b60006001905090565b600033905090565b6000600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002ea82826200031b60201b62001ceb1760201c565b6200031681600160008581526020019081526020016000206200033160201b62001cf91790919060201c565b505050565b6200032d82826200036960201b60201c565b5050565b600062000361836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6200045a60201b60201c565b905092915050565b6200037b8282620004d460201b60201c565b6200045657600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620003fb6200020560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006200046e83836200053e60201b60201c565b620004c9578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050620004ce565b600090505b92915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b8280546200056f90620007dd565b90600052602060002090601f016020900481019282620005935760008555620005df565b82601f10620005ae57805160ff1916838001178555620005df565b82800160010185558215620005df579182015b82811115620005de578251825591602001919060010190620005c1565b5b509050620005ee9190620005f2565b5090565b5b808211156200060d576000816000905550600101620005f3565b5090565b600062000628620006228462000771565b62000748565b905082815260208101848484011115620006475762000646620008ac565b5b62000654848285620007a7565b509392505050565b600082601f830112620006745762000673620008a7565b5b81516200068684826020860162000611565b91505092915050565b600080600060608486031215620006ab57620006aa620008b6565b5b600084015167ffffffffffffffff811115620006cc57620006cb620008b1565b5b620006da868287016200065c565b935050602084015167ffffffffffffffff811115620006fe57620006fd620008b1565b5b6200070c868287016200065c565b925050604084015167ffffffffffffffff81111562000730576200072f620008b1565b5b6200073e868287016200065c565b9150509250925092565b60006200075462000767565b905062000762828262000813565b919050565b6000604051905090565b600067ffffffffffffffff8211156200078f576200078e62000878565b5b6200079a82620008bb565b9050602081019050919050565b60005b83811015620007c7578082015181840152602081019050620007aa565b83811115620007d7576000848401525b50505050565b60006002820490506001821680620007f657607f821691505b602082108114156200080d576200080c62000849565b5b50919050565b6200081e82620008bb565b810181811067ffffffffffffffff8211171562000840576200083f62000878565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b61506580620008dc6000396000f3fe60806040526004361061027d5760003560e01c8063715018a61161014f578063b88d4fde116100c1578063de6f74251161007a578063de6f74251461099d578063e086e5ec146109c6578063e63ab1e9146109dd578063e8b5498d14610a08578063e985e9c514610a33578063f2fde38b14610a705761027d565b8063b88d4fde1461087b578063bf56b371146108a4578063c87b56dd146108cf578063ca15c8731461090c578063d539139314610949578063d547741f146109745761027d565b80639010d07c116101135780639010d07c1461075757806391d148541461079457806395d89b41146107d1578063a217fddf146107fc578063a22cb46514610827578063b2bdfa7b146108505761027d565b8063715018a6146106aa5780638091f3bf146106c15780638456cb59146106ec57806385b12c7c146107035780638da5cb5b1461072c5761027d565b80632f2ff15d116101f357806342966c68116101ac57806342966c68146105745780634f6ccce71461059d5780635c975abb146105da5780636352211e1461060557806365f130971461064257806370a082311461066d5761027d565b80632f2ff15d1461048e5780632fbba115146104b757806332cb6b0c146104e057806336568abe1461050b5780633f4ba83a1461053457806342842e0e1461054b5761027d565b8063095ea7b311610245578063095ea7b31461037b57806318160ddd146103a45780631c16521c146103cf57806323b872dd1461040c578063248a9ca3146104355780632db11544146104725761027d565b806301ffc9a7146102825780630675b7c6146102bf57806306fdde03146102e857806307e89ec014610313578063081812fc1461033e575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a4919061400d565b610a99565b6040516102b691906144a5565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e19190614067565b610aab565b005b3480156102f457600080fd5b506102fd610b41565b60405161030a91906144db565b60405180910390f35b34801561031f57600080fd5b50610328610bd3565b60405161033591906146fd565b60405180910390f35b34801561034a57600080fd5b50610365600480360381019061036091906140b0565b610bd9565b604051610372919061443e565b60405180910390f35b34801561038757600080fd5b506103a2600480360381019061039d9190613f20565b610c55565b005b3480156103b057600080fd5b506103b9610d60565b6040516103c691906146fd565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f19190613d9d565b610d77565b60405161040391906146fd565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e9190613e0a565b610d8f565b005b34801561044157600080fd5b5061045c60048036038101906104579190613f60565b610d9f565b60405161046991906144c0565b60405180910390f35b61048c600480360381019061048791906140b0565b610dbe565b005b34801561049a57600080fd5b506104b560048036038101906104b09190613f8d565b61100f565b005b3480156104c357600080fd5b506104de60048036038101906104d991906140b0565b611043565b005b3480156104ec57600080fd5b506104f5611137565b60405161050291906146fd565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d9190613f8d565b61113d565b005b34801561054057600080fd5b50610549611171565b005b34801561055757600080fd5b50610572600480360381019061056d9190613e0a565b6111eb565b005b34801561058057600080fd5b5061059b600480360381019061059691906140b0565b61120b565b005b3480156105a957600080fd5b506105c460048036038101906105bf91906140b0565b611219565b6040516105d191906146fd565b60405180910390f35b3480156105e657600080fd5b506105ef611263565b6040516105fc91906144a5565b60405180910390f35b34801561061157600080fd5b5061062c600480360381019061062791906140b0565b61127a565b604051610639919061443e565b60405180910390f35b34801561064e57600080fd5b50610657611290565b60405161066491906146fd565b60405180910390f35b34801561067957600080fd5b50610694600480360381019061068f9190613d9d565b611295565b6040516106a191906146fd565b60405180910390f35b3480156106b657600080fd5b506106bf611365565b005b3480156106cd57600080fd5b506106d66113ed565b6040516106e391906144a5565b60405180910390f35b3480156106f857600080fd5b50610701611400565b005b34801561070f57600080fd5b5061072a600480360381019061072591906140b0565b61147a565b005b34801561073857600080fd5b50610741611524565b60405161074e919061443e565b60405180910390f35b34801561076357600080fd5b5061077e60048036038101906107799190613fcd565b61154e565b60405161078b919061443e565b60405180910390f35b3480156107a057600080fd5b506107bb60048036038101906107b69190613f8d565b61157d565b6040516107c891906144a5565b60405180910390f35b3480156107dd57600080fd5b506107e66115e7565b6040516107f391906144db565b60405180910390f35b34801561080857600080fd5b50610811611679565b60405161081e91906144c0565b60405180910390f35b34801561083357600080fd5b5061084e60048036038101906108499190613ee0565b611680565b005b34801561085c57600080fd5b506108656117f8565b604051610872919061443e565b60405180910390f35b34801561088757600080fd5b506108a2600480360381019061089d9190613e5d565b61181e565b005b3480156108b057600080fd5b506108b961189a565b6040516108c691906146fd565b60405180910390f35b3480156108db57600080fd5b506108f660048036038101906108f191906140b0565b6118a0565b60405161090391906144db565b60405180910390f35b34801561091857600080fd5b50610933600480360381019061092e9190613f60565b61193f565b60405161094091906146fd565b60405180910390f35b34801561095557600080fd5b5061095e611963565b60405161096b91906144c0565b60405180910390f35b34801561098057600080fd5b5061099b60048036038101906109969190613f8d565b611987565b005b3480156109a957600080fd5b506109c460048036038101906109bf91906140b0565b6119bb565b005b3480156109d257600080fd5b506109db611a41565b005b3480156109e957600080fd5b506109f2611b28565b6040516109ff91906144c0565b60405180910390f35b348015610a1457600080fd5b50610a1d611b4c565b604051610a2a91906144a5565b60405180910390f35b348015610a3f57600080fd5b50610a5a6004803603810190610a559190613dca565b611b5f565b604051610a6791906144a5565b60405180910390f35b348015610a7c57600080fd5b50610a976004803603810190610a929190613d9d565b611bf3565b005b6000610aa482611d29565b9050919050565b610ab3611e0b565b73ffffffffffffffffffffffffffffffffffffffff16610ad1611524565b73ffffffffffffffffffffffffffffffffffffffff1614610b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1e9061463d565b60405180910390fd5b80600c9080519060200190610b3d929190613b59565b5050565b606060048054610b50906149b7565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7c906149b7565b8015610bc95780601f10610b9e57610100808354040283529160200191610bc9565b820191906000526020600020905b815481529060010190602001808311610bac57829003601f168201915b5050505050905090565b60115481565b6000610be482611e13565b610c1a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6009600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c608261127a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cc8576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ce7611e0b565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d195750610d1781610d12611e0b565b611b5f565b155b15610d50576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d5b838383611e61565b505050565b6000610d6a611f13565b6003546002540303905090565b60106020528060005260406000206000915090505481565b610d9a838383611f1c565b505050565b6000806000838152602001908152602001600020600101549050919050565b6002600d541415610e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfb9061469d565b60405180910390fd5b6002600d81905550600e60009054906101000a900460ff16610e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e52906145dd565b60405180910390fd5b6122b8610e7882610e6a610d60565b6123d290919063ffffffff16565b1115610eb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb09061467d565b60405180910390fd5b610ece816011546123e890919063ffffffff16565b3414610f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f069061455d565b60405180910390fd5b6008610f6382601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123d290919063ffffffff16565b1115610fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9b9061465d565b60405180910390fd5b80601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ff391906147e2565b9250508190555061100433826123fe565b6001600d8190555050565b611019828261241c565b61103e8160016000858152602001908152602001600020611cf990919063ffffffff16565b505050565b61104b611e0b565b73ffffffffffffffffffffffffffffffffffffffff16611069611524565b73ffffffffffffffffffffffffffffffffffffffff16146110bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b69061463d565b60405180910390fd5b601260009054906101000a900460ff161561110f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111069061459d565b60405180910390fd5b6001601260006101000a81548160ff02191690831515021790555061113433826123fe565b50565b6122b881565b6111478282612482565b61116c816001600085815260200190815260200160002061250590919063ffffffff16565b505050565b6111a27f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a61119d611e0b565b61157d565b6111e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d8906146bd565b60405180910390fd5b6111e9612535565b565b6112068383836040518060200160405280600081525061181e565b505050565b6112168160016125d7565b50565b6000611223610d60565b821061125b576040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b819050919050565b6000600b60009054906101000a900460ff16905090565b6000611285826129c7565b600001519050919050565b600881565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112fd576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61136d611e0b565b73ffffffffffffffffffffffffffffffffffffffff1661138b611524565b73ffffffffffffffffffffffffffffffffffffffff16146113e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d89061463d565b60405180910390fd5b6113eb6000612c56565b565b600e60009054906101000a900460ff1681565b6114317f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a61142c611e0b565b61157d565b611470576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611467906145bd565b60405180910390fd5b611478612d1c565b565b611482611e0b565b73ffffffffffffffffffffffffffffffffffffffff166114a0611524565b73ffffffffffffffffffffffffffffffffffffffff16146114f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ed9061463d565b60405180910390fd5b6001600e60006101000a81548160ff02191690831515021790555042600f8190555061152181611043565b50565b6000600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006115758260016000868152602001908152602001600020612dbf90919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060600580546115f6906149b7565b80601f0160208091040260200160405190810160405280929190818152602001828054611622906149b7565b801561166f5780601f106116445761010080835404028352916020019161166f565b820191906000526020600020905b81548152906001019060200180831161165257829003601f168201915b5050505050905090565b6000801b81565b611688611e0b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116ed576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600a60006116fa611e0b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117a7611e0b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117ec91906144a5565b60405180910390a35050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611829848484611f1c565b6118488373ffffffffffffffffffffffffffffffffffffffff16612dd9565b801561185d575061185b84848484612dec565b155b15611894576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600f5481565b60606118ab82611e13565b6118e1576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006118eb612f4c565b905060008151141561190c5760405180602001604052806000815250611937565b8061191684612fde565b60405160200161192792919061440f565b6040516020818303038152906040525b915050919050565b600061195c6001600084815260200190815260200160002061313f565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6119918282613154565b6119b6816001600085815260200190815260200160002061250590919063ffffffff16565b505050565b6119c3611e0b565b73ffffffffffffffffffffffffffffffffffffffff166119e1611524565b73ffffffffffffffffffffffffffffffffffffffff1614611a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2e9061463d565b60405180910390fd5b8060118190555050565b611a49611e0b565b73ffffffffffffffffffffffffffffffffffffffff16611a67611524565b73ffffffffffffffffffffffffffffffffffffffff1614611abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab49061463d565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611b25573d6000803e3d6000fd5b50565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b601260009054906101000a900460ff1681565b6000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611bfb611e0b565b73ffffffffffffffffffffffffffffffffffffffff16611c19611524565b73ffffffffffffffffffffffffffffffffffffffff1614611c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c669061463d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd69061457d565b60405180910390fd5b611ce881612c56565b50565b611cf582826131ba565b5050565b6000611d21836000018373ffffffffffffffffffffffffffffffffffffffff1660001b61329a565b905092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611df457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e045750611e038261330a565b5b9050919050565b600033905090565b600081611e1e611f13565b11158015611e2d575060025482105b8015611e5a575060076000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826009600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611f27826129c7565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611f92576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611fb3611e0b565b73ffffffffffffffffffffffffffffffffffffffff161480611fe25750611fe185611fdc611e0b565b611b5f565b5b806120275750611ff0611e0b565b73ffffffffffffffffffffffffffffffffffffffff1661200f84610bd9565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612060576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156120c7576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120d48585856001613384565b6120e060008487611e61565b6001600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600760008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600760008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561236057600254821461235f57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123cb8585856001613396565b5050505050565b600081836123e091906147e2565b905092915050565b600081836123f69190614869565b905092915050565b61241882826040518060200160405280600081525061339c565b5050565b61243561242883610d9f565b612430611e0b565b61157d565b612474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246b9061451d565b60405180910390fd5b61247e82826131ba565b5050565b61248a611e0b565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146124f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ee906146dd565b60405180910390fd5b61250182826133ae565b5050565b600061252d836000018373ffffffffffffffffffffffffffffffffffffffff1660001b61348f565b905092915050565b61253d611263565b61257c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125739061453d565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6125c0611e0b565b6040516125cd919061443e565b60405180910390a1565b60006125e2836129c7565b905060008160000151905082156126c35760008173ffffffffffffffffffffffffffffffffffffffff16612614611e0b565b73ffffffffffffffffffffffffffffffffffffffff16148061264357506126428261263d611e0b565b611b5f565b5b806126885750612651611e0b565b73ffffffffffffffffffffffffffffffffffffffff1661267086610bd9565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806126c1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b6126d1816000866001613384565b6126dd60008583611e61565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060018160000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060018160000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600760008781526020019081526020016000209050828160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600181600001601c6101000a81548160ff02191690831515021790555060006001870190506000600760008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561294157600254821461294057848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5050505083600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129af816000866001613396565b60036000815480929190600101919050555050505050565b6129cf613bdf565b6000829050806129dd611f13565b111580156129ec575060025481105b15612c1f576000600760008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612c1d57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b01578092505050612c51565b5b600115612c1c57818060019003925050600760008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c17578092505050612c51565b612b02565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612d24611263565b15612d64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5b9061461d565b60405180910390fd5b6001600b60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612da8611e0b565b604051612db5919061443e565b60405180910390a1565b6000612dce83600001836135a7565b60001c905092915050565b600080823b905060008111915050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e12611e0b565b8786866040518563ffffffff1660e01b8152600401612e349493929190614459565b602060405180830381600087803b158015612e4e57600080fd5b505af1925050508015612e7f57506040513d601f19601f82011682018060405250810190612e7c919061403a565b60015b612ef9573d8060008114612eaf576040519150601f19603f3d011682016040523d82523d6000602084013e612eb4565b606091505b50600081511415612ef1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c8054612f5b906149b7565b80601f0160208091040260200160405190810160405280929190818152602001828054612f87906149b7565b8015612fd45780601f10612fa957610100808354040283529160200191612fd4565b820191906000526020600020905b815481529060010190602001808311612fb757829003601f168201915b5050505050905090565b60606000821415613026576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061313a565b600082905060005b6000821461305857808061304190614a1a565b915050600a826130519190614838565b915061302e565b60008167ffffffffffffffff81111561307457613073614b7f565b5b6040519080825280601f01601f1916602001820160405280156130a65781602001600182028036833780820191505090505b5090505b60008514613133576001826130bf91906148c3565b9150600a856130ce9190614a63565b60306130da91906147e2565b60f81b8183815181106130f0576130ef614b50565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561312c9190614838565b94506130aa565b8093505050505b919050565b600061314d8260000161361b565b9050919050565b61316d61316083610d9f565b613168611e0b565b61157d565b6131ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131a3906145fd565b60405180910390fd5b6131b682826133ae565b5050565b6131c4828261157d565b61329657600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061323b611e0b565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006132a6838361362c565b6132ff578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050613304565b600090505b92915050565b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061337d575061337c8261364f565b5b9050919050565b613390848484846136c9565b50505050565b50505050565b6133a9838383600161371a565b505050565b6133b8828261157d565b1561348b57600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550613430611e0b565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000808360010160008481526020019081526020016000205490506000811461359b5760006001826134c191906148c3565b90506000600186600001805490506134d991906148c3565b905060008660000182815481106134f3576134f2614b50565b5b906000526020600020015490508087600001848154811061351757613516614b50565b5b906000526020600020018190555060018361353291906147e2565b876001016000838152602001908152602001600020819055508660000180548061355f5761355e614b21565b5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506135a1565b60009150505b92915050565b6000818360000180549050116135f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135e9906144fd565b60405180910390fd5b82600001828154811061360857613607614b50565b5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806136c257506136c182613ae9565b5b9050919050565b6136d584848484613b53565b6136dd611263565b15613714576040517fab35696f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60006002549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613788576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156137c3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6137d06000868387613384565b83600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846007600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426007600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561399a57506139998773ffffffffffffffffffffffffffffffffffffffff16612dd9565b5b15613a60575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613a0f6000888480600101955088612dec565b613a45576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156139a0578260025414613a5b57600080fd5b613acc565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613a61575b816002819055505050613ae26000868387613396565b5050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b828054613b65906149b7565b90600052602060002090601f016020900481019282613b875760008555613bce565b82601f10613ba057805160ff1916838001178555613bce565b82800160010185558215613bce579182015b82811115613bcd578251825591602001919060010190613bb2565b5b509050613bdb9190613c22565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613c3b576000816000905550600101613c23565b5090565b6000613c52613c4d8461473d565b614718565b905082815260208101848484011115613c6e57613c6d614bb3565b5b613c79848285614975565b509392505050565b6000613c94613c8f8461476e565b614718565b905082815260208101848484011115613cb057613caf614bb3565b5b613cbb848285614975565b509392505050565b600081359050613cd281614fbc565b92915050565b600081359050613ce781614fd3565b92915050565b600081359050613cfc81614fea565b92915050565b600081359050613d1181615001565b92915050565b600081519050613d2681615001565b92915050565b600082601f830112613d4157613d40614bae565b5b8135613d51848260208601613c3f565b91505092915050565b600082601f830112613d6f57613d6e614bae565b5b8135613d7f848260208601613c81565b91505092915050565b600081359050613d9781615018565b92915050565b600060208284031215613db357613db2614bbd565b5b6000613dc184828501613cc3565b91505092915050565b60008060408385031215613de157613de0614bbd565b5b6000613def85828601613cc3565b9250506020613e0085828601613cc3565b9150509250929050565b600080600060608486031215613e2357613e22614bbd565b5b6000613e3186828701613cc3565b9350506020613e4286828701613cc3565b9250506040613e5386828701613d88565b9150509250925092565b60008060008060808587031215613e7757613e76614bbd565b5b6000613e8587828801613cc3565b9450506020613e9687828801613cc3565b9350506040613ea787828801613d88565b925050606085013567ffffffffffffffff811115613ec857613ec7614bb8565b5b613ed487828801613d2c565b91505092959194509250565b60008060408385031215613ef757613ef6614bbd565b5b6000613f0585828601613cc3565b9250506020613f1685828601613cd8565b9150509250929050565b60008060408385031215613f3757613f36614bbd565b5b6000613f4585828601613cc3565b9250506020613f5685828601613d88565b9150509250929050565b600060208284031215613f7657613f75614bbd565b5b6000613f8484828501613ced565b91505092915050565b60008060408385031215613fa457613fa3614bbd565b5b6000613fb285828601613ced565b9250506020613fc385828601613cc3565b9150509250929050565b60008060408385031215613fe457613fe3614bbd565b5b6000613ff285828601613ced565b925050602061400385828601613d88565b9150509250929050565b60006020828403121561402357614022614bbd565b5b600061403184828501613d02565b91505092915050565b6000602082840312156140505761404f614bbd565b5b600061405e84828501613d17565b91505092915050565b60006020828403121561407d5761407c614bbd565b5b600082013567ffffffffffffffff81111561409b5761409a614bb8565b5b6140a784828501613d5a565b91505092915050565b6000602082840312156140c6576140c5614bbd565b5b60006140d484828501613d88565b91505092915050565b6140e6816148f7565b82525050565b6140f581614909565b82525050565b61410481614915565b82525050565b60006141158261479f565b61411f81856147b5565b935061412f818560208601614984565b61413881614bc2565b840191505092915050565b600061414e826147aa565b61415881856147c6565b9350614168818560208601614984565b61417181614bc2565b840191505092915050565b6000614187826147aa565b61419181856147d7565b93506141a1818560208601614984565b80840191505092915050565b60006141ba6022836147c6565b91506141c582614bd3565b604082019050919050565b60006141dd602f836147c6565b91506141e882614c22565b604082019050919050565b60006142006014836147c6565b915061420b82614c71565b602082019050919050565b60006142236015836147c6565b915061422e82614c9a565b602082019050919050565b60006142466026836147c6565b915061425182614cc3565b604082019050919050565b60006142696013836147c6565b915061427482614d12565b602082019050919050565b600061428c603e836147c6565b915061429782614d3b565b604082019050919050565b60006142af6012836147c6565b91506142ba82614d8a565b602082019050919050565b60006142d26030836147c6565b91506142dd82614db3565b604082019050919050565b60006142f56010836147c6565b915061430082614e02565b602082019050919050565b60006143186005836147d7565b915061432382614e2b565b600582019050919050565b600061433b6020836147c6565b915061434682614e54565b602082019050919050565b600061435e6021836147c6565b915061436982614e7d565b604082019050919050565b60006143816018836147c6565b915061438c82614ecc565b602082019050919050565b60006143a4601f836147c6565b91506143af82614ef5565b602082019050919050565b60006143c76040836147c6565b91506143d282614f1e565b604082019050919050565b60006143ea602f836147c6565b91506143f582614f6d565b604082019050919050565b6144098161496b565b82525050565b600061441b828561417c565b9150614427828461417c565b91506144328261430b565b91508190509392505050565b600060208201905061445360008301846140dd565b92915050565b600060808201905061446e60008301876140dd565b61447b60208301866140dd565b6144886040830185614400565b818103606083015261449a818461410a565b905095945050505050565b60006020820190506144ba60008301846140ec565b92915050565b60006020820190506144d560008301846140fb565b92915050565b600060208201905081810360008301526144f58184614143565b905092915050565b60006020820190508181036000830152614516816141ad565b9050919050565b60006020820190508181036000830152614536816141d0565b9050919050565b60006020820190508181036000830152614556816141f3565b9050919050565b6000602082019050818103600083015261457681614216565b9050919050565b6000602082019050818103600083015261459681614239565b9050919050565b600060208201905081810360008301526145b68161425c565b9050919050565b600060208201905081810360008301526145d68161427f565b9050919050565b600060208201905081810360008301526145f6816142a2565b9050919050565b60006020820190508181036000830152614616816142c5565b9050919050565b60006020820190508181036000830152614636816142e8565b9050919050565b600060208201905081810360008301526146568161432e565b9050919050565b6000602082019050818103600083015261467681614351565b9050919050565b6000602082019050818103600083015261469681614374565b9050919050565b600060208201905081810360008301526146b681614397565b9050919050565b600060208201905081810360008301526146d6816143ba565b9050919050565b600060208201905081810360008301526146f6816143dd565b9050919050565b60006020820190506147126000830184614400565b92915050565b6000614722614733565b905061472e82826149e9565b919050565b6000604051905090565b600067ffffffffffffffff82111561475857614757614b7f565b5b61476182614bc2565b9050602081019050919050565b600067ffffffffffffffff82111561478957614788614b7f565b5b61479282614bc2565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006147ed8261496b565b91506147f88361496b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561482d5761482c614a94565b5b828201905092915050565b60006148438261496b565b915061484e8361496b565b92508261485e5761485d614ac3565b5b828204905092915050565b60006148748261496b565b915061487f8361496b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156148b8576148b7614a94565b5b828202905092915050565b60006148ce8261496b565b91506148d98361496b565b9250828210156148ec576148eb614a94565b5b828203905092915050565b60006149028261494b565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156149a2578082015181840152602081019050614987565b838111156149b1576000848401525b50505050565b600060028204905060018216806149cf57607f821691505b602082108114156149e3576149e2614af2565b5b50919050565b6149f282614bc2565b810181811067ffffffffffffffff82111715614a1157614a10614b7f565b5b80604052505050565b6000614a258261496b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614a5857614a57614a94565b5b600182019050919050565b6000614a6e8261496b565b9150614a798361496b565b925082614a8957614a88614ac3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60008201527f2061646d696e20746f206772616e740000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f496e73756666696369656e74204554482073656e740000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5465616d20616c7265616479206d696e74656400000000000000000000000000600082015250565b7f4552433732315072657365744d696e7465725061757365724175746f49643a2060008201527f6d75737420686176652070617573657220726f6c6520746f2070617573650000602082015250565b7f59657420746f206265206c61756e636865640000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60008201527f2061646d696e20746f207265766f6b6500000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d6178696d756d206d696e74696e67207175616e74697479206578636565646560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473204e465420746f74616c20737570706c790000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4552433732315072657365744d696e7465725061757365724175746f49643a2060008201527f6d75737420686176652070617573657220726f6c6520746f20756e7061757365602082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b614fc5816148f7565b8114614fd057600080fd5b50565b614fdc81614909565b8114614fe757600080fd5b50565b614ff381614915565b8114614ffe57600080fd5b50565b61500a8161491f565b811461501557600080fd5b50565b6150218161496b565b811461502c57600080fd5b5056fea2646970667358221220923a28b2c0a792a44193094d7a70bdbcdbe59e3d4cf86302e586da08a2e4d09364736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000008535048455249435800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000085350484552494358000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005468747470733a2f2f73706865726963782e6d7970696e6174612e636c6f75642f697066732f516d637a336453724e6b546d73416f67796672556642635268764e3659513871616a747959686d666b5a4b615a352f000000000000000000000000

Deployed Bytecode

0x60806040526004361061027d5760003560e01c8063715018a61161014f578063b88d4fde116100c1578063de6f74251161007a578063de6f74251461099d578063e086e5ec146109c6578063e63ab1e9146109dd578063e8b5498d14610a08578063e985e9c514610a33578063f2fde38b14610a705761027d565b8063b88d4fde1461087b578063bf56b371146108a4578063c87b56dd146108cf578063ca15c8731461090c578063d539139314610949578063d547741f146109745761027d565b80639010d07c116101135780639010d07c1461075757806391d148541461079457806395d89b41146107d1578063a217fddf146107fc578063a22cb46514610827578063b2bdfa7b146108505761027d565b8063715018a6146106aa5780638091f3bf146106c15780638456cb59146106ec57806385b12c7c146107035780638da5cb5b1461072c5761027d565b80632f2ff15d116101f357806342966c68116101ac57806342966c68146105745780634f6ccce71461059d5780635c975abb146105da5780636352211e1461060557806365f130971461064257806370a082311461066d5761027d565b80632f2ff15d1461048e5780632fbba115146104b757806332cb6b0c146104e057806336568abe1461050b5780633f4ba83a1461053457806342842e0e1461054b5761027d565b8063095ea7b311610245578063095ea7b31461037b57806318160ddd146103a45780631c16521c146103cf57806323b872dd1461040c578063248a9ca3146104355780632db11544146104725761027d565b806301ffc9a7146102825780630675b7c6146102bf57806306fdde03146102e857806307e89ec014610313578063081812fc1461033e575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a4919061400d565b610a99565b6040516102b691906144a5565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e19190614067565b610aab565b005b3480156102f457600080fd5b506102fd610b41565b60405161030a91906144db565b60405180910390f35b34801561031f57600080fd5b50610328610bd3565b60405161033591906146fd565b60405180910390f35b34801561034a57600080fd5b50610365600480360381019061036091906140b0565b610bd9565b604051610372919061443e565b60405180910390f35b34801561038757600080fd5b506103a2600480360381019061039d9190613f20565b610c55565b005b3480156103b057600080fd5b506103b9610d60565b6040516103c691906146fd565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f19190613d9d565b610d77565b60405161040391906146fd565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e9190613e0a565b610d8f565b005b34801561044157600080fd5b5061045c60048036038101906104579190613f60565b610d9f565b60405161046991906144c0565b60405180910390f35b61048c600480360381019061048791906140b0565b610dbe565b005b34801561049a57600080fd5b506104b560048036038101906104b09190613f8d565b61100f565b005b3480156104c357600080fd5b506104de60048036038101906104d991906140b0565b611043565b005b3480156104ec57600080fd5b506104f5611137565b60405161050291906146fd565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d9190613f8d565b61113d565b005b34801561054057600080fd5b50610549611171565b005b34801561055757600080fd5b50610572600480360381019061056d9190613e0a565b6111eb565b005b34801561058057600080fd5b5061059b600480360381019061059691906140b0565b61120b565b005b3480156105a957600080fd5b506105c460048036038101906105bf91906140b0565b611219565b6040516105d191906146fd565b60405180910390f35b3480156105e657600080fd5b506105ef611263565b6040516105fc91906144a5565b60405180910390f35b34801561061157600080fd5b5061062c600480360381019061062791906140b0565b61127a565b604051610639919061443e565b60405180910390f35b34801561064e57600080fd5b50610657611290565b60405161066491906146fd565b60405180910390f35b34801561067957600080fd5b50610694600480360381019061068f9190613d9d565b611295565b6040516106a191906146fd565b60405180910390f35b3480156106b657600080fd5b506106bf611365565b005b3480156106cd57600080fd5b506106d66113ed565b6040516106e391906144a5565b60405180910390f35b3480156106f857600080fd5b50610701611400565b005b34801561070f57600080fd5b5061072a600480360381019061072591906140b0565b61147a565b005b34801561073857600080fd5b50610741611524565b60405161074e919061443e565b60405180910390f35b34801561076357600080fd5b5061077e60048036038101906107799190613fcd565b61154e565b60405161078b919061443e565b60405180910390f35b3480156107a057600080fd5b506107bb60048036038101906107b69190613f8d565b61157d565b6040516107c891906144a5565b60405180910390f35b3480156107dd57600080fd5b506107e66115e7565b6040516107f391906144db565b60405180910390f35b34801561080857600080fd5b50610811611679565b60405161081e91906144c0565b60405180910390f35b34801561083357600080fd5b5061084e60048036038101906108499190613ee0565b611680565b005b34801561085c57600080fd5b506108656117f8565b604051610872919061443e565b60405180910390f35b34801561088757600080fd5b506108a2600480360381019061089d9190613e5d565b61181e565b005b3480156108b057600080fd5b506108b961189a565b6040516108c691906146fd565b60405180910390f35b3480156108db57600080fd5b506108f660048036038101906108f191906140b0565b6118a0565b60405161090391906144db565b60405180910390f35b34801561091857600080fd5b50610933600480360381019061092e9190613f60565b61193f565b60405161094091906146fd565b60405180910390f35b34801561095557600080fd5b5061095e611963565b60405161096b91906144c0565b60405180910390f35b34801561098057600080fd5b5061099b60048036038101906109969190613f8d565b611987565b005b3480156109a957600080fd5b506109c460048036038101906109bf91906140b0565b6119bb565b005b3480156109d257600080fd5b506109db611a41565b005b3480156109e957600080fd5b506109f2611b28565b6040516109ff91906144c0565b60405180910390f35b348015610a1457600080fd5b50610a1d611b4c565b604051610a2a91906144a5565b60405180910390f35b348015610a3f57600080fd5b50610a5a6004803603810190610a559190613dca565b611b5f565b604051610a6791906144a5565b60405180910390f35b348015610a7c57600080fd5b50610a976004803603810190610a929190613d9d565b611bf3565b005b6000610aa482611d29565b9050919050565b610ab3611e0b565b73ffffffffffffffffffffffffffffffffffffffff16610ad1611524565b73ffffffffffffffffffffffffffffffffffffffff1614610b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1e9061463d565b60405180910390fd5b80600c9080519060200190610b3d929190613b59565b5050565b606060048054610b50906149b7565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7c906149b7565b8015610bc95780601f10610b9e57610100808354040283529160200191610bc9565b820191906000526020600020905b815481529060010190602001808311610bac57829003601f168201915b5050505050905090565b60115481565b6000610be482611e13565b610c1a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6009600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c608261127a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cc8576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ce7611e0b565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d195750610d1781610d12611e0b565b611b5f565b155b15610d50576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d5b838383611e61565b505050565b6000610d6a611f13565b6003546002540303905090565b60106020528060005260406000206000915090505481565b610d9a838383611f1c565b505050565b6000806000838152602001908152602001600020600101549050919050565b6002600d541415610e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfb9061469d565b60405180910390fd5b6002600d81905550600e60009054906101000a900460ff16610e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e52906145dd565b60405180910390fd5b6122b8610e7882610e6a610d60565b6123d290919063ffffffff16565b1115610eb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb09061467d565b60405180910390fd5b610ece816011546123e890919063ffffffff16565b3414610f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f069061455d565b60405180910390fd5b6008610f6382601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123d290919063ffffffff16565b1115610fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9b9061465d565b60405180910390fd5b80601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ff391906147e2565b9250508190555061100433826123fe565b6001600d8190555050565b611019828261241c565b61103e8160016000858152602001908152602001600020611cf990919063ffffffff16565b505050565b61104b611e0b565b73ffffffffffffffffffffffffffffffffffffffff16611069611524565b73ffffffffffffffffffffffffffffffffffffffff16146110bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b69061463d565b60405180910390fd5b601260009054906101000a900460ff161561110f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111069061459d565b60405180910390fd5b6001601260006101000a81548160ff02191690831515021790555061113433826123fe565b50565b6122b881565b6111478282612482565b61116c816001600085815260200190815260200160002061250590919063ffffffff16565b505050565b6111a27f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a61119d611e0b565b61157d565b6111e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d8906146bd565b60405180910390fd5b6111e9612535565b565b6112068383836040518060200160405280600081525061181e565b505050565b6112168160016125d7565b50565b6000611223610d60565b821061125b576040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b819050919050565b6000600b60009054906101000a900460ff16905090565b6000611285826129c7565b600001519050919050565b600881565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112fd576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61136d611e0b565b73ffffffffffffffffffffffffffffffffffffffff1661138b611524565b73ffffffffffffffffffffffffffffffffffffffff16146113e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d89061463d565b60405180910390fd5b6113eb6000612c56565b565b600e60009054906101000a900460ff1681565b6114317f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a61142c611e0b565b61157d565b611470576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611467906145bd565b60405180910390fd5b611478612d1c565b565b611482611e0b565b73ffffffffffffffffffffffffffffffffffffffff166114a0611524565b73ffffffffffffffffffffffffffffffffffffffff16146114f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ed9061463d565b60405180910390fd5b6001600e60006101000a81548160ff02191690831515021790555042600f8190555061152181611043565b50565b6000600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006115758260016000868152602001908152602001600020612dbf90919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060600580546115f6906149b7565b80601f0160208091040260200160405190810160405280929190818152602001828054611622906149b7565b801561166f5780601f106116445761010080835404028352916020019161166f565b820191906000526020600020905b81548152906001019060200180831161165257829003601f168201915b5050505050905090565b6000801b81565b611688611e0b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116ed576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600a60006116fa611e0b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117a7611e0b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117ec91906144a5565b60405180910390a35050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611829848484611f1c565b6118488373ffffffffffffffffffffffffffffffffffffffff16612dd9565b801561185d575061185b84848484612dec565b155b15611894576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600f5481565b60606118ab82611e13565b6118e1576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006118eb612f4c565b905060008151141561190c5760405180602001604052806000815250611937565b8061191684612fde565b60405160200161192792919061440f565b6040516020818303038152906040525b915050919050565b600061195c6001600084815260200190815260200160002061313f565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6119918282613154565b6119b6816001600085815260200190815260200160002061250590919063ffffffff16565b505050565b6119c3611e0b565b73ffffffffffffffffffffffffffffffffffffffff166119e1611524565b73ffffffffffffffffffffffffffffffffffffffff1614611a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2e9061463d565b60405180910390fd5b8060118190555050565b611a49611e0b565b73ffffffffffffffffffffffffffffffffffffffff16611a67611524565b73ffffffffffffffffffffffffffffffffffffffff1614611abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab49061463d565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611b25573d6000803e3d6000fd5b50565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b601260009054906101000a900460ff1681565b6000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611bfb611e0b565b73ffffffffffffffffffffffffffffffffffffffff16611c19611524565b73ffffffffffffffffffffffffffffffffffffffff1614611c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c669061463d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd69061457d565b60405180910390fd5b611ce881612c56565b50565b611cf582826131ba565b5050565b6000611d21836000018373ffffffffffffffffffffffffffffffffffffffff1660001b61329a565b905092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611df457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e045750611e038261330a565b5b9050919050565b600033905090565b600081611e1e611f13565b11158015611e2d575060025482105b8015611e5a575060076000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826009600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611f27826129c7565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611f92576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611fb3611e0b565b73ffffffffffffffffffffffffffffffffffffffff161480611fe25750611fe185611fdc611e0b565b611b5f565b5b806120275750611ff0611e0b565b73ffffffffffffffffffffffffffffffffffffffff1661200f84610bd9565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612060576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156120c7576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120d48585856001613384565b6120e060008487611e61565b6001600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600760008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600760008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561236057600254821461235f57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123cb8585856001613396565b5050505050565b600081836123e091906147e2565b905092915050565b600081836123f69190614869565b905092915050565b61241882826040518060200160405280600081525061339c565b5050565b61243561242883610d9f565b612430611e0b565b61157d565b612474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246b9061451d565b60405180910390fd5b61247e82826131ba565b5050565b61248a611e0b565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146124f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ee906146dd565b60405180910390fd5b61250182826133ae565b5050565b600061252d836000018373ffffffffffffffffffffffffffffffffffffffff1660001b61348f565b905092915050565b61253d611263565b61257c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125739061453d565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6125c0611e0b565b6040516125cd919061443e565b60405180910390a1565b60006125e2836129c7565b905060008160000151905082156126c35760008173ffffffffffffffffffffffffffffffffffffffff16612614611e0b565b73ffffffffffffffffffffffffffffffffffffffff16148061264357506126428261263d611e0b565b611b5f565b5b806126885750612651611e0b565b73ffffffffffffffffffffffffffffffffffffffff1661267086610bd9565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806126c1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b6126d1816000866001613384565b6126dd60008583611e61565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060018160000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060018160000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600760008781526020019081526020016000209050828160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600181600001601c6101000a81548160ff02191690831515021790555060006001870190506000600760008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561294157600254821461294057848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5050505083600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129af816000866001613396565b60036000815480929190600101919050555050505050565b6129cf613bdf565b6000829050806129dd611f13565b111580156129ec575060025481105b15612c1f576000600760008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612c1d57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b01578092505050612c51565b5b600115612c1c57818060019003925050600760008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c17578092505050612c51565b612b02565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612d24611263565b15612d64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5b9061461d565b60405180910390fd5b6001600b60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612da8611e0b565b604051612db5919061443e565b60405180910390a1565b6000612dce83600001836135a7565b60001c905092915050565b600080823b905060008111915050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e12611e0b565b8786866040518563ffffffff1660e01b8152600401612e349493929190614459565b602060405180830381600087803b158015612e4e57600080fd5b505af1925050508015612e7f57506040513d601f19601f82011682018060405250810190612e7c919061403a565b60015b612ef9573d8060008114612eaf576040519150601f19603f3d011682016040523d82523d6000602084013e612eb4565b606091505b50600081511415612ef1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c8054612f5b906149b7565b80601f0160208091040260200160405190810160405280929190818152602001828054612f87906149b7565b8015612fd45780601f10612fa957610100808354040283529160200191612fd4565b820191906000526020600020905b815481529060010190602001808311612fb757829003601f168201915b5050505050905090565b60606000821415613026576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061313a565b600082905060005b6000821461305857808061304190614a1a565b915050600a826130519190614838565b915061302e565b60008167ffffffffffffffff81111561307457613073614b7f565b5b6040519080825280601f01601f1916602001820160405280156130a65781602001600182028036833780820191505090505b5090505b60008514613133576001826130bf91906148c3565b9150600a856130ce9190614a63565b60306130da91906147e2565b60f81b8183815181106130f0576130ef614b50565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561312c9190614838565b94506130aa565b8093505050505b919050565b600061314d8260000161361b565b9050919050565b61316d61316083610d9f565b613168611e0b565b61157d565b6131ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131a3906145fd565b60405180910390fd5b6131b682826133ae565b5050565b6131c4828261157d565b61329657600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061323b611e0b565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006132a6838361362c565b6132ff578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050613304565b600090505b92915050565b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061337d575061337c8261364f565b5b9050919050565b613390848484846136c9565b50505050565b50505050565b6133a9838383600161371a565b505050565b6133b8828261157d565b1561348b57600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550613430611e0b565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000808360010160008481526020019081526020016000205490506000811461359b5760006001826134c191906148c3565b90506000600186600001805490506134d991906148c3565b905060008660000182815481106134f3576134f2614b50565b5b906000526020600020015490508087600001848154811061351757613516614b50565b5b906000526020600020018190555060018361353291906147e2565b876001016000838152602001908152602001600020819055508660000180548061355f5761355e614b21565b5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506135a1565b60009150505b92915050565b6000818360000180549050116135f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135e9906144fd565b60405180910390fd5b82600001828154811061360857613607614b50565b5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806136c257506136c182613ae9565b5b9050919050565b6136d584848484613b53565b6136dd611263565b15613714576040517fab35696f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60006002549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613788576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156137c3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6137d06000868387613384565b83600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846007600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426007600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561399a57506139998773ffffffffffffffffffffffffffffffffffffffff16612dd9565b5b15613a60575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613a0f6000888480600101955088612dec565b613a45576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156139a0578260025414613a5b57600080fd5b613acc565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613a61575b816002819055505050613ae26000868387613396565b5050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b828054613b65906149b7565b90600052602060002090601f016020900481019282613b875760008555613bce565b82601f10613ba057805160ff1916838001178555613bce565b82800160010185558215613bce579182015b82811115613bcd578251825591602001919060010190613bb2565b5b509050613bdb9190613c22565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613c3b576000816000905550600101613c23565b5090565b6000613c52613c4d8461473d565b614718565b905082815260208101848484011115613c6e57613c6d614bb3565b5b613c79848285614975565b509392505050565b6000613c94613c8f8461476e565b614718565b905082815260208101848484011115613cb057613caf614bb3565b5b613cbb848285614975565b509392505050565b600081359050613cd281614fbc565b92915050565b600081359050613ce781614fd3565b92915050565b600081359050613cfc81614fea565b92915050565b600081359050613d1181615001565b92915050565b600081519050613d2681615001565b92915050565b600082601f830112613d4157613d40614bae565b5b8135613d51848260208601613c3f565b91505092915050565b600082601f830112613d6f57613d6e614bae565b5b8135613d7f848260208601613c81565b91505092915050565b600081359050613d9781615018565b92915050565b600060208284031215613db357613db2614bbd565b5b6000613dc184828501613cc3565b91505092915050565b60008060408385031215613de157613de0614bbd565b5b6000613def85828601613cc3565b9250506020613e0085828601613cc3565b9150509250929050565b600080600060608486031215613e2357613e22614bbd565b5b6000613e3186828701613cc3565b9350506020613e4286828701613cc3565b9250506040613e5386828701613d88565b9150509250925092565b60008060008060808587031215613e7757613e76614bbd565b5b6000613e8587828801613cc3565b9450506020613e9687828801613cc3565b9350506040613ea787828801613d88565b925050606085013567ffffffffffffffff811115613ec857613ec7614bb8565b5b613ed487828801613d2c565b91505092959194509250565b60008060408385031215613ef757613ef6614bbd565b5b6000613f0585828601613cc3565b9250506020613f1685828601613cd8565b9150509250929050565b60008060408385031215613f3757613f36614bbd565b5b6000613f4585828601613cc3565b9250506020613f5685828601613d88565b9150509250929050565b600060208284031215613f7657613f75614bbd565b5b6000613f8484828501613ced565b91505092915050565b60008060408385031215613fa457613fa3614bbd565b5b6000613fb285828601613ced565b9250506020613fc385828601613cc3565b9150509250929050565b60008060408385031215613fe457613fe3614bbd565b5b6000613ff285828601613ced565b925050602061400385828601613d88565b9150509250929050565b60006020828403121561402357614022614bbd565b5b600061403184828501613d02565b91505092915050565b6000602082840312156140505761404f614bbd565b5b600061405e84828501613d17565b91505092915050565b60006020828403121561407d5761407c614bbd565b5b600082013567ffffffffffffffff81111561409b5761409a614bb8565b5b6140a784828501613d5a565b91505092915050565b6000602082840312156140c6576140c5614bbd565b5b60006140d484828501613d88565b91505092915050565b6140e6816148f7565b82525050565b6140f581614909565b82525050565b61410481614915565b82525050565b60006141158261479f565b61411f81856147b5565b935061412f818560208601614984565b61413881614bc2565b840191505092915050565b600061414e826147aa565b61415881856147c6565b9350614168818560208601614984565b61417181614bc2565b840191505092915050565b6000614187826147aa565b61419181856147d7565b93506141a1818560208601614984565b80840191505092915050565b60006141ba6022836147c6565b91506141c582614bd3565b604082019050919050565b60006141dd602f836147c6565b91506141e882614c22565b604082019050919050565b60006142006014836147c6565b915061420b82614c71565b602082019050919050565b60006142236015836147c6565b915061422e82614c9a565b602082019050919050565b60006142466026836147c6565b915061425182614cc3565b604082019050919050565b60006142696013836147c6565b915061427482614d12565b602082019050919050565b600061428c603e836147c6565b915061429782614d3b565b604082019050919050565b60006142af6012836147c6565b91506142ba82614d8a565b602082019050919050565b60006142d26030836147c6565b91506142dd82614db3565b604082019050919050565b60006142f56010836147c6565b915061430082614e02565b602082019050919050565b60006143186005836147d7565b915061432382614e2b565b600582019050919050565b600061433b6020836147c6565b915061434682614e54565b602082019050919050565b600061435e6021836147c6565b915061436982614e7d565b604082019050919050565b60006143816018836147c6565b915061438c82614ecc565b602082019050919050565b60006143a4601f836147c6565b91506143af82614ef5565b602082019050919050565b60006143c76040836147c6565b91506143d282614f1e565b604082019050919050565b60006143ea602f836147c6565b91506143f582614f6d565b604082019050919050565b6144098161496b565b82525050565b600061441b828561417c565b9150614427828461417c565b91506144328261430b565b91508190509392505050565b600060208201905061445360008301846140dd565b92915050565b600060808201905061446e60008301876140dd565b61447b60208301866140dd565b6144886040830185614400565b818103606083015261449a818461410a565b905095945050505050565b60006020820190506144ba60008301846140ec565b92915050565b60006020820190506144d560008301846140fb565b92915050565b600060208201905081810360008301526144f58184614143565b905092915050565b60006020820190508181036000830152614516816141ad565b9050919050565b60006020820190508181036000830152614536816141d0565b9050919050565b60006020820190508181036000830152614556816141f3565b9050919050565b6000602082019050818103600083015261457681614216565b9050919050565b6000602082019050818103600083015261459681614239565b9050919050565b600060208201905081810360008301526145b68161425c565b9050919050565b600060208201905081810360008301526145d68161427f565b9050919050565b600060208201905081810360008301526145f6816142a2565b9050919050565b60006020820190508181036000830152614616816142c5565b9050919050565b60006020820190508181036000830152614636816142e8565b9050919050565b600060208201905081810360008301526146568161432e565b9050919050565b6000602082019050818103600083015261467681614351565b9050919050565b6000602082019050818103600083015261469681614374565b9050919050565b600060208201905081810360008301526146b681614397565b9050919050565b600060208201905081810360008301526146d6816143ba565b9050919050565b600060208201905081810360008301526146f6816143dd565b9050919050565b60006020820190506147126000830184614400565b92915050565b6000614722614733565b905061472e82826149e9565b919050565b6000604051905090565b600067ffffffffffffffff82111561475857614757614b7f565b5b61476182614bc2565b9050602081019050919050565b600067ffffffffffffffff82111561478957614788614b7f565b5b61479282614bc2565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006147ed8261496b565b91506147f88361496b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561482d5761482c614a94565b5b828201905092915050565b60006148438261496b565b915061484e8361496b565b92508261485e5761485d614ac3565b5b828204905092915050565b60006148748261496b565b915061487f8361496b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156148b8576148b7614a94565b5b828202905092915050565b60006148ce8261496b565b91506148d98361496b565b9250828210156148ec576148eb614a94565b5b828203905092915050565b60006149028261494b565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156149a2578082015181840152602081019050614987565b838111156149b1576000848401525b50505050565b600060028204905060018216806149cf57607f821691505b602082108114156149e3576149e2614af2565b5b50919050565b6149f282614bc2565b810181811067ffffffffffffffff82111715614a1157614a10614b7f565b5b80604052505050565b6000614a258261496b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614a5857614a57614a94565b5b600182019050919050565b6000614a6e8261496b565b9150614a798361496b565b925082614a8957614a88614ac3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60008201527f2061646d696e20746f206772616e740000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f496e73756666696369656e74204554482073656e740000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5465616d20616c7265616479206d696e74656400000000000000000000000000600082015250565b7f4552433732315072657365744d696e7465725061757365724175746f49643a2060008201527f6d75737420686176652070617573657220726f6c6520746f2070617573650000602082015250565b7f59657420746f206265206c61756e636865640000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60008201527f2061646d696e20746f207265766f6b6500000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d6178696d756d206d696e74696e67207175616e74697479206578636565646560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473204e465420746f74616c20737570706c790000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4552433732315072657365744d696e7465725061757365724175746f49643a2060008201527f6d75737420686176652070617573657220726f6c6520746f20756e7061757365602082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b614fc5816148f7565b8114614fd057600080fd5b50565b614fdc81614909565b8114614fe757600080fd5b50565b614ff381614915565b8114614ffe57600080fd5b50565b61500a8161491f565b811461501557600080fd5b50565b6150218161496b565b811461502c57600080fd5b5056fea2646970667358221220923a28b2c0a792a44193094d7a70bdbcdbe59e3d4cf86302e586da08a2e4d09364736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000008535048455249435800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000085350484552494358000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005468747470733a2f2f73706865726963782e6d7970696e6174612e636c6f75642f697066732f516d637a336453724e6b546d73416f67796672556642635268764e3659513871616a747959686d666b5a4b615a352f000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): SPHERICX
Arg [1] : _symbol (string): SPHERICX
Arg [2] : _baseURI (string): https://sphericx.mypinata.cloud/ipfs/Qmcz3dSrNkTmsAogyfrUfBcRhvN6YQ8qajtyYhmfkZKaZ5/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [4] : 5350484552494358000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [6] : 5350484552494358000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000054
Arg [8] : 68747470733a2f2f73706865726963782e6d7970696e6174612e636c6f75642f
Arg [9] : 697066732f516d637a336453724e6b546d73416f67796672556642635268764e
Arg [10] : 3659513871616a747959686d666b5a4b615a352f000000000000000000000000


Deployed Bytecode Sourcemap

76533:1836:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76339:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75074:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58043:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76872:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59555:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59118:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53935:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76715:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60420:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42930:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77727:519;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49447:165;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77533:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76774:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49970:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75802:185;;;;;;;;;;;;;:::i;:::-;;60661;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73970:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54315:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32871:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57851:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76822:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55299:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31058:103;;;;;;;;;;;;;:::i;:::-;;76646:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75404:179;;;;;;;;;;;;;:::i;:::-;;77354:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30407:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48902:145;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42602:139;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58212:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41058:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59831:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52810:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60917:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76681:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58387:327;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49221:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74199:62;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49705:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77231:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78254:106;;;;;;;;;;;;;:::i;:::-;;74268:62;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76924:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60189:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31316:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76339:187;76458:4;76482:36;76506:11;76482:23;:36::i;:::-;76475:43;;76339:187;;;:::o;75074:115::-;30638:12;:10;:12::i;:::-;30627:23;;:7;:5;:7::i;:::-;:23;;;30619:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;75168:13:::1;75152;:29;;;;;;;;;;;;:::i;:::-;;75074:115:::0;:::o;58043:100::-;58097:13;58130:5;58123:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58043:100;:::o;76872:43::-;;;;:::o;59555:204::-;59623:7;59648:16;59656:7;59648;:16::i;:::-;59643:64;;59673:34;;;;;;;;;;;;;;59643:64;59727:15;:24;59743:7;59727:24;;;;;;;;;;;;;;;;;;;;;59720:31;;59555:204;;;:::o;59118:371::-;59191:13;59207:24;59223:7;59207:15;:24::i;:::-;59191:40;;59252:5;59246:11;;:2;:11;;;59242:48;;;59266:24;;;;;;;;;;;;;;59242:48;59323:5;59307:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;59333:37;59350:5;59357:12;:10;:12::i;:::-;59333:16;:37::i;:::-;59332:38;59307:63;59303:138;;;59394:35;;;;;;;;;;;;;;59303:138;59453:28;59462:2;59466:7;59475:5;59453:8;:28::i;:::-;59180:309;59118:371;;:::o;53935:303::-;53979:7;54204:15;:13;:15::i;:::-;54189:12;;54173:13;;:28;:46;54166:53;;53935:303;:::o;76715:50::-;;;;;;;;;;;;;;;;;:::o;60420:170::-;60554:28;60564:4;60570:2;60574:7;60554:9;:28::i;:::-;60420:170;;;:::o;42930:123::-;42996:7;43023:6;:12;43030:4;43023:12;;;;;;;;;;;:22;;;43016:29;;42930:123;;;:::o;77727:519::-;8197:1;8793:7;;:19;;8785:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;8197:1;8926:7;:18;;;;77813:8:::1;;;;;;;;;;;77805:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;76811:4;77863:28;77881:9;77863:13;:11;:13::i;:::-;:17;;:28;;;;:::i;:::-;:42;;77855:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;77966:32;77988:9;77966:17;;:21;;:32;;;;:::i;:::-;77953:9;:45;77945:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;76864:1;78044:42;78076:9;78044:15;:27;78060:10;78044:27;;;;;;;;;;;;;;;;:31;;:42;;;;:::i;:::-;78043:63;;78035:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;78186:9;78155:15;:27;78171:10;78155:27;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;78206:32;78216:10;78228:9;78206;:32::i;:::-;8153:1:::0;9105:7;:22;;;;77727:519;:::o;49447:165::-;49532:30;49548:4;49554:7;49532:15;:30::i;:::-;49573:31;49596:7;49573:12;:18;49586:4;49573:18;;;;;;;;;;;:22;;:31;;;;:::i;:::-;;49447:165;;:::o;77533:186::-;30638:12;:10;:12::i;:::-;30627:23;;:7;:5;:7::i;:::-;:23;;;30619:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;77606:10:::1;;;;;;;;;;;77605:11;77597:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;77664:4;77651:10;;:17;;;;;;;;;;;;;;;;;;77679:32;77689:10;77701:9;77679;:32::i;:::-;77533:186:::0;:::o;76774:41::-;76811:4;76774:41;:::o;49970:174::-;50058:33;50077:4;50083:7;50058:18;:33::i;:::-;50102:34;50128:7;50102:12;:18;50115:4;50102:18;;;;;;;;;;;:25;;:34;;;;:::i;:::-;;49970:174;;:::o;75802:185::-;75855:34;74306:24;75876:12;:10;:12::i;:::-;75855:7;:34::i;:::-;75847:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;75969:10;:8;:10::i;:::-;75802:185::o;60661:::-;60799:39;60816:4;60822:2;60826:7;60799:39;;;;;;;;;;;;:16;:39::i;:::-;60661:185;;;:::o;73970:85::-;74027:20;74033:7;74042:4;74027:5;:20::i;:::-;73970:85;:::o;54315:167::-;54373:7;54406:13;:11;:13::i;:::-;54397:5;:22;54393:58;;54428:23;;;;;;;;;;;;;;54393:58;54469:5;54462:12;;54315:167;;;:::o;32871:86::-;32918:4;32942:7;;;;;;;;;;;32935:14;;32871:86;:::o;57851:125::-;57915:7;57942:21;57955:7;57942:12;:21::i;:::-;:26;;;57935:33;;57851:125;;;:::o;76822:43::-;76864:1;76822:43;:::o;55299:206::-;55363:7;55404:1;55387:19;;:5;:19;;;55383:60;;;55415:28;;;;;;;;;;;;;;55383:60;55469:12;:19;55482:5;55469:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;55461:36;;55454:43;;55299:206;;;:::o;31058:103::-;30638:12;:10;:12::i;:::-;30627:23;;:7;:5;:7::i;:::-;:23;;;30619:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31123:30:::1;31150:1;31123:18;:30::i;:::-;31058:103::o:0;76646:28::-;;;;;;;;;;;;;:::o;75404:179::-;75455:34;74306:24;75476:12;:10;:12::i;:::-;75455:7;:34::i;:::-;75447:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;75567:8;:6;:8::i;:::-;75404:179::o;77354:171::-;30638:12;:10;:12::i;:::-;30627:23;;:7;:5;:7::i;:::-;:23;;;30619:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;77436:4:::1;77425:8;;:15;;;;;;;;;;;;;;;;;;77464;77451:10;:28;;;;77490:27;77499:17;77490:8;:27::i;:::-;77354:171:::0;:::o;30407:87::-;30453:7;30480:6;;;;;;;;;;;30473:13;;30407:87;:::o;48902:145::-;48984:7;49011:28;49033:5;49011:12;:18;49024:4;49011:18;;;;;;;;;;;:21;;:28;;;;:::i;:::-;49004:35;;48902:145;;;;:::o;42602:139::-;42680:4;42704:6;:12;42711:4;42704:12;;;;;;;;;;;:20;;:29;42725:7;42704:29;;;;;;;;;;;;;;;;;;;;;;;;;42697:36;;42602:139;;;;:::o;58212:104::-;58268:13;58301:7;58294:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58212:104;:::o;41058:49::-;41103:4;41058:49;;;:::o;59831:287::-;59942:12;:10;:12::i;:::-;59930:24;;:8;:24;;;59926:54;;;59963:17;;;;;;;;;;;;;;59926:54;60038:8;59993:18;:32;60012:12;:10;:12::i;:::-;59993:32;;;;;;;;;;;;;;;:42;60026:8;59993:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;60091:8;60062:48;;60077:12;:10;:12::i;:::-;60062:48;;;60101:8;60062:48;;;;;;:::i;:::-;;;;;;;;59831:287;;:::o;52810:21::-;;;;;;;;;;;;;:::o;60917:369::-;61084:28;61094:4;61100:2;61104:7;61084:9;:28::i;:::-;61127:15;:2;:13;;;:15::i;:::-;:76;;;;;61147:56;61178:4;61184:2;61188:7;61197:5;61147:30;:56::i;:::-;61146:57;61127:76;61123:156;;;61227:40;;;;;;;;;;;;;;61123:156;60917:369;;;;:::o;76681:25::-;;;;:::o;58387:327::-;58460:13;58491:16;58499:7;58491;:16::i;:::-;58486:59;;58516:29;;;;;;;;;;;;;;58486:59;58558:21;58582:10;:8;:10::i;:::-;58558:34;;58635:1;58616:7;58610:21;:26;;:96;;;;;;;;;;;;;;;;;58663:7;58672:18;:7;:16;:18::i;:::-;58646:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58610:96;58603:103;;;58387:327;;;:::o;49221:134::-;49293:7;49320:27;:12;:18;49333:4;49320:18;;;;;;;;;;;:25;:27::i;:::-;49313:34;;49221:134;;;:::o;74199:62::-;74237:24;74199:62;:::o;49705:170::-;49791:31;49808:4;49814:7;49791:16;:31::i;:::-;49833:34;49859:7;49833:12;:18;49846:4;49833:18;;;;;;;;;;;:25;;:34;;;;:::i;:::-;;49705:170;;:::o;77231:115::-;30638:12;:10;:12::i;:::-;30627:23;;:7;:5;:7::i;:::-;:23;;;30619:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;77329:9:::1;77309:17;:29;;;;77231:115:::0;:::o;78254:106::-;30638:12;:10;:12::i;:::-;30627:23;;:7;:5;:7::i;:::-;:23;;;30619:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78313:6:::1;;;;;;;;;;;78305:24;;:47;78330:21;78305:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;78254:106::o:0;74268:62::-;74306:24;74268:62;:::o;76924:22::-;;;;;;;;;;;;;:::o;60189:164::-;60286:4;60310:18;:25;60329:5;60310:25;;;;;;;;;;;;;;;:35;60336:8;60310:35;;;;;;;;;;;;;;;;;;;;;;;;;60303:42;;60189:164;;;;:::o;31316:201::-;30638:12;:10;:12::i;:::-;30627:23;;:7;:5;:7::i;:::-;:23;;;30619:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31425:1:::1;31405:22;;:8;:22;;;;31397:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31481:28;31500:8;31481:18;:28::i;:::-;31316:201:::0;:::o;45335:112::-;45414:25;45425:4;45431:7;45414:10;:25::i;:::-;45335:112;;:::o;25463:152::-;25533:4;25557:50;25562:3;:10;;25598:5;25582:23;;25574:32;;25557:4;:50::i;:::-;25550:57;;25463:152;;;;:::o;54930:305::-;55032:4;55084:25;55069:40;;;:11;:40;;;;:105;;;;55141:33;55126:48;;;:11;:48;;;;55069:105;:158;;;;55191:36;55215:11;55191:23;:36::i;:::-;55069:158;55049:178;;54930:305;;;:::o;6963:98::-;7016:7;7043:10;7036:17;;6963:98;:::o;61541:174::-;61598:4;61641:7;61622:15;:13;:15::i;:::-;:26;;:53;;;;;61662:13;;61652:7;:23;61622:53;:85;;;;;61680:11;:20;61692:7;61680:20;;;;;;;;;;;:27;;;;;;;;;;;;61679:28;61622:85;61615:92;;61541:174;;;:::o;69698:196::-;69840:2;69813:15;:24;69829:7;69813:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;69878:7;69874:2;69858:28;;69867:5;69858:28;;;;;;;;;;;;69698:196;;;:::o;53709:92::-;53765:7;53792:1;53785:8;;53709:92;:::o;64641:2130::-;64756:35;64794:21;64807:7;64794:12;:21::i;:::-;64756:59;;64854:4;64832:26;;:13;:18;;;:26;;;64828:67;;64867:28;;;;;;;;;;;;;;64828:67;64908:22;64950:4;64934:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;64971:36;64988:4;64994:12;:10;:12::i;:::-;64971:16;:36::i;:::-;64934:73;:126;;;;65048:12;:10;:12::i;:::-;65024:36;;:20;65036:7;65024:11;:20::i;:::-;:36;;;64934:126;64908:153;;65079:17;65074:66;;65105:35;;;;;;;;;;;;;;65074:66;65169:1;65155:16;;:2;:16;;;65151:52;;;65180:23;;;;;;;;;;;;;;65151:52;65216:43;65238:4;65244:2;65248:7;65257:1;65216:21;:43::i;:::-;65324:35;65341:1;65345:7;65354:4;65324:8;:35::i;:::-;65685:1;65655:12;:18;65668:4;65655:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65729:1;65701:12;:16;65714:2;65701:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65747:31;65781:11;:20;65793:7;65781:20;;;;;;;;;;;65747:54;;65832:2;65816:8;:13;;;:18;;;;;;;;;;;;;;;;;;65882:15;65849:8;:23;;;:49;;;;;;;;;;;;;;;;;;66150:19;66182:1;66172:7;:11;66150:33;;66198:31;66232:11;:24;66244:11;66232:24;;;;;;;;;;;66198:58;;66300:1;66275:27;;:8;:13;;;;;;;;;;;;:27;;;66271:384;;;66485:13;;66470:11;:28;66466:174;;66539:4;66523:8;:13;;;:20;;;;;;;;;;;;;;;;;;66592:13;:28;;;66566:8;:23;;;:54;;;;;;;;;;;;;;;;;;66466:174;66271:384;65630:1036;;;66702:7;66698:2;66683:27;;66692:4;66683:27;;;;;;;;;;;;66721:42;66742:4;66748:2;66752:7;66761:1;66721:20;:42::i;:::-;64745:2026;;64641:2130;;;:::o;2765:98::-;2823:7;2854:1;2850;:5;;;;:::i;:::-;2843:12;;2765:98;;;;:::o;3503:::-;3561:7;3592:1;3588;:5;;;;:::i;:::-;3581:12;;3503:98;;;;:::o;61723:104::-;61792:27;61802:2;61806:8;61792:27;;;;;;;;;;;;:9;:27::i;:::-;61723:104;;:::o;43315:232::-;43408:41;43416:18;43429:4;43416:12;:18::i;:::-;43436:12;:10;:12::i;:::-;43408:7;:41::i;:::-;43400:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;43514:25;43525:4;43531:7;43514:10;:25::i;:::-;43315:232;;:::o;44534:218::-;44641:12;:10;:12::i;:::-;44630:23;;:7;:23;;;44622:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;44718:26;44730:4;44736:7;44718:11;:26::i;:::-;44534:218;;:::o;25791:158::-;25864:4;25888:53;25896:3;:10;;25932:5;25916:23;;25908:32;;25888:7;:53::i;:::-;25881:60;;25791:158;;;;:::o;33930:120::-;33474:8;:6;:8::i;:::-;33466:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;33999:5:::1;33989:7;;:15;;;;;;;;;;;;;;;;;;34020:22;34029:12;:10;:12::i;:::-;34020:22;;;;;;:::i;:::-;;;;;;;;33930:120::o:0;67172:2408::-;67252:35;67290:21;67303:7;67290:12;:21::i;:::-;67252:59;;67324:12;67339:13;:18;;;67324:33;;67374:13;67370:290;;;67404:22;67446:4;67430:20;;:12;:10;:12::i;:::-;:20;;;:77;;;;67471:36;67488:4;67494:12;:10;:12::i;:::-;67471:16;:36::i;:::-;67430:77;:134;;;;67552:12;:10;:12::i;:::-;67528:36;;:20;67540:7;67528:11;:20::i;:::-;:36;;;67430:134;67404:161;;67587:17;67582:66;;67613:35;;;;;;;;;;;;;;67582:66;67389:271;67370:290;67672:51;67694:4;67708:1;67712:7;67721:1;67672:21;:51::i;:::-;67788:35;67805:1;67809:7;67818:4;67788:8;:35::i;:::-;68119:31;68153:12;:18;68166:4;68153:18;;;;;;;;;;;;;;;68119:52;;68209:1;68186:11;:19;;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68253:1;68225:11;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68353:31;68387:11;:20;68399:7;68387:20;;;;;;;;;;;68353:54;;68438:4;68422:8;:13;;;:20;;;;;;;;;;;;;;;;;;68490:15;68457:8;:23;;;:49;;;;;;;;;;;;;;;;;;68539:4;68521:8;:15;;;:22;;;;;;;;;;;;;;;;;;68791:19;68823:1;68813:7;:11;68791:33;;68839:31;68873:11;:24;68885:11;68873:24;;;;;;;;;;;68839:58;;68941:1;68916:27;;:8;:13;;;;;;;;;;;;:27;;;68912:384;;;69126:13;;69111:11;:28;69107:174;;69180:4;69164:8;:13;;;:20;;;;;;;;;;;;;;;;;;69233:13;:28;;;69207:8;:23;;;:54;;;;;;;;;;;;;;;;;;69107:174;68912:384;68094:1213;;;;69351:7;69347:1;69324:35;;69333:4;69324:35;;;;;;;;;;;;69370:50;69391:4;69405:1;69409:7;69418:1;69370:20;:50::i;:::-;69547:12;;:14;;;;;;;;;;;;;67241:2339;;67172:2408;;:::o;56680:1109::-;56742:21;;:::i;:::-;56776:12;56791:7;56776:22;;56859:4;56840:15;:13;:15::i;:::-;:23;;:47;;;;;56874:13;;56867:4;:20;56840:47;56836:886;;;56908:31;56942:11;:17;56954:4;56942:17;;;;;;;;;;;56908:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56983:9;:16;;;56978:729;;57054:1;57028:28;;:9;:14;;;:28;;;57024:101;;57092:9;57085:16;;;;;;57024:101;57427:261;57434:4;57427:261;;;57467:6;;;;;;;;57512:11;:17;57524:4;57512:17;;;;;;;;;;;57500:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57586:1;57560:28;;:9;:14;;;:28;;;57556:109;;57628:9;57621:16;;;;;;57556:109;57427:261;;;56978:729;56889:833;56836:886;57750:31;;;;;;;;;;;;;;56680:1109;;;;:::o;31677:191::-;31751:16;31770:6;;;;;;;;;;;31751:25;;31796:8;31787:6;;:17;;;;;;;;;;;;;;;;;;31851:8;31820:40;;31841:8;31820:40;;;;;;;;;;;;31740:128;31677:191;:::o;33671:118::-;33197:8;:6;:8::i;:::-;33196:9;33188:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;33741:4:::1;33731:7;;:14;;;;;;;;;;;;;;;;;;33761:20;33768:12;:10;:12::i;:::-;33761:20;;;;;;:::i;:::-;;;;;;;;33671:118::o:0;26749:158::-;26823:7;26874:22;26878:3;:10;;26890:5;26874:3;:22::i;:::-;26866:31;;26843:56;;26749:158;;;;:::o;10415:422::-;10475:4;10683:12;10794:7;10782:20;10774:28;;10828:1;10821:4;:8;10814:15;;;10415:422;;;:::o;70386:667::-;70549:4;70586:2;70570:36;;;70607:12;:10;:12::i;:::-;70621:4;70627:7;70636:5;70570:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;70566:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70821:1;70804:6;:13;:18;70800:235;;;70850:40;;;;;;;;;;;;;;70800:235;70993:6;70987:13;70978:6;70974:2;70970:15;70963:38;70566:480;70699:45;;;70689:55;;;:6;:55;;;;70682:62;;;70386:667;;;;;;:::o;74952:114::-;75012:13;75045;75038:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74952:114;:::o;17858:723::-;17914:13;18144:1;18135:5;:10;18131:53;;;18162:10;;;;;;;;;;;;;;;;;;;;;18131:53;18194:12;18209:5;18194:20;;18225:14;18250:78;18265:1;18257:4;:9;18250:78;;18283:8;;;;;:::i;:::-;;;;18314:2;18306:10;;;;;:::i;:::-;;;18250:78;;;18338:19;18370:6;18360:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18338:39;;18388:154;18404:1;18395:5;:10;18388:154;;18432:1;18422:11;;;;;:::i;:::-;;;18499:2;18491:5;:10;;;;:::i;:::-;18478:2;:24;;;;:::i;:::-;18465:39;;18448:6;18455;18448:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;18528:2;18519:11;;;;;:::i;:::-;;;18388:154;;;18566:6;18552:21;;;;;17858:723;;;;:::o;26288:117::-;26351:7;26378:19;26386:3;:10;;26378:7;:19::i;:::-;26371:26;;26288:117;;;:::o;43792:235::-;43886:41;43894:18;43907:4;43894:12;:18::i;:::-;43914:12;:10;:12::i;:::-;43886:7;:41::i;:::-;43878:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;43993:26;44005:4;44011:7;43993:11;:26::i;:::-;43792:235;;:::o;45782:229::-;45857:22;45865:4;45871:7;45857;:22::i;:::-;45852:152;;45928:4;45896:6;:12;45903:4;45896:12;;;;;;;;;;;:20;;:29;45917:7;45896:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;45979:12;:10;:12::i;:::-;45952:40;;45970:7;45952:40;;45964:4;45952:40;;;;;;;;;;45852:152;45782:229;;:::o;20527:414::-;20590:4;20612:21;20622:3;20627:5;20612:9;:21::i;:::-;20607:327;;20650:3;:11;;20667:5;20650:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20833:3;:11;;:18;;;;20811:3;:12;;:19;20824:5;20811:19;;;;;;;;;;;:40;;;;20873:4;20866:11;;;;20607:327;20917:5;20910:12;;20527:414;;;;;:::o;48076:227::-;48161:4;48200:42;48185:57;;;:11;:57;;;;:110;;;;48259:36;48283:11;48259:23;:36::i;:::-;48185:110;48178:117;;48076:227;;;:::o;75995:272::-;76198:61;76226:4;76232:2;76236:12;76250:8;76198:27;:61::i;:::-;75995:272;;;;:::o;72519:158::-;;;;;:::o;62190:163::-;62313:32;62319:2;62323:8;62333:5;62340:4;62313:5;:32::i;:::-;62190:163;;;:::o;46019:230::-;46094:22;46102:4;46108:7;46094;:22::i;:::-;46090:152;;;46165:5;46133:6;:12;46140:4;46133:12;;;;;;;;;;;:20;;:29;46154:7;46133:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;46217:12;:10;:12::i;:::-;46190:40;;46208:7;46190:40;;46202:4;46190:40;;;;;;;;;;46090:152;46019:230;;:::o;21117:1544::-;21183:4;21301:18;21322:3;:12;;:19;21335:5;21322:19;;;;;;;;;;;;21301:40;;21372:1;21358:10;:15;21354:1300;;21720:21;21757:1;21744:10;:14;;;;:::i;:::-;21720:38;;21773:17;21814:1;21793:3;:11;;:18;;;;:22;;;;:::i;:::-;21773:42;;22060:17;22080:3;:11;;22092:9;22080:22;;;;;;;;:::i;:::-;;;;;;;;;;22060:42;;22226:9;22197:3;:11;;22209:13;22197:26;;;;;;;;:::i;:::-;;;;;;;;;:38;;;;22345:1;22329:13;:17;;;;:::i;:::-;22303:3;:12;;:23;22316:9;22303:23;;;;;;;;;;;:43;;;;22455:3;:11;;:17;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22550:3;:12;;:19;22563:5;22550:19;;;;;;;;;;;22543:26;;;22593:4;22586:11;;;;;;;;21354:1300;22637:5;22630:12;;;21117:1544;;;;;:::o;23415:204::-;23482:7;23531:5;23510:3;:11;;:18;;;;:26;23502:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23593:3;:11;;23605:5;23593:18;;;;;;;;:::i;:::-;;;;;;;;;;23586:25;;23415:204;;;;:::o;22962:109::-;23018:7;23045:3;:11;;:18;;;;23038:25;;22962:109;;;:::o;22747:129::-;22820:4;22867:1;22844:3;:12;;:19;22857:5;22844:19;;;;;;;;;;;;:24;;22837:31;;22747:129;;;;:::o;42293:217::-;42378:4;42417:32;42402:47;;;:11;:47;;;;:100;;;;42466:36;42490:11;42466:23;:36::i;:::-;42402:100;42395:107;;42293:217;;;:::o;73291:303::-;73477:61;73505:4;73511:2;73515:12;73529:8;73477:27;:61::i;:::-;73553:8;:6;:8::i;:::-;73549:37;;;73570:16;;;;;;;;;;;;;;73549:37;73291:303;;;;:::o;62612:1775::-;62751:20;62774:13;;62751:36;;62816:1;62802:16;;:2;:16;;;62798:48;;;62827:19;;;;;;;;;;;;;;62798:48;62873:1;62861:8;:13;62857:44;;;62883:18;;;;;;;;;;;;;;62857:44;62914:61;62944:1;62948:2;62952:12;62966:8;62914:21;:61::i;:::-;63287:8;63252:12;:16;63265:2;63252:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63351:8;63311:12;:16;63324:2;63311:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63410:2;63377:11;:25;63389:12;63377:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;63477:15;63427:11;:25;63439:12;63427:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;63510:20;63533:12;63510:35;;63560:11;63589:8;63574:12;:23;63560:37;;63618:4;:23;;;;;63626:15;:2;:13;;;:15::i;:::-;63618:23;63614:641;;;63662:314;63718:12;63714:2;63693:38;;63710:1;63693:38;;;;;;;;;;;;63759:69;63798:1;63802:2;63806:14;;;;;;63822:5;63759:30;:69::i;:::-;63754:174;;63864:40;;;;;;;;;;;;;;63754:174;63971:3;63955:12;:19;;63662:314;;64057:12;64040:13;;:29;64036:43;;64071:8;;;64036:43;63614:641;;;64120:120;64176:14;;;;;;64172:2;64151:40;;64168:1;64151:40;;;;;;;;;;;;64235:3;64219:12;:19;;64120:120;;63614:641;64285:12;64269:13;:28;;;;63227:1082;;64319:60;64348:1;64352:2;64356:12;64370:8;64319:20;:60::i;:::-;62740:1647;62612:1775;;;;:::o;38701:157::-;38786:4;38825:25;38810:40;;;:11;:40;;;;38803:47;;38701:157;;;:::o;71701:159::-;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:139::-;1171:5;1209:6;1196:20;1187:29;;1225:33;1252:5;1225:33;:::i;:::-;1125:139;;;;:::o;1270:137::-;1315:5;1353:6;1340:20;1331:29;;1369:32;1395:5;1369:32;:::i;:::-;1270:137;;;;:::o;1413:141::-;1469:5;1500:6;1494:13;1485:22;;1516:32;1542:5;1516:32;:::i;:::-;1413:141;;;;:::o;1573:338::-;1628:5;1677:3;1670:4;1662:6;1658:17;1654:27;1644:122;;1685:79;;:::i;:::-;1644:122;1802:6;1789:20;1827:78;1901:3;1893:6;1886:4;1878:6;1874:17;1827:78;:::i;:::-;1818:87;;1634:277;1573:338;;;;:::o;1931:340::-;1987:5;2036:3;2029:4;2021:6;2017:17;2013:27;2003:122;;2044:79;;:::i;:::-;2003:122;2161:6;2148:20;2186:79;2261:3;2253:6;2246:4;2238:6;2234:17;2186:79;:::i;:::-;2177:88;;1993:278;1931:340;;;;:::o;2277:139::-;2323:5;2361:6;2348:20;2339:29;;2377:33;2404:5;2377:33;:::i;:::-;2277:139;;;;:::o;2422:329::-;2481:6;2530:2;2518:9;2509:7;2505:23;2501:32;2498:119;;;2536:79;;:::i;:::-;2498:119;2656:1;2681:53;2726:7;2717:6;2706:9;2702:22;2681:53;:::i;:::-;2671:63;;2627:117;2422:329;;;;:::o;2757:474::-;2825:6;2833;2882:2;2870:9;2861:7;2857:23;2853:32;2850:119;;;2888:79;;:::i;:::-;2850:119;3008:1;3033:53;3078:7;3069:6;3058:9;3054:22;3033:53;:::i;:::-;3023:63;;2979:117;3135:2;3161:53;3206:7;3197:6;3186:9;3182:22;3161:53;:::i;:::-;3151:63;;3106:118;2757:474;;;;;:::o;3237:619::-;3314:6;3322;3330;3379:2;3367:9;3358:7;3354:23;3350:32;3347:119;;;3385:79;;:::i;:::-;3347:119;3505:1;3530:53;3575:7;3566:6;3555:9;3551:22;3530:53;:::i;:::-;3520:63;;3476:117;3632:2;3658:53;3703:7;3694:6;3683:9;3679:22;3658:53;:::i;:::-;3648:63;;3603:118;3760:2;3786:53;3831:7;3822:6;3811:9;3807:22;3786:53;:::i;:::-;3776:63;;3731:118;3237:619;;;;;:::o;3862:943::-;3957:6;3965;3973;3981;4030:3;4018:9;4009:7;4005:23;4001:33;3998:120;;;4037:79;;:::i;:::-;3998:120;4157:1;4182:53;4227:7;4218:6;4207:9;4203:22;4182:53;:::i;:::-;4172:63;;4128:117;4284:2;4310:53;4355:7;4346:6;4335:9;4331:22;4310:53;:::i;:::-;4300:63;;4255:118;4412:2;4438:53;4483:7;4474:6;4463:9;4459:22;4438:53;:::i;:::-;4428:63;;4383:118;4568:2;4557:9;4553:18;4540:32;4599:18;4591:6;4588:30;4585:117;;;4621:79;;:::i;:::-;4585:117;4726:62;4780:7;4771:6;4760:9;4756:22;4726:62;:::i;:::-;4716:72;;4511:287;3862:943;;;;;;;:::o;4811:468::-;4876:6;4884;4933:2;4921:9;4912:7;4908:23;4904:32;4901:119;;;4939:79;;:::i;:::-;4901:119;5059:1;5084:53;5129:7;5120:6;5109:9;5105:22;5084:53;:::i;:::-;5074:63;;5030:117;5186:2;5212:50;5254:7;5245:6;5234:9;5230:22;5212:50;:::i;:::-;5202:60;;5157:115;4811:468;;;;;:::o;5285:474::-;5353:6;5361;5410:2;5398:9;5389:7;5385:23;5381:32;5378:119;;;5416:79;;:::i;:::-;5378:119;5536:1;5561:53;5606:7;5597:6;5586:9;5582:22;5561:53;:::i;:::-;5551:63;;5507:117;5663:2;5689:53;5734:7;5725:6;5714:9;5710:22;5689:53;:::i;:::-;5679:63;;5634:118;5285:474;;;;;:::o;5765:329::-;5824:6;5873:2;5861:9;5852:7;5848:23;5844:32;5841:119;;;5879:79;;:::i;:::-;5841:119;5999:1;6024:53;6069:7;6060:6;6049:9;6045:22;6024:53;:::i;:::-;6014:63;;5970:117;5765:329;;;;:::o;6100:474::-;6168:6;6176;6225:2;6213:9;6204:7;6200:23;6196:32;6193:119;;;6231:79;;:::i;:::-;6193:119;6351:1;6376:53;6421:7;6412:6;6401:9;6397:22;6376:53;:::i;:::-;6366:63;;6322:117;6478:2;6504:53;6549:7;6540:6;6529:9;6525:22;6504:53;:::i;:::-;6494:63;;6449:118;6100:474;;;;;:::o;6580:::-;6648:6;6656;6705:2;6693:9;6684:7;6680:23;6676:32;6673:119;;;6711:79;;:::i;:::-;6673:119;6831:1;6856:53;6901:7;6892:6;6881:9;6877:22;6856:53;:::i;:::-;6846:63;;6802:117;6958:2;6984:53;7029:7;7020:6;7009:9;7005:22;6984:53;:::i;:::-;6974:63;;6929:118;6580:474;;;;;:::o;7060:327::-;7118:6;7167:2;7155:9;7146:7;7142:23;7138:32;7135:119;;;7173:79;;:::i;:::-;7135:119;7293:1;7318:52;7362:7;7353:6;7342:9;7338:22;7318:52;:::i;:::-;7308:62;;7264:116;7060:327;;;;:::o;7393:349::-;7462:6;7511:2;7499:9;7490:7;7486:23;7482:32;7479:119;;;7517:79;;:::i;:::-;7479:119;7637:1;7662:63;7717:7;7708:6;7697:9;7693:22;7662:63;:::i;:::-;7652:73;;7608:127;7393:349;;;;:::o;7748:509::-;7817:6;7866:2;7854:9;7845:7;7841:23;7837:32;7834:119;;;7872:79;;:::i;:::-;7834:119;8020:1;8009:9;8005:17;7992:31;8050:18;8042:6;8039:30;8036:117;;;8072:79;;:::i;:::-;8036:117;8177:63;8232:7;8223:6;8212:9;8208:22;8177:63;:::i;:::-;8167:73;;7963:287;7748:509;;;;:::o;8263:329::-;8322:6;8371:2;8359:9;8350:7;8346:23;8342:32;8339:119;;;8377:79;;:::i;:::-;8339:119;8497:1;8522:53;8567:7;8558:6;8547:9;8543:22;8522:53;:::i;:::-;8512:63;;8468:117;8263:329;;;;:::o;8598:118::-;8685:24;8703:5;8685:24;:::i;:::-;8680:3;8673:37;8598:118;;:::o;8722:109::-;8803:21;8818:5;8803:21;:::i;:::-;8798:3;8791:34;8722:109;;:::o;8837:118::-;8924:24;8942:5;8924:24;:::i;:::-;8919:3;8912:37;8837:118;;:::o;8961:360::-;9047:3;9075:38;9107:5;9075:38;:::i;:::-;9129:70;9192:6;9187:3;9129:70;:::i;:::-;9122:77;;9208:52;9253:6;9248:3;9241:4;9234:5;9230:16;9208:52;:::i;:::-;9285:29;9307:6;9285:29;:::i;:::-;9280:3;9276:39;9269:46;;9051:270;8961:360;;;;:::o;9327:364::-;9415:3;9443:39;9476:5;9443:39;:::i;:::-;9498:71;9562:6;9557:3;9498:71;:::i;:::-;9491:78;;9578:52;9623:6;9618:3;9611:4;9604:5;9600:16;9578:52;:::i;:::-;9655:29;9677:6;9655:29;:::i;:::-;9650:3;9646:39;9639:46;;9419:272;9327:364;;;;:::o;9697:377::-;9803:3;9831:39;9864:5;9831:39;:::i;:::-;9886:89;9968:6;9963:3;9886:89;:::i;:::-;9879:96;;9984:52;10029:6;10024:3;10017:4;10010:5;10006:16;9984:52;:::i;:::-;10061:6;10056:3;10052:16;10045:23;;9807:267;9697:377;;;;:::o;10080:366::-;10222:3;10243:67;10307:2;10302:3;10243:67;:::i;:::-;10236:74;;10319:93;10408:3;10319:93;:::i;:::-;10437:2;10432:3;10428:12;10421:19;;10080:366;;;:::o;10452:::-;10594:3;10615:67;10679:2;10674:3;10615:67;:::i;:::-;10608:74;;10691:93;10780:3;10691:93;:::i;:::-;10809:2;10804:3;10800:12;10793:19;;10452:366;;;:::o;10824:::-;10966:3;10987:67;11051:2;11046:3;10987:67;:::i;:::-;10980:74;;11063:93;11152:3;11063:93;:::i;:::-;11181:2;11176:3;11172:12;11165:19;;10824:366;;;:::o;11196:::-;11338:3;11359:67;11423:2;11418:3;11359:67;:::i;:::-;11352:74;;11435:93;11524:3;11435:93;:::i;:::-;11553:2;11548:3;11544:12;11537:19;;11196:366;;;:::o;11568:::-;11710:3;11731:67;11795:2;11790:3;11731:67;:::i;:::-;11724:74;;11807:93;11896:3;11807:93;:::i;:::-;11925:2;11920:3;11916:12;11909:19;;11568:366;;;:::o;11940:::-;12082:3;12103:67;12167:2;12162:3;12103:67;:::i;:::-;12096:74;;12179:93;12268:3;12179:93;:::i;:::-;12297:2;12292:3;12288:12;12281:19;;11940:366;;;:::o;12312:::-;12454:3;12475:67;12539:2;12534:3;12475:67;:::i;:::-;12468:74;;12551:93;12640:3;12551:93;:::i;:::-;12669:2;12664:3;12660:12;12653:19;;12312:366;;;:::o;12684:::-;12826:3;12847:67;12911:2;12906:3;12847:67;:::i;:::-;12840:74;;12923:93;13012:3;12923:93;:::i;:::-;13041:2;13036:3;13032:12;13025:19;;12684:366;;;:::o;13056:::-;13198:3;13219:67;13283:2;13278:3;13219:67;:::i;:::-;13212:74;;13295:93;13384:3;13295:93;:::i;:::-;13413:2;13408:3;13404:12;13397:19;;13056:366;;;:::o;13428:::-;13570:3;13591:67;13655:2;13650:3;13591:67;:::i;:::-;13584:74;;13667:93;13756:3;13667:93;:::i;:::-;13785:2;13780:3;13776:12;13769:19;;13428:366;;;:::o;13800:400::-;13960:3;13981:84;14063:1;14058:3;13981:84;:::i;:::-;13974:91;;14074:93;14163:3;14074:93;:::i;:::-;14192:1;14187:3;14183:11;14176:18;;13800:400;;;:::o;14206:366::-;14348:3;14369:67;14433:2;14428:3;14369:67;:::i;:::-;14362:74;;14445:93;14534:3;14445:93;:::i;:::-;14563:2;14558:3;14554:12;14547:19;;14206:366;;;:::o;14578:::-;14720:3;14741:67;14805:2;14800:3;14741:67;:::i;:::-;14734:74;;14817:93;14906:3;14817:93;:::i;:::-;14935:2;14930:3;14926:12;14919:19;;14578:366;;;:::o;14950:::-;15092:3;15113:67;15177:2;15172:3;15113:67;:::i;:::-;15106:74;;15189:93;15278:3;15189:93;:::i;:::-;15307:2;15302:3;15298:12;15291:19;;14950:366;;;:::o;15322:::-;15464:3;15485:67;15549:2;15544:3;15485:67;:::i;:::-;15478:74;;15561:93;15650:3;15561:93;:::i;:::-;15679:2;15674:3;15670:12;15663:19;;15322:366;;;:::o;15694:::-;15836:3;15857:67;15921:2;15916:3;15857:67;:::i;:::-;15850:74;;15933:93;16022:3;15933:93;:::i;:::-;16051:2;16046:3;16042:12;16035:19;;15694:366;;;:::o;16066:::-;16208:3;16229:67;16293:2;16288:3;16229:67;:::i;:::-;16222:74;;16305:93;16394:3;16305:93;:::i;:::-;16423:2;16418:3;16414:12;16407:19;;16066:366;;;:::o;16438:118::-;16525:24;16543:5;16525:24;:::i;:::-;16520:3;16513:37;16438:118;;:::o;16562:701::-;16843:3;16865:95;16956:3;16947:6;16865:95;:::i;:::-;16858:102;;16977:95;17068:3;17059:6;16977:95;:::i;:::-;16970:102;;17089:148;17233:3;17089:148;:::i;:::-;17082:155;;17254:3;17247:10;;16562:701;;;;;:::o;17269:222::-;17362:4;17400:2;17389:9;17385:18;17377:26;;17413:71;17481:1;17470:9;17466:17;17457:6;17413:71;:::i;:::-;17269:222;;;;:::o;17497:640::-;17692:4;17730:3;17719:9;17715:19;17707:27;;17744:71;17812:1;17801:9;17797:17;17788:6;17744:71;:::i;:::-;17825:72;17893:2;17882:9;17878:18;17869:6;17825:72;:::i;:::-;17907;17975:2;17964:9;17960:18;17951:6;17907:72;:::i;:::-;18026:9;18020:4;18016:20;18011:2;18000:9;17996:18;17989:48;18054:76;18125:4;18116:6;18054:76;:::i;:::-;18046:84;;17497:640;;;;;;;:::o;18143:210::-;18230:4;18268:2;18257:9;18253:18;18245:26;;18281:65;18343:1;18332:9;18328:17;18319:6;18281:65;:::i;:::-;18143:210;;;;:::o;18359:222::-;18452:4;18490:2;18479:9;18475:18;18467:26;;18503:71;18571:1;18560:9;18556:17;18547:6;18503:71;:::i;:::-;18359:222;;;;:::o;18587:313::-;18700:4;18738:2;18727:9;18723:18;18715:26;;18787:9;18781:4;18777:20;18773:1;18762:9;18758:17;18751:47;18815:78;18888:4;18879:6;18815:78;:::i;:::-;18807:86;;18587:313;;;;:::o;18906:419::-;19072:4;19110:2;19099:9;19095:18;19087:26;;19159:9;19153:4;19149:20;19145:1;19134:9;19130:17;19123:47;19187:131;19313:4;19187:131;:::i;:::-;19179:139;;18906:419;;;:::o;19331:::-;19497:4;19535:2;19524:9;19520:18;19512:26;;19584:9;19578:4;19574:20;19570:1;19559:9;19555:17;19548:47;19612:131;19738:4;19612:131;:::i;:::-;19604:139;;19331:419;;;:::o;19756:::-;19922:4;19960:2;19949:9;19945:18;19937:26;;20009:9;20003:4;19999:20;19995:1;19984:9;19980:17;19973:47;20037:131;20163:4;20037:131;:::i;:::-;20029:139;;19756:419;;;:::o;20181:::-;20347:4;20385:2;20374:9;20370:18;20362:26;;20434:9;20428:4;20424:20;20420:1;20409:9;20405:17;20398:47;20462:131;20588:4;20462:131;:::i;:::-;20454:139;;20181:419;;;:::o;20606:::-;20772:4;20810:2;20799:9;20795:18;20787:26;;20859:9;20853:4;20849:20;20845:1;20834:9;20830:17;20823:47;20887:131;21013:4;20887:131;:::i;:::-;20879:139;;20606:419;;;:::o;21031:::-;21197:4;21235:2;21224:9;21220:18;21212:26;;21284:9;21278:4;21274:20;21270:1;21259:9;21255:17;21248:47;21312:131;21438:4;21312:131;:::i;:::-;21304:139;;21031:419;;;:::o;21456:::-;21622:4;21660:2;21649:9;21645:18;21637:26;;21709:9;21703:4;21699:20;21695:1;21684:9;21680:17;21673:47;21737:131;21863:4;21737:131;:::i;:::-;21729:139;;21456:419;;;:::o;21881:::-;22047:4;22085:2;22074:9;22070:18;22062:26;;22134:9;22128:4;22124:20;22120:1;22109:9;22105:17;22098:47;22162:131;22288:4;22162:131;:::i;:::-;22154:139;;21881:419;;;:::o;22306:::-;22472:4;22510:2;22499:9;22495:18;22487:26;;22559:9;22553:4;22549:20;22545:1;22534:9;22530:17;22523:47;22587:131;22713:4;22587:131;:::i;:::-;22579:139;;22306:419;;;:::o;22731:::-;22897:4;22935:2;22924:9;22920:18;22912:26;;22984:9;22978:4;22974:20;22970:1;22959:9;22955:17;22948:47;23012:131;23138:4;23012:131;:::i;:::-;23004:139;;22731:419;;;:::o;23156:::-;23322:4;23360:2;23349:9;23345:18;23337:26;;23409:9;23403:4;23399:20;23395:1;23384:9;23380:17;23373:47;23437:131;23563:4;23437:131;:::i;:::-;23429:139;;23156:419;;;:::o;23581:::-;23747:4;23785:2;23774:9;23770:18;23762:26;;23834:9;23828:4;23824:20;23820:1;23809:9;23805:17;23798:47;23862:131;23988:4;23862:131;:::i;:::-;23854:139;;23581:419;;;:::o;24006:::-;24172:4;24210:2;24199:9;24195:18;24187:26;;24259:9;24253:4;24249:20;24245:1;24234:9;24230:17;24223:47;24287:131;24413:4;24287:131;:::i;:::-;24279:139;;24006:419;;;:::o;24431:::-;24597:4;24635:2;24624:9;24620:18;24612:26;;24684:9;24678:4;24674:20;24670:1;24659:9;24655:17;24648:47;24712:131;24838:4;24712:131;:::i;:::-;24704:139;;24431:419;;;:::o;24856:::-;25022:4;25060:2;25049:9;25045:18;25037:26;;25109:9;25103:4;25099:20;25095:1;25084:9;25080:17;25073:47;25137:131;25263:4;25137:131;:::i;:::-;25129:139;;24856:419;;;:::o;25281:::-;25447:4;25485:2;25474:9;25470:18;25462:26;;25534:9;25528:4;25524:20;25520:1;25509:9;25505:17;25498:47;25562:131;25688:4;25562:131;:::i;:::-;25554:139;;25281:419;;;:::o;25706:222::-;25799:4;25837:2;25826:9;25822:18;25814:26;;25850:71;25918:1;25907:9;25903:17;25894:6;25850:71;:::i;:::-;25706:222;;;;:::o;25934:129::-;25968:6;25995:20;;:::i;:::-;25985:30;;26024:33;26052:4;26044:6;26024:33;:::i;:::-;25934:129;;;:::o;26069:75::-;26102:6;26135:2;26129:9;26119:19;;26069:75;:::o;26150:307::-;26211:4;26301:18;26293:6;26290:30;26287:56;;;26323:18;;:::i;:::-;26287:56;26361:29;26383:6;26361:29;:::i;:::-;26353:37;;26445:4;26439;26435:15;26427:23;;26150:307;;;:::o;26463:308::-;26525:4;26615:18;26607:6;26604:30;26601:56;;;26637:18;;:::i;:::-;26601:56;26675:29;26697:6;26675:29;:::i;:::-;26667:37;;26759:4;26753;26749:15;26741:23;;26463:308;;;:::o;26777:98::-;26828:6;26862:5;26856:12;26846:22;;26777:98;;;:::o;26881:99::-;26933:6;26967:5;26961:12;26951:22;;26881:99;;;:::o;26986:168::-;27069:11;27103:6;27098:3;27091:19;27143:4;27138:3;27134:14;27119:29;;26986:168;;;;:::o;27160:169::-;27244:11;27278:6;27273:3;27266:19;27318:4;27313:3;27309:14;27294:29;;27160:169;;;;:::o;27335:148::-;27437:11;27474:3;27459:18;;27335:148;;;;:::o;27489:305::-;27529:3;27548:20;27566:1;27548:20;:::i;:::-;27543:25;;27582:20;27600:1;27582:20;:::i;:::-;27577:25;;27736:1;27668:66;27664:74;27661:1;27658:81;27655:107;;;27742:18;;:::i;:::-;27655:107;27786:1;27783;27779:9;27772:16;;27489:305;;;;:::o;27800:185::-;27840:1;27857:20;27875:1;27857:20;:::i;:::-;27852:25;;27891:20;27909:1;27891:20;:::i;:::-;27886:25;;27930:1;27920:35;;27935:18;;:::i;:::-;27920:35;27977:1;27974;27970:9;27965:14;;27800:185;;;;:::o;27991:348::-;28031:7;28054:20;28072:1;28054:20;:::i;:::-;28049:25;;28088:20;28106:1;28088:20;:::i;:::-;28083:25;;28276:1;28208:66;28204:74;28201:1;28198:81;28193:1;28186:9;28179:17;28175:105;28172:131;;;28283:18;;:::i;:::-;28172:131;28331:1;28328;28324:9;28313:20;;27991:348;;;;:::o;28345:191::-;28385:4;28405:20;28423:1;28405:20;:::i;:::-;28400:25;;28439:20;28457:1;28439:20;:::i;:::-;28434:25;;28478:1;28475;28472:8;28469:34;;;28483:18;;:::i;:::-;28469:34;28528:1;28525;28521:9;28513:17;;28345:191;;;;:::o;28542:96::-;28579:7;28608:24;28626:5;28608:24;:::i;:::-;28597:35;;28542:96;;;:::o;28644:90::-;28678:7;28721:5;28714:13;28707:21;28696:32;;28644:90;;;:::o;28740:77::-;28777:7;28806:5;28795:16;;28740:77;;;:::o;28823:149::-;28859:7;28899:66;28892:5;28888:78;28877:89;;28823:149;;;:::o;28978:126::-;29015:7;29055:42;29048:5;29044:54;29033:65;;28978:126;;;:::o;29110:77::-;29147:7;29176:5;29165:16;;29110:77;;;:::o;29193:154::-;29277:6;29272:3;29267;29254:30;29339:1;29330:6;29325:3;29321:16;29314:27;29193:154;;;:::o;29353:307::-;29421:1;29431:113;29445:6;29442:1;29439:13;29431:113;;;29530:1;29525:3;29521:11;29515:18;29511:1;29506:3;29502:11;29495:39;29467:2;29464:1;29460:10;29455:15;;29431:113;;;29562:6;29559:1;29556:13;29553:101;;;29642:1;29633:6;29628:3;29624:16;29617:27;29553:101;29402:258;29353:307;;;:::o;29666:320::-;29710:6;29747:1;29741:4;29737:12;29727:22;;29794:1;29788:4;29784:12;29815:18;29805:81;;29871:4;29863:6;29859:17;29849:27;;29805:81;29933:2;29925:6;29922:14;29902:18;29899:38;29896:84;;;29952:18;;:::i;:::-;29896:84;29717:269;29666:320;;;:::o;29992:281::-;30075:27;30097:4;30075:27;:::i;:::-;30067:6;30063:40;30205:6;30193:10;30190:22;30169:18;30157:10;30154:34;30151:62;30148:88;;;30216:18;;:::i;:::-;30148:88;30256:10;30252:2;30245:22;30035:238;29992:281;;:::o;30279:233::-;30318:3;30341:24;30359:5;30341:24;:::i;:::-;30332:33;;30387:66;30380:5;30377:77;30374:103;;;30457:18;;:::i;:::-;30374:103;30504:1;30497:5;30493:13;30486:20;;30279:233;;;:::o;30518:176::-;30550:1;30567:20;30585:1;30567:20;:::i;:::-;30562:25;;30601:20;30619:1;30601:20;:::i;:::-;30596:25;;30640:1;30630:35;;30645:18;;:::i;:::-;30630:35;30686:1;30683;30679:9;30674:14;;30518:176;;;;:::o;30700:180::-;30748:77;30745:1;30738:88;30845:4;30842:1;30835:15;30869:4;30866:1;30859:15;30886:180;30934:77;30931:1;30924:88;31031:4;31028:1;31021:15;31055:4;31052:1;31045:15;31072:180;31120:77;31117:1;31110:88;31217:4;31214:1;31207:15;31241:4;31238:1;31231:15;31258:180;31306:77;31303:1;31296:88;31403:4;31400:1;31393:15;31427:4;31424:1;31417:15;31444:180;31492:77;31489:1;31482:88;31589:4;31586:1;31579:15;31613:4;31610:1;31603:15;31630:180;31678:77;31675:1;31668:88;31775:4;31772:1;31765:15;31799:4;31796:1;31789:15;31816:117;31925:1;31922;31915:12;31939:117;32048:1;32045;32038:12;32062:117;32171:1;32168;32161:12;32185:117;32294:1;32291;32284:12;32308:102;32349:6;32400:2;32396:7;32391:2;32384:5;32380:14;32376:28;32366:38;;32308:102;;;:::o;32416:221::-;32556:34;32552:1;32544:6;32540:14;32533:58;32625:4;32620:2;32612:6;32608:15;32601:29;32416:221;:::o;32643:234::-;32783:34;32779:1;32771:6;32767:14;32760:58;32852:17;32847:2;32839:6;32835:15;32828:42;32643:234;:::o;32883:170::-;33023:22;33019:1;33011:6;33007:14;33000:46;32883:170;:::o;33059:171::-;33199:23;33195:1;33187:6;33183:14;33176:47;33059:171;:::o;33236:225::-;33376:34;33372:1;33364:6;33360:14;33353:58;33445:8;33440:2;33432:6;33428:15;33421:33;33236:225;:::o;33467:169::-;33607:21;33603:1;33595:6;33591:14;33584:45;33467:169;:::o;33642:249::-;33782:34;33778:1;33770:6;33766:14;33759:58;33851:32;33846:2;33838:6;33834:15;33827:57;33642:249;:::o;33897:168::-;34037:20;34033:1;34025:6;34021:14;34014:44;33897:168;:::o;34071:235::-;34211:34;34207:1;34199:6;34195:14;34188:58;34280:18;34275:2;34267:6;34263:15;34256:43;34071:235;:::o;34312:166::-;34452:18;34448:1;34440:6;34436:14;34429:42;34312:166;:::o;34484:155::-;34624:7;34620:1;34612:6;34608:14;34601:31;34484:155;:::o;34645:182::-;34785:34;34781:1;34773:6;34769:14;34762:58;34645:182;:::o;34833:220::-;34973:34;34969:1;34961:6;34957:14;34950:58;35042:3;35037:2;35029:6;35025:15;35018:28;34833:220;:::o;35059:174::-;35199:26;35195:1;35187:6;35183:14;35176:50;35059:174;:::o;35239:181::-;35379:33;35375:1;35367:6;35363:14;35356:57;35239:181;:::o;35426:251::-;35566:34;35562:1;35554:6;35550:14;35543:58;35635:34;35630:2;35622:6;35618:15;35611:59;35426:251;:::o;35683:234::-;35823:34;35819:1;35811:6;35807:14;35800:58;35892:17;35887:2;35879:6;35875:15;35868:42;35683:234;:::o;35923:122::-;35996:24;36014:5;35996:24;:::i;:::-;35989:5;35986:35;35976:63;;36035:1;36032;36025:12;35976:63;35923:122;:::o;36051:116::-;36121:21;36136:5;36121:21;:::i;:::-;36114:5;36111:32;36101:60;;36157:1;36154;36147:12;36101:60;36051:116;:::o;36173:122::-;36246:24;36264:5;36246:24;:::i;:::-;36239:5;36236:35;36226:63;;36285:1;36282;36275:12;36226:63;36173:122;:::o;36301:120::-;36373:23;36390:5;36373:23;:::i;:::-;36366:5;36363:34;36353:62;;36411:1;36408;36401:12;36353:62;36301:120;:::o;36427:122::-;36500:24;36518:5;36500:24;:::i;:::-;36493:5;36490:35;36480:63;;36539:1;36536;36529:12;36480:63;36427:122;:::o

Swarm Source

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