ETH Price: $3,497.54 (+2.00%)
Gas: 2 Gwei

Token

The Real Doodle Friends (RealDoodleFriends)
 

Overview

Max Total Supply

356 RealDoodleFriends

Holders

173

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 RealDoodleFriends
0x8d8f45a3969dc4f3cbd1c61e027f1af255302126
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:
DoodleFriends

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

/**
 * ██████╗  ██████╗  ██████╗ ██████╗ ██╗     ███████╗    ███████╗██████╗ ██╗███████╗███╗   ██╗██████╗ ███████╗
 * ██╔══██╗██╔═══██╗██╔═══██╗██╔══██╗██║     ██╔════╝    ██╔════╝██╔══██╗██║██╔════╝████╗  ██║██╔══██╗██╔════╝
 * ██║  ██║██║   ██║██║   ██║██║  ██║██║     █████╗      █████╗  ██████╔╝██║█████╗  ██╔██╗ ██║██║  ██║███████╗
 * ██║  ██║██║   ██║██║   ██║██║  ██║██║     ██╔══╝      ██╔══╝  ██╔══██╗██║██╔══╝  ██║╚██╗██║██║  ██║╚════██║
 * ██████╔╝╚██████╔╝╚██████╔╝██████╔╝███████╗███████╗    ██║     ██║  ██║██║███████╗██║ ╚████║██████╔╝███████║
 * ╚═════╝  ╚═════╝  ╚═════╝ ╚═════╝ ╚══════╝╚══════╝    ╚═╝     ╚═╝  ╚═╝╚═╝╚══════╝╚═╝  ╚═══╝╚═════╝ ╚══════╝
 *
 * This amazing collection consists of 3,353 NFTs, combining a mixture of curated 2D and 3D beautiful characters! 
 * From this 3,353, 2D collection, there will be limited numbers of rare 1 to 1 "3D" Friends available! 
 * As a project, our goal is to be much different by way of choosing a "community first" approach and offering more value than anyone else!
 */

pragma solidity 0.8.11;

/**
 * @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;
    }
}

/**
 * @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;
    }
}

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

/**
 * @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;
        }
    }
}

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

/**
 * @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;
    }
}

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

/**
 * @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;
}

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

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

    bool private _paused;

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @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 {}
}

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721Pausable is ERC721, Ownable, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);
        if (_msgSender() != owner()) {
            require(!paused(), "ERC721Pausable: token transfer while paused");
        }
    }
}

contract DoodleFriends is ERC721Enumerable, Ownable, ERC721Burnable, ERC721Pausable {
    using SafeMath for uint256;
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdTracker;

    bool public SALE_OPEN = false;

    uint256 private constant MAX_SUPPLY = 3353; // 3353 Doodle Friends
    uint256 private constant MAX_MINT_LIMITED = 3; // 3 batch mint max
    uint256 private constant MAX_MINT_UNLIMITED = 3353; // unlimited batch mint

    uint256 private constant PRICE_WHITELIST_ONE = 0.06 ether; // Stage One for Whitelist
    uint256 private constant PRICE_WHITELIST_TWO = 0.07 ether; // Stage Two for Whitelist
    uint256 private constant PRICE_PUBLIC = 0.08 ether; // Public Sale Price

    uint256 private _price;
    uint256 private _maxMint;

    mapping(uint256 => bool) private _isOccupiedId;
    uint256[] private _occupiedList;

    string private baseTokenURI;

    address private devWallet = payable(0x18236675fE58640dc2e9dDFfC478eC2EEea6Ca52); // Developer Wallet Address
    address private fundWallet = payable(0x269D13DaF86aec35e9bD12684B027CbA597360f1); // Owner Fund Wallet Address

    event DoodleFriendSummoned(address to, uint256 indexed id);

    modifier saleIsOpen {
        if (_msgSender() != owner()) {
            require(SALE_OPEN == true, "SALES: Please wait a big longer before buying Doodle Friends ;)");
        }
        require(_totalSupply() <= MAX_SUPPLY, "SALES: Sale end");

        if (_msgSender() != owner()) {
            require(!paused(), "PAUSABLE: Paused");
        }
        _;
    }

    constructor (string memory baseURI) ERC721("The Real Doodle Friends", "RealDoodleFriends") {
        setBaseURI(baseURI);
    }

    function mint(address payable _to, uint256[] memory _ids) public payable saleIsOpen {
        uint256 total = _totalSupply();
        uint256 maxNFTSupply = MAX_SUPPLY;
        uint256 maxMintCount = _maxMint;
        uint256 price = _price;

        require(total + _ids.length <= maxNFTSupply, "MINT: Current count exceeds maximum element count.");
        require(total <= maxNFTSupply, "MINT: Please go to the Opensea to buy Doodle Friends.");
        require(_ids.length <= maxMintCount, "MINT: Current count exceeds maximum mint count.");
        require(msg.value >= price * _ids.length, "MINT: Current value is below the sales price of Doodle Friends");

        for (uint256 i = 0; i < _ids.length; i++) {
            require(_isOccupiedId[_ids[i]] == false, "MINT: Those ids already have been used for other customers");
        }

        for (uint256 i = 0; i < _ids.length; i++) {
            _mintAnElement(_to, _ids[i]);
        }
    }

    function _mintAnElement(address payable _to, uint256 _id) private {
        _tokenIdTracker.increment();
        _safeMint(_to, _id);
        _isOccupiedId[_id] = true;
        _occupiedList.push(_id);

        emit DoodleFriendSummoned(_to, _id);
    }

    function startWhitelistOne() public onlyOwner {
        SALE_OPEN = true;

        _price = PRICE_WHITELIST_ONE;
        _maxMint = MAX_MINT_LIMITED;
    }

    function startWhitelistTwo() public onlyOwner {
        SALE_OPEN = true;

        _price = PRICE_WHITELIST_TWO;
        _maxMint = MAX_MINT_UNLIMITED;
    }

    function startPublicSale() public onlyOwner {
        SALE_OPEN = true;

        _price = PRICE_PUBLIC;
        _maxMint = MAX_MINT_UNLIMITED;
    }

    function flipSaleState() public onlyOwner {
        SALE_OPEN = !SALE_OPEN;
    }

    function setBaseURI(string memory baseURI) public onlyOwner {
        baseTokenURI = baseURI;
    }

    function setNewPrice(uint256 _newPrice) public onlyOwner {
        _price = _newPrice;
    }

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

    function _totalSupply() internal view returns (uint256) {
        return _tokenIdTracker.current();
    }

    function getPrice() public view returns (uint256) {
        return _price;
    }

    function maxSupply() public pure returns (uint256) {
        return MAX_SUPPLY;
    }

    function occupiedList() public view returns (uint256[] memory) {
        return _occupiedList;
    }

    function maxMint() public view returns (uint256) {
        return _maxMint;
    }

    function raised() public view returns (uint256) {
        return address(this).balance;
    }

    function getTokenIdsOfWallet(address _owner) external view returns (uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);

        for (uint256 i = 0; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }

        return tokensId;
    }

    function withdrawAll() public payable onlyOwner {
        uint256 totalBalance = address(this).balance;
        require(totalBalance > 0, "WITHDRAW: No balance in contract");

        uint256 devBalance = totalBalance / 10; // 10% of total sale
        uint256 ownerBalance = totalBalance - devBalance; // 90% of total sale

        _widthdraw(devWallet, devBalance);
        _widthdraw(fundWallet, ownerBalance);
    }

    function _widthdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{value: _amount}("");
        require(success, "WITHDRAW: Transfer failed.");
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override(ERC721, ERC721Enumerable, ERC721Pausable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

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

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":false,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"DoodleFriendSummoned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"SALE_OPEN","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getTokenIdsOfWallet","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address payable","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"occupiedList","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"raised","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setNewPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startWhitelistOne","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startWhitelistTwo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052600c805460ff19169055601280546001600160a01b03199081167318236675fe58640dc2e9ddffc478ec2eeea6ca52179091556013805490911673269d13daf86aec35e9bd12684b027cba597360f11790553480156200006357600080fd5b5060405162002dd938038062002dd98339810160408190526200008691620002d0565b604080518082018252601781527f546865205265616c20446f6f646c6520467269656e64730000000000000000006020808301918252835180850190945260118452705265616c446f6f646c65467269656e647360781b908401528151919291620000f49160009162000214565b5080516200010a90600190602084019062000214565b50505062000127620001216200014660201b60201c565b6200014a565b600a805460ff60a01b191690556200013f816200019c565b50620003e9565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001fb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200021090601190602084019062000214565b5050565b8280546200022290620003ac565b90600052602060002090601f01602090048101928262000246576000855562000291565b82601f106200026157805160ff191683800117855562000291565b8280016001018555821562000291579182015b828111156200029157825182559160200191906001019062000274565b506200029f929150620002a3565b5090565b5b808211156200029f5760008155600101620002a4565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215620002e457600080fd5b82516001600160401b0380821115620002fc57600080fd5b818501915085601f8301126200031157600080fd5b815181811115620003265762000326620002ba565b604051601f8201601f19908116603f01168101908382118183101715620003515762000351620002ba565b8160405282815288868487010111156200036a57600080fd5b600093505b828410156200038e57848401860151818501870152928501926200036f565b82841115620003a05760008684830101525b98975050505050505050565b600181811c90821680620003c157607f821691505b60208210811415620003e357634e487b7160e01b600052602260045260246000fd5b50919050565b6129e080620003f96000396000f3fe60806040526004361061020f5760003560e01c80637501f74111610118578063c3762e5d116100a0578063e985e9c51161006f578063e985e9c514610595578063ee8cdd4e146105de578063eef62508146105fe578063f0ea4bfc1461061e578063f2fde38b1461063157600080fd5b8063c3762e5d14610538578063c87b56dd1461054d578063d5abeb011461056d578063de836ebd1461058257600080fd5b806395d89b41116100e757806395d89b41146104ac57806398d5fdca146104c1578063a22cb465146104d6578063a769cba9146104f6578063b88d4fde1461051857600080fd5b80637501f74114610457578063853828b61461046c5780638da5cb5b146104745780638e26d2aa1461049257600080fd5b806334918dfd1161019b57806355f804b31161016a57806355f804b3146103c35780635c975abb146103e35780636352211e1461040257806370a0823114610422578063715018a61461044257600080fd5b806334918dfd1461034e57806342842e0e1461036357806342966c68146103835780634f6ccce7146103a357600080fd5b80630c1c972a116101e25780630c1c972a146102c557806318160ddd146102da5780631a048a79146102f957806323b872dd1461030e5780632f745c591461032e57600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004612312565b610651565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e610662565b6040516102409190612387565b34801561027757600080fd5b5061028b61028636600461239a565b6106f4565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be3660046123c8565b61078e565b005b3480156102d157600080fd5b506102c36108a4565b3480156102e657600080fd5b506008545b604051908152602001610240565b34801561030557600080fd5b506102c36108ef565b34801561031a57600080fd5b506102c36103293660046123f4565b610939565b34801561033a57600080fd5b506102eb6103493660046123c8565b61096b565b34801561035a57600080fd5b506102c3610a01565b34801561036f57600080fd5b506102c361037e3660046123f4565b610a3f565b34801561038f57600080fd5b506102c361039e36600461239a565b610a5a565b3480156103af57600080fd5b506102eb6103be36600461239a565b610ad4565b3480156103cf57600080fd5b506102c36103de3660046124d4565b610b67565b3480156103ef57600080fd5b50600a54600160a01b900460ff16610234565b34801561040e57600080fd5b5061028b61041d36600461239a565b610ba8565b34801561042e57600080fd5b506102eb61043d36600461251d565b610c1f565b34801561044e57600080fd5b506102c3610ca6565b34801561046357600080fd5b50600e546102eb565b6102c3610cdc565b34801561048057600080fd5b50600a546001600160a01b031661028b565b34801561049e57600080fd5b50600c546102349060ff1681565b3480156104b857600080fd5b5061025e610d9e565b3480156104cd57600080fd5b50600d546102eb565b3480156104e257600080fd5b506102c36104f136600461253a565b610dad565b34801561050257600080fd5b5061050b610db8565b6040516102409190612578565b34801561052457600080fd5b506102c36105333660046125bc565b610e0f565b34801561054457600080fd5b506102c3610e47565b34801561055957600080fd5b5061025e61056836600461239a565b610e90565b34801561057957600080fd5b50610d196102eb565b6102c361059036600461263c565b610f6b565b3480156105a157600080fd5b506102346105b03660046126f7565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105ea57600080fd5b506102c36105f936600461239a565b61139a565b34801561060a57600080fd5b5061050b61061936600461251d565b6113c9565b34801561062a57600080fd5b50476102eb565b34801561063d57600080fd5b506102c361064c36600461251d565b61146b565b600061065c82611503565b92915050565b60606000805461067190612725565b80601f016020809104026020016040519081016040528092919081815260200182805461069d90612725565b80156106ea5780601f106106bf576101008083540402835291602001916106ea565b820191906000526020600020905b8154815290600101906020018083116106cd57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107725760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061079982610ba8565b9050806001600160a01b0316836001600160a01b031614156108075760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610769565b336001600160a01b0382161480610823575061082381336105b0565b6108955760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610769565b61089f8383611528565b505050565b600a546001600160a01b031633146108ce5760405162461bcd60e51b815260040161076990612760565b600c805460ff1916600117905567011c37937e080000600d55610d19600e55565b600a546001600160a01b031633146109195760405162461bcd60e51b815260040161076990612760565b600c805460ff1916600117905566f8b0a10e470000600d55610d19600e55565b610944335b82611596565b6109605760405162461bcd60e51b815260040161076990612795565b61089f83838361168d565b600061097683610c1f565b82106109d85760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610769565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610a2b5760405162461bcd60e51b815260040161076990612760565b600c805460ff19811660ff90911615179055565b61089f83838360405180602001604052806000815250610e0f565b610a633361093e565b610ac85760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610769565b610ad181611838565b50565b6000610adf60085490565b8210610b425760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610769565b60088281548110610b5557610b556127e6565b90600052602060002001549050919050565b600a546001600160a01b03163314610b915760405162461bcd60e51b815260040161076990612760565b8051610ba4906011906020840190612263565b5050565b6000818152600260205260408120546001600160a01b03168061065c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610769565b60006001600160a01b038216610c8a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610769565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610cd05760405162461bcd60e51b815260040161076990612760565b610cda60006118df565b565b600a546001600160a01b03163314610d065760405162461bcd60e51b815260040161076990612760565b4780610d545760405162461bcd60e51b815260206004820181905260248201527f57495448445241573a204e6f2062616c616e636520696e20636f6e74726163746044820152606401610769565b6000610d61600a83612828565b90506000610d6f828461283c565b601254909150610d88906001600160a01b031683611931565b60135461089f906001600160a01b031682611931565b60606001805461067190612725565b610ba43383836119d4565b606060108054806020026020016040519081016040528092919081815260200182805480156106ea57602002820191906000526020600020905b815481526020019060010190808311610df2575050505050905090565b610e193383611596565b610e355760405162461bcd60e51b815260040161076990612795565b610e4184848484611aa3565b50505050565b600a546001600160a01b03163314610e715760405162461bcd60e51b815260040161076990612760565b600c805460ff1916600117905566d529ae9e860000600d556003600e55565b6000818152600260205260409020546060906001600160a01b0316610f0f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610769565b6000610f19611ad6565b90506000815111610f395760405180602001604052806000815250610f64565b80610f4384611ae5565b604051602001610f54929190612853565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314610ffa57600c5460ff161515600114610ffa5760405162461bcd60e51b815260206004820152603f60248201527f53414c45533a20506c656173652077616974206120626967206c6f6e6765722060448201527f6265666f726520627579696e6720446f6f646c6520467269656e6473203b29006064820152608401610769565b610d19611005611be3565b11156110455760405162461bcd60e51b815260206004820152600f60248201526e14d0531154ce8814d85b1948195b99608a1b6044820152606401610769565b600a546001600160a01b031633146110a457600a54600160a01b900460ff16156110a45760405162461bcd60e51b815260206004820152601060248201526f14105554d05093114e8814185d5cd95960821b6044820152606401610769565b60006110ae611be3565b600e54600d548451929350610d199283906110c99086612882565b11156111325760405162461bcd60e51b815260206004820152603260248201527f4d494e543a2043757272656e7420636f756e742065786365656473206d61786960448201527136bab69032b632b6b2b73a1031b7bab73a1760711b6064820152608401610769565b828411156111a05760405162461bcd60e51b815260206004820152603560248201527f4d494e543a20506c6561736520676f20746f20746865204f70656e73656120746044820152743790313abc902237b7b2363290233934b2b732399760591b6064820152608401610769565b81855111156112095760405162461bcd60e51b815260206004820152602f60248201527f4d494e543a2043757272656e7420636f756e742065786365656473206d61786960448201526e36bab69036b4b73a1031b7bab73a1760891b6064820152608401610769565b8451611215908261289a565b34101561128a5760405162461bcd60e51b815260206004820152603e60248201527f4d494e543a2043757272656e742076616c75652069732062656c6f772074686560448201527f2073616c6573207072696365206f6620446f6f646c6520467269656e647300006064820152608401610769565b60005b855181101561134f57600f60008783815181106112ac576112ac6127e6565b60209081029190910181015182528101919091526040016000205460ff161561133d5760405162461bcd60e51b815260206004820152603a60248201527f4d494e543a2054686f73652069647320616c726561647920686176652062656560448201527f6e207573656420666f72206f7468657220637573746f6d6572730000000000006064820152608401610769565b80611347816128b9565b91505061128d565b5060005b85518110156113915761137f87878381518110611372576113726127e6565b6020026020010151611bf3565b80611389816128b9565b915050611353565b50505050505050565b600a546001600160a01b031633146113c45760405162461bcd60e51b815260040161076990612760565b600d55565b606060006113d683610c1f565b905060008167ffffffffffffffff8111156113f3576113f3612435565b60405190808252806020026020018201604052801561141c578160200160208202803683370190505b50905060005b8281101561146357611434858261096b565b828281518110611446576114466127e6565b60209081029190910101528061145b816128b9565b915050611422565b509392505050565b600a546001600160a01b031633146114955760405162461bcd60e51b815260040161076990612760565b6001600160a01b0381166114fa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610769565b610ad1816118df565b60006001600160e01b0319821663780e9d6360e01b148061065c575061065c82611c9c565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061155d82610ba8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661160f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610769565b600061161a83610ba8565b9050806001600160a01b0316846001600160a01b031614806116555750836001600160a01b031661164a846106f4565b6001600160a01b0316145b8061168557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166116a082610ba8565b6001600160a01b0316146117085760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610769565b6001600160a01b03821661176a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610769565b611775838383611cec565b611780600082611528565b6001600160a01b03831660009081526003602052604081208054600192906117a990849061283c565b90915550506001600160a01b03821660009081526003602052604081208054600192906117d7908490612882565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061184382610ba8565b905061185181600084611cec565b61185c600083611528565b6001600160a01b038116600090815260036020526040812080546001929061188590849061283c565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461197e576040519150601f19603f3d011682016040523d82523d6000602084013e611983565b606091505b505090508061089f5760405162461bcd60e51b815260206004820152601a60248201527f57495448445241573a205472616e73666572206661696c65642e0000000000006044820152606401610769565b816001600160a01b0316836001600160a01b03161415611a365760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610769565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611aae84848461168d565b611aba84848484611cf7565b610e415760405162461bcd60e51b8152600401610769906128d4565b60606011805461067190612725565b606081611b095750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b335780611b1d816128b9565b9150611b2c9050600a83612828565b9150611b0d565b60008167ffffffffffffffff811115611b4e57611b4e612435565b6040519080825280601f01601f191660200182016040528015611b78576020820181803683370190505b5090505b841561168557611b8d60018361283c565b9150611b9a600a86612926565b611ba5906030612882565b60f81b818381518110611bba57611bba6127e6565b60200101906001600160f81b031916908160001a905350611bdc600a86612828565b9450611b7c565b6000611bee600b5490565b905090565b611c01600b80546001019055565b611c0b8282611df5565b6000818152600f60209081526040808320805460ff191660019081179091556010805491820181559093527f1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae67290920183905590516001600160a01b038416815282917f40a8b7bdd48fae488e5a454ae61342c246af8e217ca663d2e621ae114c961239910160405180910390a25050565b60006001600160e01b031982166380ac58cd60e01b1480611ccd57506001600160e01b03198216635b5e139f60e01b145b8061065c57506301ffc9a760e01b6001600160e01b031983161461065c565b61089f838383611e0f565b60006001600160a01b0384163b15611dea57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d3b90339089908890889060040161293a565b6020604051808303816000875af1925050508015611d76575060408051601f3d908101601f19168201909252611d7391810190612977565b60015b611dd0573d808015611da4576040519150601f19603f3d011682016040523d82523d6000602084013e611da9565b606091505b508051611dc85760405162461bcd60e51b8152600401610769906128d4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611685565b506001949350505050565b610ba4828260405180602001604052806000815250611e9a565b611e1a838383611ecd565b600a546001600160a01b0316331461089f57600a54600160a01b900460ff161561089f5760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b6064820152608401610769565b611ea48383611f85565b611eb16000848484611cf7565b61089f5760405162461bcd60e51b8152600401610769906128d4565b6001600160a01b038316611f2857611f2381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611f4b565b816001600160a01b0316836001600160a01b031614611f4b57611f4b83826120d3565b6001600160a01b038216611f625761089f81612170565b826001600160a01b0316826001600160a01b03161461089f5761089f828261221f565b6001600160a01b038216611fdb5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610769565b6000818152600260205260409020546001600160a01b0316156120405760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610769565b61204c60008383611cec565b6001600160a01b0382166000908152600360205260408120805460019290612075908490612882565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016120e084610c1f565b6120ea919061283c565b60008381526007602052604090205490915080821461213d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906121829060019061283c565b600083815260096020526040812054600880549394509092849081106121aa576121aa6127e6565b9060005260206000200154905080600883815481106121cb576121cb6127e6565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061220357612203612994565b6001900381819060005260206000200160009055905550505050565b600061222a83610c1f565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461226f90612725565b90600052602060002090601f01602090048101928261229157600085556122d7565b82601f106122aa57805160ff19168380011785556122d7565b828001600101855582156122d7579182015b828111156122d75782518255916020019190600101906122bc565b506122e39291506122e7565b5090565b5b808211156122e357600081556001016122e8565b6001600160e01b031981168114610ad157600080fd5b60006020828403121561232457600080fd5b8135610f64816122fc565b60005b8381101561234a578181015183820152602001612332565b83811115610e415750506000910152565b6000815180845261237381602086016020860161232f565b601f01601f19169290920160200192915050565b602081526000610f64602083018461235b565b6000602082840312156123ac57600080fd5b5035919050565b6001600160a01b0381168114610ad157600080fd5b600080604083850312156123db57600080fd5b82356123e6816123b3565b946020939093013593505050565b60008060006060848603121561240957600080fd5b8335612414816123b3565b92506020840135612424816123b3565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561247457612474612435565b604052919050565b600067ffffffffffffffff83111561249657612496612435565b6124a9601f8401601f191660200161244b565b90508281528383830111156124bd57600080fd5b828260208301376000602084830101529392505050565b6000602082840312156124e657600080fd5b813567ffffffffffffffff8111156124fd57600080fd5b8201601f8101841361250e57600080fd5b6116858482356020840161247c565b60006020828403121561252f57600080fd5b8135610f64816123b3565b6000806040838503121561254d57600080fd5b8235612558816123b3565b91506020830135801515811461256d57600080fd5b809150509250929050565b6020808252825182820181905260009190848201906040850190845b818110156125b057835183529284019291840191600101612594565b50909695505050505050565b600080600080608085870312156125d257600080fd5b84356125dd816123b3565b935060208501356125ed816123b3565b925060408501359150606085013567ffffffffffffffff81111561261057600080fd5b8501601f8101871361262157600080fd5b6126308782356020840161247c565b91505092959194509250565b6000806040838503121561264f57600080fd5b823561265a816123b3565b915060208381013567ffffffffffffffff8082111561267857600080fd5b818601915086601f83011261268c57600080fd5b81358181111561269e5761269e612435565b8060051b91506126af84830161244b565b81815291830184019184810190898411156126c957600080fd5b938501935b838510156126e7578435825293850193908501906126ce565b8096505050505050509250929050565b6000806040838503121561270a57600080fd5b8235612715816123b3565b9150602083013561256d816123b3565b600181811c9082168061273957607f821691505b6020821081141561275a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082612837576128376127fc565b500490565b60008282101561284e5761284e612812565b500390565b6000835161286581846020880161232f565b83519083019061287981836020880161232f565b01949350505050565b6000821982111561289557612895612812565b500190565b60008160001904831182151516156128b4576128b4612812565b500290565b60006000198214156128cd576128cd612812565b5060010190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612935576129356127fc565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061296d9083018461235b565b9695505050505050565b60006020828403121561298957600080fd5b8151610f64816122fc565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220ece3605a05356429c31b05d868a11be72ac172a002f28d9c6fbb401c705f8bc164736f6c634300080b00330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005a68747470733a2f2f646f6f646c652d667269656e64732e6d7970696e6174612e636c6f75642f697066732f516d633665375a6e634b5a527338784757705a36386845533958635763444c3744554a6f706648366468383735612f000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80637501f74111610118578063c3762e5d116100a0578063e985e9c51161006f578063e985e9c514610595578063ee8cdd4e146105de578063eef62508146105fe578063f0ea4bfc1461061e578063f2fde38b1461063157600080fd5b8063c3762e5d14610538578063c87b56dd1461054d578063d5abeb011461056d578063de836ebd1461058257600080fd5b806395d89b41116100e757806395d89b41146104ac57806398d5fdca146104c1578063a22cb465146104d6578063a769cba9146104f6578063b88d4fde1461051857600080fd5b80637501f74114610457578063853828b61461046c5780638da5cb5b146104745780638e26d2aa1461049257600080fd5b806334918dfd1161019b57806355f804b31161016a57806355f804b3146103c35780635c975abb146103e35780636352211e1461040257806370a0823114610422578063715018a61461044257600080fd5b806334918dfd1461034e57806342842e0e1461036357806342966c68146103835780634f6ccce7146103a357600080fd5b80630c1c972a116101e25780630c1c972a146102c557806318160ddd146102da5780631a048a79146102f957806323b872dd1461030e5780632f745c591461032e57600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004612312565b610651565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e610662565b6040516102409190612387565b34801561027757600080fd5b5061028b61028636600461239a565b6106f4565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be3660046123c8565b61078e565b005b3480156102d157600080fd5b506102c36108a4565b3480156102e657600080fd5b506008545b604051908152602001610240565b34801561030557600080fd5b506102c36108ef565b34801561031a57600080fd5b506102c36103293660046123f4565b610939565b34801561033a57600080fd5b506102eb6103493660046123c8565b61096b565b34801561035a57600080fd5b506102c3610a01565b34801561036f57600080fd5b506102c361037e3660046123f4565b610a3f565b34801561038f57600080fd5b506102c361039e36600461239a565b610a5a565b3480156103af57600080fd5b506102eb6103be36600461239a565b610ad4565b3480156103cf57600080fd5b506102c36103de3660046124d4565b610b67565b3480156103ef57600080fd5b50600a54600160a01b900460ff16610234565b34801561040e57600080fd5b5061028b61041d36600461239a565b610ba8565b34801561042e57600080fd5b506102eb61043d36600461251d565b610c1f565b34801561044e57600080fd5b506102c3610ca6565b34801561046357600080fd5b50600e546102eb565b6102c3610cdc565b34801561048057600080fd5b50600a546001600160a01b031661028b565b34801561049e57600080fd5b50600c546102349060ff1681565b3480156104b857600080fd5b5061025e610d9e565b3480156104cd57600080fd5b50600d546102eb565b3480156104e257600080fd5b506102c36104f136600461253a565b610dad565b34801561050257600080fd5b5061050b610db8565b6040516102409190612578565b34801561052457600080fd5b506102c36105333660046125bc565b610e0f565b34801561054457600080fd5b506102c3610e47565b34801561055957600080fd5b5061025e61056836600461239a565b610e90565b34801561057957600080fd5b50610d196102eb565b6102c361059036600461263c565b610f6b565b3480156105a157600080fd5b506102346105b03660046126f7565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105ea57600080fd5b506102c36105f936600461239a565b61139a565b34801561060a57600080fd5b5061050b61061936600461251d565b6113c9565b34801561062a57600080fd5b50476102eb565b34801561063d57600080fd5b506102c361064c36600461251d565b61146b565b600061065c82611503565b92915050565b60606000805461067190612725565b80601f016020809104026020016040519081016040528092919081815260200182805461069d90612725565b80156106ea5780601f106106bf576101008083540402835291602001916106ea565b820191906000526020600020905b8154815290600101906020018083116106cd57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107725760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061079982610ba8565b9050806001600160a01b0316836001600160a01b031614156108075760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610769565b336001600160a01b0382161480610823575061082381336105b0565b6108955760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610769565b61089f8383611528565b505050565b600a546001600160a01b031633146108ce5760405162461bcd60e51b815260040161076990612760565b600c805460ff1916600117905567011c37937e080000600d55610d19600e55565b600a546001600160a01b031633146109195760405162461bcd60e51b815260040161076990612760565b600c805460ff1916600117905566f8b0a10e470000600d55610d19600e55565b610944335b82611596565b6109605760405162461bcd60e51b815260040161076990612795565b61089f83838361168d565b600061097683610c1f565b82106109d85760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610769565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610a2b5760405162461bcd60e51b815260040161076990612760565b600c805460ff19811660ff90911615179055565b61089f83838360405180602001604052806000815250610e0f565b610a633361093e565b610ac85760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610769565b610ad181611838565b50565b6000610adf60085490565b8210610b425760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610769565b60088281548110610b5557610b556127e6565b90600052602060002001549050919050565b600a546001600160a01b03163314610b915760405162461bcd60e51b815260040161076990612760565b8051610ba4906011906020840190612263565b5050565b6000818152600260205260408120546001600160a01b03168061065c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610769565b60006001600160a01b038216610c8a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610769565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610cd05760405162461bcd60e51b815260040161076990612760565b610cda60006118df565b565b600a546001600160a01b03163314610d065760405162461bcd60e51b815260040161076990612760565b4780610d545760405162461bcd60e51b815260206004820181905260248201527f57495448445241573a204e6f2062616c616e636520696e20636f6e74726163746044820152606401610769565b6000610d61600a83612828565b90506000610d6f828461283c565b601254909150610d88906001600160a01b031683611931565b60135461089f906001600160a01b031682611931565b60606001805461067190612725565b610ba43383836119d4565b606060108054806020026020016040519081016040528092919081815260200182805480156106ea57602002820191906000526020600020905b815481526020019060010190808311610df2575050505050905090565b610e193383611596565b610e355760405162461bcd60e51b815260040161076990612795565b610e4184848484611aa3565b50505050565b600a546001600160a01b03163314610e715760405162461bcd60e51b815260040161076990612760565b600c805460ff1916600117905566d529ae9e860000600d556003600e55565b6000818152600260205260409020546060906001600160a01b0316610f0f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610769565b6000610f19611ad6565b90506000815111610f395760405180602001604052806000815250610f64565b80610f4384611ae5565b604051602001610f54929190612853565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314610ffa57600c5460ff161515600114610ffa5760405162461bcd60e51b815260206004820152603f60248201527f53414c45533a20506c656173652077616974206120626967206c6f6e6765722060448201527f6265666f726520627579696e6720446f6f646c6520467269656e6473203b29006064820152608401610769565b610d19611005611be3565b11156110455760405162461bcd60e51b815260206004820152600f60248201526e14d0531154ce8814d85b1948195b99608a1b6044820152606401610769565b600a546001600160a01b031633146110a457600a54600160a01b900460ff16156110a45760405162461bcd60e51b815260206004820152601060248201526f14105554d05093114e8814185d5cd95960821b6044820152606401610769565b60006110ae611be3565b600e54600d548451929350610d199283906110c99086612882565b11156111325760405162461bcd60e51b815260206004820152603260248201527f4d494e543a2043757272656e7420636f756e742065786365656473206d61786960448201527136bab69032b632b6b2b73a1031b7bab73a1760711b6064820152608401610769565b828411156111a05760405162461bcd60e51b815260206004820152603560248201527f4d494e543a20506c6561736520676f20746f20746865204f70656e73656120746044820152743790313abc902237b7b2363290233934b2b732399760591b6064820152608401610769565b81855111156112095760405162461bcd60e51b815260206004820152602f60248201527f4d494e543a2043757272656e7420636f756e742065786365656473206d61786960448201526e36bab69036b4b73a1031b7bab73a1760891b6064820152608401610769565b8451611215908261289a565b34101561128a5760405162461bcd60e51b815260206004820152603e60248201527f4d494e543a2043757272656e742076616c75652069732062656c6f772074686560448201527f2073616c6573207072696365206f6620446f6f646c6520467269656e647300006064820152608401610769565b60005b855181101561134f57600f60008783815181106112ac576112ac6127e6565b60209081029190910181015182528101919091526040016000205460ff161561133d5760405162461bcd60e51b815260206004820152603a60248201527f4d494e543a2054686f73652069647320616c726561647920686176652062656560448201527f6e207573656420666f72206f7468657220637573746f6d6572730000000000006064820152608401610769565b80611347816128b9565b91505061128d565b5060005b85518110156113915761137f87878381518110611372576113726127e6565b6020026020010151611bf3565b80611389816128b9565b915050611353565b50505050505050565b600a546001600160a01b031633146113c45760405162461bcd60e51b815260040161076990612760565b600d55565b606060006113d683610c1f565b905060008167ffffffffffffffff8111156113f3576113f3612435565b60405190808252806020026020018201604052801561141c578160200160208202803683370190505b50905060005b8281101561146357611434858261096b565b828281518110611446576114466127e6565b60209081029190910101528061145b816128b9565b915050611422565b509392505050565b600a546001600160a01b031633146114955760405162461bcd60e51b815260040161076990612760565b6001600160a01b0381166114fa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610769565b610ad1816118df565b60006001600160e01b0319821663780e9d6360e01b148061065c575061065c82611c9c565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061155d82610ba8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661160f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610769565b600061161a83610ba8565b9050806001600160a01b0316846001600160a01b031614806116555750836001600160a01b031661164a846106f4565b6001600160a01b0316145b8061168557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166116a082610ba8565b6001600160a01b0316146117085760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610769565b6001600160a01b03821661176a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610769565b611775838383611cec565b611780600082611528565b6001600160a01b03831660009081526003602052604081208054600192906117a990849061283c565b90915550506001600160a01b03821660009081526003602052604081208054600192906117d7908490612882565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061184382610ba8565b905061185181600084611cec565b61185c600083611528565b6001600160a01b038116600090815260036020526040812080546001929061188590849061283c565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461197e576040519150601f19603f3d011682016040523d82523d6000602084013e611983565b606091505b505090508061089f5760405162461bcd60e51b815260206004820152601a60248201527f57495448445241573a205472616e73666572206661696c65642e0000000000006044820152606401610769565b816001600160a01b0316836001600160a01b03161415611a365760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610769565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611aae84848461168d565b611aba84848484611cf7565b610e415760405162461bcd60e51b8152600401610769906128d4565b60606011805461067190612725565b606081611b095750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b335780611b1d816128b9565b9150611b2c9050600a83612828565b9150611b0d565b60008167ffffffffffffffff811115611b4e57611b4e612435565b6040519080825280601f01601f191660200182016040528015611b78576020820181803683370190505b5090505b841561168557611b8d60018361283c565b9150611b9a600a86612926565b611ba5906030612882565b60f81b818381518110611bba57611bba6127e6565b60200101906001600160f81b031916908160001a905350611bdc600a86612828565b9450611b7c565b6000611bee600b5490565b905090565b611c01600b80546001019055565b611c0b8282611df5565b6000818152600f60209081526040808320805460ff191660019081179091556010805491820181559093527f1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae67290920183905590516001600160a01b038416815282917f40a8b7bdd48fae488e5a454ae61342c246af8e217ca663d2e621ae114c961239910160405180910390a25050565b60006001600160e01b031982166380ac58cd60e01b1480611ccd57506001600160e01b03198216635b5e139f60e01b145b8061065c57506301ffc9a760e01b6001600160e01b031983161461065c565b61089f838383611e0f565b60006001600160a01b0384163b15611dea57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d3b90339089908890889060040161293a565b6020604051808303816000875af1925050508015611d76575060408051601f3d908101601f19168201909252611d7391810190612977565b60015b611dd0573d808015611da4576040519150601f19603f3d011682016040523d82523d6000602084013e611da9565b606091505b508051611dc85760405162461bcd60e51b8152600401610769906128d4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611685565b506001949350505050565b610ba4828260405180602001604052806000815250611e9a565b611e1a838383611ecd565b600a546001600160a01b0316331461089f57600a54600160a01b900460ff161561089f5760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b6064820152608401610769565b611ea48383611f85565b611eb16000848484611cf7565b61089f5760405162461bcd60e51b8152600401610769906128d4565b6001600160a01b038316611f2857611f2381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611f4b565b816001600160a01b0316836001600160a01b031614611f4b57611f4b83826120d3565b6001600160a01b038216611f625761089f81612170565b826001600160a01b0316826001600160a01b03161461089f5761089f828261221f565b6001600160a01b038216611fdb5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610769565b6000818152600260205260409020546001600160a01b0316156120405760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610769565b61204c60008383611cec565b6001600160a01b0382166000908152600360205260408120805460019290612075908490612882565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016120e084610c1f565b6120ea919061283c565b60008381526007602052604090205490915080821461213d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906121829060019061283c565b600083815260096020526040812054600880549394509092849081106121aa576121aa6127e6565b9060005260206000200154905080600883815481106121cb576121cb6127e6565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061220357612203612994565b6001900381819060005260206000200160009055905550505050565b600061222a83610c1f565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461226f90612725565b90600052602060002090601f01602090048101928261229157600085556122d7565b82601f106122aa57805160ff19168380011785556122d7565b828001600101855582156122d7579182015b828111156122d75782518255916020019190600101906122bc565b506122e39291506122e7565b5090565b5b808211156122e357600081556001016122e8565b6001600160e01b031981168114610ad157600080fd5b60006020828403121561232457600080fd5b8135610f64816122fc565b60005b8381101561234a578181015183820152602001612332565b83811115610e415750506000910152565b6000815180845261237381602086016020860161232f565b601f01601f19169290920160200192915050565b602081526000610f64602083018461235b565b6000602082840312156123ac57600080fd5b5035919050565b6001600160a01b0381168114610ad157600080fd5b600080604083850312156123db57600080fd5b82356123e6816123b3565b946020939093013593505050565b60008060006060848603121561240957600080fd5b8335612414816123b3565b92506020840135612424816123b3565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561247457612474612435565b604052919050565b600067ffffffffffffffff83111561249657612496612435565b6124a9601f8401601f191660200161244b565b90508281528383830111156124bd57600080fd5b828260208301376000602084830101529392505050565b6000602082840312156124e657600080fd5b813567ffffffffffffffff8111156124fd57600080fd5b8201601f8101841361250e57600080fd5b6116858482356020840161247c565b60006020828403121561252f57600080fd5b8135610f64816123b3565b6000806040838503121561254d57600080fd5b8235612558816123b3565b91506020830135801515811461256d57600080fd5b809150509250929050565b6020808252825182820181905260009190848201906040850190845b818110156125b057835183529284019291840191600101612594565b50909695505050505050565b600080600080608085870312156125d257600080fd5b84356125dd816123b3565b935060208501356125ed816123b3565b925060408501359150606085013567ffffffffffffffff81111561261057600080fd5b8501601f8101871361262157600080fd5b6126308782356020840161247c565b91505092959194509250565b6000806040838503121561264f57600080fd5b823561265a816123b3565b915060208381013567ffffffffffffffff8082111561267857600080fd5b818601915086601f83011261268c57600080fd5b81358181111561269e5761269e612435565b8060051b91506126af84830161244b565b81815291830184019184810190898411156126c957600080fd5b938501935b838510156126e7578435825293850193908501906126ce565b8096505050505050509250929050565b6000806040838503121561270a57600080fd5b8235612715816123b3565b9150602083013561256d816123b3565b600181811c9082168061273957607f821691505b6020821081141561275a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082612837576128376127fc565b500490565b60008282101561284e5761284e612812565b500390565b6000835161286581846020880161232f565b83519083019061287981836020880161232f565b01949350505050565b6000821982111561289557612895612812565b500190565b60008160001904831182151516156128b4576128b4612812565b500290565b60006000198214156128cd576128cd612812565b5060010190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612935576129356127fc565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061296d9083018461235b565b9695505050505050565b60006020828403121561298957600080fd5b8151610f64816122fc565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220ece3605a05356429c31b05d868a11be72ac172a002f28d9c6fbb401c705f8bc164736f6c634300080b0033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005a68747470733a2f2f646f6f646c652d667269656e64732e6d7970696e6174612e636c6f75642f697066732f516d633665375a6e634b5a527338784757705a36386845533958635763444c3744554a6f706648366468383735612f000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://doodle-friends.mypinata.cloud/ipfs/Qmc6e7ZncKZRs8xGWpZ68hES9XcWcDL7DUJopfH6dh875a/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000005a
Arg [2] : 68747470733a2f2f646f6f646c652d667269656e64732e6d7970696e6174612e
Arg [3] : 636c6f75642f697066732f516d633665375a6e634b5a527338784757705a3638
Arg [4] : 6845533958635763444c3744554a6f706648366468383735612f000000000000


Deployed Bytecode Sourcemap

56241:5955:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62014:179;;;;;;;;;;-1:-1:-1;62014:179:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;62014:179:0;;;;;;;;36360:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;37919:221::-;;;;;;;;;;-1:-1:-1;37919:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;37919:221:0;1528:203:1;37442:411:0;;;;;;;;;;-1:-1:-1;37442:411:0;;;;;:::i;:::-;;:::i;:::-;;59575:153;;;;;;;;;;;;;:::i;49904:113::-;;;;;;;;;;-1:-1:-1;49992:10:0;:17;49904:113;;;2338:25:1;;;2326:2;2311:18;49904:113:0;2192:177:1;59405:162:0;;;;;;;;;;;;;:::i;38669:339::-;;;;;;;;;;-1:-1:-1;38669:339:0;;;;;:::i;:::-;;:::i;49572:256::-;;;;;;;;;;-1:-1:-1;49572:256:0;;;;;:::i;:::-;;:::i;59736:83::-;;;;;;;;;;;;;:::i;39079:185::-;;;;;;;;;;-1:-1:-1;39079:185:0;;;;;:::i;:::-;;:::i;48198:245::-;;;;;;;;;;-1:-1:-1;48198:245:0;;;;;:::i;:::-;;:::i;50094:233::-;;;;;;;;;;-1:-1:-1;50094:233:0;;;;;:::i;:::-;;:::i;59827:101::-;;;;;;;;;;-1:-1:-1;59827:101:0;;;;;:::i;:::-;;:::i;28257:86::-;;;;;;;;;;-1:-1:-1;28328:7:0;;-1:-1:-1;;;28328:7:0;;;;28257:86;;36054:239;;;;;;;;;;-1:-1:-1;36054:239:0;;;;;:::i;:::-;;:::i;35784:208::-;;;;;;;;;;-1:-1:-1;35784:208:0;;;;;:::i;:::-;;:::i;31013:103::-;;;;;;;;;;;;;:::i;60569:83::-;;;;;;;;;;-1:-1:-1;60636:8:0;;60569:83;;61132:428;;;:::i;30362:87::-;;;;;;;;;;-1:-1:-1;30435:6:0;;-1:-1:-1;;;;;30435:6:0;30362:87;;56458:29;;;;;;;;;;-1:-1:-1;56458:29:0;;;;;;;;36529:104;;;;;;;;;;;;;:::i;60274:82::-;;;;;;;;;;-1:-1:-1;60342:6:0;;60274:82;;38212:155;;;;;;;;;;-1:-1:-1;38212:155:0;;;;;:::i;:::-;;:::i;60459:102::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;39335:328::-;;;;;;;;;;-1:-1:-1;39335:328:0;;;;;:::i;:::-;;:::i;59237:160::-;;;;;;;;;;;;;:::i;36704:334::-;;;;;;;;;;-1:-1:-1;36704:334:0;;;;;:::i;:::-;;:::i;60364:87::-;;;;;;;;;;-1:-1:-1;56534:4:0;60364:87;;57992:969;;;;;;:::i;:::-;;:::i;38438:164::-;;;;;;;;;;-1:-1:-1;38438:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;38559:25:0;;;38535:4;38559:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;38438:164;59936:94;;;;;;;;;;-1:-1:-1;59936:94:0;;;;;:::i;:::-;;:::i;60763:361::-;;;;;;;;;;-1:-1:-1;60763:361:0;;;;;:::i;:::-;;:::i;60660:95::-;;;;;;;;;;-1:-1:-1;60726:21:0;60660:95;;31271:201;;;;;;;;;;-1:-1:-1;31271:201:0;;;;;:::i;:::-;;:::i;62014:179::-;62125:4;62149:36;62173:11;62149:23;:36::i;:::-;62142:43;62014:179;-1:-1:-1;;62014:179:0:o;36360:100::-;36414:13;36447:5;36440:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36360:100;:::o;37919:221::-;37995:7;41262:16;;;:7;:16;;;;;;-1:-1:-1;;;;;41262:16:0;38015:73;;;;-1:-1:-1;;;38015:73:0;;8299:2:1;38015:73:0;;;8281:21:1;8338:2;8318:18;;;8311:30;8377:34;8357:18;;;8350:62;-1:-1:-1;;;8428:18:1;;;8421:42;8480:19;;38015:73:0;;;;;;;;;-1:-1:-1;38108:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;38108:24:0;;37919:221::o;37442:411::-;37523:13;37539:23;37554:7;37539:14;:23::i;:::-;37523:39;;37587:5;-1:-1:-1;;;;;37581:11:0;:2;-1:-1:-1;;;;;37581:11:0;;;37573:57;;;;-1:-1:-1;;;37573:57:0;;8712:2:1;37573:57:0;;;8694:21:1;8751:2;8731:18;;;8724:30;8790:34;8770:18;;;8763:62;-1:-1:-1;;;8841:18:1;;;8834:31;8882:19;;37573:57:0;8510:397:1;37573:57:0;2781:10;-1:-1:-1;;;;;37665:21:0;;;;:62;;-1:-1:-1;37690:37:0;37707:5;2781:10;38438:164;:::i;37690:37::-;37643:168;;;;-1:-1:-1;;;37643:168:0;;9114:2:1;37643:168:0;;;9096:21:1;9153:2;9133:18;;;9126:30;9192:34;9172:18;;;9165:62;9263:26;9243:18;;;9236:54;9307:19;;37643:168:0;8912:420:1;37643:168:0;37824:21;37833:2;37837:7;37824:8;:21::i;:::-;37512:341;37442:411;;:::o;59575:153::-;30435:6;;-1:-1:-1;;;;;30435:6:0;2781:10;30582:23;30574:68;;;;-1:-1:-1;;;30574:68:0;;;;;;;:::i;:::-;59630:9:::1;:16:::0;;-1:-1:-1;;59630:16:0::1;59642:4;59630:16;::::0;;56945:10:::1;59659:6;:21:::0;56686:4:::1;59691:8;:29:::0;59575:153::o;59405:162::-;30435:6;;-1:-1:-1;;;;;30435:6:0;2781:10;30582:23;30574:68;;;;-1:-1:-1;;;30574:68:0;;;;;;;:::i;:::-;59462:9:::1;:16:::0;;-1:-1:-1;;59462:16:0::1;59474:4;59462:16;::::0;;56861:10:::1;59491:6;:28:::0;56686:4:::1;59530:8;:29:::0;59405:162::o;38669:339::-;38864:41;2781:10;38883:12;38897:7;38864:18;:41::i;:::-;38856:103;;;;-1:-1:-1;;;38856:103:0;;;;;;;:::i;:::-;38972:28;38982:4;38988:2;38992:7;38972:9;:28::i;49572:256::-;49669:7;49705:23;49722:5;49705:16;:23::i;:::-;49697:5;:31;49689:87;;;;-1:-1:-1;;;49689:87:0;;10318:2:1;49689:87:0;;;10300:21:1;10357:2;10337:18;;;10330:30;10396:34;10376:18;;;10369:62;-1:-1:-1;;;10447:18:1;;;10440:41;10498:19;;49689:87:0;10116:407:1;49689:87:0;-1:-1:-1;;;;;;49794:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;49572:256::o;59736:83::-;30435:6;;-1:-1:-1;;;;;30435:6:0;2781:10;30582:23;30574:68;;;;-1:-1:-1;;;30574:68:0;;;;;;;:::i;:::-;59802:9:::1;::::0;;-1:-1:-1;;59789:22:0;::::1;59802:9;::::0;;::::1;59801:10;59789:22;::::0;;59736:83::o;39079:185::-;39217:39;39234:4;39240:2;39244:7;39217:39;;;;;;;;;;;;:16;:39::i;48198:245::-;48316:41;2781:10;48335:12;2701:98;48316:41;48308:102;;;;-1:-1:-1;;;48308:102:0;;10730:2:1;48308:102:0;;;10712:21:1;10769:2;10749:18;;;10742:30;10808:34;10788:18;;;10781:62;-1:-1:-1;;;10859:18:1;;;10852:46;10915:19;;48308:102:0;10528:412:1;48308:102:0;48421:14;48427:7;48421:5;:14::i;:::-;48198:245;:::o;50094:233::-;50169:7;50205:30;49992:10;:17;;49904:113;50205:30;50197:5;:38;50189:95;;;;-1:-1:-1;;;50189:95:0;;11147:2:1;50189:95:0;;;11129:21:1;11186:2;11166:18;;;11159:30;11225:34;11205:18;;;11198:62;-1:-1:-1;;;11276:18:1;;;11269:42;11328:19;;50189:95:0;10945:408:1;50189:95:0;50302:10;50313:5;50302:17;;;;;;;;:::i;:::-;;;;;;;;;50295:24;;50094:233;;;:::o;59827:101::-;30435:6;;-1:-1:-1;;;;;30435:6:0;2781:10;30582:23;30574:68;;;;-1:-1:-1;;;30574:68:0;;;;;;;:::i;:::-;59898:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;59827:101:::0;:::o;36054:239::-;36126:7;36162:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36162:16:0;36197:19;36189:73;;;;-1:-1:-1;;;36189:73:0;;11692:2:1;36189:73:0;;;11674:21:1;11731:2;11711:18;;;11704:30;11770:34;11750:18;;;11743:62;-1:-1:-1;;;11821:18:1;;;11814:39;11870:19;;36189:73:0;11490:405:1;35784:208:0;35856:7;-1:-1:-1;;;;;35884:19:0;;35876:74;;;;-1:-1:-1;;;35876:74:0;;12102:2:1;35876:74:0;;;12084:21:1;12141:2;12121:18;;;12114:30;12180:34;12160:18;;;12153:62;-1:-1:-1;;;12231:18:1;;;12224:40;12281:19;;35876:74:0;11900:406:1;35876:74:0;-1:-1:-1;;;;;;35968:16:0;;;;;:9;:16;;;;;;;35784:208::o;31013:103::-;30435:6;;-1:-1:-1;;;;;30435:6:0;2781:10;30582:23;30574:68;;;;-1:-1:-1;;;30574:68:0;;;;;;;:::i;:::-;31078:30:::1;31105:1;31078:18;:30::i;:::-;31013:103::o:0;61132:428::-;30435:6;;-1:-1:-1;;;;;30435:6:0;2781:10;30582:23;30574:68;;;;-1:-1:-1;;;30574:68:0;;;;;;;:::i;:::-;61214:21:::1;61254:16:::0;61246:61:::1;;;::::0;-1:-1:-1;;;61246:61:0;;12513:2:1;61246:61:0::1;::::0;::::1;12495:21:1::0;;;12532:18;;;12525:30;12591:34;12571:18;;;12564:62;12643:18;;61246:61:0::1;12311:356:1::0;61246:61:0::1;61320:18;61341:17;61356:2;61341:12:::0;:17:::1;:::i;:::-;61320:38:::0;-1:-1:-1;61390:20:0::1;61413:25;61320:38:::0;61413:12;:25:::1;:::i;:::-;61483:9;::::0;61390:48;;-1:-1:-1;61472:33:0::1;::::0;-1:-1:-1;;;;;61483:9:0::1;61494:10:::0;61472::::1;:33::i;:::-;61527:10;::::0;61516:36:::1;::::0;-1:-1:-1;;;;;61527:10:0::1;61539:12:::0;61516:10:::1;:36::i;36529:104::-:0;36585:13;36618:7;36611:14;;;;;:::i;38212:155::-;38307:52;2781:10;38340:8;38350;38307:18;:52::i;60459:102::-;60504:16;60540:13;60533:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60459:102;:::o;39335:328::-;39510:41;2781:10;39543:7;39510:18;:41::i;:::-;39502:103;;;;-1:-1:-1;;;39502:103:0;;;;;;;:::i;:::-;39616:39;39630:4;39636:2;39640:7;39649:5;39616:13;:39::i;:::-;39335:328;;;;:::o;59237:160::-;30435:6;;-1:-1:-1;;;;;30435:6:0;2781:10;30582:23;30574:68;;;;-1:-1:-1;;;30574:68:0;;;;;;;:::i;:::-;59294:9:::1;:16:::0;;-1:-1:-1;;59294:16:0::1;59306:4;59294:16;::::0;;56770:10:::1;59323:6;:28:::0;56612:1:::1;59362:8;:27:::0;59237:160::o;36704:334::-;41238:4;41262:16;;;:7;:16;;;;;;36777:13;;-1:-1:-1;;;;;41262:16:0;36803:76;;;;-1:-1:-1;;;36803:76:0;;13393:2:1;36803:76:0;;;13375:21:1;13432:2;13412:18;;;13405:30;13471:34;13451:18;;;13444:62;-1:-1:-1;;;13522:18:1;;;13515:45;13577:19;;36803:76:0;13191:411:1;36803:76:0;36892:21;36916:10;:8;:10::i;:::-;36892:34;;36968:1;36950:7;36944:21;:25;:86;;;;;;;;;;;;;;;;;36996:7;37005:18;:7;:16;:18::i;:::-;36979:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;36944:86;36937:93;36704:334;-1:-1:-1;;;36704:334:0:o;57992:969::-;30435:6;;-1:-1:-1;;;;;30435:6:0;2781:10;57510:23;57506:149;;57558:9;;;;:17;;:9;:17;57550:93;;;;-1:-1:-1;;;57550:93:0;;14284:2:1;57550:93:0;;;14266:21:1;14323:2;14303:18;;;14296:30;14362:34;14342:18;;;14335:62;14433:33;14413:18;;;14406:61;14484:19;;57550:93:0;14082:427:1;57550:93:0;56534:4;57673:14;:12;:14::i;:::-;:28;;57665:56;;;;-1:-1:-1;;;57665:56:0;;14716:2:1;57665:56:0;;;14698:21:1;14755:2;14735:18;;;14728:30;-1:-1:-1;;;14774:18:1;;;14767:45;14829:18;;57665:56:0;14514:339:1;57665:56:0;30435:6;;-1:-1:-1;;;;;30435:6:0;2781:10;57738:23;57734:94;;28328:7;;-1:-1:-1;;;28328:7:0;;;;57786:9;57778:38;;;;-1:-1:-1;;;57778:38:0;;15060:2:1;57778:38:0;;;15042:21:1;15099:2;15079:18;;;15072:30;-1:-1:-1;;;15118:18:1;;;15111:46;15174:18;;57778:38:0;14858:340:1;57778:38:0;58087:13:::1;58103:14;:12;:14::i;:::-;58195:8;::::0;58230:6:::1;::::0;58265:11;;58087:30;;-1:-1:-1;56534:4:0::1;::::0;;;58257:19:::1;::::0;58087:30;58257:19:::1;:::i;:::-;:35;;58249:98;;;::::0;-1:-1:-1;;;58249:98:0;;15538:2:1;58249:98:0::1;::::0;::::1;15520:21:1::0;15577:2;15557:18;;;15550:30;15616:34;15596:18;;;15589:62;-1:-1:-1;;;15667:18:1;;;15660:48;15725:19;;58249:98:0::1;15336:414:1::0;58249:98:0::1;58375:12;58366:5;:21;;58358:87;;;::::0;-1:-1:-1;;;58358:87:0;;15957:2:1;58358:87:0::1;::::0;::::1;15939:21:1::0;15996:2;15976:18;;;15969:30;16035:34;16015:18;;;16008:62;-1:-1:-1;;;16086:18:1;;;16079:51;16147:19;;58358:87:0::1;15755:417:1::0;58358:87:0::1;58479:12;58464:4;:11;:27;;58456:87;;;::::0;-1:-1:-1;;;58456:87:0;;16379:2:1;58456:87:0::1;::::0;::::1;16361:21:1::0;16418:2;16398:18;;;16391:30;16457:34;16437:18;;;16430:62;-1:-1:-1;;;16508:18:1;;;16501:45;16563:19;;58456:87:0::1;16177:411:1::0;58456:87:0::1;58583:11:::0;;58575:19:::1;::::0;:5;:19:::1;:::i;:::-;58562:9;:32;;58554:107;;;::::0;-1:-1:-1;;;58554:107:0;;16968:2:1;58554:107:0::1;::::0;::::1;16950:21:1::0;17007:2;16987:18;;;16980:30;17046:34;17026:18;;;17019:62;17117:32;17097:18;;;17090:60;17167:19;;58554:107:0::1;16766:426:1::0;58554:107:0::1;58679:9;58674:171;58698:4;:11;58694:1;:15;58674:171;;;58739:13;:22;58753:4;58758:1;58753:7;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;58739:22;;;::::1;::::0;;;;;;-1:-1:-1;58739:22:0;;::::1;;:31;58731:102;;;::::0;-1:-1:-1;;;58731:102:0;;17399:2:1;58731:102:0::1;::::0;::::1;17381:21:1::0;17438:2;17418:18;;;17411:30;17477:34;17457:18;;;17450:62;17548:28;17528:18;;;17521:56;17594:19;;58731:102:0::1;17197:422:1::0;58731:102:0::1;58711:3:::0;::::1;::::0;::::1;:::i;:::-;;;;58674:171;;;;58862:9;58857:97;58881:4;:11;58877:1;:15;58857:97;;;58914:28;58929:3;58934:4;58939:1;58934:7;;;;;;;;:::i;:::-;;;;;;;58914:14;:28::i;:::-;58894:3:::0;::::1;::::0;::::1;:::i;:::-;;;;58857:97;;;;58076:885;;;;57992:969:::0;;:::o;59936:94::-;30435:6;;-1:-1:-1;;;;;30435:6:0;2781:10;30582:23;30574:68;;;;-1:-1:-1;;;30574:68:0;;;;;;;:::i;:::-;60004:6:::1;:18:::0;59936:94::o;60763:361::-;60831:16;60860:18;60881:17;60891:6;60881:9;:17::i;:::-;60860:38;;60911:25;60953:10;60939:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60939:25:0;;60911:53;;60982:9;60977:112;61001:10;60997:1;:14;60977:112;;;61047:30;61067:6;61075:1;61047:19;:30::i;:::-;61033:8;61042:1;61033:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;61013:3;;;;:::i;:::-;;;;60977:112;;;-1:-1:-1;61108:8:0;60763:361;-1:-1:-1;;;60763:361:0:o;31271:201::-;30435:6;;-1:-1:-1;;;;;30435:6:0;2781:10;30582:23;30574:68;;;;-1:-1:-1;;;30574:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31360:22:0;::::1;31352:73;;;::::0;-1:-1:-1;;;31352:73:0;;17966:2:1;31352:73:0::1;::::0;::::1;17948:21:1::0;18005:2;17985:18;;;17978:30;18044:34;18024:18;;;18017:62;-1:-1:-1;;;18095:18:1;;;18088:36;18141:19;;31352:73:0::1;17764:402:1::0;31352:73:0::1;31436:28;31455:8;31436:18;:28::i;49264:224::-:0;49366:4;-1:-1:-1;;;;;;49390:50:0;;-1:-1:-1;;;49390:50:0;;:90;;;49444:36;49468:11;49444:23;:36::i;45155:174::-;45230:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;45230:29:0;-1:-1:-1;;;;;45230:29:0;;;;;;;;:24;;45284:23;45230:24;45284:14;:23::i;:::-;-1:-1:-1;;;;;45275:46:0;;;;;;;;;;;45155:174;;:::o;41467:348::-;41560:4;41262:16;;;:7;:16;;;;;;-1:-1:-1;;;;;41262:16:0;41577:73;;;;-1:-1:-1;;;41577:73:0;;18373:2:1;41577:73:0;;;18355:21:1;18412:2;18392:18;;;18385:30;18451:34;18431:18;;;18424:62;-1:-1:-1;;;18502:18:1;;;18495:42;18554:19;;41577:73:0;18171:408:1;41577:73:0;41661:13;41677:23;41692:7;41677:14;:23::i;:::-;41661:39;;41730:5;-1:-1:-1;;;;;41719:16:0;:7;-1:-1:-1;;;;;41719:16:0;;:51;;;;41763:7;-1:-1:-1;;;;;41739:31:0;:20;41751:7;41739:11;:20::i;:::-;-1:-1:-1;;;;;41739:31:0;;41719:51;:87;;;-1:-1:-1;;;;;;38559:25:0;;;38535:4;38559:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;41774:32;41711:96;41467:348;-1:-1:-1;;;;41467:348:0:o;44459:578::-;44618:4;-1:-1:-1;;;;;44591:31:0;:23;44606:7;44591:14;:23::i;:::-;-1:-1:-1;;;;;44591:31:0;;44583:85;;;;-1:-1:-1;;;44583:85:0;;18786:2:1;44583:85:0;;;18768:21:1;18825:2;18805:18;;;18798:30;18864:34;18844:18;;;18837:62;-1:-1:-1;;;18915:18:1;;;18908:39;18964:19;;44583:85:0;18584:405:1;44583:85:0;-1:-1:-1;;;;;44687:16:0;;44679:65;;;;-1:-1:-1;;;44679:65:0;;19196:2:1;44679:65:0;;;19178:21:1;19235:2;19215:18;;;19208:30;19274:34;19254:18;;;19247:62;-1:-1:-1;;;19325:18:1;;;19318:34;19369:19;;44679:65:0;18994:400:1;44679:65:0;44757:39;44778:4;44784:2;44788:7;44757:20;:39::i;:::-;44861:29;44878:1;44882:7;44861:8;:29::i;:::-;-1:-1:-1;;;;;44903:15:0;;;;;;:9;:15;;;;;:20;;44922:1;;44903:15;:20;;44922:1;;44903:20;:::i;:::-;;;;-1:-1:-1;;;;;;;44934:13:0;;;;;;:9;:13;;;;;:18;;44951:1;;44934:13;:18;;44951:1;;44934:18;:::i;:::-;;;;-1:-1:-1;;44963:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;44963:21:0;-1:-1:-1;;;;;44963:21:0;;;;;;;;;45002:27;;44963:16;;45002:27;;;;;;;44459:578;;;:::o;43762:360::-;43822:13;43838:23;43853:7;43838:14;:23::i;:::-;43822:39;;43874:48;43895:5;43910:1;43914:7;43874:20;:48::i;:::-;43963:29;43980:1;43984:7;43963:8;:29::i;:::-;-1:-1:-1;;;;;44005:16:0;;;;;;:9;:16;;;;;:21;;44025:1;;44005:16;:21;;44025:1;;44005:21;:::i;:::-;;;;-1:-1:-1;;44044:16:0;;;;:7;:16;;;;;;44037:23;;-1:-1:-1;;;;;;44037:23:0;;;44078:36;44052:7;;44044:16;-1:-1:-1;;;;;44078:36:0;;;;;44044:16;;44078:36;43811:311;43762:360;:::o;31632:191::-;31725:6;;;-1:-1:-1;;;;;31742:17:0;;;-1:-1:-1;;;;;;31742:17:0;;;;;;;31775:40;;31725:6;;;31742:17;31725:6;;31775:40;;31706:16;;31775:40;31695:128;31632:191;:::o;61568:::-;61643:12;61661:8;-1:-1:-1;;;;;61661:13:0;61682:7;61661:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61642:52;;;61713:7;61705:46;;;;-1:-1:-1;;;61705:46:0;;19811:2:1;61705:46:0;;;19793:21:1;19850:2;19830:18;;;19823:30;19889:28;19869:18;;;19862:56;19935:18;;61705:46:0;19609:350:1;45471:315:0;45626:8;-1:-1:-1;;;;;45617:17:0;:5;-1:-1:-1;;;;;45617:17:0;;;45609:55;;;;-1:-1:-1;;;45609:55:0;;20166:2:1;45609:55:0;;;20148:21:1;20205:2;20185:18;;;20178:30;20244:27;20224:18;;;20217:55;20289:18;;45609:55:0;19964:349:1;45609:55:0;-1:-1:-1;;;;;45675:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;45675:46:0;;;;;;;;;;45737:41;;540::1;;;45737::0;;513:18:1;45737:41:0;;;;;;;45471:315;;;:::o;40545:::-;40702:28;40712:4;40718:2;40722:7;40702:9;:28::i;:::-;40749:48;40772:4;40778:2;40782:7;40791:5;40749:22;:48::i;:::-;40741:111;;;;-1:-1:-1;;;40741:111:0;;;;;;;:::i;60038:113::-;60098:13;60131:12;60124:19;;;;;:::i;4465:723::-;4521:13;4742:10;4738:53;;-1:-1:-1;;4769:10:0;;;;;;;;;;;;-1:-1:-1;;;4769:10:0;;;;;4465:723::o;4738:53::-;4816:5;4801:12;4857:78;4864:9;;4857:78;;4890:8;;;;:::i;:::-;;-1:-1:-1;4913:10:0;;-1:-1:-1;4921:2:0;4913:10;;:::i;:::-;;;4857:78;;;4945:19;4977:6;4967:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4967:17:0;;4945:39;;4995:154;5002:10;;4995:154;;5029:11;5039:1;5029:11;;:::i;:::-;;-1:-1:-1;5098:10:0;5106:2;5098:5;:10;:::i;:::-;5085:24;;:2;:24;:::i;:::-;5072:39;;5055:6;5062;5055:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;5055:56:0;;;;;;;;-1:-1:-1;5126:11:0;5135:2;5126:11;;:::i;:::-;;;4995:154;;60159:107;60206:7;60233:25;:15;3738:14;;3646:114;60233:25;60226:32;;60159:107;:::o;58969:260::-;59046:27;:15;3857:19;;3875:1;3857:19;;;3768:127;59046:27;59084:19;59094:3;59099;59084:9;:19::i;:::-;59114:18;;;;:13;:18;;;;;;;;:25;;-1:-1:-1;;59114:25:0;59135:4;59114:25;;;;;;59150:13;:23;;;;;;;;;;;;;;;;;59191:30;;-1:-1:-1;;;;;1692:32:1;;1674:51;;59114:18:0;;59191:30;;1647:18:1;59191:30:0;;;;;;;58969:260;;:::o;35415:305::-;35517:4;-1:-1:-1;;;;;;35554:40:0;;-1:-1:-1;;;35554:40:0;;:105;;-1:-1:-1;;;;;;;35611:48:0;;-1:-1:-1;;;35611:48:0;35554:105;:158;;;-1:-1:-1;;;;;;;;;;14500:40:0;;;35676:36;14391:157;61767:239;61953:45;61980:4;61986:2;61990:7;61953:26;:45::i;46351:799::-;46506:4;-1:-1:-1;;;;;46527:13:0;;15559:20;15607:8;46523:620;;46563:72;;-1:-1:-1;;;46563:72:0;;-1:-1:-1;;;;;46563:36:0;;;;;:72;;2781:10;;46614:4;;46620:7;;46629:5;;46563:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46563:72:0;;;;;;;;-1:-1:-1;;46563:72:0;;;;;;;;;;;;:::i;:::-;;;46559:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46805:13:0;;46801:272;;46848:60;;-1:-1:-1;;;46848:60:0;;;;;;;:::i;46801:272::-;47023:6;47017:13;47008:6;47004:2;47000:15;46993:38;46559:529;-1:-1:-1;;;;;;46686:51:0;-1:-1:-1;;;46686:51:0;;-1:-1:-1;46679:58:0;;46523:620;-1:-1:-1;47127:4:0;46351:799;;;;;;:::o;42157:110::-;42233:26;42243:2;42247:7;42233:26;;;;;;;;;;;;:9;:26::i;55906:328::-;56050:45;56077:4;56083:2;56087:7;56050:26;:45::i;:::-;30435:6;;-1:-1:-1;;;;;30435:6:0;2781:10;56110:23;56106:121;;28328:7;;-1:-1:-1;;;28328:7:0;;;;56158:9;56150:65;;;;-1:-1:-1;;;56150:65:0;;22020:2:1;56150:65:0;;;22002:21:1;22059:2;22039:18;;;22032:30;22098:34;22078:18;;;22071:62;-1:-1:-1;;;22149:18:1;;;22142:41;22200:19;;56150:65:0;21818:407:1;42494:321:0;42624:18;42630:2;42634:7;42624:5;:18::i;:::-;42675:54;42706:1;42710:2;42714:7;42723:5;42675:22;:54::i;:::-;42653:154;;;;-1:-1:-1;;;42653:154:0;;;;;;;:::i;50940:589::-;-1:-1:-1;;;;;51146:18:0;;51142:187;;51181:40;51213:7;52356:10;:17;;52329:24;;;;:15;:24;;;;;:44;;;52384:24;;;;;;;;;;;;52252:164;51181:40;51142:187;;;51251:2;-1:-1:-1;;;;;51243:10:0;:4;-1:-1:-1;;;;;51243:10:0;;51239:90;;51270:47;51303:4;51309:7;51270:32;:47::i;:::-;-1:-1:-1;;;;;51343:16:0;;51339:183;;51376:45;51413:7;51376:36;:45::i;51339:183::-;51449:4;-1:-1:-1;;;;;51443:10:0;:2;-1:-1:-1;;;;;51443:10:0;;51439:83;;51470:40;51498:2;51502:7;51470:27;:40::i;43151:382::-;-1:-1:-1;;;;;43231:16:0;;43223:61;;;;-1:-1:-1;;;43223:61:0;;22432:2:1;43223:61:0;;;22414:21:1;;;22451:18;;;22444:30;22510:34;22490:18;;;22483:62;22562:18;;43223:61:0;22230:356:1;43223:61:0;41238:4;41262:16;;;:7;:16;;;;;;-1:-1:-1;;;;;41262:16:0;:30;43295:58;;;;-1:-1:-1;;;43295:58:0;;22793:2:1;43295:58:0;;;22775:21:1;22832:2;22812:18;;;22805:30;22871;22851:18;;;22844:58;22919:18;;43295:58:0;22591:352:1;43295:58:0;43366:45;43395:1;43399:2;43403:7;43366:20;:45::i;:::-;-1:-1:-1;;;;;43424:13:0;;;;;;:9;:13;;;;;:18;;43441:1;;43424:13;:18;;43441:1;;43424:18;:::i;:::-;;;;-1:-1:-1;;43453:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;43453:21:0;-1:-1:-1;;;;;43453:21:0;;;;;;;;43492:33;;43453:16;;;43492:33;;43453:16;;43492:33;43151:382;;:::o;53043:988::-;53309:22;53359:1;53334:22;53351:4;53334:16;:22::i;:::-;:26;;;;:::i;:::-;53371:18;53392:26;;;:17;:26;;;;;;53309:51;;-1:-1:-1;53525:28:0;;;53521:328;;-1:-1:-1;;;;;53592:18:0;;53570:19;53592:18;;;:12;:18;;;;;;;;:34;;;;;;;;;53643:30;;;;;;:44;;;53760:30;;:17;:30;;;;;:43;;;53521:328;-1:-1:-1;53945:26:0;;;;:17;:26;;;;;;;;53938:33;;;-1:-1:-1;;;;;53989:18:0;;;;;:12;:18;;;;;:34;;;;;;;53982:41;53043:988::o;54326:1079::-;54604:10;:17;54579:22;;54604:21;;54624:1;;54604:21;:::i;:::-;54636:18;54657:24;;;:15;:24;;;;;;55030:10;:26;;54579:46;;-1:-1:-1;54657:24:0;;54579:46;;55030:26;;;;;;:::i;:::-;;;;;;;;;55008:48;;55094:11;55069:10;55080;55069:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;55174:28;;;:15;:28;;;;;;;:41;;;55346:24;;;;;55339:31;55381:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;54397:1008;;;54326:1079;:::o;51830:221::-;51915:14;51932:20;51949:2;51932:16;:20::i;:::-;-1:-1:-1;;;;;51963:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;52008:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;51830:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:131::-;-1:-1:-1;;;;;1811:31:1;;1801:42;;1791:70;;1857:1;1854;1847:12;1872:315;1940:6;1948;2001:2;1989:9;1980:7;1976:23;1972:32;1969:52;;;2017:1;2014;2007:12;1969:52;2056:9;2043:23;2075:31;2100:5;2075:31;:::i;:::-;2125:5;2177:2;2162:18;;;;2149:32;;-1:-1:-1;;;1872:315:1:o;2374:456::-;2451:6;2459;2467;2520:2;2508:9;2499:7;2495:23;2491:32;2488:52;;;2536:1;2533;2526:12;2488:52;2575:9;2562:23;2594:31;2619:5;2594:31;:::i;:::-;2644:5;-1:-1:-1;2701:2:1;2686:18;;2673:32;2714:33;2673:32;2714:33;:::i;:::-;2374:456;;2766:7;;-1:-1:-1;;;2820:2:1;2805:18;;;;2792:32;;2374:456::o;2835:127::-;2896:10;2891:3;2887:20;2884:1;2877:31;2927:4;2924:1;2917:15;2951:4;2948:1;2941:15;2967:275;3038:2;3032:9;3103:2;3084:13;;-1:-1:-1;;3080:27:1;3068:40;;3138:18;3123:34;;3159:22;;;3120:62;3117:88;;;3185:18;;:::i;:::-;3221:2;3214:22;2967:275;;-1:-1:-1;2967:275:1:o;3247:407::-;3312:5;3346:18;3338:6;3335:30;3332:56;;;3368:18;;:::i;:::-;3406:57;3451:2;3430:15;;-1:-1:-1;;3426:29:1;3457:4;3422:40;3406:57;:::i;:::-;3397:66;;3486:6;3479:5;3472:21;3526:3;3517:6;3512:3;3508:16;3505:25;3502:45;;;3543:1;3540;3533:12;3502:45;3592:6;3587:3;3580:4;3573:5;3569:16;3556:43;3646:1;3639:4;3630:6;3623:5;3619:18;3615:29;3608:40;3247:407;;;;;:::o;3659:451::-;3728:6;3781:2;3769:9;3760:7;3756:23;3752:32;3749:52;;;3797:1;3794;3787:12;3749:52;3837:9;3824:23;3870:18;3862:6;3859:30;3856:50;;;3902:1;3899;3892:12;3856:50;3925:22;;3978:4;3970:13;;3966:27;-1:-1:-1;3956:55:1;;4007:1;4004;3997:12;3956:55;4030:74;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4030:74;:::i;4115:247::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;4282:9;4269:23;4301:31;4326:5;4301:31;:::i;4367:416::-;4432:6;4440;4493:2;4481:9;4472:7;4468:23;4464:32;4461:52;;;4509:1;4506;4499:12;4461:52;4548:9;4535:23;4567:31;4592:5;4567:31;:::i;:::-;4617:5;-1:-1:-1;4674:2:1;4659:18;;4646:32;4716:15;;4709:23;4697:36;;4687:64;;4747:1;4744;4737:12;4687:64;4770:7;4760:17;;;4367:416;;;;;:::o;4788:632::-;4959:2;5011:21;;;5081:13;;4984:18;;;5103:22;;;4930:4;;4959:2;5182:15;;;;5156:2;5141:18;;;4930:4;5225:169;5239:6;5236:1;5233:13;5225:169;;;5300:13;;5288:26;;5369:15;;;;5334:12;;;;5261:1;5254:9;5225:169;;;-1:-1:-1;5411:3:1;;4788:632;-1:-1:-1;;;;;;4788:632:1:o;5425:795::-;5520:6;5528;5536;5544;5597:3;5585:9;5576:7;5572:23;5568:33;5565:53;;;5614:1;5611;5604:12;5565:53;5653:9;5640:23;5672:31;5697:5;5672:31;:::i;:::-;5722:5;-1:-1:-1;5779:2:1;5764:18;;5751:32;5792:33;5751:32;5792:33;:::i;:::-;5844:7;-1:-1:-1;5898:2:1;5883:18;;5870:32;;-1:-1:-1;5953:2:1;5938:18;;5925:32;5980:18;5969:30;;5966:50;;;6012:1;6009;6002:12;5966:50;6035:22;;6088:4;6080:13;;6076:27;-1:-1:-1;6066:55:1;;6117:1;6114;6107:12;6066:55;6140:74;6206:7;6201:2;6188:16;6183:2;6179;6175:11;6140:74;:::i;:::-;6130:84;;;5425:795;;;;;;;:::o;6225:1089::-;6326:6;6334;6387:2;6375:9;6366:7;6362:23;6358:32;6355:52;;;6403:1;6400;6393:12;6355:52;6442:9;6429:23;6461:31;6486:5;6461:31;:::i;:::-;6511:5;-1:-1:-1;6535:2:1;6573:18;;;6560:32;6611:18;6641:14;;;6638:34;;;6668:1;6665;6658:12;6638:34;6706:6;6695:9;6691:22;6681:32;;6751:7;6744:4;6740:2;6736:13;6732:27;6722:55;;6773:1;6770;6763:12;6722:55;6809:2;6796:16;6831:2;6827;6824:10;6821:36;;;6837:18;;:::i;:::-;6883:2;6880:1;6876:10;6866:20;;6906:28;6930:2;6926;6922:11;6906:28;:::i;:::-;6968:15;;;7038:11;;;7034:20;;;6999:12;;;;7066:19;;;7063:39;;;7098:1;7095;7088:12;7063:39;7122:11;;;;7142:142;7158:6;7153:3;7150:15;7142:142;;;7224:17;;7212:30;;7175:12;;;;7262;;;;7142:142;;;7303:5;7293:15;;;;;;;;6225:1089;;;;;:::o;7319:388::-;7387:6;7395;7448:2;7436:9;7427:7;7423:23;7419:32;7416:52;;;7464:1;7461;7454:12;7416:52;7503:9;7490:23;7522:31;7547:5;7522:31;:::i;:::-;7572:5;-1:-1:-1;7629:2:1;7614:18;;7601:32;7642:33;7601:32;7642:33;:::i;7712:380::-;7791:1;7787:12;;;;7834;;;7855:61;;7909:4;7901:6;7897:17;7887:27;;7855:61;7962:2;7954:6;7951:14;7931:18;7928:38;7925:161;;;8008:10;8003:3;7999:20;7996:1;7989:31;8043:4;8040:1;8033:15;8071:4;8068:1;8061:15;7925:161;;7712:380;;;:::o;9337:356::-;9539:2;9521:21;;;9558:18;;;9551:30;9617:34;9612:2;9597:18;;9590:62;9684:2;9669:18;;9337:356::o;9698:413::-;9900:2;9882:21;;;9939:2;9919:18;;;9912:30;9978:34;9973:2;9958:18;;9951:62;-1:-1:-1;;;10044:2:1;10029:18;;10022:47;10101:3;10086:19;;9698:413::o;11358:127::-;11419:10;11414:3;11410:20;11407:1;11400:31;11450:4;11447:1;11440:15;11474:4;11471:1;11464:15;12672:127;12733:10;12728:3;12724:20;12721:1;12714:31;12764:4;12761:1;12754:15;12788:4;12785:1;12778:15;12804:127;12865:10;12860:3;12856:20;12853:1;12846:31;12896:4;12893:1;12886:15;12920:4;12917:1;12910:15;12936:120;12976:1;13002;12992:35;;13007:18;;:::i;:::-;-1:-1:-1;13041:9:1;;12936:120::o;13061:125::-;13101:4;13129:1;13126;13123:8;13120:34;;;13134:18;;:::i;:::-;-1:-1:-1;13171:9:1;;13061:125::o;13607:470::-;13786:3;13824:6;13818:13;13840:53;13886:6;13881:3;13874:4;13866:6;13862:17;13840:53;:::i;:::-;13956:13;;13915:16;;;;13978:57;13956:13;13915:16;14012:4;14000:17;;13978:57;:::i;:::-;14051:20;;13607:470;-1:-1:-1;;;;13607:470:1:o;15203:128::-;15243:3;15274:1;15270:6;15267:1;15264:13;15261:39;;;15280:18;;:::i;:::-;-1:-1:-1;15316:9:1;;15203:128::o;16593:168::-;16633:7;16699:1;16695;16691:6;16687:14;16684:1;16681:21;16676:1;16669:9;16662:17;16658:45;16655:71;;;16706:18;;:::i;:::-;-1:-1:-1;16746:9:1;;16593:168::o;17624:135::-;17663:3;-1:-1:-1;;17684:17:1;;17681:43;;;17704:18;;:::i;:::-;-1:-1:-1;17751:1:1;17740:13;;17624:135::o;20318:414::-;20520:2;20502:21;;;20559:2;20539:18;;;20532:30;20598:34;20593:2;20578:18;;20571:62;-1:-1:-1;;;20664:2:1;20649:18;;20642:48;20722:3;20707:19;;20318:414::o;20737:112::-;20769:1;20795;20785:35;;20800:18;;:::i;:::-;-1:-1:-1;20834:9:1;;20737:112::o;21070:489::-;-1:-1:-1;;;;;21339:15:1;;;21321:34;;21391:15;;21386:2;21371:18;;21364:43;21438:2;21423:18;;21416:34;;;21486:3;21481:2;21466:18;;21459:31;;;21264:4;;21507:46;;21533:19;;21525:6;21507:46;:::i;:::-;21499:54;21070:489;-1:-1:-1;;;;;;21070:489:1:o;21564:249::-;21633:6;21686:2;21674:9;21665:7;21661:23;21657:32;21654:52;;;21702:1;21699;21692:12;21654:52;21734:9;21728:16;21753:30;21777:5;21753:30;:::i;22948:127::-;23009:10;23004:3;23000:20;22997:1;22990:31;23040:4;23037:1;23030:15;23064:4;23061:1;23054:15

Swarm Source

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