ETH Price: $3,071.29 (+0.74%)
Gas: 4 Gwei

Token

Degenerate Dachshunds (DD)
 

Overview

Max Total Supply

8,888 DD

Holders

2,506

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 DD
0x5C7559086660fBC23E126De6C7B286e289e471DA
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:
DegenerateDachshunds

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: contracts/DegenDach.sol

//SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;





contract DegenerateDachshunds is Ownable, ERC721 {
    using SafeMath for uint256;
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIds;

    uint public constant MAX_SUPPLY = 8888;
    uint public constant MAX_PER_MINT = 5;

    string public baseTokenURI;

    bool public saleIsActive = false;
    uint public price = 0.06 ether;

    constructor(string memory baseURI) ERC721("Degenerate Dachshunds", "DD") {
        setBaseURI(baseURI);
    }

    // Reserve a few NFTs
    function reserveNfts(uint _count, address _to) public onlyOwner {
        uint totalMinted = _tokenIds.current();

        require(totalMinted.add(_count) < MAX_SUPPLY, "Not enough NFTs left to reserve");

        for (uint i = 0; i < _count; i++) {
            _mintSingleNft(_to);
        }
    }

    // Get total supply minted
    function totalSupply() public view returns (uint) {
        return _tokenIds.current();
    }

    // Override empty _baseURI function 
    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }

    // Allow owner to set baseTokenURI
    function setBaseURI(string memory _baseTokenURI) public onlyOwner {
        baseTokenURI = _baseTokenURI;
    }

    // Set Sale state
    function setSaleState(bool _activeState) public onlyOwner {
        saleIsActive = _activeState;
    }

    // Update price
    function updatePrice(uint _newPrice) public onlyOwner {
        price = _newPrice;
    }

    // Mint NFTs
    function mintNft(uint _count) public payable {
        uint totalMinted = _tokenIds.current();

        require(totalMinted.add(_count) <= MAX_SUPPLY, "Not enough NFTs left!");
        require(_count >0 && _count <= MAX_PER_MINT, "Cannot mint specified number of NFTs.");
        require(saleIsActive, "Sale is not currently active!");
        require(msg.value >= price.mul(_count), "Not enough ether to purchase NFTs.");

        for (uint i = 0; i < _count; i++) {
            _mintSingleNft(msg.sender);
        }
    }

    // Mint a single NFT
    function _mintSingleNft(address _to) private {
        _tokenIds.increment();
        uint newTokenID = _tokenIds.current();
        _safeMint(_to, newTokenID);
    }

    // Withdraw ether
    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        require(balance > 0, "No ether left to withdraw");

        (bool success, ) = (msg.sender).call{value: balance}("");
        require(success, "Transfer failed.");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_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":"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":"baseTokenURI","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":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintNft","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"reserveNfts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_activeState","type":"bool"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"updatePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600960006101000a81548160ff02191690831515021790555066d529ae9e860000600a553480156200003757600080fd5b50604051620041783803806200417883398181016040528101906200005d9190620003f7565b6040518060400160405280601581526020017f446567656e657261746520446163687368756e647300000000000000000000008152506040518060400160405280600281526020017f4444000000000000000000000000000000000000000000000000000000000000815250620000e9620000dd6200013560201b60201c565b6200013d60201b60201c565b816001908051906020019062000101929190620002d5565b5080600290805190602001906200011a929190620002d5565b5050506200012e816200020160201b60201c565b506200062f565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002116200013560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000237620002ac60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000290576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002879062000463565b60405180910390fd5b8060089080519060200190620002a8929190620002d5565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002e3906200052b565b90600052602060002090601f01602090048101928262000307576000855562000353565b82601f106200032257805160ff191683800117855562000353565b8280016001018555821562000353579182015b828111156200035257825182559160200191906001019062000335565b5b50905062000362919062000366565b5090565b5b808211156200038157600081600090555060010162000367565b5090565b60006200039c6200039684620004ae565b62000485565b905082815260208101848484011115620003b557600080fd5b620003c2848285620004f5565b509392505050565b600082601f830112620003dc57600080fd5b8151620003ee84826020860162000385565b91505092915050565b6000602082840312156200040a57600080fd5b600082015167ffffffffffffffff8111156200042557600080fd5b6200043384828501620003ca565b91505092915050565b60006200044b602083620004e4565b9150620004588262000606565b602082019050919050565b600060208201905081810360008301526200047e816200043c565b9050919050565b600062000491620004a4565b90506200049f828262000561565b919050565b6000604051905090565b600067ffffffffffffffff821115620004cc57620004cb620005c6565b5b620004d782620005f5565b9050602081019050919050565b600082825260208201905092915050565b60005b8381101562000515578082015181840152602081019050620004f8565b8381111562000525576000848401525b50505050565b600060028204905060018216806200054457607f821691505b602082108114156200055b576200055a62000597565b5b50919050565b6200056c82620005f5565b810181811067ffffffffffffffff821117156200058e576200058d620005c6565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613b39806200063f6000396000f3fe6080604052600436106101b75760003560e01c8063715018a6116100ec578063ba9283d71161008a578063d547cfb711610064578063d547cfb7146105d5578063e985e9c514610600578063eb8d24441461063d578063f2fde38b14610668576101b7565b8063ba9283d714610546578063c4e370951461056f578063c87b56dd14610598576101b7565b806395d89b41116100c657806395d89b411461049e578063a035b1fe146104c9578063a22cb465146104f4578063b88d4fde1461051d576101b7565b8063715018a6146104335780638d6cc56d1461044a5780638da5cb5b14610473576101b7565b806323b872dd1161015957806342842e0e1161013357806342842e0e1461036757806355f804b3146103905780636352211e146103b957806370a08231146103f6576101b7565b806323b872dd146102fc57806332cb6b0c146103255780633ccfd60b14610350576101b7565b8063095ea7b311610195578063095ea7b31461026157806309d42b301461028a5780630d730acc146102b557806318160ddd146102d1576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906127af565b610691565b6040516101f09190612d5f565b60405180910390f35b34801561020557600080fd5b5061020e610773565b60405161021b9190612d7a565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612842565b610805565b6040516102589190612cf8565b60405180910390f35b34801561026d57600080fd5b506102886004803603810190610283919061274a565b61088a565b005b34801561029657600080fd5b5061029f6109a2565b6040516102ac919061307c565b60405180910390f35b6102cf60048036038101906102ca9190612842565b6109a7565b005b3480156102dd57600080fd5b506102e6610b2e565b6040516102f3919061307c565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e9190612644565b610b3f565b005b34801561033157600080fd5b5061033a610b9f565b604051610347919061307c565b60405180910390f35b34801561035c57600080fd5b50610365610ba5565b005b34801561037357600080fd5b5061038e60048036038101906103899190612644565b610d19565b005b34801561039c57600080fd5b506103b760048036038101906103b29190612801565b610d39565b005b3480156103c557600080fd5b506103e060048036038101906103db9190612842565b610dcf565b6040516103ed9190612cf8565b60405180910390f35b34801561040257600080fd5b5061041d600480360381019061041891906125df565b610e81565b60405161042a919061307c565b60405180910390f35b34801561043f57600080fd5b50610448610f39565b005b34801561045657600080fd5b50610471600480360381019061046c9190612842565b610fc1565b005b34801561047f57600080fd5b50610488611047565b6040516104959190612cf8565b60405180910390f35b3480156104aa57600080fd5b506104b3611070565b6040516104c09190612d7a565b60405180910390f35b3480156104d557600080fd5b506104de611102565b6040516104eb919061307c565b60405180910390f35b34801561050057600080fd5b5061051b6004803603810190610516919061270e565b611108565b005b34801561052957600080fd5b50610544600480360381019061053f9190612693565b61111e565b005b34801561055257600080fd5b5061056d6004803603810190610568919061286b565b611180565b005b34801561057b57600080fd5b5061059660048036038101906105919190612786565b61128d565b005b3480156105a457600080fd5b506105bf60048036038101906105ba9190612842565b611326565b6040516105cc9190612d7a565b60405180910390f35b3480156105e157600080fd5b506105ea6113cd565b6040516105f79190612d7a565b60405180910390f35b34801561060c57600080fd5b5061062760048036038101906106229190612608565b61145b565b6040516106349190612d5f565b60405180910390f35b34801561064957600080fd5b506106526114ef565b60405161065f9190612d5f565b60405180910390f35b34801561067457600080fd5b5061068f600480360381019061068a91906125df565b611502565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061075c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061076c575061076b826115fa565b5b9050919050565b60606001805461078290613337565b80601f01602080910402602001604051908101604052809291908181526020018280546107ae90613337565b80156107fb5780601f106107d0576101008083540402835291602001916107fb565b820191906000526020600020905b8154815290600101906020018083116107de57829003601f168201915b5050505050905090565b600061081082611664565b61084f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084690612f7c565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061089582610dcf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610906576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fd90612ffc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109256116d0565b73ffffffffffffffffffffffffffffffffffffffff16148061095457506109538161094e6116d0565b61145b565b5b610993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098a90612edc565b60405180910390fd5b61099d83836116d8565b505050565b600581565b60006109b36007611791565b90506122b86109cb838361179f90919063ffffffff16565b1115610a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0390612e7c565b60405180910390fd5b600082118015610a1d575060058211155b610a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5390612e9c565b60405180910390fd5b600960009054906101000a900460ff16610aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa29061305c565b60405180910390fd5b610ac082600a546117b590919063ffffffff16565b341015610b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af990612e5c565b60405180910390fd5b60005b82811015610b2957610b16336117cb565b8080610b219061339a565b915050610b05565b505050565b6000610b3a6007611791565b905090565b610b50610b4a6116d0565b826117f1565b610b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b869061303c565b60405180910390fd5b610b9a8383836118cf565b505050565b6122b881565b610bad6116d0565b73ffffffffffffffffffffffffffffffffffffffff16610bcb611047565b73ffffffffffffffffffffffffffffffffffffffff1614610c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1890612f9c565b60405180910390fd5b600047905060008111610c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6090612f5c565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1682604051610c8f90612ce3565b60006040518083038185875af1925050503d8060008114610ccc576040519150601f19603f3d011682016040523d82523d6000602084013e610cd1565b606091505b5050905080610d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0c9061301c565b60405180910390fd5b5050565b610d348383836040518060200160405280600081525061111e565b505050565b610d416116d0565b73ffffffffffffffffffffffffffffffffffffffff16610d5f611047565b73ffffffffffffffffffffffffffffffffffffffff1614610db5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dac90612f9c565b60405180910390fd5b8060089080519060200190610dcb929190612403565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6f90612f1c565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee990612efc565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f416116d0565b73ffffffffffffffffffffffffffffffffffffffff16610f5f611047565b73ffffffffffffffffffffffffffffffffffffffff1614610fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fac90612f9c565b60405180910390fd5b610fbf6000611b2b565b565b610fc96116d0565b73ffffffffffffffffffffffffffffffffffffffff16610fe7611047565b73ffffffffffffffffffffffffffffffffffffffff161461103d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103490612f9c565b60405180910390fd5b80600a8190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461107f90613337565b80601f01602080910402602001604051908101604052809291908181526020018280546110ab90613337565b80156110f85780601f106110cd576101008083540402835291602001916110f8565b820191906000526020600020905b8154815290600101906020018083116110db57829003601f168201915b5050505050905090565b600a5481565b61111a6111136116d0565b8383611bef565b5050565b61112f6111296116d0565b836117f1565b61116e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111659061303c565b60405180910390fd5b61117a84848484611d5c565b50505050565b6111886116d0565b73ffffffffffffffffffffffffffffffffffffffff166111a6611047565b73ffffffffffffffffffffffffffffffffffffffff16146111fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f390612f9c565b60405180910390fd5b60006112086007611791565b90506122b8611220848361179f90919063ffffffff16565b10611260576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125790612d9c565b60405180910390fd5b60005b8381101561128757611274836117cb565b808061127f9061339a565b915050611263565b50505050565b6112956116d0565b73ffffffffffffffffffffffffffffffffffffffff166112b3611047565b73ffffffffffffffffffffffffffffffffffffffff1614611309576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130090612f9c565b60405180910390fd5b80600960006101000a81548160ff02191690831515021790555050565b606061133182611664565b611370576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136790612fdc565b60405180910390fd5b600061137a611db8565b9050600081511161139a57604051806020016040528060008152506113c5565b806113a484611e4a565b6040516020016113b5929190612cbf565b6040516020818303038152906040525b915050919050565b600880546113da90613337565b80601f016020809104026020016040519081016040528092919081815260200182805461140690613337565b80156114535780601f1061142857610100808354040283529160200191611453565b820191906000526020600020905b81548152906001019060200180831161143657829003601f168201915b505050505081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600960009054906101000a900460ff1681565b61150a6116d0565b73ffffffffffffffffffffffffffffffffffffffff16611528611047565b73ffffffffffffffffffffffffffffffffffffffff161461157e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157590612f9c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e590612ddc565b60405180910390fd5b6115f781611b2b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661174b83610dcf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600081836117ad919061316c565b905092915050565b600081836117c391906131f3565b905092915050565b6117d56007611ff7565b60006117e16007611791565b90506117ed828261200d565b5050565b60006117fc82611664565b61183b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183290612ebc565b60405180910390fd5b600061184683610dcf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806118b557508373ffffffffffffffffffffffffffffffffffffffff1661189d84610805565b73ffffffffffffffffffffffffffffffffffffffff16145b806118c657506118c5818561145b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166118ef82610dcf565b73ffffffffffffffffffffffffffffffffffffffff1614611945576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193c90612fbc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ac90612e1c565b60405180910390fd5b6119c083838361202b565b6119cb6000826116d8565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a1b919061324d565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a72919061316c565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5590612e3c565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d4f9190612d5f565b60405180910390a3505050565b611d678484846118cf565b611d7384848484612030565b611db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da990612dbc565b60405180910390fd5b50505050565b606060088054611dc790613337565b80601f0160208091040260200160405190810160405280929190818152602001828054611df390613337565b8015611e405780601f10611e1557610100808354040283529160200191611e40565b820191906000526020600020905b815481529060010190602001808311611e2357829003601f168201915b5050505050905090565b60606000821415611e92576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ff2565b600082905060005b60008214611ec4578080611ead9061339a565b915050600a82611ebd91906131c2565b9150611e9a565b60008167ffffffffffffffff811115611f06577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611f385781602001600182028036833780820191505090505b5090505b60008514611feb57600182611f51919061324d565b9150600a85611f6091906133e3565b6030611f6c919061316c565b60f81b818381518110611fa8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611fe491906131c2565b9450611f3c565b8093505050505b919050565b6001816000016000828254019250508190555050565b6120278282604051806020016040528060008152506121c7565b5050565b505050565b60006120518473ffffffffffffffffffffffffffffffffffffffff16612222565b156121ba578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261207a6116d0565b8786866040518563ffffffff1660e01b815260040161209c9493929190612d13565b602060405180830381600087803b1580156120b657600080fd5b505af19250505080156120e757506040513d601f19601f820116820180604052508101906120e491906127d8565b60015b61216a573d8060008114612117576040519150601f19603f3d011682016040523d82523d6000602084013e61211c565b606091505b50600081511415612162576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215990612dbc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506121bf565b600190505b949350505050565b6121d18383612235565b6121de6000848484612030565b61221d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221490612dbc565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229c90612f3c565b60405180910390fd5b6122ae81611664565b156122ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e590612dfc565b60405180910390fd5b6122fa6000838361202b565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461234a919061316c565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461240f90613337565b90600052602060002090601f0160209004810192826124315760008555612478565b82601f1061244a57805160ff1916838001178555612478565b82800160010185558215612478579182015b8281111561247757825182559160200191906001019061245c565b5b5090506124859190612489565b5090565b5b808211156124a257600081600090555060010161248a565b5090565b60006124b96124b4846130bc565b613097565b9050828152602081018484840111156124d157600080fd5b6124dc8482856132f5565b509392505050565b60006124f76124f2846130ed565b613097565b90508281526020810184848401111561250f57600080fd5b61251a8482856132f5565b509392505050565b60008135905061253181613aa7565b92915050565b60008135905061254681613abe565b92915050565b60008135905061255b81613ad5565b92915050565b60008151905061257081613ad5565b92915050565b600082601f83011261258757600080fd5b81356125978482602086016124a6565b91505092915050565b600082601f8301126125b157600080fd5b81356125c18482602086016124e4565b91505092915050565b6000813590506125d981613aec565b92915050565b6000602082840312156125f157600080fd5b60006125ff84828501612522565b91505092915050565b6000806040838503121561261b57600080fd5b600061262985828601612522565b925050602061263a85828601612522565b9150509250929050565b60008060006060848603121561265957600080fd5b600061266786828701612522565b935050602061267886828701612522565b9250506040612689868287016125ca565b9150509250925092565b600080600080608085870312156126a957600080fd5b60006126b787828801612522565b94505060206126c887828801612522565b93505060406126d9878288016125ca565b925050606085013567ffffffffffffffff8111156126f657600080fd5b61270287828801612576565b91505092959194509250565b6000806040838503121561272157600080fd5b600061272f85828601612522565b925050602061274085828601612537565b9150509250929050565b6000806040838503121561275d57600080fd5b600061276b85828601612522565b925050602061277c858286016125ca565b9150509250929050565b60006020828403121561279857600080fd5b60006127a684828501612537565b91505092915050565b6000602082840312156127c157600080fd5b60006127cf8482850161254c565b91505092915050565b6000602082840312156127ea57600080fd5b60006127f884828501612561565b91505092915050565b60006020828403121561281357600080fd5b600082013567ffffffffffffffff81111561282d57600080fd5b612839848285016125a0565b91505092915050565b60006020828403121561285457600080fd5b6000612862848285016125ca565b91505092915050565b6000806040838503121561287e57600080fd5b600061288c858286016125ca565b925050602061289d85828601612522565b9150509250929050565b6128b081613281565b82525050565b6128bf81613293565b82525050565b60006128d08261311e565b6128da8185613134565b93506128ea818560208601613304565b6128f3816134d0565b840191505092915050565b600061290982613129565b6129138185613150565b9350612923818560208601613304565b61292c816134d0565b840191505092915050565b600061294282613129565b61294c8185613161565b935061295c818560208601613304565b80840191505092915050565b6000612975601f83613150565b9150612980826134e1565b602082019050919050565b6000612998603283613150565b91506129a38261350a565b604082019050919050565b60006129bb602683613150565b91506129c682613559565b604082019050919050565b60006129de601c83613150565b91506129e9826135a8565b602082019050919050565b6000612a01602483613150565b9150612a0c826135d1565b604082019050919050565b6000612a24601983613150565b9150612a2f82613620565b602082019050919050565b6000612a47602283613150565b9150612a5282613649565b604082019050919050565b6000612a6a601583613150565b9150612a7582613698565b602082019050919050565b6000612a8d602583613150565b9150612a98826136c1565b604082019050919050565b6000612ab0602c83613150565b9150612abb82613710565b604082019050919050565b6000612ad3603883613150565b9150612ade8261375f565b604082019050919050565b6000612af6602a83613150565b9150612b01826137ae565b604082019050919050565b6000612b19602983613150565b9150612b24826137fd565b604082019050919050565b6000612b3c602083613150565b9150612b478261384c565b602082019050919050565b6000612b5f601983613150565b9150612b6a82613875565b602082019050919050565b6000612b82602c83613150565b9150612b8d8261389e565b604082019050919050565b6000612ba5602083613150565b9150612bb0826138ed565b602082019050919050565b6000612bc8602983613150565b9150612bd382613916565b604082019050919050565b6000612beb602f83613150565b9150612bf682613965565b604082019050919050565b6000612c0e602183613150565b9150612c19826139b4565b604082019050919050565b6000612c31600083613145565b9150612c3c82613a03565b600082019050919050565b6000612c54601083613150565b9150612c5f82613a06565b602082019050919050565b6000612c77603183613150565b9150612c8282613a2f565b604082019050919050565b6000612c9a601d83613150565b9150612ca582613a7e565b602082019050919050565b612cb9816132eb565b82525050565b6000612ccb8285612937565b9150612cd78284612937565b91508190509392505050565b6000612cee82612c24565b9150819050919050565b6000602082019050612d0d60008301846128a7565b92915050565b6000608082019050612d2860008301876128a7565b612d3560208301866128a7565b612d426040830185612cb0565b8181036060830152612d5481846128c5565b905095945050505050565b6000602082019050612d7460008301846128b6565b92915050565b60006020820190508181036000830152612d9481846128fe565b905092915050565b60006020820190508181036000830152612db581612968565b9050919050565b60006020820190508181036000830152612dd58161298b565b9050919050565b60006020820190508181036000830152612df5816129ae565b9050919050565b60006020820190508181036000830152612e15816129d1565b9050919050565b60006020820190508181036000830152612e35816129f4565b9050919050565b60006020820190508181036000830152612e5581612a17565b9050919050565b60006020820190508181036000830152612e7581612a3a565b9050919050565b60006020820190508181036000830152612e9581612a5d565b9050919050565b60006020820190508181036000830152612eb581612a80565b9050919050565b60006020820190508181036000830152612ed581612aa3565b9050919050565b60006020820190508181036000830152612ef581612ac6565b9050919050565b60006020820190508181036000830152612f1581612ae9565b9050919050565b60006020820190508181036000830152612f3581612b0c565b9050919050565b60006020820190508181036000830152612f5581612b2f565b9050919050565b60006020820190508181036000830152612f7581612b52565b9050919050565b60006020820190508181036000830152612f9581612b75565b9050919050565b60006020820190508181036000830152612fb581612b98565b9050919050565b60006020820190508181036000830152612fd581612bbb565b9050919050565b60006020820190508181036000830152612ff581612bde565b9050919050565b6000602082019050818103600083015261301581612c01565b9050919050565b6000602082019050818103600083015261303581612c47565b9050919050565b6000602082019050818103600083015261305581612c6a565b9050919050565b6000602082019050818103600083015261307581612c8d565b9050919050565b60006020820190506130916000830184612cb0565b92915050565b60006130a16130b2565b90506130ad8282613369565b919050565b6000604051905090565b600067ffffffffffffffff8211156130d7576130d66134a1565b5b6130e0826134d0565b9050602081019050919050565b600067ffffffffffffffff821115613108576131076134a1565b5b613111826134d0565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613177826132eb565b9150613182836132eb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131b7576131b6613414565b5b828201905092915050565b60006131cd826132eb565b91506131d8836132eb565b9250826131e8576131e7613443565b5b828204905092915050565b60006131fe826132eb565b9150613209836132eb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561324257613241613414565b5b828202905092915050565b6000613258826132eb565b9150613263836132eb565b92508282101561327657613275613414565b5b828203905092915050565b600061328c826132cb565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613322578082015181840152602081019050613307565b83811115613331576000848401525b50505050565b6000600282049050600182168061334f57607f821691505b6020821081141561336357613362613472565b5b50919050565b613372826134d0565b810181811067ffffffffffffffff82111715613391576133906134a1565b5b80604052505050565b60006133a5826132eb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156133d8576133d7613414565b5b600182019050919050565b60006133ee826132eb565b91506133f9836132eb565b92508261340957613408613443565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4e6f7420656e6f756768204e465473206c65667420746f207265736572766500600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4e6f7420656e6f75676820657468657220746f207075726368617365204e465460008201527f732e000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768204e465473206c656674210000000000000000000000600082015250565b7f43616e6e6f74206d696e7420737065636966696564206e756d626572206f662060008201527f4e4654732e000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4e6f206574686572206c65667420746f20776974686472617700000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f53616c65206973206e6f742063757272656e746c792061637469766521000000600082015250565b613ab081613281565b8114613abb57600080fd5b50565b613ac781613293565b8114613ad257600080fd5b50565b613ade8161329f565b8114613ae957600080fd5b50565b613af5816132eb565b8114613b0057600080fd5b5056fea2646970667358221220bd8666be86bfcb09b109165f4fcb87c03b6115074c8c1f6f7ce08ed77bfc47ad64736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d506936424255684e3855593839685542516e3166624536684765324a75666f7145655a54575475524c3139732f00000000000000000000

Deployed Bytecode

0x6080604052600436106101b75760003560e01c8063715018a6116100ec578063ba9283d71161008a578063d547cfb711610064578063d547cfb7146105d5578063e985e9c514610600578063eb8d24441461063d578063f2fde38b14610668576101b7565b8063ba9283d714610546578063c4e370951461056f578063c87b56dd14610598576101b7565b806395d89b41116100c657806395d89b411461049e578063a035b1fe146104c9578063a22cb465146104f4578063b88d4fde1461051d576101b7565b8063715018a6146104335780638d6cc56d1461044a5780638da5cb5b14610473576101b7565b806323b872dd1161015957806342842e0e1161013357806342842e0e1461036757806355f804b3146103905780636352211e146103b957806370a08231146103f6576101b7565b806323b872dd146102fc57806332cb6b0c146103255780633ccfd60b14610350576101b7565b8063095ea7b311610195578063095ea7b31461026157806309d42b301461028a5780630d730acc146102b557806318160ddd146102d1576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906127af565b610691565b6040516101f09190612d5f565b60405180910390f35b34801561020557600080fd5b5061020e610773565b60405161021b9190612d7a565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612842565b610805565b6040516102589190612cf8565b60405180910390f35b34801561026d57600080fd5b506102886004803603810190610283919061274a565b61088a565b005b34801561029657600080fd5b5061029f6109a2565b6040516102ac919061307c565b60405180910390f35b6102cf60048036038101906102ca9190612842565b6109a7565b005b3480156102dd57600080fd5b506102e6610b2e565b6040516102f3919061307c565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e9190612644565b610b3f565b005b34801561033157600080fd5b5061033a610b9f565b604051610347919061307c565b60405180910390f35b34801561035c57600080fd5b50610365610ba5565b005b34801561037357600080fd5b5061038e60048036038101906103899190612644565b610d19565b005b34801561039c57600080fd5b506103b760048036038101906103b29190612801565b610d39565b005b3480156103c557600080fd5b506103e060048036038101906103db9190612842565b610dcf565b6040516103ed9190612cf8565b60405180910390f35b34801561040257600080fd5b5061041d600480360381019061041891906125df565b610e81565b60405161042a919061307c565b60405180910390f35b34801561043f57600080fd5b50610448610f39565b005b34801561045657600080fd5b50610471600480360381019061046c9190612842565b610fc1565b005b34801561047f57600080fd5b50610488611047565b6040516104959190612cf8565b60405180910390f35b3480156104aa57600080fd5b506104b3611070565b6040516104c09190612d7a565b60405180910390f35b3480156104d557600080fd5b506104de611102565b6040516104eb919061307c565b60405180910390f35b34801561050057600080fd5b5061051b6004803603810190610516919061270e565b611108565b005b34801561052957600080fd5b50610544600480360381019061053f9190612693565b61111e565b005b34801561055257600080fd5b5061056d6004803603810190610568919061286b565b611180565b005b34801561057b57600080fd5b5061059660048036038101906105919190612786565b61128d565b005b3480156105a457600080fd5b506105bf60048036038101906105ba9190612842565b611326565b6040516105cc9190612d7a565b60405180910390f35b3480156105e157600080fd5b506105ea6113cd565b6040516105f79190612d7a565b60405180910390f35b34801561060c57600080fd5b5061062760048036038101906106229190612608565b61145b565b6040516106349190612d5f565b60405180910390f35b34801561064957600080fd5b506106526114ef565b60405161065f9190612d5f565b60405180910390f35b34801561067457600080fd5b5061068f600480360381019061068a91906125df565b611502565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061075c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061076c575061076b826115fa565b5b9050919050565b60606001805461078290613337565b80601f01602080910402602001604051908101604052809291908181526020018280546107ae90613337565b80156107fb5780601f106107d0576101008083540402835291602001916107fb565b820191906000526020600020905b8154815290600101906020018083116107de57829003601f168201915b5050505050905090565b600061081082611664565b61084f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084690612f7c565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061089582610dcf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610906576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fd90612ffc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109256116d0565b73ffffffffffffffffffffffffffffffffffffffff16148061095457506109538161094e6116d0565b61145b565b5b610993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098a90612edc565b60405180910390fd5b61099d83836116d8565b505050565b600581565b60006109b36007611791565b90506122b86109cb838361179f90919063ffffffff16565b1115610a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0390612e7c565b60405180910390fd5b600082118015610a1d575060058211155b610a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5390612e9c565b60405180910390fd5b600960009054906101000a900460ff16610aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa29061305c565b60405180910390fd5b610ac082600a546117b590919063ffffffff16565b341015610b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af990612e5c565b60405180910390fd5b60005b82811015610b2957610b16336117cb565b8080610b219061339a565b915050610b05565b505050565b6000610b3a6007611791565b905090565b610b50610b4a6116d0565b826117f1565b610b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b869061303c565b60405180910390fd5b610b9a8383836118cf565b505050565b6122b881565b610bad6116d0565b73ffffffffffffffffffffffffffffffffffffffff16610bcb611047565b73ffffffffffffffffffffffffffffffffffffffff1614610c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1890612f9c565b60405180910390fd5b600047905060008111610c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6090612f5c565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1682604051610c8f90612ce3565b60006040518083038185875af1925050503d8060008114610ccc576040519150601f19603f3d011682016040523d82523d6000602084013e610cd1565b606091505b5050905080610d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0c9061301c565b60405180910390fd5b5050565b610d348383836040518060200160405280600081525061111e565b505050565b610d416116d0565b73ffffffffffffffffffffffffffffffffffffffff16610d5f611047565b73ffffffffffffffffffffffffffffffffffffffff1614610db5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dac90612f9c565b60405180910390fd5b8060089080519060200190610dcb929190612403565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6f90612f1c565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee990612efc565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f416116d0565b73ffffffffffffffffffffffffffffffffffffffff16610f5f611047565b73ffffffffffffffffffffffffffffffffffffffff1614610fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fac90612f9c565b60405180910390fd5b610fbf6000611b2b565b565b610fc96116d0565b73ffffffffffffffffffffffffffffffffffffffff16610fe7611047565b73ffffffffffffffffffffffffffffffffffffffff161461103d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103490612f9c565b60405180910390fd5b80600a8190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461107f90613337565b80601f01602080910402602001604051908101604052809291908181526020018280546110ab90613337565b80156110f85780601f106110cd576101008083540402835291602001916110f8565b820191906000526020600020905b8154815290600101906020018083116110db57829003601f168201915b5050505050905090565b600a5481565b61111a6111136116d0565b8383611bef565b5050565b61112f6111296116d0565b836117f1565b61116e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111659061303c565b60405180910390fd5b61117a84848484611d5c565b50505050565b6111886116d0565b73ffffffffffffffffffffffffffffffffffffffff166111a6611047565b73ffffffffffffffffffffffffffffffffffffffff16146111fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f390612f9c565b60405180910390fd5b60006112086007611791565b90506122b8611220848361179f90919063ffffffff16565b10611260576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125790612d9c565b60405180910390fd5b60005b8381101561128757611274836117cb565b808061127f9061339a565b915050611263565b50505050565b6112956116d0565b73ffffffffffffffffffffffffffffffffffffffff166112b3611047565b73ffffffffffffffffffffffffffffffffffffffff1614611309576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130090612f9c565b60405180910390fd5b80600960006101000a81548160ff02191690831515021790555050565b606061133182611664565b611370576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136790612fdc565b60405180910390fd5b600061137a611db8565b9050600081511161139a57604051806020016040528060008152506113c5565b806113a484611e4a565b6040516020016113b5929190612cbf565b6040516020818303038152906040525b915050919050565b600880546113da90613337565b80601f016020809104026020016040519081016040528092919081815260200182805461140690613337565b80156114535780601f1061142857610100808354040283529160200191611453565b820191906000526020600020905b81548152906001019060200180831161143657829003601f168201915b505050505081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600960009054906101000a900460ff1681565b61150a6116d0565b73ffffffffffffffffffffffffffffffffffffffff16611528611047565b73ffffffffffffffffffffffffffffffffffffffff161461157e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157590612f9c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e590612ddc565b60405180910390fd5b6115f781611b2b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661174b83610dcf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600081836117ad919061316c565b905092915050565b600081836117c391906131f3565b905092915050565b6117d56007611ff7565b60006117e16007611791565b90506117ed828261200d565b5050565b60006117fc82611664565b61183b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183290612ebc565b60405180910390fd5b600061184683610dcf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806118b557508373ffffffffffffffffffffffffffffffffffffffff1661189d84610805565b73ffffffffffffffffffffffffffffffffffffffff16145b806118c657506118c5818561145b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166118ef82610dcf565b73ffffffffffffffffffffffffffffffffffffffff1614611945576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193c90612fbc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ac90612e1c565b60405180910390fd5b6119c083838361202b565b6119cb6000826116d8565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a1b919061324d565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a72919061316c565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5590612e3c565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d4f9190612d5f565b60405180910390a3505050565b611d678484846118cf565b611d7384848484612030565b611db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da990612dbc565b60405180910390fd5b50505050565b606060088054611dc790613337565b80601f0160208091040260200160405190810160405280929190818152602001828054611df390613337565b8015611e405780601f10611e1557610100808354040283529160200191611e40565b820191906000526020600020905b815481529060010190602001808311611e2357829003601f168201915b5050505050905090565b60606000821415611e92576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ff2565b600082905060005b60008214611ec4578080611ead9061339a565b915050600a82611ebd91906131c2565b9150611e9a565b60008167ffffffffffffffff811115611f06577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611f385781602001600182028036833780820191505090505b5090505b60008514611feb57600182611f51919061324d565b9150600a85611f6091906133e3565b6030611f6c919061316c565b60f81b818381518110611fa8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611fe491906131c2565b9450611f3c565b8093505050505b919050565b6001816000016000828254019250508190555050565b6120278282604051806020016040528060008152506121c7565b5050565b505050565b60006120518473ffffffffffffffffffffffffffffffffffffffff16612222565b156121ba578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261207a6116d0565b8786866040518563ffffffff1660e01b815260040161209c9493929190612d13565b602060405180830381600087803b1580156120b657600080fd5b505af19250505080156120e757506040513d601f19601f820116820180604052508101906120e491906127d8565b60015b61216a573d8060008114612117576040519150601f19603f3d011682016040523d82523d6000602084013e61211c565b606091505b50600081511415612162576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215990612dbc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506121bf565b600190505b949350505050565b6121d18383612235565b6121de6000848484612030565b61221d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221490612dbc565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229c90612f3c565b60405180910390fd5b6122ae81611664565b156122ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e590612dfc565b60405180910390fd5b6122fa6000838361202b565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461234a919061316c565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461240f90613337565b90600052602060002090601f0160209004810192826124315760008555612478565b82601f1061244a57805160ff1916838001178555612478565b82800160010185558215612478579182015b8281111561247757825182559160200191906001019061245c565b5b5090506124859190612489565b5090565b5b808211156124a257600081600090555060010161248a565b5090565b60006124b96124b4846130bc565b613097565b9050828152602081018484840111156124d157600080fd5b6124dc8482856132f5565b509392505050565b60006124f76124f2846130ed565b613097565b90508281526020810184848401111561250f57600080fd5b61251a8482856132f5565b509392505050565b60008135905061253181613aa7565b92915050565b60008135905061254681613abe565b92915050565b60008135905061255b81613ad5565b92915050565b60008151905061257081613ad5565b92915050565b600082601f83011261258757600080fd5b81356125978482602086016124a6565b91505092915050565b600082601f8301126125b157600080fd5b81356125c18482602086016124e4565b91505092915050565b6000813590506125d981613aec565b92915050565b6000602082840312156125f157600080fd5b60006125ff84828501612522565b91505092915050565b6000806040838503121561261b57600080fd5b600061262985828601612522565b925050602061263a85828601612522565b9150509250929050565b60008060006060848603121561265957600080fd5b600061266786828701612522565b935050602061267886828701612522565b9250506040612689868287016125ca565b9150509250925092565b600080600080608085870312156126a957600080fd5b60006126b787828801612522565b94505060206126c887828801612522565b93505060406126d9878288016125ca565b925050606085013567ffffffffffffffff8111156126f657600080fd5b61270287828801612576565b91505092959194509250565b6000806040838503121561272157600080fd5b600061272f85828601612522565b925050602061274085828601612537565b9150509250929050565b6000806040838503121561275d57600080fd5b600061276b85828601612522565b925050602061277c858286016125ca565b9150509250929050565b60006020828403121561279857600080fd5b60006127a684828501612537565b91505092915050565b6000602082840312156127c157600080fd5b60006127cf8482850161254c565b91505092915050565b6000602082840312156127ea57600080fd5b60006127f884828501612561565b91505092915050565b60006020828403121561281357600080fd5b600082013567ffffffffffffffff81111561282d57600080fd5b612839848285016125a0565b91505092915050565b60006020828403121561285457600080fd5b6000612862848285016125ca565b91505092915050565b6000806040838503121561287e57600080fd5b600061288c858286016125ca565b925050602061289d85828601612522565b9150509250929050565b6128b081613281565b82525050565b6128bf81613293565b82525050565b60006128d08261311e565b6128da8185613134565b93506128ea818560208601613304565b6128f3816134d0565b840191505092915050565b600061290982613129565b6129138185613150565b9350612923818560208601613304565b61292c816134d0565b840191505092915050565b600061294282613129565b61294c8185613161565b935061295c818560208601613304565b80840191505092915050565b6000612975601f83613150565b9150612980826134e1565b602082019050919050565b6000612998603283613150565b91506129a38261350a565b604082019050919050565b60006129bb602683613150565b91506129c682613559565b604082019050919050565b60006129de601c83613150565b91506129e9826135a8565b602082019050919050565b6000612a01602483613150565b9150612a0c826135d1565b604082019050919050565b6000612a24601983613150565b9150612a2f82613620565b602082019050919050565b6000612a47602283613150565b9150612a5282613649565b604082019050919050565b6000612a6a601583613150565b9150612a7582613698565b602082019050919050565b6000612a8d602583613150565b9150612a98826136c1565b604082019050919050565b6000612ab0602c83613150565b9150612abb82613710565b604082019050919050565b6000612ad3603883613150565b9150612ade8261375f565b604082019050919050565b6000612af6602a83613150565b9150612b01826137ae565b604082019050919050565b6000612b19602983613150565b9150612b24826137fd565b604082019050919050565b6000612b3c602083613150565b9150612b478261384c565b602082019050919050565b6000612b5f601983613150565b9150612b6a82613875565b602082019050919050565b6000612b82602c83613150565b9150612b8d8261389e565b604082019050919050565b6000612ba5602083613150565b9150612bb0826138ed565b602082019050919050565b6000612bc8602983613150565b9150612bd382613916565b604082019050919050565b6000612beb602f83613150565b9150612bf682613965565b604082019050919050565b6000612c0e602183613150565b9150612c19826139b4565b604082019050919050565b6000612c31600083613145565b9150612c3c82613a03565b600082019050919050565b6000612c54601083613150565b9150612c5f82613a06565b602082019050919050565b6000612c77603183613150565b9150612c8282613a2f565b604082019050919050565b6000612c9a601d83613150565b9150612ca582613a7e565b602082019050919050565b612cb9816132eb565b82525050565b6000612ccb8285612937565b9150612cd78284612937565b91508190509392505050565b6000612cee82612c24565b9150819050919050565b6000602082019050612d0d60008301846128a7565b92915050565b6000608082019050612d2860008301876128a7565b612d3560208301866128a7565b612d426040830185612cb0565b8181036060830152612d5481846128c5565b905095945050505050565b6000602082019050612d7460008301846128b6565b92915050565b60006020820190508181036000830152612d9481846128fe565b905092915050565b60006020820190508181036000830152612db581612968565b9050919050565b60006020820190508181036000830152612dd58161298b565b9050919050565b60006020820190508181036000830152612df5816129ae565b9050919050565b60006020820190508181036000830152612e15816129d1565b9050919050565b60006020820190508181036000830152612e35816129f4565b9050919050565b60006020820190508181036000830152612e5581612a17565b9050919050565b60006020820190508181036000830152612e7581612a3a565b9050919050565b60006020820190508181036000830152612e9581612a5d565b9050919050565b60006020820190508181036000830152612eb581612a80565b9050919050565b60006020820190508181036000830152612ed581612aa3565b9050919050565b60006020820190508181036000830152612ef581612ac6565b9050919050565b60006020820190508181036000830152612f1581612ae9565b9050919050565b60006020820190508181036000830152612f3581612b0c565b9050919050565b60006020820190508181036000830152612f5581612b2f565b9050919050565b60006020820190508181036000830152612f7581612b52565b9050919050565b60006020820190508181036000830152612f9581612b75565b9050919050565b60006020820190508181036000830152612fb581612b98565b9050919050565b60006020820190508181036000830152612fd581612bbb565b9050919050565b60006020820190508181036000830152612ff581612bde565b9050919050565b6000602082019050818103600083015261301581612c01565b9050919050565b6000602082019050818103600083015261303581612c47565b9050919050565b6000602082019050818103600083015261305581612c6a565b9050919050565b6000602082019050818103600083015261307581612c8d565b9050919050565b60006020820190506130916000830184612cb0565b92915050565b60006130a16130b2565b90506130ad8282613369565b919050565b6000604051905090565b600067ffffffffffffffff8211156130d7576130d66134a1565b5b6130e0826134d0565b9050602081019050919050565b600067ffffffffffffffff821115613108576131076134a1565b5b613111826134d0565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613177826132eb565b9150613182836132eb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131b7576131b6613414565b5b828201905092915050565b60006131cd826132eb565b91506131d8836132eb565b9250826131e8576131e7613443565b5b828204905092915050565b60006131fe826132eb565b9150613209836132eb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561324257613241613414565b5b828202905092915050565b6000613258826132eb565b9150613263836132eb565b92508282101561327657613275613414565b5b828203905092915050565b600061328c826132cb565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613322578082015181840152602081019050613307565b83811115613331576000848401525b50505050565b6000600282049050600182168061334f57607f821691505b6020821081141561336357613362613472565b5b50919050565b613372826134d0565b810181811067ffffffffffffffff82111715613391576133906134a1565b5b80604052505050565b60006133a5826132eb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156133d8576133d7613414565b5b600182019050919050565b60006133ee826132eb565b91506133f9836132eb565b92508261340957613408613443565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4e6f7420656e6f756768204e465473206c65667420746f207265736572766500600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4e6f7420656e6f75676820657468657220746f207075726368617365204e465460008201527f732e000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768204e465473206c656674210000000000000000000000600082015250565b7f43616e6e6f74206d696e7420737065636966696564206e756d626572206f662060008201527f4e4654732e000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4e6f206574686572206c65667420746f20776974686472617700000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f53616c65206973206e6f742063757272656e746c792061637469766521000000600082015250565b613ab081613281565b8114613abb57600080fd5b50565b613ac781613293565b8114613ad257600080fd5b50565b613ade8161329f565b8114613ae957600080fd5b50565b613af5816132eb565b8114613b0057600080fd5b5056fea2646970667358221220bd8666be86bfcb09b109165f4fcb87c03b6115074c8c1f6f7ce08ed77bfc47ad64736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d506936424255684e3855593839685542516e3166624536684765324a75666f7145655a54575475524c3139732f00000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): ipfs://QmPi6BBUhN8UY89hUBQn1fbE6hGe2JufoqEeZTWTuRL19s/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d506936424255684e3855593839685542516e3166624536
Arg [3] : 684765324a75666f7145655a54575475524c3139732f00000000000000000000


Deployed Bytecode Sourcemap

44777:2611:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28239:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29184:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30743:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30266:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44998:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46348:534;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45649:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31493:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44953:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47117:268;;;;;;;;;;;;;:::i;:::-;;31903:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45955:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28878:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28608:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42392:103;;;;;;;;;;;;;:::i;:::-;;46232:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41741:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29353:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45118:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31036:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32159:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45303:306;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46099:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29528:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45044:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31262:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45079:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42650:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28239:305;28341:4;28393:25;28378:40;;;:11;:40;;;;:105;;;;28450:33;28435:48;;;:11;:48;;;;28378:105;:158;;;;28500:36;28524:11;28500:23;:36::i;:::-;28378:158;28358:178;;28239:305;;;:::o;29184:100::-;29238:13;29271:5;29264:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29184:100;:::o;30743:221::-;30819:7;30847:16;30855:7;30847;:16::i;:::-;30839:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;30932:15;:24;30948:7;30932:24;;;;;;;;;;;;;;;;;;;;;30925:31;;30743:221;;;:::o;30266:411::-;30347:13;30363:23;30378:7;30363:14;:23::i;:::-;30347:39;;30411:5;30405:11;;:2;:11;;;;30397:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;30505:5;30489:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;30514:37;30531:5;30538:12;:10;:12::i;:::-;30514:16;:37::i;:::-;30489:62;30467:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;30648:21;30657:2;30661:7;30648:8;:21::i;:::-;30266:411;;;:::o;44998:37::-;45034:1;44998:37;:::o;46348:534::-;46404:16;46423:19;:9;:17;:19::i;:::-;46404:38;;44987:4;46463:23;46479:6;46463:11;:15;;:23;;;;:::i;:::-;:37;;46455:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;46553:1;46545:6;:9;:35;;;;;45034:1;46558:6;:22;;46545:35;46537:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;46641:12;;;;;;;;;;;46633:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;46719:17;46729:6;46719:5;;:9;;:17;;;;:::i;:::-;46706:9;:30;;46698:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;46793:6;46788:87;46809:6;46805:1;:10;46788:87;;;46837:26;46852:10;46837:14;:26::i;:::-;46817:3;;;;;:::i;:::-;;;;46788:87;;;;46348:534;;:::o;45649:95::-;45693:4;45717:19;:9;:17;:19::i;:::-;45710:26;;45649:95;:::o;31493:339::-;31688:41;31707:12;:10;:12::i;:::-;31721:7;31688:18;:41::i;:::-;31680:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;31796:28;31806:4;31812:2;31816:7;31796:9;:28::i;:::-;31493:339;;;:::o;44953:38::-;44987:4;44953:38;:::o;47117:268::-;41972:12;:10;:12::i;:::-;41961:23;;:7;:5;:7::i;:::-;:23;;;41953:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47165:12:::1;47180:21;47165:36;;47230:1;47220:7;:11;47212:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;47275:12;47294:10;47293:17;;47318:7;47293:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47274:56;;;47349:7;47341:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;42032:1;;47117:268::o:0;31903:185::-;32041:39;32058:4;32064:2;32068:7;32041:39;;;;;;;;;;;;:16;:39::i;:::-;31903:185;;;:::o;45955:113::-;41972:12;:10;:12::i;:::-;41961:23;;:7;:5;:7::i;:::-;:23;;;41953:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46047:13:::1;46032:12;:28;;;;;;;;;;;;:::i;:::-;;45955:113:::0;:::o;28878:239::-;28950:7;28970:13;28986:7;:16;28994:7;28986:16;;;;;;;;;;;;;;;;;;;;;28970:32;;29038:1;29021:19;;:5;:19;;;;29013:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29104:5;29097:12;;;28878:239;;;:::o;28608:208::-;28680:7;28725:1;28708:19;;:5;:19;;;;28700:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;28792:9;:16;28802:5;28792:16;;;;;;;;;;;;;;;;28785:23;;28608:208;;;:::o;42392:103::-;41972:12;:10;:12::i;:::-;41961:23;;:7;:5;:7::i;:::-;:23;;;41953:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42457:30:::1;42484:1;42457:18;:30::i;:::-;42392:103::o:0;46232:90::-;41972:12;:10;:12::i;:::-;41961:23;;:7;:5;:7::i;:::-;:23;;;41953:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46305:9:::1;46297:5;:17;;;;46232:90:::0;:::o;41741:87::-;41787:7;41814:6;;;;;;;;;;;41807:13;;41741:87;:::o;29353:104::-;29409:13;29442:7;29435:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29353:104;:::o;45118:30::-;;;;:::o;31036:155::-;31131:52;31150:12;:10;:12::i;:::-;31164:8;31174;31131:18;:52::i;:::-;31036:155;;:::o;32159:328::-;32334:41;32353:12;:10;:12::i;:::-;32367:7;32334:18;:41::i;:::-;32326:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;32440:39;32454:4;32460:2;32464:7;32473:5;32440:13;:39::i;:::-;32159:328;;;;:::o;45303:306::-;41972:12;:10;:12::i;:::-;41961:23;;:7;:5;:7::i;:::-;:23;;;41953:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45378:16:::1;45397:19;:9;:17;:19::i;:::-;45378:38;;44987:4;45437:23;45453:6;45437:11;:15;;:23;;;;:::i;:::-;:36;45429:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;45527:6;45522:80;45543:6;45539:1;:10;45522:80;;;45571:19;45586:3;45571:14;:19::i;:::-;45551:3;;;;;:::i;:::-;;;;45522:80;;;;42032:1;45303:306:::0;;:::o;46099:104::-;41972:12;:10;:12::i;:::-;41961:23;;:7;:5;:7::i;:::-;:23;;;41953:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46183:12:::1;46168;;:27;;;;;;;;;;;;;;;;;;46099:104:::0;:::o;29528:334::-;29601:13;29635:16;29643:7;29635;:16::i;:::-;29627:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;29716:21;29740:10;:8;:10::i;:::-;29716:34;;29792:1;29774:7;29768:21;:25;:86;;;;;;;;;;;;;;;;;29820:7;29829:18;:7;:16;:18::i;:::-;29803:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;29768:86;29761:93;;;29528:334;;;:::o;45044:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31262:164::-;31359:4;31383:18;:25;31402:5;31383:25;;;;;;;;;;;;;;;:35;31409:8;31383:35;;;;;;;;;;;;;;;;;;;;;;;;;31376:42;;31262:164;;;;:::o;45079:32::-;;;;;;;;;;;;;:::o;42650:201::-;41972:12;:10;:12::i;:::-;41961:23;;:7;:5;:7::i;:::-;:23;;;41953:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42759:1:::1;42739:22;;:8;:22;;;;42731:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42815:28;42834:8;42815:18;:28::i;:::-;42650:201:::0;:::o;13088:157::-;13173:4;13212:25;13197:40;;;:11;:40;;;;13190:47;;13088:157;;;:::o;33997:127::-;34062:4;34114:1;34086:30;;:7;:16;34094:7;34086:16;;;;;;;;;;;;;;;;;;;;;:30;;;;34079:37;;33997:127;;;:::o;26633:98::-;26686:7;26713:10;26706:17;;26633:98;:::o;37979:174::-;38081:2;38054:15;:24;38070:7;38054:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;38137:7;38133:2;38099:46;;38108:23;38123:7;38108:14;:23::i;:::-;38099:46;;;;;;;;;;;;37979:174;;:::o;44081:114::-;44146:7;44173;:14;;;44166:21;;44081:114;;;:::o;21789:98::-;21847:7;21878:1;21874;:5;;;;:::i;:::-;21867:12;;21789:98;;;;:::o;22527:::-;22585:7;22616:1;22612;:5;;;;:::i;:::-;22605:12;;22527:98;;;;:::o;46916:170::-;46972:21;:9;:19;:21::i;:::-;47004:15;47022:19;:9;:17;:19::i;:::-;47004:37;;47052:26;47062:3;47067:10;47052:9;:26::i;:::-;46916:170;;:::o;34291:348::-;34384:4;34409:16;34417:7;34409;:16::i;:::-;34401:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;34485:13;34501:23;34516:7;34501:14;:23::i;:::-;34485:39;;34554:5;34543:16;;:7;:16;;;:51;;;;34587:7;34563:31;;:20;34575:7;34563:11;:20::i;:::-;:31;;;34543:51;:87;;;;34598:32;34615:5;34622:7;34598:16;:32::i;:::-;34543:87;34535:96;;;34291:348;;;;:::o;37283:578::-;37442:4;37415:31;;:23;37430:7;37415:14;:23::i;:::-;:31;;;37407:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;37525:1;37511:16;;:2;:16;;;;37503:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;37581:39;37602:4;37608:2;37612:7;37581:20;:39::i;:::-;37685:29;37702:1;37706:7;37685:8;:29::i;:::-;37746:1;37727:9;:15;37737:4;37727:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;37775:1;37758:9;:13;37768:2;37758:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;37806:2;37787:7;:16;37795:7;37787:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;37845:7;37841:2;37826:27;;37835:4;37826:27;;;;;;;;;;;;37283:578;;;:::o;43011:191::-;43085:16;43104:6;;;;;;;;;;;43085:25;;43130:8;43121:6;;:17;;;;;;;;;;;;;;;;;;43185:8;43154:40;;43175:8;43154:40;;;;;;;;;;;;43011:191;;:::o;38295:315::-;38450:8;38441:17;;:5;:17;;;;38433:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;38537:8;38499:18;:25;38518:5;38499:25;;;;;;;;;;;;;;;:35;38525:8;38499:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;38583:8;38561:41;;38576:5;38561:41;;;38593:8;38561:41;;;;;;:::i;:::-;;;;;;;;38295:315;;;:::o;33369:::-;33526:28;33536:4;33542:2;33546:7;33526:9;:28::i;:::-;33573:48;33596:4;33602:2;33606:7;33615:5;33573:22;:48::i;:::-;33565:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;33369:315;;;;:::o;45794:113::-;45854:13;45887:12;45880:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45794:113;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;44203:127::-;44310:1;44292:7;:14;;;:19;;;;;;;;;;;44203:127;:::o;34981:110::-;35057:26;35067:2;35071:7;35057:26;;;;;;;;;;;;:9;:26::i;:::-;34981:110;;:::o;40546:126::-;;;;:::o;39175:799::-;39330:4;39351:15;:2;:13;;;:15::i;:::-;39347:620;;;39403:2;39387:36;;;39424:12;:10;:12::i;:::-;39438:4;39444:7;39453:5;39387:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39383:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39646:1;39629:6;:13;:18;39625:272;;;39672:60;;;;;;;;;;:::i;:::-;;;;;;;;39625:272;39847:6;39841:13;39832:6;39828:2;39824:15;39817:38;39383:529;39520:41;;;39510:51;;;:6;:51;;;;39503:58;;;;;39347:620;39951:4;39944:11;;39175:799;;;;;;;:::o;35318:321::-;35448:18;35454:2;35458:7;35448:5;:18::i;:::-;35499:54;35530:1;35534:2;35538:7;35547:5;35499:22;:54::i;:::-;35477:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;35318:321;;;:::o;2944:387::-;3004:4;3212:12;3279:7;3267:20;3259:28;;3322:1;3315:4;:8;3308:15;;;2944:387;;;:::o;35975:382::-;36069:1;36055:16;;:2;:16;;;;36047:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;36128:16;36136:7;36128;:16::i;:::-;36127:17;36119:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;36190:45;36219:1;36223:2;36227:7;36190:20;:45::i;:::-;36265:1;36248:9;:13;36258:2;36248:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;36296:2;36277:7;:16;36285:7;36277:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;36341:7;36337:2;36316:33;;36333:1;36316:33;;;;;;;;;;;;35975:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;1036:5;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;1190:5;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;1349:5;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;1641:5;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;1910:5;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;2068:6;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;2345:6;2353;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;2767:6;2775;2783;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;3343:6;3351;3359;3367;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;4128:6;4136;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;4538:6;4546;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:256::-;4939:6;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:50;5114:7;5105:6;5094:9;5090:22;5072:50;:::i;:::-;5062:60;;5018:114;4946:193;;;;:::o;5145:260::-;5203:6;5252:2;5240:9;5231:7;5227:23;5223:32;5220:2;;;5268:1;5265;5258:12;5220:2;5311:1;5336:52;5380:7;5371:6;5360:9;5356:22;5336:52;:::i;:::-;5326:62;;5282:116;5210:195;;;;:::o;5411:282::-;5480:6;5529:2;5517:9;5508:7;5504:23;5500:32;5497:2;;;5545:1;5542;5535:12;5497:2;5588:1;5613:63;5668:7;5659:6;5648:9;5644:22;5613:63;:::i;:::-;5603:73;;5559:127;5487:206;;;;:::o;5699:375::-;5768:6;5817:2;5805:9;5796:7;5792:23;5788:32;5785:2;;;5833:1;5830;5823:12;5785:2;5904:1;5893:9;5889:17;5876:31;5934:18;5926:6;5923:30;5920:2;;;5966:1;5963;5956:12;5920:2;5994:63;6049:7;6040:6;6029:9;6025:22;5994:63;:::i;:::-;5984:73;;5847:220;5775:299;;;;:::o;6080:262::-;6139:6;6188:2;6176:9;6167:7;6163:23;6159:32;6156:2;;;6204:1;6201;6194:12;6156:2;6247:1;6272:53;6317:7;6308:6;6297:9;6293:22;6272:53;:::i;:::-;6262:63;;6218:117;6146:196;;;;:::o;6348:407::-;6416:6;6424;6473:2;6461:9;6452:7;6448:23;6444:32;6441:2;;;6489:1;6486;6479:12;6441:2;6532:1;6557:53;6602:7;6593:6;6582:9;6578:22;6557:53;:::i;:::-;6547:63;;6503:117;6659:2;6685:53;6730:7;6721:6;6710:9;6706:22;6685:53;:::i;:::-;6675:63;;6630:118;6431:324;;;;;:::o;6761:118::-;6848:24;6866:5;6848:24;:::i;:::-;6843:3;6836:37;6826:53;;:::o;6885:109::-;6966:21;6981:5;6966:21;:::i;:::-;6961:3;6954:34;6944:50;;:::o;7000:360::-;7086:3;7114:38;7146:5;7114:38;:::i;:::-;7168:70;7231:6;7226:3;7168:70;:::i;:::-;7161:77;;7247:52;7292:6;7287:3;7280:4;7273:5;7269:16;7247:52;:::i;:::-;7324:29;7346:6;7324:29;:::i;:::-;7319:3;7315:39;7308:46;;7090:270;;;;;:::o;7366:364::-;7454:3;7482:39;7515:5;7482:39;:::i;:::-;7537:71;7601:6;7596:3;7537:71;:::i;:::-;7530:78;;7617:52;7662:6;7657:3;7650:4;7643:5;7639:16;7617:52;:::i;:::-;7694:29;7716:6;7694:29;:::i;:::-;7689:3;7685:39;7678:46;;7458:272;;;;;:::o;7736:377::-;7842:3;7870:39;7903:5;7870:39;:::i;:::-;7925:89;8007:6;8002:3;7925:89;:::i;:::-;7918:96;;8023:52;8068:6;8063:3;8056:4;8049:5;8045:16;8023:52;:::i;:::-;8100:6;8095:3;8091:16;8084:23;;7846:267;;;;;:::o;8119:366::-;8261:3;8282:67;8346:2;8341:3;8282:67;:::i;:::-;8275:74;;8358:93;8447:3;8358:93;:::i;:::-;8476:2;8471:3;8467:12;8460:19;;8265:220;;;:::o;8491:366::-;8633:3;8654:67;8718:2;8713:3;8654:67;:::i;:::-;8647:74;;8730:93;8819:3;8730:93;:::i;:::-;8848:2;8843:3;8839:12;8832:19;;8637:220;;;:::o;8863:366::-;9005:3;9026:67;9090:2;9085:3;9026:67;:::i;:::-;9019:74;;9102:93;9191:3;9102:93;:::i;:::-;9220:2;9215:3;9211:12;9204:19;;9009:220;;;:::o;9235:366::-;9377:3;9398:67;9462:2;9457:3;9398:67;:::i;:::-;9391:74;;9474:93;9563:3;9474:93;:::i;:::-;9592:2;9587:3;9583:12;9576:19;;9381:220;;;:::o;9607:366::-;9749:3;9770:67;9834:2;9829:3;9770:67;:::i;:::-;9763:74;;9846:93;9935:3;9846:93;:::i;:::-;9964:2;9959:3;9955:12;9948:19;;9753:220;;;:::o;9979:366::-;10121:3;10142:67;10206:2;10201:3;10142:67;:::i;:::-;10135:74;;10218:93;10307:3;10218:93;:::i;:::-;10336:2;10331:3;10327:12;10320:19;;10125:220;;;:::o;10351:366::-;10493:3;10514:67;10578:2;10573:3;10514:67;:::i;:::-;10507:74;;10590:93;10679:3;10590:93;:::i;:::-;10708:2;10703:3;10699:12;10692:19;;10497:220;;;:::o;10723:366::-;10865:3;10886:67;10950:2;10945:3;10886:67;:::i;:::-;10879:74;;10962:93;11051:3;10962:93;:::i;:::-;11080:2;11075:3;11071:12;11064:19;;10869:220;;;:::o;11095:366::-;11237:3;11258:67;11322:2;11317:3;11258:67;:::i;:::-;11251:74;;11334:93;11423:3;11334:93;:::i;:::-;11452:2;11447:3;11443:12;11436:19;;11241:220;;;:::o;11467:366::-;11609:3;11630:67;11694:2;11689:3;11630:67;:::i;:::-;11623:74;;11706:93;11795:3;11706:93;:::i;:::-;11824:2;11819:3;11815:12;11808:19;;11613:220;;;:::o;11839:366::-;11981:3;12002:67;12066:2;12061:3;12002:67;:::i;:::-;11995:74;;12078:93;12167:3;12078:93;:::i;:::-;12196:2;12191:3;12187:12;12180:19;;11985:220;;;:::o;12211:366::-;12353:3;12374:67;12438:2;12433:3;12374:67;:::i;:::-;12367:74;;12450:93;12539:3;12450:93;:::i;:::-;12568:2;12563:3;12559:12;12552:19;;12357:220;;;:::o;12583:366::-;12725:3;12746:67;12810:2;12805:3;12746:67;:::i;:::-;12739:74;;12822:93;12911:3;12822:93;:::i;:::-;12940:2;12935:3;12931:12;12924:19;;12729:220;;;:::o;12955:366::-;13097:3;13118:67;13182:2;13177:3;13118:67;:::i;:::-;13111:74;;13194:93;13283:3;13194:93;:::i;:::-;13312:2;13307:3;13303:12;13296:19;;13101:220;;;:::o;13327:366::-;13469:3;13490:67;13554:2;13549:3;13490:67;:::i;:::-;13483:74;;13566:93;13655:3;13566:93;:::i;:::-;13684:2;13679:3;13675:12;13668:19;;13473:220;;;:::o;13699:366::-;13841:3;13862:67;13926:2;13921:3;13862:67;:::i;:::-;13855:74;;13938:93;14027:3;13938:93;:::i;:::-;14056:2;14051:3;14047:12;14040:19;;13845:220;;;:::o;14071:366::-;14213:3;14234:67;14298:2;14293:3;14234:67;:::i;:::-;14227:74;;14310:93;14399:3;14310:93;:::i;:::-;14428:2;14423:3;14419:12;14412:19;;14217:220;;;:::o;14443:366::-;14585:3;14606:67;14670:2;14665:3;14606:67;:::i;:::-;14599:74;;14682:93;14771:3;14682:93;:::i;:::-;14800:2;14795:3;14791:12;14784:19;;14589:220;;;:::o;14815:366::-;14957:3;14978:67;15042:2;15037:3;14978:67;:::i;:::-;14971:74;;15054:93;15143:3;15054:93;:::i;:::-;15172:2;15167:3;15163:12;15156:19;;14961:220;;;:::o;15187:366::-;15329:3;15350:67;15414:2;15409:3;15350:67;:::i;:::-;15343:74;;15426:93;15515:3;15426:93;:::i;:::-;15544:2;15539:3;15535:12;15528:19;;15333:220;;;:::o;15559:398::-;15718:3;15739:83;15820:1;15815:3;15739:83;:::i;:::-;15732:90;;15831:93;15920:3;15831:93;:::i;:::-;15949:1;15944:3;15940:11;15933:18;;15722:235;;;:::o;15963:366::-;16105:3;16126:67;16190:2;16185:3;16126:67;:::i;:::-;16119:74;;16202:93;16291:3;16202:93;:::i;:::-;16320:2;16315:3;16311:12;16304:19;;16109:220;;;:::o;16335:366::-;16477:3;16498:67;16562:2;16557:3;16498:67;:::i;:::-;16491:74;;16574:93;16663:3;16574:93;:::i;:::-;16692:2;16687:3;16683:12;16676:19;;16481:220;;;:::o;16707:366::-;16849:3;16870:67;16934:2;16929:3;16870:67;:::i;:::-;16863:74;;16946:93;17035:3;16946:93;:::i;:::-;17064:2;17059:3;17055:12;17048:19;;16853:220;;;:::o;17079:118::-;17166:24;17184:5;17166:24;:::i;:::-;17161:3;17154:37;17144:53;;:::o;17203:435::-;17383:3;17405:95;17496:3;17487:6;17405:95;:::i;:::-;17398:102;;17517:95;17608:3;17599:6;17517:95;:::i;:::-;17510:102;;17629:3;17622:10;;17387:251;;;;;:::o;17644:379::-;17828:3;17850:147;17993:3;17850:147;:::i;:::-;17843:154;;18014:3;18007:10;;17832:191;;;:::o;18029:222::-;18122:4;18160:2;18149:9;18145:18;18137:26;;18173:71;18241:1;18230:9;18226:17;18217:6;18173:71;:::i;:::-;18127:124;;;;:::o;18257:640::-;18452:4;18490:3;18479:9;18475:19;18467:27;;18504:71;18572:1;18561:9;18557:17;18548:6;18504:71;:::i;:::-;18585:72;18653:2;18642:9;18638:18;18629:6;18585:72;:::i;:::-;18667;18735:2;18724:9;18720:18;18711:6;18667:72;:::i;:::-;18786:9;18780:4;18776:20;18771:2;18760:9;18756:18;18749:48;18814:76;18885:4;18876:6;18814:76;:::i;:::-;18806:84;;18457:440;;;;;;;:::o;18903:210::-;18990:4;19028:2;19017:9;19013:18;19005:26;;19041:65;19103:1;19092:9;19088:17;19079:6;19041:65;:::i;:::-;18995:118;;;;:::o;19119:313::-;19232:4;19270:2;19259:9;19255:18;19247:26;;19319:9;19313:4;19309:20;19305:1;19294:9;19290:17;19283:47;19347:78;19420:4;19411:6;19347:78;:::i;:::-;19339:86;;19237:195;;;;:::o;19438:419::-;19604:4;19642:2;19631:9;19627:18;19619:26;;19691:9;19685:4;19681:20;19677:1;19666:9;19662:17;19655:47;19719:131;19845:4;19719:131;:::i;:::-;19711:139;;19609:248;;;:::o;19863:419::-;20029:4;20067:2;20056:9;20052:18;20044:26;;20116:9;20110:4;20106:20;20102:1;20091:9;20087:17;20080:47;20144:131;20270:4;20144:131;:::i;:::-;20136:139;;20034:248;;;:::o;20288:419::-;20454:4;20492:2;20481:9;20477:18;20469:26;;20541:9;20535:4;20531:20;20527:1;20516:9;20512:17;20505:47;20569:131;20695:4;20569:131;:::i;:::-;20561:139;;20459:248;;;:::o;20713:419::-;20879:4;20917:2;20906:9;20902:18;20894:26;;20966:9;20960:4;20956:20;20952:1;20941:9;20937:17;20930:47;20994:131;21120:4;20994:131;:::i;:::-;20986:139;;20884:248;;;:::o;21138:419::-;21304:4;21342:2;21331:9;21327:18;21319:26;;21391:9;21385:4;21381:20;21377:1;21366:9;21362:17;21355:47;21419:131;21545:4;21419:131;:::i;:::-;21411:139;;21309:248;;;:::o;21563:419::-;21729:4;21767:2;21756:9;21752:18;21744:26;;21816:9;21810:4;21806:20;21802:1;21791:9;21787:17;21780:47;21844:131;21970:4;21844:131;:::i;:::-;21836:139;;21734:248;;;:::o;21988:419::-;22154:4;22192:2;22181:9;22177:18;22169:26;;22241:9;22235:4;22231:20;22227:1;22216:9;22212:17;22205:47;22269:131;22395:4;22269:131;:::i;:::-;22261:139;;22159:248;;;:::o;22413:419::-;22579:4;22617:2;22606:9;22602:18;22594:26;;22666:9;22660:4;22656:20;22652:1;22641:9;22637:17;22630:47;22694:131;22820:4;22694:131;:::i;:::-;22686:139;;22584:248;;;:::o;22838:419::-;23004:4;23042:2;23031:9;23027:18;23019:26;;23091:9;23085:4;23081:20;23077:1;23066:9;23062:17;23055:47;23119:131;23245:4;23119:131;:::i;:::-;23111:139;;23009:248;;;:::o;23263:419::-;23429:4;23467:2;23456:9;23452:18;23444:26;;23516:9;23510:4;23506:20;23502:1;23491:9;23487:17;23480:47;23544:131;23670:4;23544:131;:::i;:::-;23536:139;;23434:248;;;:::o;23688:419::-;23854:4;23892:2;23881:9;23877:18;23869:26;;23941:9;23935:4;23931:20;23927:1;23916:9;23912:17;23905:47;23969:131;24095:4;23969:131;:::i;:::-;23961:139;;23859:248;;;:::o;24113:419::-;24279:4;24317:2;24306:9;24302:18;24294:26;;24366:9;24360:4;24356:20;24352:1;24341:9;24337:17;24330:47;24394:131;24520:4;24394:131;:::i;:::-;24386:139;;24284:248;;;:::o;24538:419::-;24704:4;24742:2;24731:9;24727:18;24719:26;;24791:9;24785:4;24781:20;24777:1;24766:9;24762:17;24755:47;24819:131;24945:4;24819:131;:::i;:::-;24811:139;;24709:248;;;:::o;24963:419::-;25129:4;25167:2;25156:9;25152:18;25144:26;;25216:9;25210:4;25206:20;25202:1;25191:9;25187:17;25180:47;25244:131;25370:4;25244:131;:::i;:::-;25236:139;;25134:248;;;:::o;25388:419::-;25554:4;25592:2;25581:9;25577:18;25569:26;;25641:9;25635:4;25631:20;25627:1;25616:9;25612:17;25605:47;25669:131;25795:4;25669:131;:::i;:::-;25661:139;;25559:248;;;:::o;25813:419::-;25979:4;26017:2;26006:9;26002:18;25994:26;;26066:9;26060:4;26056:20;26052:1;26041:9;26037:17;26030:47;26094:131;26220:4;26094:131;:::i;:::-;26086:139;;25984:248;;;:::o;26238:419::-;26404:4;26442:2;26431:9;26427:18;26419:26;;26491:9;26485:4;26481:20;26477:1;26466:9;26462:17;26455:47;26519:131;26645:4;26519:131;:::i;:::-;26511:139;;26409:248;;;:::o;26663:419::-;26829:4;26867:2;26856:9;26852:18;26844:26;;26916:9;26910:4;26906:20;26902:1;26891:9;26887:17;26880:47;26944:131;27070:4;26944:131;:::i;:::-;26936:139;;26834:248;;;:::o;27088:419::-;27254:4;27292:2;27281:9;27277:18;27269:26;;27341:9;27335:4;27331:20;27327:1;27316:9;27312:17;27305:47;27369:131;27495:4;27369:131;:::i;:::-;27361:139;;27259:248;;;:::o;27513:419::-;27679:4;27717:2;27706:9;27702:18;27694:26;;27766:9;27760:4;27756:20;27752:1;27741:9;27737:17;27730:47;27794:131;27920:4;27794:131;:::i;:::-;27786:139;;27684:248;;;:::o;27938:419::-;28104:4;28142:2;28131:9;28127:18;28119:26;;28191:9;28185:4;28181:20;28177:1;28166:9;28162:17;28155:47;28219:131;28345:4;28219:131;:::i;:::-;28211:139;;28109:248;;;:::o;28363:419::-;28529:4;28567:2;28556:9;28552:18;28544:26;;28616:9;28610:4;28606:20;28602:1;28591:9;28587:17;28580:47;28644:131;28770:4;28644:131;:::i;:::-;28636:139;;28534:248;;;:::o;28788:419::-;28954:4;28992:2;28981:9;28977:18;28969:26;;29041:9;29035:4;29031:20;29027:1;29016:9;29012:17;29005:47;29069:131;29195:4;29069:131;:::i;:::-;29061:139;;28959:248;;;:::o;29213:222::-;29306:4;29344:2;29333:9;29329:18;29321:26;;29357:71;29425:1;29414:9;29410:17;29401:6;29357:71;:::i;:::-;29311:124;;;;:::o;29441:129::-;29475:6;29502:20;;:::i;:::-;29492:30;;29531:33;29559:4;29551:6;29531:33;:::i;:::-;29482:88;;;:::o;29576:75::-;29609:6;29642:2;29636:9;29626:19;;29616:35;:::o;29657:307::-;29718:4;29808:18;29800:6;29797:30;29794:2;;;29830:18;;:::i;:::-;29794:2;29868:29;29890:6;29868:29;:::i;:::-;29860:37;;29952:4;29946;29942:15;29934:23;;29723:241;;;:::o;29970:308::-;30032:4;30122:18;30114:6;30111:30;30108:2;;;30144:18;;:::i;:::-;30108:2;30182:29;30204:6;30182:29;:::i;:::-;30174:37;;30266:4;30260;30256:15;30248:23;;30037:241;;;:::o;30284:98::-;30335:6;30369:5;30363:12;30353:22;;30342:40;;;:::o;30388:99::-;30440:6;30474:5;30468:12;30458:22;;30447:40;;;:::o;30493:168::-;30576:11;30610:6;30605:3;30598:19;30650:4;30645:3;30641:14;30626:29;;30588:73;;;;:::o;30667:147::-;30768:11;30805:3;30790:18;;30780:34;;;;:::o;30820:169::-;30904:11;30938:6;30933:3;30926:19;30978:4;30973:3;30969:14;30954:29;;30916:73;;;;:::o;30995:148::-;31097:11;31134:3;31119:18;;31109:34;;;;:::o;31149:305::-;31189:3;31208:20;31226:1;31208:20;:::i;:::-;31203:25;;31242:20;31260:1;31242:20;:::i;:::-;31237:25;;31396:1;31328:66;31324:74;31321:1;31318:81;31315:2;;;31402:18;;:::i;:::-;31315:2;31446:1;31443;31439:9;31432:16;;31193:261;;;;:::o;31460:185::-;31500:1;31517:20;31535:1;31517:20;:::i;:::-;31512:25;;31551:20;31569:1;31551:20;:::i;:::-;31546:25;;31590:1;31580:2;;31595:18;;:::i;:::-;31580:2;31637:1;31634;31630:9;31625:14;;31502:143;;;;:::o;31651:348::-;31691:7;31714:20;31732:1;31714:20;:::i;:::-;31709:25;;31748:20;31766:1;31748:20;:::i;:::-;31743:25;;31936:1;31868:66;31864:74;31861:1;31858:81;31853:1;31846:9;31839:17;31835:105;31832:2;;;31943:18;;:::i;:::-;31832:2;31991:1;31988;31984:9;31973:20;;31699:300;;;;:::o;32005:191::-;32045:4;32065:20;32083:1;32065:20;:::i;:::-;32060:25;;32099:20;32117:1;32099:20;:::i;:::-;32094:25;;32138:1;32135;32132:8;32129:2;;;32143:18;;:::i;:::-;32129:2;32188:1;32185;32181:9;32173:17;;32050:146;;;;:::o;32202:96::-;32239:7;32268:24;32286:5;32268:24;:::i;:::-;32257:35;;32247:51;;;:::o;32304:90::-;32338:7;32381:5;32374:13;32367:21;32356:32;;32346:48;;;:::o;32400:149::-;32436:7;32476:66;32469:5;32465:78;32454:89;;32444:105;;;:::o;32555:126::-;32592:7;32632:42;32625:5;32621:54;32610:65;;32600:81;;;:::o;32687:77::-;32724:7;32753:5;32742:16;;32732:32;;;:::o;32770:154::-;32854:6;32849:3;32844;32831:30;32916:1;32907:6;32902:3;32898:16;32891:27;32821:103;;;:::o;32930:307::-;32998:1;33008:113;33022:6;33019:1;33016:13;33008:113;;;33107:1;33102:3;33098:11;33092:18;33088:1;33083:3;33079:11;33072:39;33044:2;33041:1;33037:10;33032:15;;33008:113;;;33139:6;33136:1;33133:13;33130:2;;;33219:1;33210:6;33205:3;33201:16;33194:27;33130:2;32979:258;;;;:::o;33243:320::-;33287:6;33324:1;33318:4;33314:12;33304:22;;33371:1;33365:4;33361:12;33392:18;33382:2;;33448:4;33440:6;33436:17;33426:27;;33382:2;33510;33502:6;33499:14;33479:18;33476:38;33473:2;;;33529:18;;:::i;:::-;33473:2;33294:269;;;;:::o;33569:281::-;33652:27;33674:4;33652:27;:::i;:::-;33644:6;33640:40;33782:6;33770:10;33767:22;33746:18;33734:10;33731:34;33728:62;33725:2;;;33793:18;;:::i;:::-;33725:2;33833:10;33829:2;33822:22;33612:238;;;:::o;33856:233::-;33895:3;33918:24;33936:5;33918:24;:::i;:::-;33909:33;;33964:66;33957:5;33954:77;33951:2;;;34034:18;;:::i;:::-;33951:2;34081:1;34074:5;34070:13;34063:20;;33899:190;;;:::o;34095:176::-;34127:1;34144:20;34162:1;34144:20;:::i;:::-;34139:25;;34178:20;34196:1;34178:20;:::i;:::-;34173:25;;34217:1;34207:2;;34222:18;;:::i;:::-;34207:2;34263:1;34260;34256:9;34251:14;;34129:142;;;;:::o;34277:180::-;34325:77;34322:1;34315:88;34422:4;34419:1;34412:15;34446:4;34443:1;34436:15;34463:180;34511:77;34508:1;34501:88;34608:4;34605:1;34598:15;34632:4;34629:1;34622:15;34649:180;34697:77;34694:1;34687:88;34794:4;34791:1;34784:15;34818:4;34815:1;34808:15;34835:180;34883:77;34880:1;34873:88;34980:4;34977:1;34970:15;35004:4;35001:1;34994:15;35021:102;35062:6;35113:2;35109:7;35104:2;35097:5;35093:14;35089:28;35079:38;;35069:54;;;:::o;35129:181::-;35269:33;35265:1;35257:6;35253:14;35246:57;35235:75;:::o;35316:237::-;35456:34;35452:1;35444:6;35440:14;35433:58;35525:20;35520:2;35512:6;35508:15;35501:45;35422:131;:::o;35559:225::-;35699:34;35695:1;35687:6;35683:14;35676:58;35768:8;35763:2;35755:6;35751:15;35744:33;35665:119;:::o;35790:178::-;35930:30;35926:1;35918:6;35914:14;35907:54;35896:72;:::o;35974:223::-;36114:34;36110:1;36102:6;36098:14;36091:58;36183:6;36178:2;36170:6;36166:15;36159:31;36080:117;:::o;36203:175::-;36343:27;36339:1;36331:6;36327:14;36320:51;36309:69;:::o;36384:221::-;36524:34;36520:1;36512:6;36508:14;36501:58;36593:4;36588:2;36580:6;36576:15;36569:29;36490:115;:::o;36611:171::-;36751:23;36747:1;36739:6;36735:14;36728:47;36717:65;:::o;36788:224::-;36928:34;36924:1;36916:6;36912:14;36905:58;36997:7;36992:2;36984:6;36980:15;36973:32;36894:118;:::o;37018:231::-;37158:34;37154:1;37146:6;37142:14;37135:58;37227:14;37222:2;37214:6;37210:15;37203:39;37124:125;:::o;37255:243::-;37395:34;37391:1;37383:6;37379:14;37372:58;37464:26;37459:2;37451:6;37447:15;37440:51;37361:137;:::o;37504:229::-;37644:34;37640:1;37632:6;37628:14;37621:58;37713:12;37708:2;37700:6;37696:15;37689:37;37610:123;:::o;37739:228::-;37879:34;37875:1;37867:6;37863:14;37856:58;37948:11;37943:2;37935:6;37931:15;37924:36;37845:122;:::o;37973:182::-;38113:34;38109:1;38101:6;38097:14;38090:58;38079:76;:::o;38161:175::-;38301:27;38297:1;38289:6;38285:14;38278:51;38267:69;:::o;38342:231::-;38482:34;38478:1;38470:6;38466:14;38459:58;38551:14;38546:2;38538:6;38534:15;38527:39;38448:125;:::o;38579:182::-;38719:34;38715:1;38707:6;38703:14;38696:58;38685:76;:::o;38767:228::-;38907:34;38903:1;38895:6;38891:14;38884:58;38976:11;38971:2;38963:6;38959:15;38952:36;38873:122;:::o;39001:234::-;39141:34;39137:1;39129:6;39125:14;39118:58;39210:17;39205:2;39197:6;39193:15;39186:42;39107:128;:::o;39241:220::-;39381:34;39377:1;39369:6;39365:14;39358:58;39450:3;39445:2;39437:6;39433:15;39426:28;39347:114;:::o;39467:::-;39573:8;:::o;39587:166::-;39727:18;39723:1;39715:6;39711:14;39704:42;39693:60;:::o;39759:236::-;39899:34;39895:1;39887:6;39883:14;39876:58;39968:19;39963:2;39955:6;39951:15;39944:44;39865:130;:::o;40001:179::-;40141:31;40137:1;40129:6;40125:14;40118:55;40107:73;:::o;40186:122::-;40259:24;40277:5;40259:24;:::i;:::-;40252:5;40249:35;40239:2;;40298:1;40295;40288:12;40239:2;40229:79;:::o;40314:116::-;40384:21;40399:5;40384:21;:::i;:::-;40377:5;40374:32;40364:2;;40420:1;40417;40410:12;40364:2;40354:76;:::o;40436:120::-;40508:23;40525:5;40508:23;:::i;:::-;40501:5;40498:34;40488:2;;40546:1;40543;40536:12;40488:2;40478:78;:::o;40562:122::-;40635:24;40653:5;40635:24;:::i;:::-;40628:5;40625:35;40615:2;;40674:1;40671;40664:12;40615:2;40605:79;:::o

Swarm Source

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