ETH Price: $2,528.84 (+3.59%)

Token

Degenz Den (DGZ)
 

Overview

Max Total Supply

333 DGZ

Holders

193

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 DGZ
0x6C69AfCe8a5D7851CA1f7D5D549d4c78C5953bcB
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:
DegenzDen

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/math/SafeMath.sol
pragma solidity ^0.8.0;

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

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is 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;
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/finance/PaymentSplitter.sol

pragma solidity ^0.8.0;

/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(
            payees.length == shares_.length,
            "PaymentSplitter: payees and shares length mismatch"
        );
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + _totalReleased;
        uint256 payment = (totalReceived * _shares[account]) /
            _totalShares -
            _released[account];

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] = _released[account] + payment;
        _totalReleased = _totalReleased + payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(
            account != address(0),
            "PaymentSplitter: account is the zero address"
        );
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(
            _shares[account] == 0,
            "PaymentSplitter: account already has shares"
        );

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

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

pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _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 {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_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 {
        _setOwner(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"
        );
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: contracts/DegenzDenGenesis.sol

pragma solidity ^0.8.0;

/// @title Degenz Den Smart Contract for the Genesis collection
/// @author Aric Kuter
/// @dev All function calls are currently implemented without events to save on gas
contract DegenzDen is ERC721Enumerable, Ownable, PaymentSplitter {
    using Strings for uint256;
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdCounter;

    /// ============ Mutable storage ============

    /// @notice URI for revealed metadata
    string public baseURI;
    /// @notice URI for hidden metadata
    string public hiddenURI;
    /// @notice Extension for metadata files
    string public baseExtension = ".json";

    /// @notice Mint cost per NFT
    uint256 public COST = 0.04 ether;
    /// @notice Max supply of NFTs
    uint256 public MAX_SUPPLY = 2000;
    /// @notice Max mint amount (< is used so 5 is actual limit)
    uint256 public MAX_MINT = 6;

    /// @notice Pause or Resume minting
    bool public mintMain = false;
    /// @notice Open whitelisting
    bool public mintWhitelist = false;
    /// @notice Reveal metadata
    bool public revealed = false;

    /// @notice Map address to minted amount
    mapping(address => uint256) public addressMintedBalance;

    address[] PAYEES = [
        0x954e501b622EFfEC678f30EA9B85D7A6a6cECBD3, /// @notice C
        0xEF4DF42EE7D7ee516399fa54C2D95c4fc1AA67d0, /// @notice A
        0xffFa8dF59b90FF4454e8B54F54B3655990710710, /// @notice GG
        0x18cdac4146D3B41f0fC9B70B5De3fB3282F83855 /// @notice KIC
    ];
    uint256[] SHARES = [46, 22, 22, 10];

    /// ============ Constructor ============

    /// @param _name name of NFT
    /// @param _symbol symbol of NFT
    /// @param _initBaseURI URI for revealed metadata in format: ipfs://HASH/
    /// @param _initHiddenURI URI for hidden metadata in format: ipfs://HASH/
    /// @param _OWNER_MINT_AMOUNT Number of NFTs to mint to the owners address
    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI,
        string memory _initHiddenURI,
        uint256 _OWNER_MINT_AMOUNT
    ) ERC721(_name, _symbol) PaymentSplitter(PAYEES, SHARES) {
        baseURI = _initBaseURI;
        hiddenURI = _initHiddenURI;

        /// @notice increment counter to start at 1 instead of 0
        _tokenIdCounter.increment();

        /// @notice mint to owners address
        reserveTokens(owner(), _OWNER_MINT_AMOUNT);
    }

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

    /// @notice Mint NFTs to senders address
    /// @param _mintAmount Number of NFTs to mint
    function mint(uint256 _mintAmount, bytes memory _signature)
        external
        payable
    {
        /// @notice Check the mint is active or the sender is whitelisted
        require(
            mintMain ||
                (mintWhitelist && isValidAccessMessage(msg.sender, _signature)),
            "Minting unavailable"
        );
        require(_mintAmount > 0 && _mintAmount < MAX_MINT, "Invalid amount");
        uint256 _tokenId = _tokenIdCounter.current();
        require(_tokenId + _mintAmount <= MAX_SUPPLY, "Supply limit reached");
        require(
            addressMintedBalance[msg.sender] + _mintAmount < MAX_MINT,
            "Mint limit reached"
        );
        require(msg.value == COST * _mintAmount, "Incorrect ETH");

        /// @notice Increment minted amount for user and safe mint to address
        addressMintedBalance[msg.sender] += _mintAmount;
        for (uint256 i = 0; i < _mintAmount; i++) {
            _safeMint(msg.sender, _tokenId + i);
            _tokenIdCounter.increment();
        }
    }

    /// @notice Reserved mint function for owner only
    /// @param _to Address to send tokens to
    /// @param _mintAmount Number of NFTs to mint
    function reserveTokens(address _to, uint256 _mintAmount) public onlyOwner {
        uint256 _tokenId = _tokenIdCounter.current();
        /// @notice Safely mint the NFTs
        for (uint256 i = 0; i < _mintAmount; i++) {
            _safeMint(_to, _tokenId + i);
            _tokenIdCounter.increment();
        }
    }

    /*
     * @dev Verifies if message was signed by owner to give access to _add for this contract.
     *      Assumes Geth signature prefix.
     * @param _add Address of agent with access
     * @param _v ECDSA signature parameter v.
     * @param _r ECDSA signature parameters r.
     * @param _s ECDSA signature parameters s.
     * @return Validity of access message for a given address.
     */
    function isValidAccessMessage(address _addr, bytes memory _signature)
        public
        view
        returns (bool)
    {
        (bytes32 r, bytes32 s, uint8 v) = splitSignature(_signature);
        bytes32 messageHash = getMessageHash(address(this), _addr);
        bytes32 ethSignedMessageHash = getEthSignedMessageHash(messageHash);

        return owner() == ecrecover(ethSignedMessageHash, v, r, s);
    }

    function getMessageHash(address _contractAddr, address _addr)
        public
        pure
        returns (bytes32)
    {
        return keccak256(abi.encodePacked(_contractAddr, _addr));
    }

    function getEthSignedMessageHash(bytes32 _messageHash)
        public
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encodePacked(
                    "\x19Ethereum Signed Message:\n32",
                    _messageHash
                )
            );
    }

    function recoverSigner(
        bytes32 _ethSignedMessageHash,
        bytes memory _signature
    ) public pure returns (address) {
        (bytes32 r, bytes32 s, uint8 v) = splitSignature(_signature);

        return ecrecover(_ethSignedMessageHash, v, r, s);
    }

    function splitSignature(bytes memory sig)
        public
        pure
        returns (
            bytes32 r,
            bytes32 s,
            uint8 v
        )
    {
        require(sig.length == 65, "invalid signature length");

        assembly {
            /*
            First 32 bytes stores the length of the signature
            add(sig, 32) = pointer of sig + 32
            effectively, skips first 32 bytes of signature
            mload(p) loads next 32 bytes starting at the memory address p into memory
            */

            // first 32 bytes, after the length prefix
            r := mload(add(sig, 32))
            // second 32 bytes
            s := mload(add(sig, 64))
            // final byte (first byte of the next 32 bytes)
            v := byte(0, mload(add(sig, 96)))
        }

        // implicitly return (r, s, v)
    }

    /// @return Returns a conststructed string in the format: //ipfs/HASH/[tokenId].json
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for NonExistent Token."
        );

        if (!revealed) {
            return hiddenURI;
        }

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

    /// @notice Reveal metadata
    function reveal() external onlyOwner {
        revealed = true;
    }

    /// @notice Set the URI of the hidden metadata
    /// @param _hiddenURI URI for hidden metadata NOTE: This URI must be the link to the exact file in format: ipfs//HASH/
    function setHiddenURI(string memory _hiddenURI) external onlyOwner {
        hiddenURI = _hiddenURI;
    }

    /// @notice Set URI of the metadata
    /// @param _newBaseURI URI for revealed metadata
    function setBaseURI(string memory _newBaseURI) external onlyOwner {
        baseURI = _newBaseURI;
    }

    /// @notice Set the base extension for the metadata
    /// @param _newBaseExtension Base extension value
    function setBaseExtension(string memory _newBaseExtension)
        external
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    function getUserAirdrops(address _user) external view returns (uint256) {
        return addressMintedBalance[_user];
    }

    /// @notice Toggle mintMain
    function toggleMintMain() external onlyOwner {
        mintMain = !mintMain;
    }

    /// @notice Toggle mintWhitelist
    function toggleMintWhitelist() external onlyOwner {
        mintWhitelist = !mintWhitelist;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initHiddenURI","type":"string"},{"internalType":"uint256","name":"_OWNER_MINT_AMOUNT","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_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":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_messageHash","type":"bytes32"}],"name":"getEthSignedMessageHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"_contractAddr","type":"address"},{"internalType":"address","name":"_addr","type":"address"}],"name":"getMessageHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getUserAirdrops","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"isValidAccessMessage","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintMain","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_ethSignedMessageHash","type":"bytes32"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"recoverSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenURI","type":"string"}],"name":"setHiddenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"splitSignature","outputs":[{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"}],"stateMutability":"pure","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":[],"name":"toggleMintMain","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleMintWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","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"},{"stateMutability":"payable","type":"receive"}]

60c06040526005608081905264173539b7b760d91b60a090815262000028916013919062000d5c565b50668e1bc9bf0400006014556107d060155560066016556017805462ffffff191690556040805160808101825273954e501b622effec678f30ea9b85d7a6a6cecbd3815273ef4df42ee7d7ee516399fa54c2d95c4fc1aa67d0602082015273fffa8df59b90ff4454e8b54f54b3655990710710918101919091527318cdac4146d3b41f0fc9b70b5de3fb3282f838556060820152620000cc90601990600462000deb565b5060408051608081018252602e815260166020820181905291810191909152600a60608201526200010290601a90600462000e43565b503480156200011057600080fd5b5060405162003f1038038062003f10833981016040819052620001339162000f73565b60198054806020026020016040519081016040528092919081815260200182805480156200018b57602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116200016c575b5050505050601a805480602002602001604051908101604052809291908181526020018280548015620001de57602002820191906000526020600020905b815481526020019060010190808311620001c9575b505089518a9350899250620001fc9150600090602085019062000d5c565b5080516200021290600190602084019062000d5c565b5050506200022f62000229620003cf60201b60201c565b620003d3565b8051825114620002a15760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620002f45760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f20706179656573000000000000604482015260640162000298565b60005b825181101562000360576200034b8382815181106200031a576200031a62001036565b602002602001015183838151811062000337576200033762001036565b60200260200101516200042560201b60201c565b80620003578162001062565b915050620002f7565b50508351620003789150601190602086019062000d5c565b5081516200038e90601290602085019062000d5c565b50620003a660106200061360201b62001a8e1760201c565b620003c4620003bd600a546001600160a01b031690565b826200061c565b505050505062001191565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620004925760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b606482015260840162000298565b60008111620004e45760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a20736861726573206172652030000000604482015260640162000298565b6001600160a01b0382166000908152600d602052604090205415620005605760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b606482015260840162000298565b600f8054600181019091557f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac8020180546001600160a01b0319166001600160a01b0384169081179091556000908152600d60205260409020819055600b54620005ca90829062001080565b600b55604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b80546001019055565b600a546001600160a01b03163314620006785760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000298565b6000620006916010620006e860201b62001a971760201c565b905060005b82811015620006e257620006b684620006b0838562001080565b620006ec565b620006cd60106200061360201b62001a8e1760201c565b80620006d98162001062565b91505062000696565b50505050565b5490565b6200070e8282604051806020016040528060008152506200071260201b60201c565b5050565b6200071e83836200078a565b6200072d6000848484620008e0565b620007855760405162461bcd60e51b8152602060048201526032602482015260008051602062003ef083398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840162000298565b505050565b6001600160a01b038216620007e25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640162000298565b6000818152600260205260409020546001600160a01b031615620008495760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640162000298565b620008576000838362000a39565b6001600160a01b03821660009081526003602052604081208054600192906200088290849062001080565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600062000901846001600160a01b031662000b1560201b62001a9b1760201c565b1562000a2d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906200093b9033908990889088906004016200109b565b6020604051808303816000875af192505050801562000979575060408051601f3d908101601f191682019092526200097691810190620010f1565b60015b62000a12573d808015620009aa576040519150601f19603f3d011682016040523d82523d6000602084013e620009af565b606091505b50805162000a0a5760405162461bcd60e51b8152602060048201526032602482015260008051602062003ef083398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840162000298565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905062000a31565b5060015b949350505050565b62000a518383836200078560201b62000bac1760201c565b6001600160a01b03831662000aaf5762000aa981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b62000ad5565b816001600160a01b0316836001600160a01b03161462000ad55762000ad5838262000b1b565b6001600160a01b03821662000aef57620007858162000bc8565b826001600160a01b0316826001600160a01b031614620007855762000785828262000c82565b3b151590565b6000600162000b358462000cd360201b6200103d1760201c565b62000b41919062001124565b60008381526007602052604090205490915080821462000b95576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009062000bdc9060019062001124565b6000838152600960205260408120546008805493945090928490811062000c075762000c0762001036565b90600052602060002001549050806008838154811062000c2b5762000c2b62001036565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548062000c665762000c666200113e565b6001900381819060005260206000200160009055905550505050565b600062000c9a8362000cd360201b6200103d1760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b03821662000d405760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840162000298565b506001600160a01b031660009081526003602052604090205490565b82805462000d6a9062001154565b90600052602060002090601f01602090048101928262000d8e576000855562000dd9565b82601f1062000da957805160ff191683800117855562000dd9565b8280016001018555821562000dd9579182015b8281111562000dd957825182559160200191906001019062000dbc565b5062000de792915062000e86565b5090565b82805482825590600052602060002090810192821562000dd9579160200282015b8281111562000dd957825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000e0c565b82805482825590600052602060002090810192821562000dd9579160200282015b8281111562000dd9578251829060ff1690559160200191906001019062000e64565b5b8082111562000de7576000815560010162000e87565b634e487b7160e01b600052604160045260246000fd5b60005b8381101562000ed057818101518382015260200162000eb6565b83811115620006e25750506000910152565b600082601f83011262000ef457600080fd5b81516001600160401b038082111562000f115762000f1162000e9d565b604051601f8301601f19908116603f0116810190828211818310171562000f3c5762000f3c62000e9d565b8160405283815286602085880101111562000f5657600080fd5b62000f6984602083016020890162000eb3565b9695505050505050565b600080600080600060a0868803121562000f8c57600080fd5b85516001600160401b038082111562000fa457600080fd5b62000fb289838a0162000ee2565b9650602088015191508082111562000fc957600080fd5b62000fd789838a0162000ee2565b9550604088015191508082111562000fee57600080fd5b62000ffc89838a0162000ee2565b945060608801519150808211156200101357600080fd5b50620010228882890162000ee2565b925050608086015190509295509295909350565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156200107957620010796200104c565b5060010190565b600082198211156200109657620010966200104c565b500190565b600060018060a01b038087168352808616602084015250836040830152608060608301528251806080840152620010da8160a085016020870162000eb3565b601f01601f19169190910160a00195945050505050565b6000602082840312156200110457600080fd5b81516001600160e01b0319811681146200111d57600080fd5b9392505050565b6000828210156200113957620011396200104c565b500390565b634e487b7160e01b600052603160045260246000fd5b600181811c908216806200116957607f821691505b602082108114156200118b57634e487b7160e01b600052602260045260246000fd5b50919050565b612d4f80620011a16000396000f3fe6080604052600436106102b25760003560e01c80638cc54e7f11610175578063bf8fbbd2116100dc578063db7fd40811610095578063e985e9c51161006f578063e985e9c5146108a5578063f0292a03146108ee578063f2fde38b14610904578063fa5408011461092457600080fd5b8063db7fd40814610863578063e33b7de314610876578063e763167d1461088b57600080fd5b8063bf8fbbd2146107a2578063c6682862146107b8578063c87b56dd146107cd578063ce7c2ac2146107ed578063d77f724b14610823578063da3ef23f1461084357600080fd5b8063a22cb4651161012e578063a22cb465146106b9578063a26c3640146106d9578063a475b5dd1461070f578063a7bb580314610724578063b88d4fde14610762578063bbaac02f1461078257600080fd5b80638cc54e7f146106065780638da5cb5b1461061b57806392cba58f1461063957806395d89b411461064e57806397aba7f9146106635780639852595c1461068357600080fd5b806342842e0e1161021957806370a08231116101d257806370a082311461055c578063715018a61461057c57806378cf19e91461059157806380e8a151146105b15780638a2f76aa146105d15780638b83209b146105e657600080fd5b806342842e0e146104a75780634f6ccce7146104c757806351830227146104e757806355f804b3146105075780636352211e146105275780636c0360eb1461054757600080fd5b8063191655871161026b57806319165587146103fd57806323b872dd1461041d5780632d3df31f1461043d5780632f745c591461045c57806332cb6b0c1461047c5780633a98ef391461049257600080fd5b806301ffc9a71461030057806306fdde0314610335578063081812fc14610357578063095ea7b31461038f57806318160ddd146103b157806318cae269146103d057600080fd5b366102fb577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b34801561030c57600080fd5b5061032061031b36600461263c565b610944565b60405190151581526020015b60405180910390f35b34801561034157600080fd5b5061034a61096f565b60405161032c91906126b1565b34801561036357600080fd5b506103776103723660046126c4565b610a01565b6040516001600160a01b03909116815260200161032c565b34801561039b57600080fd5b506103af6103aa3660046126f2565b610a9b565b005b3480156103bd57600080fd5b506008545b60405190815260200161032c565b3480156103dc57600080fd5b506103c26103eb36600461271e565b60186020526000908152604090205481565b34801561040957600080fd5b506103af61041836600461271e565b610bb1565b34801561042957600080fd5b506103af61043836600461273b565b610d82565b34801561044957600080fd5b5060175461032090610100900460ff1681565b34801561046857600080fd5b506103c26104773660046126f2565b610db3565b34801561048857600080fd5b506103c260155481565b34801561049e57600080fd5b50600b546103c2565b3480156104b357600080fd5b506103af6104c236600461273b565b610e49565b3480156104d357600080fd5b506103c26104e23660046126c4565b610e64565b3480156104f357600080fd5b506017546103209062010000900460ff1681565b34801561051357600080fd5b506103af610522366004612808565b610ef7565b34801561053357600080fd5b506103776105423660046126c4565b610f38565b34801561055357600080fd5b5061034a610faf565b34801561056857600080fd5b506103c261057736600461271e565b61103d565b34801561058857600080fd5b506103af6110c4565b34801561059d57600080fd5b506103af6105ac3660046126f2565b6110fa565b3480156105bd57600080fd5b506103c26105cc366004612851565b611175565b3480156105dd57600080fd5b506103af6111bf565b3480156105f257600080fd5b506103776106013660046126c4565b6111fd565b34801561061257600080fd5b5061034a61122d565b34801561062757600080fd5b50600a546001600160a01b0316610377565b34801561064557600080fd5b506103af61123a565b34801561065a57600080fd5b5061034a611281565b34801561066f57600080fd5b5061037761067e3660046128aa565b611290565b34801561068f57600080fd5b506103c261069e36600461271e565b6001600160a01b03166000908152600e602052604090205490565b3480156106c557600080fd5b506103af6106d43660046128f1565b61130f565b3480156106e557600080fd5b506103c26106f436600461271e565b6001600160a01b031660009081526018602052604090205490565b34801561071b57600080fd5b506103af6113d4565b34801561073057600080fd5b5061074461073f366004612924565b611411565b60408051938452602084019290925260ff169082015260600161032c565b34801561076e57600080fd5b506103af61077d366004612959565b611485565b34801561078e57600080fd5b506103af61079d366004612808565b6114b7565b3480156107ae57600080fd5b506103c260145481565b3480156107c457600080fd5b5061034a6114f4565b3480156107d957600080fd5b5061034a6107e83660046126c4565b611501565b3480156107f957600080fd5b506103c261080836600461271e565b6001600160a01b03166000908152600d602052604090205490565b34801561082f57600080fd5b5061032061083e3660046129c5565b611682565b34801561084f57600080fd5b506103af61085e366004612808565b611741565b6103af6108713660046128aa565b61177e565b34801561088257600080fd5b50600c546103c2565b34801561089757600080fd5b506017546103209060ff1681565b3480156108b157600080fd5b506103206108c0366004612851565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156108fa57600080fd5b506103c260165481565b34801561091057600080fd5b506103af61091f36600461271e565b6119a0565b34801561093057600080fd5b506103c261093f3660046126c4565b611a3b565b60006001600160e01b0319821663780e9d6360e01b1480610969575061096982611aa1565b92915050565b60606000805461097e906129ff565b80601f01602080910402602001604051908101604052809291908181526020018280546109aa906129ff565b80156109f75780601f106109cc576101008083540402835291602001916109f7565b820191906000526020600020905b8154815290600101906020018083116109da57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a7f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610aa682610f38565b9050806001600160a01b0316836001600160a01b03161415610b145760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a76565b336001600160a01b0382161480610b305750610b3081336108c0565b610ba25760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a76565b610bac8383611af1565b505050565b6001600160a01b0381166000908152600d6020526040902054610c255760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201526573686172657360d01b6064820152608401610a76565b6000600c5447610c359190612a50565b6001600160a01b0383166000908152600e6020908152604080832054600b54600d909352908320549394509192610c6c9085612a68565b610c769190612a9d565b610c809190612ab1565b905080610ce35760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201526a191d59481c185e5b595b9d60aa1b6064820152608401610a76565b6001600160a01b0383166000908152600e6020526040902054610d07908290612a50565b6001600160a01b0384166000908152600e6020526040902055600c54610d2e908290612a50565b600c55610d3b8382611b5f565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610d8c3382611c78565b610da85760405162461bcd60e51b8152600401610a7690612ac8565b610bac838383611d6f565b6000610dbe8361103d565b8210610e205760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a76565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610bac83838360405180602001604052806000815250611485565b6000610e6f60085490565b8210610ed25760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a76565b60088281548110610ee557610ee5612b19565b90600052602060002001549050919050565b600a546001600160a01b03163314610f215760405162461bcd60e51b8152600401610a7690612b2f565b8051610f3490601190602084019061258d565b5050565b6000818152600260205260408120546001600160a01b0316806109695760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a76565b60118054610fbc906129ff565b80601f0160208091040260200160405190810160405280929190818152602001828054610fe8906129ff565b80156110355780601f1061100a57610100808354040283529160200191611035565b820191906000526020600020905b81548152906001019060200180831161101857829003601f168201915b505050505081565b60006001600160a01b0382166110a85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a76565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110ee5760405162461bcd60e51b8152600401610a7690612b2f565b6110f86000611f1a565b565b600a546001600160a01b031633146111245760405162461bcd60e51b8152600401610a7690612b2f565b600061112f60105490565b905060005b8281101561116f5761114f8461114a8385612a50565b611f6c565b61115d601080546001019055565b8061116781612b64565b915050611134565b50505050565b6040516bffffffffffffffffffffffff19606084811b8216602084015283901b16603482015260009060480160405160208183030381529060405280519060200120905092915050565b600a546001600160a01b031633146111e95760405162461bcd60e51b8152600401610a7690612b2f565b6017805460ff19811660ff90911615179055565b6000600f828154811061121257611212612b19565b6000918252602090912001546001600160a01b031692915050565b60128054610fbc906129ff565b600a546001600160a01b031633146112645760405162461bcd60e51b8152600401610a7690612b2f565b6017805461ff001981166101009182900460ff1615909102179055565b60606001805461097e906129ff565b60008060008061129f85611411565b6040805160008152602081018083528b905260ff8316918101919091526060810184905260808101839052929550909350915060019060a0016020604051602081039080840390855afa1580156112fa573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b6001600160a01b0382163314156113685760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a76565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146113fe5760405162461bcd60e51b8152600401610a7690612b2f565b6017805462ff0000191662010000179055565b600080600083516041146114675760405162461bcd60e51b815260206004820152601860248201527f696e76616c6964207369676e6174757265206c656e67746800000000000000006044820152606401610a76565b50505060208101516040820151606090920151909260009190911a90565b61148f3383611c78565b6114ab5760405162461bcd60e51b8152600401610a7690612ac8565b61116f84848484611f86565b600a546001600160a01b031633146114e15760405162461bcd60e51b8152600401610a7690612b2f565b8051610f3490601290602084019061258d565b60138054610fbc906129ff565b6000818152600260205260409020546060906001600160a01b03166115815760405162461bcd60e51b815260206004820152603060248201527f4552433732314d657461646174613a2055524920717565727920666f72204e6f60448201526f3722bc34b9ba32b73a102a37b5b2b71760811b6064820152608401610a76565b60175462010000900460ff16611623576012805461159e906129ff565b80601f01602080910402602001604051908101604052809291908181526020018280546115ca906129ff565b80156116175780601f106115ec57610100808354040283529160200191611617565b820191906000526020600020905b8154815290600101906020018083116115fa57829003601f168201915b50505050509050919050565b600061162d611fb9565b9050600081511161164d576040518060200160405280600081525061167b565b8061165784611fc8565b601360405160200161166b93929190612b7f565b6040516020818303038152906040525b9392505050565b60008060008061169185611411565b92509250925060006116a33088611175565b905060006116b082611a3b565b60408051600081526020810180835283905260ff861691810191909152606081018790526080810186905290915060019060a0016020604051602081039080840390855afa158015611706573d6000803e3d6000fd5b505050602060405103516001600160a01b031661172b600a546001600160a01b031690565b6001600160a01b03161498975050505050505050565b600a546001600160a01b0316331461176b5760405162461bcd60e51b8152600401610a7690612b2f565b8051610f3490601390602084019061258d565b60175460ff16806117a65750601754610100900460ff1680156117a657506117a63382611682565b6117e85760405162461bcd60e51b81526020600482015260136024820152724d696e74696e6720756e617661696c61626c6560681b6044820152606401610a76565b6000821180156117f9575060165482105b6118365760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b6044820152606401610a76565b600061184160105490565b6015549091506118518483612a50565b11156118965760405162461bcd60e51b815260206004820152601460248201527314dd5c1c1b1e481b1a5b5a5d081c995858da195960621b6044820152606401610a76565b601654336000908152601860205260409020546118b4908590612a50565b106118f65760405162461bcd60e51b8152602060048201526012602482015271135a5b9d081b1a5b5a5d081c995858da195960721b6044820152606401610a76565b826014546119049190612a68565b34146119425760405162461bcd60e51b815260206004820152600d60248201526c092dcc6dee4e4cac6e8408aa89609b1b6044820152606401610a76565b3360009081526018602052604081208054859290611961908490612a50565b90915550600090505b8381101561116f576119803361114a8385612a50565b61198e601080546001019055565b8061199881612b64565b91505061196a565b600a546001600160a01b031633146119ca5760405162461bcd60e51b8152600401610a7690612b2f565b6001600160a01b038116611a2f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a76565b611a3881611f1a565b50565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b80546001019055565b5490565b3b151590565b60006001600160e01b031982166380ac58cd60e01b1480611ad257506001600160e01b03198216635b5e139f60e01b145b8061096957506301ffc9a760e01b6001600160e01b0319831614610969565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b2682610f38565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b80471015611baf5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610a76565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611bfc576040519150601f19603f3d011682016040523d82523d6000602084013e611c01565b606091505b5050905080610bac5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610a76565b6000818152600260205260408120546001600160a01b0316611cf15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a76565b6000611cfc83610f38565b9050806001600160a01b0316846001600160a01b03161480611d375750836001600160a01b0316611d2c84610a01565b6001600160a01b0316145b80611d6757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611d8282610f38565b6001600160a01b031614611dea5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610a76565b6001600160a01b038216611e4c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a76565b611e578383836120c6565b611e62600082611af1565b6001600160a01b0383166000908152600360205260408120805460019290611e8b908490612ab1565b90915550506001600160a01b0382166000908152600360205260408120805460019290611eb9908490612a50565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610f3482826040518060200160405280600081525061217e565b611f91848484611d6f565b611f9d848484846121b1565b61116f5760405162461bcd60e51b8152600401610a7690612c43565b60606011805461097e906129ff565b606081611fec5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612016578061200081612b64565b915061200f9050600a83612a9d565b9150611ff0565b60008167ffffffffffffffff8111156120315761203161277c565b6040519080825280601f01601f19166020018201604052801561205b576020820181803683370190505b5090505b8415611d6757612070600183612ab1565b915061207d600a86612c95565b612088906030612a50565b60f81b81838151811061209d5761209d612b19565b60200101906001600160f81b031916908160001a9053506120bf600a86612a9d565b945061205f565b6001600160a01b0383166121215761211c81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612144565b816001600160a01b0316836001600160a01b0316146121445761214483826122af565b6001600160a01b03821661215b57610bac8161234c565b826001600160a01b0316826001600160a01b031614610bac57610bac82826123fb565b612188838361243f565b61219560008484846121b1565b610bac5760405162461bcd60e51b8152600401610a7690612c43565b60006001600160a01b0384163b156122a457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906121f5903390899088908890600401612ca9565b6020604051808303816000875af1925050508015612230575060408051601f3d908101601f1916820190925261222d91810190612ce6565b60015b61228a573d80801561225e576040519150601f19603f3d011682016040523d82523d6000602084013e612263565b606091505b5080516122825760405162461bcd60e51b8152600401610a7690612c43565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d67565b506001949350505050565b600060016122bc8461103d565b6122c69190612ab1565b600083815260076020526040902054909150808214612319576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061235e90600190612ab1565b6000838152600960205260408120546008805493945090928490811061238657612386612b19565b9060005260206000200154905080600883815481106123a7576123a7612b19565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806123df576123df612d03565b6001900381819060005260206000200160009055905550505050565b60006124068361103d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166124955760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a76565b6000818152600260205260409020546001600160a01b0316156124fa5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a76565b612506600083836120c6565b6001600160a01b038216600090815260036020526040812080546001929061252f908490612a50565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612599906129ff565b90600052602060002090601f0160209004810192826125bb5760008555612601565b82601f106125d457805160ff1916838001178555612601565b82800160010185558215612601579182015b828111156126015782518255916020019190600101906125e6565b5061260d929150612611565b5090565b5b8082111561260d5760008155600101612612565b6001600160e01b031981168114611a3857600080fd5b60006020828403121561264e57600080fd5b813561167b81612626565b60005b8381101561267457818101518382015260200161265c565b8381111561116f5750506000910152565b6000815180845261269d816020860160208601612659565b601f01601f19169290920160200192915050565b60208152600061167b6020830184612685565b6000602082840312156126d657600080fd5b5035919050565b6001600160a01b0381168114611a3857600080fd5b6000806040838503121561270557600080fd5b8235612710816126dd565b946020939093013593505050565b60006020828403121561273057600080fd5b813561167b816126dd565b60008060006060848603121561275057600080fd5b833561275b816126dd565b9250602084013561276b816126dd565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156127ad576127ad61277c565b604051601f8501601f19908116603f011681019082821181831017156127d5576127d561277c565b816040528093508581528686860111156127ee57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561281a57600080fd5b813567ffffffffffffffff81111561283157600080fd5b8201601f8101841361284257600080fd5b611d6784823560208401612792565b6000806040838503121561286457600080fd5b823561286f816126dd565b9150602083013561287f816126dd565b809150509250929050565b600082601f83011261289b57600080fd5b61167b83833560208501612792565b600080604083850312156128bd57600080fd5b82359150602083013567ffffffffffffffff8111156128db57600080fd5b6128e78582860161288a565b9150509250929050565b6000806040838503121561290457600080fd5b823561290f816126dd565b91506020830135801515811461287f57600080fd5b60006020828403121561293657600080fd5b813567ffffffffffffffff81111561294d57600080fd5b611d678482850161288a565b6000806000806080858703121561296f57600080fd5b843561297a816126dd565b9350602085013561298a816126dd565b925060408501359150606085013567ffffffffffffffff8111156129ad57600080fd5b6129b98782880161288a565b91505092959194509250565b600080604083850312156129d857600080fd5b82356129e3816126dd565b9150602083013567ffffffffffffffff8111156128db57600080fd5b600181811c90821680612a1357607f821691505b60208210811415612a3457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115612a6357612a63612a3a565b500190565b6000816000190483118215151615612a8257612a82612a3a565b500290565b634e487b7160e01b600052601260045260246000fd5b600082612aac57612aac612a87565b500490565b600082821015612ac357612ac3612a3a565b500390565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000600019821415612b7857612b78612a3a565b5060010190565b600084516020612b928285838a01612659565b855191840191612ba58184848a01612659565b8554920191600090600181811c9080831680612bc257607f831692505b858310811415612be057634e487b7160e01b85526022600452602485fd5b808015612bf45760018114612c0557612c32565b60ff19851688528388019550612c32565b60008b81526020902060005b85811015612c2a5781548a820152908401908801612c11565b505083880195505b50939b9a5050505050505050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612ca457612ca4612a87565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612cdc90830184612685565b9695505050505050565b600060208284031215612cf857600080fd5b815161167b81612626565b634e487b7160e01b600052603160045260246000fdfea26469706673582212208dc85321b9325e0da2a153e6131ebaa83ede765185dbe362945d1183f0648a3d64736f6c634300080b00334552433732313a207472616e7366657220746f206e6f6e20455243373231526500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000a446567656e7a2044656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000344475a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d64775a4d354662584b786662586f4d615677546f76634c68795a647a51634e566952466a4d33454d565657592f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d59397343424e69586a4539446b595a767572366879593838476d6d78516574525634326148664134754237522f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102b25760003560e01c80638cc54e7f11610175578063bf8fbbd2116100dc578063db7fd40811610095578063e985e9c51161006f578063e985e9c5146108a5578063f0292a03146108ee578063f2fde38b14610904578063fa5408011461092457600080fd5b8063db7fd40814610863578063e33b7de314610876578063e763167d1461088b57600080fd5b8063bf8fbbd2146107a2578063c6682862146107b8578063c87b56dd146107cd578063ce7c2ac2146107ed578063d77f724b14610823578063da3ef23f1461084357600080fd5b8063a22cb4651161012e578063a22cb465146106b9578063a26c3640146106d9578063a475b5dd1461070f578063a7bb580314610724578063b88d4fde14610762578063bbaac02f1461078257600080fd5b80638cc54e7f146106065780638da5cb5b1461061b57806392cba58f1461063957806395d89b411461064e57806397aba7f9146106635780639852595c1461068357600080fd5b806342842e0e1161021957806370a08231116101d257806370a082311461055c578063715018a61461057c57806378cf19e91461059157806380e8a151146105b15780638a2f76aa146105d15780638b83209b146105e657600080fd5b806342842e0e146104a75780634f6ccce7146104c757806351830227146104e757806355f804b3146105075780636352211e146105275780636c0360eb1461054757600080fd5b8063191655871161026b57806319165587146103fd57806323b872dd1461041d5780632d3df31f1461043d5780632f745c591461045c57806332cb6b0c1461047c5780633a98ef391461049257600080fd5b806301ffc9a71461030057806306fdde0314610335578063081812fc14610357578063095ea7b31461038f57806318160ddd146103b157806318cae269146103d057600080fd5b366102fb577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b34801561030c57600080fd5b5061032061031b36600461263c565b610944565b60405190151581526020015b60405180910390f35b34801561034157600080fd5b5061034a61096f565b60405161032c91906126b1565b34801561036357600080fd5b506103776103723660046126c4565b610a01565b6040516001600160a01b03909116815260200161032c565b34801561039b57600080fd5b506103af6103aa3660046126f2565b610a9b565b005b3480156103bd57600080fd5b506008545b60405190815260200161032c565b3480156103dc57600080fd5b506103c26103eb36600461271e565b60186020526000908152604090205481565b34801561040957600080fd5b506103af61041836600461271e565b610bb1565b34801561042957600080fd5b506103af61043836600461273b565b610d82565b34801561044957600080fd5b5060175461032090610100900460ff1681565b34801561046857600080fd5b506103c26104773660046126f2565b610db3565b34801561048857600080fd5b506103c260155481565b34801561049e57600080fd5b50600b546103c2565b3480156104b357600080fd5b506103af6104c236600461273b565b610e49565b3480156104d357600080fd5b506103c26104e23660046126c4565b610e64565b3480156104f357600080fd5b506017546103209062010000900460ff1681565b34801561051357600080fd5b506103af610522366004612808565b610ef7565b34801561053357600080fd5b506103776105423660046126c4565b610f38565b34801561055357600080fd5b5061034a610faf565b34801561056857600080fd5b506103c261057736600461271e565b61103d565b34801561058857600080fd5b506103af6110c4565b34801561059d57600080fd5b506103af6105ac3660046126f2565b6110fa565b3480156105bd57600080fd5b506103c26105cc366004612851565b611175565b3480156105dd57600080fd5b506103af6111bf565b3480156105f257600080fd5b506103776106013660046126c4565b6111fd565b34801561061257600080fd5b5061034a61122d565b34801561062757600080fd5b50600a546001600160a01b0316610377565b34801561064557600080fd5b506103af61123a565b34801561065a57600080fd5b5061034a611281565b34801561066f57600080fd5b5061037761067e3660046128aa565b611290565b34801561068f57600080fd5b506103c261069e36600461271e565b6001600160a01b03166000908152600e602052604090205490565b3480156106c557600080fd5b506103af6106d43660046128f1565b61130f565b3480156106e557600080fd5b506103c26106f436600461271e565b6001600160a01b031660009081526018602052604090205490565b34801561071b57600080fd5b506103af6113d4565b34801561073057600080fd5b5061074461073f366004612924565b611411565b60408051938452602084019290925260ff169082015260600161032c565b34801561076e57600080fd5b506103af61077d366004612959565b611485565b34801561078e57600080fd5b506103af61079d366004612808565b6114b7565b3480156107ae57600080fd5b506103c260145481565b3480156107c457600080fd5b5061034a6114f4565b3480156107d957600080fd5b5061034a6107e83660046126c4565b611501565b3480156107f957600080fd5b506103c261080836600461271e565b6001600160a01b03166000908152600d602052604090205490565b34801561082f57600080fd5b5061032061083e3660046129c5565b611682565b34801561084f57600080fd5b506103af61085e366004612808565b611741565b6103af6108713660046128aa565b61177e565b34801561088257600080fd5b50600c546103c2565b34801561089757600080fd5b506017546103209060ff1681565b3480156108b157600080fd5b506103206108c0366004612851565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156108fa57600080fd5b506103c260165481565b34801561091057600080fd5b506103af61091f36600461271e565b6119a0565b34801561093057600080fd5b506103c261093f3660046126c4565b611a3b565b60006001600160e01b0319821663780e9d6360e01b1480610969575061096982611aa1565b92915050565b60606000805461097e906129ff565b80601f01602080910402602001604051908101604052809291908181526020018280546109aa906129ff565b80156109f75780601f106109cc576101008083540402835291602001916109f7565b820191906000526020600020905b8154815290600101906020018083116109da57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a7f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610aa682610f38565b9050806001600160a01b0316836001600160a01b03161415610b145760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a76565b336001600160a01b0382161480610b305750610b3081336108c0565b610ba25760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a76565b610bac8383611af1565b505050565b6001600160a01b0381166000908152600d6020526040902054610c255760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201526573686172657360d01b6064820152608401610a76565b6000600c5447610c359190612a50565b6001600160a01b0383166000908152600e6020908152604080832054600b54600d909352908320549394509192610c6c9085612a68565b610c769190612a9d565b610c809190612ab1565b905080610ce35760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201526a191d59481c185e5b595b9d60aa1b6064820152608401610a76565b6001600160a01b0383166000908152600e6020526040902054610d07908290612a50565b6001600160a01b0384166000908152600e6020526040902055600c54610d2e908290612a50565b600c55610d3b8382611b5f565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610d8c3382611c78565b610da85760405162461bcd60e51b8152600401610a7690612ac8565b610bac838383611d6f565b6000610dbe8361103d565b8210610e205760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a76565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610bac83838360405180602001604052806000815250611485565b6000610e6f60085490565b8210610ed25760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a76565b60088281548110610ee557610ee5612b19565b90600052602060002001549050919050565b600a546001600160a01b03163314610f215760405162461bcd60e51b8152600401610a7690612b2f565b8051610f3490601190602084019061258d565b5050565b6000818152600260205260408120546001600160a01b0316806109695760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a76565b60118054610fbc906129ff565b80601f0160208091040260200160405190810160405280929190818152602001828054610fe8906129ff565b80156110355780601f1061100a57610100808354040283529160200191611035565b820191906000526020600020905b81548152906001019060200180831161101857829003601f168201915b505050505081565b60006001600160a01b0382166110a85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a76565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110ee5760405162461bcd60e51b8152600401610a7690612b2f565b6110f86000611f1a565b565b600a546001600160a01b031633146111245760405162461bcd60e51b8152600401610a7690612b2f565b600061112f60105490565b905060005b8281101561116f5761114f8461114a8385612a50565b611f6c565b61115d601080546001019055565b8061116781612b64565b915050611134565b50505050565b6040516bffffffffffffffffffffffff19606084811b8216602084015283901b16603482015260009060480160405160208183030381529060405280519060200120905092915050565b600a546001600160a01b031633146111e95760405162461bcd60e51b8152600401610a7690612b2f565b6017805460ff19811660ff90911615179055565b6000600f828154811061121257611212612b19565b6000918252602090912001546001600160a01b031692915050565b60128054610fbc906129ff565b600a546001600160a01b031633146112645760405162461bcd60e51b8152600401610a7690612b2f565b6017805461ff001981166101009182900460ff1615909102179055565b60606001805461097e906129ff565b60008060008061129f85611411565b6040805160008152602081018083528b905260ff8316918101919091526060810184905260808101839052929550909350915060019060a0016020604051602081039080840390855afa1580156112fa573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b6001600160a01b0382163314156113685760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a76565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146113fe5760405162461bcd60e51b8152600401610a7690612b2f565b6017805462ff0000191662010000179055565b600080600083516041146114675760405162461bcd60e51b815260206004820152601860248201527f696e76616c6964207369676e6174757265206c656e67746800000000000000006044820152606401610a76565b50505060208101516040820151606090920151909260009190911a90565b61148f3383611c78565b6114ab5760405162461bcd60e51b8152600401610a7690612ac8565b61116f84848484611f86565b600a546001600160a01b031633146114e15760405162461bcd60e51b8152600401610a7690612b2f565b8051610f3490601290602084019061258d565b60138054610fbc906129ff565b6000818152600260205260409020546060906001600160a01b03166115815760405162461bcd60e51b815260206004820152603060248201527f4552433732314d657461646174613a2055524920717565727920666f72204e6f60448201526f3722bc34b9ba32b73a102a37b5b2b71760811b6064820152608401610a76565b60175462010000900460ff16611623576012805461159e906129ff565b80601f01602080910402602001604051908101604052809291908181526020018280546115ca906129ff565b80156116175780601f106115ec57610100808354040283529160200191611617565b820191906000526020600020905b8154815290600101906020018083116115fa57829003601f168201915b50505050509050919050565b600061162d611fb9565b9050600081511161164d576040518060200160405280600081525061167b565b8061165784611fc8565b601360405160200161166b93929190612b7f565b6040516020818303038152906040525b9392505050565b60008060008061169185611411565b92509250925060006116a33088611175565b905060006116b082611a3b565b60408051600081526020810180835283905260ff861691810191909152606081018790526080810186905290915060019060a0016020604051602081039080840390855afa158015611706573d6000803e3d6000fd5b505050602060405103516001600160a01b031661172b600a546001600160a01b031690565b6001600160a01b03161498975050505050505050565b600a546001600160a01b0316331461176b5760405162461bcd60e51b8152600401610a7690612b2f565b8051610f3490601390602084019061258d565b60175460ff16806117a65750601754610100900460ff1680156117a657506117a63382611682565b6117e85760405162461bcd60e51b81526020600482015260136024820152724d696e74696e6720756e617661696c61626c6560681b6044820152606401610a76565b6000821180156117f9575060165482105b6118365760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b6044820152606401610a76565b600061184160105490565b6015549091506118518483612a50565b11156118965760405162461bcd60e51b815260206004820152601460248201527314dd5c1c1b1e481b1a5b5a5d081c995858da195960621b6044820152606401610a76565b601654336000908152601860205260409020546118b4908590612a50565b106118f65760405162461bcd60e51b8152602060048201526012602482015271135a5b9d081b1a5b5a5d081c995858da195960721b6044820152606401610a76565b826014546119049190612a68565b34146119425760405162461bcd60e51b815260206004820152600d60248201526c092dcc6dee4e4cac6e8408aa89609b1b6044820152606401610a76565b3360009081526018602052604081208054859290611961908490612a50565b90915550600090505b8381101561116f576119803361114a8385612a50565b61198e601080546001019055565b8061199881612b64565b91505061196a565b600a546001600160a01b031633146119ca5760405162461bcd60e51b8152600401610a7690612b2f565b6001600160a01b038116611a2f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a76565b611a3881611f1a565b50565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b80546001019055565b5490565b3b151590565b60006001600160e01b031982166380ac58cd60e01b1480611ad257506001600160e01b03198216635b5e139f60e01b145b8061096957506301ffc9a760e01b6001600160e01b0319831614610969565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b2682610f38565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b80471015611baf5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610a76565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611bfc576040519150601f19603f3d011682016040523d82523d6000602084013e611c01565b606091505b5050905080610bac5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610a76565b6000818152600260205260408120546001600160a01b0316611cf15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a76565b6000611cfc83610f38565b9050806001600160a01b0316846001600160a01b03161480611d375750836001600160a01b0316611d2c84610a01565b6001600160a01b0316145b80611d6757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611d8282610f38565b6001600160a01b031614611dea5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610a76565b6001600160a01b038216611e4c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a76565b611e578383836120c6565b611e62600082611af1565b6001600160a01b0383166000908152600360205260408120805460019290611e8b908490612ab1565b90915550506001600160a01b0382166000908152600360205260408120805460019290611eb9908490612a50565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610f3482826040518060200160405280600081525061217e565b611f91848484611d6f565b611f9d848484846121b1565b61116f5760405162461bcd60e51b8152600401610a7690612c43565b60606011805461097e906129ff565b606081611fec5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612016578061200081612b64565b915061200f9050600a83612a9d565b9150611ff0565b60008167ffffffffffffffff8111156120315761203161277c565b6040519080825280601f01601f19166020018201604052801561205b576020820181803683370190505b5090505b8415611d6757612070600183612ab1565b915061207d600a86612c95565b612088906030612a50565b60f81b81838151811061209d5761209d612b19565b60200101906001600160f81b031916908160001a9053506120bf600a86612a9d565b945061205f565b6001600160a01b0383166121215761211c81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612144565b816001600160a01b0316836001600160a01b0316146121445761214483826122af565b6001600160a01b03821661215b57610bac8161234c565b826001600160a01b0316826001600160a01b031614610bac57610bac82826123fb565b612188838361243f565b61219560008484846121b1565b610bac5760405162461bcd60e51b8152600401610a7690612c43565b60006001600160a01b0384163b156122a457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906121f5903390899088908890600401612ca9565b6020604051808303816000875af1925050508015612230575060408051601f3d908101601f1916820190925261222d91810190612ce6565b60015b61228a573d80801561225e576040519150601f19603f3d011682016040523d82523d6000602084013e612263565b606091505b5080516122825760405162461bcd60e51b8152600401610a7690612c43565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d67565b506001949350505050565b600060016122bc8461103d565b6122c69190612ab1565b600083815260076020526040902054909150808214612319576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061235e90600190612ab1565b6000838152600960205260408120546008805493945090928490811061238657612386612b19565b9060005260206000200154905080600883815481106123a7576123a7612b19565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806123df576123df612d03565b6001900381819060005260206000200160009055905550505050565b60006124068361103d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166124955760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a76565b6000818152600260205260409020546001600160a01b0316156124fa5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a76565b612506600083836120c6565b6001600160a01b038216600090815260036020526040812080546001929061252f908490612a50565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612599906129ff565b90600052602060002090601f0160209004810192826125bb5760008555612601565b82601f106125d457805160ff1916838001178555612601565b82800160010185558215612601579182015b828111156126015782518255916020019190600101906125e6565b5061260d929150612611565b5090565b5b8082111561260d5760008155600101612612565b6001600160e01b031981168114611a3857600080fd5b60006020828403121561264e57600080fd5b813561167b81612626565b60005b8381101561267457818101518382015260200161265c565b8381111561116f5750506000910152565b6000815180845261269d816020860160208601612659565b601f01601f19169290920160200192915050565b60208152600061167b6020830184612685565b6000602082840312156126d657600080fd5b5035919050565b6001600160a01b0381168114611a3857600080fd5b6000806040838503121561270557600080fd5b8235612710816126dd565b946020939093013593505050565b60006020828403121561273057600080fd5b813561167b816126dd565b60008060006060848603121561275057600080fd5b833561275b816126dd565b9250602084013561276b816126dd565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156127ad576127ad61277c565b604051601f8501601f19908116603f011681019082821181831017156127d5576127d561277c565b816040528093508581528686860111156127ee57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561281a57600080fd5b813567ffffffffffffffff81111561283157600080fd5b8201601f8101841361284257600080fd5b611d6784823560208401612792565b6000806040838503121561286457600080fd5b823561286f816126dd565b9150602083013561287f816126dd565b809150509250929050565b600082601f83011261289b57600080fd5b61167b83833560208501612792565b600080604083850312156128bd57600080fd5b82359150602083013567ffffffffffffffff8111156128db57600080fd5b6128e78582860161288a565b9150509250929050565b6000806040838503121561290457600080fd5b823561290f816126dd565b91506020830135801515811461287f57600080fd5b60006020828403121561293657600080fd5b813567ffffffffffffffff81111561294d57600080fd5b611d678482850161288a565b6000806000806080858703121561296f57600080fd5b843561297a816126dd565b9350602085013561298a816126dd565b925060408501359150606085013567ffffffffffffffff8111156129ad57600080fd5b6129b98782880161288a565b91505092959194509250565b600080604083850312156129d857600080fd5b82356129e3816126dd565b9150602083013567ffffffffffffffff8111156128db57600080fd5b600181811c90821680612a1357607f821691505b60208210811415612a3457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115612a6357612a63612a3a565b500190565b6000816000190483118215151615612a8257612a82612a3a565b500290565b634e487b7160e01b600052601260045260246000fd5b600082612aac57612aac612a87565b500490565b600082821015612ac357612ac3612a3a565b500390565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000600019821415612b7857612b78612a3a565b5060010190565b600084516020612b928285838a01612659565b855191840191612ba58184848a01612659565b8554920191600090600181811c9080831680612bc257607f831692505b858310811415612be057634e487b7160e01b85526022600452602485fd5b808015612bf45760018114612c0557612c32565b60ff19851688528388019550612c32565b60008b81526020902060005b85811015612c2a5781548a820152908401908801612c11565b505083880195505b50939b9a5050505050505050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612ca457612ca4612a87565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612cdc90830184612685565b9695505050505050565b600060208284031215612cf857600080fd5b815161167b81612626565b634e487b7160e01b600052603160045260246000fdfea26469706673582212208dc85321b9325e0da2a153e6131ebaa83ede765185dbe362945d1183f0648a3d64736f6c634300080b0033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000a446567656e7a2044656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000344475a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d64775a4d354662584b786662586f4d615677546f76634c68795a647a51634e566952466a4d33454d565657592f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d59397343424e69586a4539446b595a767572366879593838476d6d78516574525634326148664134754237522f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Degenz Den
Arg [1] : _symbol (string): DGZ
Arg [2] : _initBaseURI (string): ipfs://QmdwZM5FbXKxfbXoMaVwTovcLhyZdzQcNViRFjM3EMVVWY/
Arg [3] : _initHiddenURI (string): ipfs://QmY9sCBNiXjE9DkYZvur6hyY88GmmxQetRV42aHfA4uB7R/hidden.json
Arg [4] : _OWNER_MINT_AMOUNT (uint256): 50

-----Encoded View---------------
16 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [6] : 446567656e7a2044656e00000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 44475a0000000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [10] : 697066733a2f2f516d64775a4d354662584b786662586f4d615677546f76634c
Arg [11] : 68795a647a51634e566952466a4d33454d565657592f00000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [13] : 697066733a2f2f516d59397343424e69586a4539446b595a7675723668795938
Arg [14] : 38476d6d78516574525634326148664134754237522f68696464656e2e6a736f
Arg [15] : 6e00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

59124:8786:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32224:40;29408:10;32224:40;;;-1:-1:-1;;;;;206:32:1;;;188:51;;32254:9:0;270:2:1;255:18;;248:34;161:18;32224:40:0;;;;;;;59124:8786;;;;;50134:300;;;;;;;;;;-1:-1:-1;50134:300:0;;;;;:::i;:::-;;:::i;:::-;;;844:14:1;;837:22;819:41;;807:2;792:18;50134:300:0;;;;;;;;37298:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;38991:308::-;;;;;;;;;;-1:-1:-1;38991:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1971:32:1;;;1953:51;;1941:2;1926:18;38991:308:0;1807:203:1;38514:411:0;;;;;;;;;;-1:-1:-1;38514:411:0;;;;;:::i;:::-;;:::i;:::-;;50937:113;;;;;;;;;;-1:-1:-1;51025:10:0;:17;50937:113;;;2617:25:1;;;2605:2;2590:18;50937:113:0;2471:177:1;60126:55:0;;;;;;;;;;-1:-1:-1;60126:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;33430:639;;;;;;;;;;-1:-1:-1;33430:639:0;;;;;:::i;:::-;;:::i;40050:376::-;;;;;;;;;;-1:-1:-1;40050:376:0;;;;;:::i;:::-;;:::i;59970:33::-;;;;;;;;;;-1:-1:-1;59970:33:0;;;;;;;;;;;50518:343;;;;;;;;;;-1:-1:-1;50518:343:0;;;;;:::i;:::-;;:::i;59718:32::-;;;;;;;;;;;;;;;;32355:91;;;;;;;;;;-1:-1:-1;32426:12:0;;32355:91;;40497:185;;;;;;;;;;-1:-1:-1;40497:185:0;;;;;:::i;:::-;;:::i;51127:320::-;;;;;;;;;;-1:-1:-1;51127:320:0;;;;;:::i;:::-;;:::i;60043:28::-;;;;;;;;;;-1:-1:-1;60043:28:0;;;;;;;;;;;67125:106;;;;;;;;;;-1:-1:-1;67125:106:0;;;;;:::i;:::-;;:::i;36905:326::-;;;;;;;;;;-1:-1:-1;36905:326:0;;;;;:::i;:::-;;:::i;59417:21::-;;;;;;;;;;;;;:::i;36548:295::-;;;;;;;;;;-1:-1:-1;36548:295:0;;;;;:::i;:::-;;:::i;58214:94::-;;;;;;;;;;;;;:::i;62915:328::-;;;;;;;;;;-1:-1:-1;62915:328:0;;;;;:::i;:::-;;:::i;64097:199::-;;;;;;;;;;-1:-1:-1;64097:199:0;;;;;:::i;:::-;;:::i;67678:84::-;;;;;;;;;;;;;:::i;33130:100::-;;;;;;;;;;-1:-1:-1;33130:100:0;;;;;:::i;:::-;;:::i;59486:23::-;;;;;;;;;;;;;:::i;57563:87::-;;;;;;;;;;-1:-1:-1;57636:6:0;;-1:-1:-1;;;;;57636:6:0;57563:87;;67808:99;;;;;;;;;;;;;:::i;37467:104::-;;;;;;;;;;;;;:::i;64638:274::-;;;;;;;;;;-1:-1:-1;64638:274:0;;;;;:::i;:::-;;:::i;32930:109::-;;;;;;;;;;-1:-1:-1;32930:109:0;;;;;:::i;:::-;-1:-1:-1;;;;;33013:18:0;32986:7;33013:18;;;:9;:18;;;;;;;32930:109;39371:327;;;;;;;;;;-1:-1:-1;39371:327:0;;;;;:::i;:::-;;:::i;67512:125::-;;;;;;;;;;-1:-1:-1;67512:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;67602:27:0;67575:7;67602:27;;;:20;:27;;;;;;;67512:125;66659:71;;;;;;;;;;;;;:::i;64920:887::-;;;;;;;;;;-1:-1:-1;64920:887:0;;;;;:::i;:::-;;:::i;:::-;;;;6989:25:1;;;7045:2;7030:18;;7023:34;;;;7105:4;7093:17;7073:18;;;7066:45;6977:2;6962:18;64920:887:0;6791:326:1;40753:365:0;;;;;;;;;;-1:-1:-1;40753:365:0;;;;;:::i;:::-;;:::i;66914:108::-;;;;;;;;;;-1:-1:-1;66914:108:0;;;;;:::i;:::-;;:::i;59643:32::-;;;;;;;;;;;;;;;;59562:37;;;;;;;;;;;;;:::i;65905:713::-;;;;;;;;;;-1:-1:-1;65905:713:0;;;;;:::i;:::-;;:::i;32726:105::-;;;;;;;;;;-1:-1:-1;32726:105:0;;;;;:::i;:::-;-1:-1:-1;;;;;32807:16:0;32780:7;32807:16;;;:7;:16;;;;;;;32726:105;63663:426;;;;;;;;;;-1:-1:-1;63663:426:0;;;;;:::i;:::-;;:::i;67351:153::-;;;;;;;;;;-1:-1:-1;67351:153:0;;;;;:::i;:::-;;:::i;61687:1068::-;;;;;;:::i;:::-;;:::i;32540:95::-;;;;;;;;;;-1:-1:-1;32613:14:0;;32540:95;;59900:28;;;;;;;;;;-1:-1:-1;59900:28:0;;;;;;;;39769:214;;;;;;;;;;-1:-1:-1;39769:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;39940:25:0;;;39911:4;39940:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;39769:214;59823:27;;;;;;;;;;;;;;;;58463:229;;;;;;;;;;-1:-1:-1;58463:229:0;;;;;:::i;:::-;;:::i;64304:326::-;;;;;;;;;;-1:-1:-1;64304:326:0;;;;;:::i;:::-;;:::i;50134:300::-;50281:4;-1:-1:-1;;;;;;50323:50:0;;-1:-1:-1;;;50323:50:0;;:103;;;50390:36;50414:11;50390:23;:36::i;:::-;50303:123;50134:300;-1:-1:-1;;50134:300:0:o;37298:100::-;37352:13;37385:5;37378:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37298:100;:::o;38991:308::-;39112:7;42754:16;;;:7;:16;;;;;;-1:-1:-1;;;;;42754:16:0;39137:110;;;;-1:-1:-1;;;39137:110:0;;9417:2:1;39137:110:0;;;9399:21:1;9456:2;9436:18;;;9429:30;9495:34;9475:18;;;9468:62;-1:-1:-1;;;9546:18:1;;;9539:42;9598:19;;39137:110:0;;;;;;;;;-1:-1:-1;39267:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;39267:24:0;;38991:308::o;38514:411::-;38595:13;38611:23;38626:7;38611:14;:23::i;:::-;38595:39;;38659:5;-1:-1:-1;;;;;38653:11:0;:2;-1:-1:-1;;;;;38653:11:0;;;38645:57;;;;-1:-1:-1;;;38645:57:0;;9830:2:1;38645:57:0;;;9812:21:1;9869:2;9849:18;;;9842:30;9908:34;9888:18;;;9881:62;-1:-1:-1;;;9959:18:1;;;9952:31;10000:19;;38645:57:0;9628:397:1;38645:57:0;29408:10;-1:-1:-1;;;;;38737:21:0;;;;:62;;-1:-1:-1;38762:37:0;38779:5;29408:10;39769:214;:::i;38762:37::-;38715:168;;;;-1:-1:-1;;;38715:168:0;;10232:2:1;38715:168:0;;;10214:21:1;10271:2;10251:18;;;10244:30;10310:34;10290:18;;;10283:62;10381:26;10361:18;;;10354:54;10425:19;;38715:168:0;10030:420:1;38715:168:0;38896:21;38905:2;38909:7;38896:8;:21::i;:::-;38584:341;38514:411;;:::o;33430:639::-;-1:-1:-1;;;;;33506:16:0;;33525:1;33506:16;;;:7;:16;;;;;;33498:71;;;;-1:-1:-1;;;33498:71:0;;10657:2:1;33498:71:0;;;10639:21:1;10696:2;10676:18;;;10669:30;10735:34;10715:18;;;10708:62;-1:-1:-1;;;10786:18:1;;;10779:36;10832:19;;33498:71:0;10455:402:1;33498:71:0;33582:21;33630:14;;33606:21;:38;;;;:::i;:::-;-1:-1:-1;;;;;33751:18:0;;33655:15;33751:18;;;:9;:18;;;;;;;;;33723:12;;33690:7;:16;;;;;;;33582:62;;-1:-1:-1;33655:15:0;;33674:32;;33582:62;33674:32;:::i;:::-;33673:62;;;;:::i;:::-;:96;;;;:::i;:::-;33655:114;-1:-1:-1;33790:12:0;33782:68;;;;-1:-1:-1;;;33782:68:0;;11889:2:1;33782:68:0;;;11871:21:1;11928:2;11908:18;;;11901:30;11967:34;11947:18;;;11940:62;-1:-1:-1;;;12018:18:1;;;12011:41;12069:19;;33782:68:0;11687:407:1;33782:68:0;-1:-1:-1;;;;;33884:18:0;;;;;;:9;:18;;;;;;:28;;33905:7;;33884:28;:::i;:::-;-1:-1:-1;;;;;33863:18:0;;;;;;:9;:18;;;;;:49;33940:14;;:24;;33957:7;;33940:24;:::i;:::-;33923:14;:41;33977:35;33995:7;34004;33977:17;:35::i;:::-;34028:33;;;-1:-1:-1;;;;;206:32:1;;188:51;;270:2;255:18;;248:34;;;34028:33:0;;161:18:1;34028:33:0;;;;;;;33487:582;;33430:639;:::o;40050:376::-;40259:41;29408:10;40292:7;40259:18;:41::i;:::-;40237:140;;;;-1:-1:-1;;;40237:140:0;;;;;;;:::i;:::-;40390:28;40400:4;40406:2;40410:7;40390:9;:28::i;50518:343::-;50660:7;50715:23;50732:5;50715:16;:23::i;:::-;50707:5;:31;50685:124;;;;-1:-1:-1;;;50685:124:0;;13006:2:1;50685:124:0;;;12988:21:1;13045:2;13025:18;;;13018:30;13084:34;13064:18;;;13057:62;-1:-1:-1;;;13135:18:1;;;13128:41;13186:19;;50685:124:0;12804:407:1;50685:124:0;-1:-1:-1;;;;;;50827:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;50518:343::o;40497:185::-;40635:39;40652:4;40658:2;40662:7;40635:39;;;;;;;;;;;;:16;:39::i;51127:320::-;51247:7;51302:30;51025:10;:17;;50937:113;51302:30;51294:5;:38;51272:132;;;;-1:-1:-1;;;51272:132:0;;13418:2:1;51272:132:0;;;13400:21:1;13457:2;13437:18;;;13430:30;13496:34;13476:18;;;13469:62;-1:-1:-1;;;13547:18:1;;;13540:42;13599:19;;51272:132:0;13216:408:1;51272:132:0;51422:10;51433:5;51422:17;;;;;;;;:::i;:::-;;;;;;;;;51415:24;;51127:320;;;:::o;67125:106::-;57636:6;;-1:-1:-1;;;;;57636:6:0;29408:10;57783:23;57775:68;;;;-1:-1:-1;;;57775:68:0;;;;;;;:::i;:::-;67202:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;67125:106:::0;:::o;36905:326::-;37022:7;37063:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37063:16:0;37112:19;37090:110;;;;-1:-1:-1;;;37090:110:0;;14324:2:1;37090:110:0;;;14306:21:1;14363:2;14343:18;;;14336:30;14402:34;14382:18;;;14375:62;-1:-1:-1;;;14453:18:1;;;14446:39;14502:19;;37090:110:0;14122:405:1;59417:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;36548:295::-;36665:7;-1:-1:-1;;;;;36712:19:0;;36690:111;;;;-1:-1:-1;;;36690:111:0;;14734:2:1;36690:111:0;;;14716:21:1;14773:2;14753:18;;;14746:30;14812:34;14792:18;;;14785:62;-1:-1:-1;;;14863:18:1;;;14856:40;14913:19;;36690:111:0;14532:406:1;36690:111:0;-1:-1:-1;;;;;;36819:16:0;;;;;:9;:16;;;;;;;36548:295::o;58214:94::-;57636:6;;-1:-1:-1;;;;;57636:6:0;29408:10;57783:23;57775:68;;;;-1:-1:-1;;;57775:68:0;;;;;;;:::i;:::-;58279:21:::1;58297:1;58279:9;:21::i;:::-;58214:94::o:0;62915:328::-;57636:6;;-1:-1:-1;;;;;57636:6:0;29408:10;57783:23;57775:68;;;;-1:-1:-1;;;57775:68:0;;;;;;;:::i;:::-;63000:16:::1;63019:25;:15;28206:14:::0;;28114:114;63019:25:::1;63000:44;;63102:9;63097:139;63121:11;63117:1;:15;63097:139;;;63154:28;63164:3:::0;63169:12:::1;63180:1:::0;63169:8;:12:::1;:::i;:::-;63154:9;:28::i;:::-;63197:27;:15;28325:19:::0;;28343:1;28325:19;;;28236:127;63197:27:::1;63134:3:::0;::::1;::::0;::::1;:::i;:::-;;;;63097:139;;;;62989:254;62915:328:::0;;:::o;64097:199::-;64249:38;;-1:-1:-1;;15310:2:1;15306:15;;;15302:24;;64249:38:0;;;15290:37:1;15361:15;;;15357:24;15343:12;;;15336:46;64207:7:0;;15398:12:1;;64249:38:0;;;;;;;;;;;;64239:49;;;;;;64232:56;;64097:199;;;;:::o;67678:84::-;57636:6;;-1:-1:-1;;;;;57636:6:0;29408:10;57783:23;57775:68;;;;-1:-1:-1;;;57775:68:0;;;;;;;:::i;:::-;67746:8:::1;::::0;;-1:-1:-1;;67734:20:0;::::1;67746:8;::::0;;::::1;67745:9;67734:20;::::0;;67678:84::o;33130:100::-;33181:7;33208;33216:5;33208:14;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;33208:14:0;;33130:100;-1:-1:-1;;33130:100:0:o;59486:23::-;;;;;;;:::i;67808:99::-;57636:6;;-1:-1:-1;;;;;57636:6:0;29408:10;57783:23;57775:68;;;;-1:-1:-1;;;57775:68:0;;;;;;;:::i;:::-;67886:13:::1;::::0;;-1:-1:-1;;67869:30:0;::::1;67886:13;::::0;;;::::1;;;67885:14;67869:30:::0;;::::1;;::::0;;67808:99::o;37467:104::-;37523:13;37556:7;37549:14;;;;;:::i;64638:274::-;64763:7;64784:9;64795;64806:7;64817:26;64832:10;64817:14;:26::i;:::-;64863:41;;;;;;;;;;;;15648:25:1;;;15721:4;15709:17;;15689:18;;;15682:45;;;;15743:18;;;15736:34;;;15786:18;;;15779:34;;;64783:60:0;;-1:-1:-1;64783:60:0;;-1:-1:-1;64783:60:0;-1:-1:-1;64863:41:0;;15620:19:1;;64863:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;64863:41:0;;-1:-1:-1;;64863:41:0;;;64638:274;-1:-1:-1;;;;;;;64638:274:0:o;39371:327::-;-1:-1:-1;;;;;39506:24:0;;29408:10;39506:24;;39498:62;;;;-1:-1:-1;;;39498:62:0;;16026:2:1;39498:62:0;;;16008:21:1;16065:2;16045:18;;;16038:30;16104:27;16084:18;;;16077:55;16149:18;;39498:62:0;15824:349:1;39498:62:0;29408:10;39573:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;39573:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;39573:53:0;;;;;;;;;;39642:48;;819:41:1;;;39573:42:0;;29408:10;39642:48;;792:18:1;39642:48:0;;;;;;;39371:327;;:::o;66659:71::-;57636:6;;-1:-1:-1;;;;;57636:6:0;29408:10;57783:23;57775:68;;;;-1:-1:-1;;;57775:68:0;;;;;;;:::i;:::-;66707:8:::1;:15:::0;;-1:-1:-1;;66707:15:0::1;::::0;::::1;::::0;;66659:71::o;64920:887::-;65024:9;65048;65072:7;65115:3;:10;65129:2;65115:16;65107:53;;;;-1:-1:-1;;;65107:53:0;;16380:2:1;65107:53:0;;;16362:21:1;16419:2;16399:18;;;16392:30;16458:26;16438:18;;;16431:54;16502:18;;65107:53:0;16178:348:1;65107:53:0;-1:-1:-1;;;65565:2:0;65556:12;;65550:19;65635:2;65626:12;;65620:19;65742:2;65733:12;;;65727:19;65550;;65724:1;65719:28;;;;;64920:887::o;40753:365::-;40942:41;29408:10;40975:7;40942:18;:41::i;:::-;40920:140;;;;-1:-1:-1;;;40920:140:0;;;;;;;:::i;:::-;41071:39;41085:4;41091:2;41095:7;41104:5;41071:13;:39::i;66914:108::-;57636:6;;-1:-1:-1;;;;;57636:6:0;29408:10;57783:23;57775:68;;;;-1:-1:-1;;;57775:68:0;;;;;;;:::i;:::-;66992:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;59562:37::-:0;;;;;;;:::i;65905:713::-;42730:4;42754:16;;;:7;:16;;;;;;66023:13;;-1:-1:-1;;;;;42754:16:0;66054:114;;;;-1:-1:-1;;;66054:114:0;;16733:2:1;66054:114:0;;;16715:21:1;16772:2;16752:18;;;16745:30;16811:34;16791:18;;;16784:62;-1:-1:-1;;;16862:18:1;;;16855:46;16918:19;;66054:114:0;16531:412:1;66054:114:0;66186:8;;;;;;;66181:58;;66218:9;66211:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65905:713;;;:::o;66181:58::-;66251:28;66282:10;:8;:10::i;:::-;66251:41;;66354:1;66329:14;66323:28;:32;:287;;;;;;;;;;;;;;;;;66447:14;66488:18;:7;:16;:18::i;:::-;66533:13;66404:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;66323:287;66303:307;65905:713;-1:-1:-1;;;65905:713:0:o;63663:426::-;63781:4;63804:9;63815;63826:7;63837:26;63852:10;63837:14;:26::i;:::-;63803:60;;;;;;63874:19;63896:36;63919:4;63926:5;63896:14;:36::i;:::-;63874:58;;63943:28;63974:36;63998:11;63974:23;:36::i;:::-;64041:40;;;;;;;;;;;;15648:25:1;;;15721:4;15709:17;;15689:18;;;15682:45;;;;15743:18;;;15736:34;;;15786:18;;;15779:34;;;63943:67:0;;-1:-1:-1;64041:40:0;;15620:19:1;;64041:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;64030:51:0;:7;57636:6;;-1:-1:-1;;;;;57636:6:0;;57563:87;64030:7;-1:-1:-1;;;;;64030:51:0;;;63663:426;-1:-1:-1;;;;;;;;63663:426:0:o;67351:153::-;57636:6;;-1:-1:-1;;;;;57636:6:0;29408:10;57783:23;57775:68;;;;-1:-1:-1;;;57775:68:0;;;;;;;:::i;:::-;67463:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;61687:1068::-:0;61895:8;;;;;:92;;-1:-1:-1;61925:13:0;;;;;;;:61;;;;;61942:44;61963:10;61975;61942:20;:44::i;:::-;61873:161;;;;-1:-1:-1;;;61873:161:0;;18808:2:1;61873:161:0;;;18790:21:1;18847:2;18827:18;;;18820:30;-1:-1:-1;;;18866:18:1;;;18859:49;18925:18;;61873:161:0;18606:343:1;61873:161:0;62067:1;62053:11;:15;:41;;;;;62086:8;;62072:11;:22;62053:41;62045:68;;;;-1:-1:-1;;;62045:68:0;;19156:2:1;62045:68:0;;;19138:21:1;19195:2;19175:18;;;19168:30;-1:-1:-1;;;19214:18:1;;;19207:44;19268:18;;62045:68:0;18954:338:1;62045:68:0;62124:16;62143:25;:15;28206:14;;28114:114;62143:25;62213:10;;62124:44;;-1:-1:-1;62187:22:0;62198:11;62124:44;62187:22;:::i;:::-;:36;;62179:69;;;;-1:-1:-1;;;62179:69:0;;19499:2:1;62179:69:0;;;19481:21:1;19538:2;19518:18;;;19511:30;-1:-1:-1;;;19557:18:1;;;19550:50;19617:18;;62179:69:0;19297:344:1;62179:69:0;62330:8;;62302:10;62281:32;;;;:20;:32;;;;;;:46;;62316:11;;62281:46;:::i;:::-;:57;62259:125;;;;-1:-1:-1;;;62259:125:0;;19848:2:1;62259:125:0;;;19830:21:1;19887:2;19867:18;;;19860:30;-1:-1:-1;;;19906:18:1;;;19899:48;19964:18;;62259:125:0;19646:342:1;62259:125:0;62423:11;62416:4;;:18;;;;:::i;:::-;62403:9;:31;62395:57;;;;-1:-1:-1;;;62395:57:0;;20195:2:1;62395:57:0;;;20177:21:1;20234:2;20214:18;;;20207:30;-1:-1:-1;;;20253:18:1;;;20246:43;20306:18;;62395:57:0;19993:337:1;62395:57:0;62565:10;62544:32;;;;:20;:32;;;;;:47;;62580:11;;62544:32;:47;;62580:11;;62544:47;:::i;:::-;;;;-1:-1:-1;62607:9:0;;-1:-1:-1;62602:146:0;62626:11;62622:1;:15;62602:146;;;62659:35;62669:10;62681:12;62692:1;62681:8;:12;:::i;62659:35::-;62709:27;:15;28325:19;;28343:1;28325:19;;;28236:127;62709:27;62639:3;;;;:::i;:::-;;;;62602:146;;58463:229;57636:6;;-1:-1:-1;;;;;57636:6:0;29408:10;57783:23;57775:68;;;;-1:-1:-1;;;57775:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;58566:22:0;::::1;58544:110;;;::::0;-1:-1:-1;;;58544:110:0;;20537:2:1;58544:110:0::1;::::0;::::1;20519:21:1::0;20576:2;20556:18;;;20549:30;20615:34;20595:18;;;20588:62;-1:-1:-1;;;20666:18:1;;;20659:36;20712:19;;58544:110:0::1;20335:402:1::0;58544:110:0::1;58665:19;58675:8;58665:9;:19::i;:::-;58463:229:::0;:::o;64304:326::-;64480:127;;20984:66:1;64480:127:0;;;20972:79:1;21067:12;;;21060:28;;;64407:7:0;;21104:12:1;;64480:127:0;;;;;;;;;;;;64452:170;;;;;;64432:190;;64304:326;;;:::o;28236:127::-;28325:19;;28343:1;28325:19;;;28236:127::o;28114:114::-;28206:14;;28114:114::o;10004:387::-;10327:20;10375:8;;;10004:387::o;36129:355::-;36276:4;-1:-1:-1;;;;;;36318:40:0;;-1:-1:-1;;;36318:40:0;;:105;;-1:-1:-1;;;;;;;36375:48:0;;-1:-1:-1;;;36375:48:0;36318:105;:158;;;-1:-1:-1;;;;;;;;;;20556:40:0;;;36440:36;20397:207;46788:174;46863:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;46863:29:0;-1:-1:-1;;;;;46863:29:0;;;;;;;;:24;;46917:23;46863:24;46917:14;:23::i;:::-;-1:-1:-1;;;;;46908:46:0;;;;;;;;;;;46788:174;;:::o;11326:391::-;11455:6;11430:21;:31;;11408:110;;;;-1:-1:-1;;;11408:110:0;;21329:2:1;11408:110:0;;;21311:21:1;21368:2;21348:18;;;21341:30;21407:31;21387:18;;;21380:59;21456:18;;11408:110:0;21127:353:1;11408:110:0;11532:12;11550:9;-1:-1:-1;;;;;11550:14:0;11572:6;11550:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11531:52;;;11616:7;11594:115;;;;-1:-1:-1;;;11594:115:0;;21897:2:1;11594:115:0;;;21879:21:1;21936:2;21916:18;;;21909:30;21975:34;21955:18;;;21948:62;22046:28;22026:18;;;22019:56;22092:19;;11594:115:0;21695:422:1;42959:452:0;43088:4;42754:16;;;:7;:16;;;;;;-1:-1:-1;;;;;42754:16:0;43110:110;;;;-1:-1:-1;;;43110:110:0;;22324:2:1;43110:110:0;;;22306:21:1;22363:2;22343:18;;;22336:30;22402:34;22382:18;;;22375:62;-1:-1:-1;;;22453:18:1;;;22446:42;22505:19;;43110:110:0;22122:408:1;43110:110:0;43231:13;43247:23;43262:7;43247:14;:23::i;:::-;43231:39;;43300:5;-1:-1:-1;;;;;43289:16:0;:7;-1:-1:-1;;;;;43289:16:0;;:64;;;;43346:7;-1:-1:-1;;;;;43322:31:0;:20;43334:7;43322:11;:20::i;:::-;-1:-1:-1;;;;;43322:31:0;;43289:64;:113;;;-1:-1:-1;;;;;;39940:25:0;;;39911:4;39940:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;43370:32;43281:122;42959:452;-1:-1:-1;;;;42959:452:0:o;46055:615::-;46228:4;-1:-1:-1;;;;;46201:31:0;:23;46216:7;46201:14;:23::i;:::-;-1:-1:-1;;;;;46201:31:0;;46179:122;;;;-1:-1:-1;;;46179:122:0;;22737:2:1;46179:122:0;;;22719:21:1;22776:2;22756:18;;;22749:30;22815:34;22795:18;;;22788:62;-1:-1:-1;;;22866:18:1;;;22859:39;22915:19;;46179:122:0;22535:405:1;46179:122:0;-1:-1:-1;;;;;46320:16:0;;46312:65;;;;-1:-1:-1;;;46312:65:0;;23147:2:1;46312:65:0;;;23129:21:1;23186:2;23166:18;;;23159:30;23225:34;23205:18;;;23198:62;-1:-1:-1;;;23276:18:1;;;23269:34;23320:19;;46312:65:0;22945:400:1;46312:65:0;46390:39;46411:4;46417:2;46421:7;46390:20;:39::i;:::-;46494:29;46511:1;46515:7;46494:8;:29::i;:::-;-1:-1:-1;;;;;46536:15:0;;;;;;:9;:15;;;;;:20;;46555:1;;46536:15;:20;;46555:1;;46536:20;:::i;:::-;;;;-1:-1:-1;;;;;;;46567:13:0;;;;;;:9;:13;;;;;:18;;46584:1;;46567:13;:18;;46584:1;;46567:18;:::i;:::-;;;;-1:-1:-1;;46596:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;46596:21:0;-1:-1:-1;;;;;46596:21:0;;;;;;;;;46635:27;;46596:16;;46635:27;;;;;;;46055:615;;;:::o;58700:173::-;58775:6;;;-1:-1:-1;;;;;58792:17:0;;;-1:-1:-1;;;;;;58792:17:0;;;;;;;58825:40;;58775:6;;;58792:17;58775:6;;58825:40;;58756:16;;58825:40;58745:128;58700:173;:::o;43753:110::-;43829:26;43839:2;43843:7;43829:26;;;;;;;;;;;;:9;:26::i;42000:352::-;42157:28;42167:4;42173:2;42177:7;42157:9;:28::i;:::-;42218:48;42241:4;42247:2;42251:7;42260:5;42218:22;:48::i;:::-;42196:148;;;;-1:-1:-1;;;42196:148:0;;;;;;;:::i;61474:108::-;61534:13;61567:7;61560:14;;;;;:::i;7451:723::-;7507:13;7728:10;7724:53;;-1:-1:-1;;7755:10:0;;;;;;;;;;;;-1:-1:-1;;;7755:10:0;;;;;7451:723::o;7724:53::-;7802:5;7787:12;7843:78;7850:9;;7843:78;;7876:8;;;;:::i;:::-;;-1:-1:-1;7899:10:0;;-1:-1:-1;7907:2:0;7899:10;;:::i;:::-;;;7843:78;;;7931:19;7963:6;7953:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7953:17:0;;7931:39;;7981:154;7988:10;;7981:154;;8015:11;8025:1;8015:11;;:::i;:::-;;-1:-1:-1;8084:10:0;8092:2;8084:5;:10;:::i;:::-;8071:24;;:2;:24;:::i;:::-;8058:39;;8041:6;8048;8041:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8041:56:0;;;;;;;;-1:-1:-1;8112:11:0;8121:2;8112:11;;:::i;:::-;;;7981:154;;52060:589;-1:-1:-1;;;;;52266:18:0;;52262:187;;52301:40;52333:7;53476:10;:17;;53449:24;;;;:15;:24;;;;;:44;;;53504:24;;;;;;;;;;;;53372:164;52301:40;52262:187;;;52371:2;-1:-1:-1;;;;;52363:10:0;:4;-1:-1:-1;;;;;52363:10:0;;52359:90;;52390:47;52423:4;52429:7;52390:32;:47::i;:::-;-1:-1:-1;;;;;52463:16:0;;52459:183;;52496:45;52533:7;52496:36;:45::i;52459:183::-;52569:4;-1:-1:-1;;;;;52563:10:0;:2;-1:-1:-1;;;;;52563:10:0;;52559:83;;52590:40;52618:2;52622:7;52590:27;:40::i;44090:321::-;44220:18;44226:2;44230:7;44220:5;:18::i;:::-;44271:54;44302:1;44306:2;44310:7;44319:5;44271:22;:54::i;:::-;44249:154;;;;-1:-1:-1;;;44249:154:0;;;;;;;:::i;47527:980::-;47682:4;-1:-1:-1;;;;;47703:13:0;;10327:20;10375:8;47699:801;;47756:175;;-1:-1:-1;;;47756:175:0;;-1:-1:-1;;;;;47756:36:0;;;;;:175;;29408:10;;47850:4;;47877:7;;47907:5;;47756:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47756:175:0;;;;;;;;-1:-1:-1;;47756:175:0;;;;;;;;;;;;:::i;:::-;;;47735:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48114:13:0;;48110:320;;48157:108;;-1:-1:-1;;;48157:108:0;;;;;;;:::i;48110:320::-;48380:6;48374:13;48365:6;48361:2;48357:15;48350:38;47735:710;-1:-1:-1;;;;;;47995:51:0;-1:-1:-1;;;47995:51:0;;-1:-1:-1;47988:58:0;;47699:801;-1:-1:-1;48484:4:0;47527:980;;;;;;:::o;54163:1002::-;54443:22;54493:1;54468:22;54485:4;54468:16;:22::i;:::-;:26;;;;:::i;:::-;54505:18;54526:26;;;:17;:26;;;;;;54443:51;;-1:-1:-1;54659:28:0;;;54655:328;;-1:-1:-1;;;;;54726:18:0;;54704:19;54726:18;;;:12;:18;;;;;;;;:34;;;;;;;;;54777:30;;;;;;:44;;;54894:30;;:17;:30;;;;;:43;;;54655:328;-1:-1:-1;55079:26:0;;;;:17;:26;;;;;;;;55072:33;;;-1:-1:-1;;;;;55123:18:0;;;;;:12;:18;;;;;:34;;;;;;;55116:41;54163:1002::o;55460:1079::-;55738:10;:17;55713:22;;55738:21;;55758:1;;55738:21;:::i;:::-;55770:18;55791:24;;;:15;:24;;;;;;56164:10;:26;;55713:46;;-1:-1:-1;55791:24:0;;55713:46;;56164:26;;;;;;:::i;:::-;;;;;;;;;56142:48;;56228:11;56203:10;56214;56203:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;56308:28;;;:15;:28;;;;;;;:41;;;56480:24;;;;;56473:31;56515:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;55531:1008;;;55460:1079;:::o;52950:221::-;53035:14;53052:20;53069:2;53052:16;:20::i;:::-;-1:-1:-1;;;;;53083:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;53128:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;52950:221:0:o;44747:382::-;-1:-1:-1;;;;;44827:16:0;;44819:61;;;;-1:-1:-1;;;44819:61:0;;24968:2:1;44819:61:0;;;24950:21:1;;;24987:18;;;24980:30;25046:34;25026:18;;;25019:62;25098:18;;44819:61:0;24766:356:1;44819:61:0;42730:4;42754:16;;;:7;:16;;;;;;-1:-1:-1;;;;;42754:16:0;:30;44891:58;;;;-1:-1:-1;;;44891:58:0;;25329:2:1;44891:58:0;;;25311:21:1;25368:2;25348:18;;;25341:30;25407;25387:18;;;25380:58;25455:18;;44891:58:0;25127:352:1;44891:58:0;44962:45;44991:1;44995:2;44999:7;44962:20;:45::i;:::-;-1:-1:-1;;;;;45020:13:0;;;;;;:9;:13;;;;;:18;;45037:1;;45020:13;:18;;45037:1;;45020:18;:::i;:::-;;;;-1:-1:-1;;45049:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;45049:21:0;-1:-1:-1;;;;;45049:21:0;;;;;;;;45088:33;;45049:16;;;45088:33;;45049:16;;45088:33;44747:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;293:131:1;-1:-1:-1;;;;;;367:32:1;;357:43;;347:71;;414:1;411;404:12;429:245;487:6;540:2;528:9;519:7;515:23;511:32;508:52;;;556:1;553;546:12;508:52;595:9;582:23;614:30;638:5;614:30;:::i;871:258::-;943:1;953:113;967:6;964:1;961:13;953:113;;;1043:11;;;1037:18;1024:11;;;1017:39;989:2;982:10;953:113;;;1084:6;1081:1;1078:13;1075:48;;;-1:-1:-1;;1119:1:1;1101:16;;1094:27;871:258::o;1134:::-;1176:3;1214:5;1208:12;1241:6;1236:3;1229:19;1257:63;1313:6;1306:4;1301:3;1297:14;1290:4;1283:5;1279:16;1257:63;:::i;:::-;1374:2;1353:15;-1:-1:-1;;1349:29:1;1340:39;;;;1381:4;1336:50;;1134:258;-1:-1:-1;;1134:258:1:o;1397:220::-;1546:2;1535:9;1528:21;1509:4;1566:45;1607:2;1596:9;1592:18;1584:6;1566:45;:::i;1622:180::-;1681:6;1734:2;1722:9;1713:7;1709:23;1705:32;1702:52;;;1750:1;1747;1740:12;1702:52;-1:-1:-1;1773:23:1;;1622:180;-1:-1:-1;1622:180:1:o;2015:131::-;-1:-1:-1;;;;;2090:31:1;;2080:42;;2070:70;;2136:1;2133;2126:12;2151:315;2219:6;2227;2280:2;2268:9;2259:7;2255:23;2251:32;2248:52;;;2296:1;2293;2286:12;2248:52;2335:9;2322:23;2354:31;2379:5;2354:31;:::i;:::-;2404:5;2456:2;2441:18;;;;2428:32;;-1:-1:-1;;;2151:315:1:o;2653:247::-;2712:6;2765:2;2753:9;2744:7;2740:23;2736:32;2733:52;;;2781:1;2778;2771:12;2733:52;2820:9;2807:23;2839:31;2864:5;2839:31;:::i;3165:456::-;3242:6;3250;3258;3311:2;3299:9;3290:7;3286:23;3282:32;3279:52;;;3327:1;3324;3317:12;3279:52;3366:9;3353:23;3385:31;3410:5;3385:31;:::i;:::-;3435:5;-1:-1:-1;3492:2:1;3477:18;;3464:32;3505:33;3464:32;3505:33;:::i;:::-;3165:456;;3557:7;;-1:-1:-1;;;3611:2:1;3596:18;;;;3583:32;;3165:456::o;3626:127::-;3687:10;3682:3;3678:20;3675:1;3668:31;3718:4;3715:1;3708:15;3742:4;3739:1;3732:15;3758:632;3823:5;3853:18;3894:2;3886:6;3883:14;3880:40;;;3900:18;;:::i;:::-;3975:2;3969:9;3943:2;4029:15;;-1:-1:-1;;4025:24:1;;;4051:2;4021:33;4017:42;4005:55;;;4075:18;;;4095:22;;;4072:46;4069:72;;;4121:18;;:::i;:::-;4161:10;4157:2;4150:22;4190:6;4181:15;;4220:6;4212;4205:22;4260:3;4251:6;4246:3;4242:16;4239:25;4236:45;;;4277:1;4274;4267:12;4236:45;4327:6;4322:3;4315:4;4307:6;4303:17;4290:44;4382:1;4375:4;4366:6;4358;4354:19;4350:30;4343:41;;;;3758:632;;;;;:::o;4395:451::-;4464:6;4517:2;4505:9;4496:7;4492:23;4488:32;4485:52;;;4533:1;4530;4523:12;4485:52;4573:9;4560:23;4606:18;4598:6;4595:30;4592:50;;;4638:1;4635;4628:12;4592:50;4661:22;;4714:4;4706:13;;4702:27;-1:-1:-1;4692:55:1;;4743:1;4740;4733:12;4692:55;4766:74;4832:7;4827:2;4814:16;4809:2;4805;4801:11;4766:74;:::i;4851:388::-;4919:6;4927;4980:2;4968:9;4959:7;4955:23;4951:32;4948:52;;;4996:1;4993;4986:12;4948:52;5035:9;5022:23;5054:31;5079:5;5054:31;:::i;:::-;5104:5;-1:-1:-1;5161:2:1;5146:18;;5133:32;5174:33;5133:32;5174:33;:::i;:::-;5226:7;5216:17;;;4851:388;;;;;:::o;5426:221::-;5468:5;5521:3;5514:4;5506:6;5502:17;5498:27;5488:55;;5539:1;5536;5529:12;5488:55;5561:80;5637:3;5628:6;5615:20;5608:4;5600:6;5596:17;5561:80;:::i;5652:388::-;5729:6;5737;5790:2;5778:9;5769:7;5765:23;5761:32;5758:52;;;5806:1;5803;5796:12;5758:52;5842:9;5829:23;5819:33;;5903:2;5892:9;5888:18;5875:32;5930:18;5922:6;5919:30;5916:50;;;5962:1;5959;5952:12;5916:50;5985:49;6026:7;6017:6;6006:9;6002:22;5985:49;:::i;:::-;5975:59;;;5652:388;;;;;:::o;6045:416::-;6110:6;6118;6171:2;6159:9;6150:7;6146:23;6142:32;6139:52;;;6187:1;6184;6177:12;6139:52;6226:9;6213:23;6245:31;6270:5;6245:31;:::i;:::-;6295:5;-1:-1:-1;6352:2:1;6337:18;;6324:32;6394:15;;6387:23;6375:36;;6365:64;;6425:1;6422;6415:12;6466:320;6534:6;6587:2;6575:9;6566:7;6562:23;6558:32;6555:52;;;6603:1;6600;6593:12;6555:52;6643:9;6630:23;6676:18;6668:6;6665:30;6662:50;;;6708:1;6705;6698:12;6662:50;6731:49;6772:7;6763:6;6752:9;6748:22;6731:49;:::i;7122:665::-;7217:6;7225;7233;7241;7294:3;7282:9;7273:7;7269:23;7265:33;7262:53;;;7311:1;7308;7301:12;7262:53;7350:9;7337:23;7369:31;7394:5;7369:31;:::i;:::-;7419:5;-1:-1:-1;7476:2:1;7461:18;;7448:32;7489:33;7448:32;7489:33;:::i;:::-;7541:7;-1:-1:-1;7595:2:1;7580:18;;7567:32;;-1:-1:-1;7650:2:1;7635:18;;7622:32;7677:18;7666:30;;7663:50;;;7709:1;7706;7699:12;7663:50;7732:49;7773:7;7764:6;7753:9;7749:22;7732:49;:::i;:::-;7722:59;;;7122:665;;;;;;;:::o;7792:455::-;7869:6;7877;7930:2;7918:9;7909:7;7905:23;7901:32;7898:52;;;7946:1;7943;7936:12;7898:52;7985:9;7972:23;8004:31;8029:5;8004:31;:::i;:::-;8054:5;-1:-1:-1;8110:2:1;8095:18;;8082:32;8137:18;8126:30;;8123:50;;;8169:1;8166;8159:12;8830:380;8909:1;8905:12;;;;8952;;;8973:61;;9027:4;9019:6;9015:17;9005:27;;8973:61;9080:2;9072:6;9069:14;9049:18;9046:38;9043:161;;;9126:10;9121:3;9117:20;9114:1;9107:31;9161:4;9158:1;9151:15;9189:4;9186:1;9179:15;9043:161;;8830:380;;;:::o;10862:127::-;10923:10;10918:3;10914:20;10911:1;10904:31;10954:4;10951:1;10944:15;10978:4;10975:1;10968:15;10994:128;11034:3;11065:1;11061:6;11058:1;11055:13;11052:39;;;11071:18;;:::i;:::-;-1:-1:-1;11107:9:1;;10994:128::o;11127:168::-;11167:7;11233:1;11229;11225:6;11221:14;11218:1;11215:21;11210:1;11203:9;11196:17;11192:45;11189:71;;;11240:18;;:::i;:::-;-1:-1:-1;11280:9:1;;11127:168::o;11300:127::-;11361:10;11356:3;11352:20;11349:1;11342:31;11392:4;11389:1;11382:15;11416:4;11413:1;11406:15;11432:120;11472:1;11498;11488:35;;11503:18;;:::i;:::-;-1:-1:-1;11537:9:1;;11432:120::o;11557:125::-;11597:4;11625:1;11622;11619:8;11616:34;;;11630:18;;:::i;:::-;-1:-1:-1;11667:9:1;;11557:125::o;12386:413::-;12588:2;12570:21;;;12627:2;12607:18;;;12600:30;12666:34;12661:2;12646:18;;12639:62;-1:-1:-1;;;12732:2:1;12717:18;;12710:47;12789:3;12774:19;;12386:413::o;13629:127::-;13690:10;13685:3;13681:20;13678:1;13671:31;13721:4;13718:1;13711:15;13745:4;13742:1;13735:15;13761:356;13963:2;13945:21;;;13982:18;;;13975:30;14041:34;14036:2;14021:18;;14014:62;14108:2;14093:18;;13761:356::o;14943:135::-;14982:3;-1:-1:-1;;15003:17:1;;15000:43;;;15023:18;;:::i;:::-;-1:-1:-1;15070:1:1;15059:13;;14943:135::o;17074:1527::-;17298:3;17336:6;17330:13;17362:4;17375:51;17419:6;17414:3;17409:2;17401:6;17397:15;17375:51;:::i;:::-;17489:13;;17448:16;;;;17511:55;17489:13;17448:16;17533:15;;;17511:55;:::i;:::-;17655:13;;17588:20;;;17628:1;;17715;17737:18;;;;17790;;;;17817:93;;17895:4;17885:8;17881:19;17869:31;;17817:93;17958:2;17948:8;17945:16;17925:18;17922:40;17919:167;;;-1:-1:-1;;;17985:33:1;;18041:4;18038:1;18031:15;18071:4;17992:3;18059:17;17919:167;18102:18;18129:110;;;;18253:1;18248:328;;;;18095:481;;18129:110;-1:-1:-1;;18164:24:1;;18150:39;;18209:20;;;;-1:-1:-1;18129:110:1;;18248:328;17021:1;17014:14;;;17058:4;17045:18;;18343:1;18357:169;18371:8;18368:1;18365:15;18357:169;;;18453:14;;18438:13;;;18431:37;18496:16;;;;18388:10;;18357:169;;;18361:3;;18557:8;18550:5;18546:20;18539:27;;18095:481;-1:-1:-1;18592:3:1;;17074:1527;-1:-1:-1;;;;;;;;;;;17074:1527:1:o;23350:414::-;23552:2;23534:21;;;23591:2;23571:18;;;23564:30;23630:34;23625:2;23610:18;;23603:62;-1:-1:-1;;;23696:2:1;23681:18;;23674:48;23754:3;23739:19;;23350:414::o;23769:112::-;23801:1;23827;23817:35;;23832:18;;:::i;:::-;-1:-1:-1;23866:9:1;;23769:112::o;23886:489::-;-1:-1:-1;;;;;24155:15:1;;;24137:34;;24207:15;;24202:2;24187:18;;24180:43;24254:2;24239:18;;24232:34;;;24302:3;24297:2;24282:18;;24275:31;;;24080:4;;24323:46;;24349:19;;24341:6;24323:46;:::i;:::-;24315:54;23886:489;-1:-1:-1;;;;;;23886:489:1:o;24380:249::-;24449:6;24502:2;24490:9;24481:7;24477:23;24473:32;24470:52;;;24518:1;24515;24508:12;24470:52;24550:9;24544:16;24569:30;24593:5;24569:30;:::i;24634:127::-;24695:10;24690:3;24686:20;24683:1;24676:31;24726:4;24723:1;24716:15;24750:4;24747:1;24740:15

Swarm Source

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