ETH Price: $2,628.71 (-0.35%)
Gas: 0.97 Gwei

Token

Doodle Pets (DOODLEPETS)
 

Overview

Max Total Supply

26 DOODLEPETS

Holders

9

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
swishi.eth
Balance
5 DOODLEPETS
0x75b6fF841fcA5467272d1F4769f9EE5685A4ef20
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:
DoodlePets

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

// File: contracts/DoodlePets.sol



pragma solidity 0.8.0;



interface OGDoodsContract {
    function ownerOf(uint256 id) external view returns (address);
    function balanceOf(address owner) external view returns (uint256);
}

contract DoodlePets is ERC721, Ownable {
    uint256 private _totalSupply = 1;
    uint256 private _maxSupply = 10000;
    uint256 public price = 0.03 ether;
    uint256 public txLimit = 10;
    bool public saleActive = true;
    mapping(uint256 => bool) private claimedDoods;

    address private _petowner = 0x09D5b8c6421b171E03bf7Ef31Bec0d2Af7a6bCBb;
    address private _ogDoodsContract = 0x8a90CAb2b38dba80c64b7734e58Ee1dB38B8992e;

    string public baseURI = "ipfs://Qmd8hqejUh85ScGncDo5dJTgErxfohkeTBgaWhQYLcuD74/";

    constructor() ERC721("Doodle Pets", "DOODLEPETS") {
        _mint(_petowner, _totalSupply);
        _totalSupply++;
    }

    function mint(uint256 count) external payable {
        require(saleActive, "Sale Not Live");
        require(_totalSupply + count <= _maxSupply, "Sold Out");
        require(msg.value >= count * price, "Incorrect Price");
        require(count > 0 && count <= txLimit, "Cannot Mint More Than 10 Per Transaction");

        payable(_petowner).transfer(msg.value);

        for (uint256 i = 0; i < count; i++) {
            _mint(msg.sender, _totalSupply);
            _totalSupply++;
        }
    }

    function claimFree(uint256[] calldata doodleIDs) external {
        require(saleActive, "Minting not active");
        require(_totalSupply + doodleIDs.length <= _maxSupply, "Sold Out");

        OGDoodsContract doodsContract = OGDoodsContract(_ogDoodsContract);

        for (uint256 i = 0; i < doodleIDs.length; i++) {
            require(!claimedDoods[doodleIDs[i]], "Doodle ID Already Claimed");
            require(msg.sender == doodsContract.ownerOf(doodleIDs[i]), "You dont own this Doodle");
            claimedDoods[doodleIDs[i]] = true;

            _mint(msg.sender, _totalSupply);
            _totalSupply++;
        }
    }

    function ownerMint(uint256 count) external onlyOwner {
        require(_totalSupply + count <= _maxSupply, "Sold Out");

        for (uint256 i = 0; i < count; i++) {
            _mint(msg.sender, _totalSupply);
            _totalSupply++;
        }
    }

    function toggleSaleState() external onlyOwner {
        saleActive = !saleActive;
    }

    function setPrice(uint256 newPrice) external onlyOwner {
        price = newPrice;
    }

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

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

    function maxSupply() public view returns (uint256) {
        return _maxSupply;
    }

    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

    function isDoodleClaimed(uint256 _token) public view returns (bool) {
        return claimedDoods[_token];
    }

    function getOGDoodsByAddress(address _owner) public view returns(uint256[] memory ownerTokens) {
        OGDoodsContract doodsContract = OGDoodsContract(_ogDoodsContract);
        uint256 amountOwned = doodsContract.balanceOf(_owner);
        uint256[] memory result = new uint256[](amountOwned);
        uint256 resIndex = 0;

        for (uint256 i = 0; i <= 9999; i++) {
            if ((_owner == doodsContract.ownerOf(i)) && !claimedDoods[i]){
                result[resIndex] = i;
                resIndex++;
            }
        }
        return result;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"doodleIDs","type":"uint256[]"}],"name":"claimFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getOGDoodsByAddress","outputs":[{"internalType":"uint256[]","name":"ownerTokens","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":[{"internalType":"uint256","name":"_token","type":"uint256"}],"name":"isDoodleClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","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":[],"name":"toggleSaleState","outputs":[],"stateMutability":"nonpayable","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":"txLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60016007819055612710600855666a94d74f430000600955600a8055600b805460ff19169091179055600d80546001600160a01b03199081167309d5b8c6421b171e03bf7ef31bec0d2af7a6bcbb17909155600e8054909116738a90cab2b38dba80c64b7734e58ee1db38b8992e17905560e060405260366080818152906200289960a03980516200009a91600f91602090910190620002d5565b50348015620000a857600080fd5b50604080518082018252600b81526a446f6f646c65205065747360a81b60208083019182528351808501909452600a845269444f4f444c455045545360b01b908401528151919291620000fe91600091620002d5565b50805162000114906001906020840190620002d5565b505050620001316200012b6200016960201b60201c565b6200016d565b600d546007546200014c916001600160a01b031690620001bf565b600780549060006200015e836200043f565b919050555062000473565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001f15760405162461bcd60e51b8152600401620001e890620003b2565b60405180910390fd5b620001fc81620002b3565b156200021c5760405162461bcd60e51b8152600401620001e8906200037b565b6200022a60008383620002d0565b6001600160a01b038216600090815260036020526040812080546001929062000255908490620003e7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000908152600260205260409020546001600160a01b0316151590565b505050565b828054620002e39062000402565b90600052602060002090601f01602090048101928262000307576000855562000352565b82601f106200032257805160ff191683800117855562000352565b8280016001018555821562000352579182015b828111156200035257825182559160200191906001019062000335565b506200036092915062000364565b5090565b5b8082111562000360576000815560010162000365565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60008219821115620003fd57620003fd6200045d565b500190565b6002810460018216806200041757607f821691505b602082108114156200043957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156200045657620004566200045d565b5060010190565b634e487b7160e01b600052601160045260246000fd5b61241680620004836000396000f3fe6080604052600436106101cd5760003560e01c80638da5cb5b116100f7578063b88d4fde11610095578063e985e9c511610064578063e985e9c5146104cb578063f19e75d4146104eb578063f2fde38b1461050b578063f807b57b1461052b576101cd565b8063b88d4fde14610461578063c87b56dd14610481578063d5abeb01146104a1578063daaeec86146104b6576101cd565b8063a035b1fe116100d1578063a035b1fe146103f9578063a0712d681461040e578063a22cb46514610421578063b0e6efbd14610441576101cd565b80638da5cb5b146103af57806391b7f5ed146103c457806395d89b41146103e4576101cd565b806355f804b31161016f5780636caae8321161013e5780636caae8321461034557806370a082311461035a578063715018a61461037a57806373fc9ccc1461038f576101cd565b806355f804b3146102db5780636352211e146102fb57806368428a1b1461031b5780636c0360eb14610330576101cd565b8063095ea7b3116101ab578063095ea7b31461025757806318160ddd1461027957806323b872dd1461029b57806342842e0e146102bb576101cd565b806301ffc9a7146101d257806306fdde0314610208578063081812fc1461022a575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611afc565b610558565b6040516101ff9190611c9a565b60405180910390f35b34801561021457600080fd5b5061021d6105a0565b6040516101ff9190611ca5565b34801561023657600080fd5b5061024a610245366004611b7a565b610632565b6040516101ff9190611c05565b34801561026357600080fd5b50610277610272366004611a62565b61067e565b005b34801561028557600080fd5b5061028e610716565b6040516101ff9190612272565b3480156102a757600080fd5b506102776102b6366004611974565b61071c565b3480156102c757600080fd5b506102776102d6366004611974565b610754565b3480156102e757600080fd5b506102776102f6366004611b34565b61076f565b34801561030757600080fd5b5061024a610316366004611b7a565b6107c5565b34801561032757600080fd5b506101f26107fa565b34801561033c57600080fd5b5061021d610803565b34801561035157600080fd5b5061028e610891565b34801561036657600080fd5b5061028e610375366004611904565b610897565b34801561038657600080fd5b506102776108db565b34801561039b57600080fd5b506102776103aa366004611a8d565b610926565b3480156103bb57600080fd5b5061024a610b4a565b3480156103d057600080fd5b506102776103df366004611b7a565b610b59565b3480156103f057600080fd5b5061021d610b9d565b34801561040557600080fd5b5061028e610bac565b61027761041c366004611b7a565b610bb2565b34801561042d57600080fd5b5061027761043c366004611a31565b610cd6565b34801561044d57600080fd5b506101f261045c366004611b7a565b610ce8565b34801561046d57600080fd5b5061027761047c3660046119b4565b610cfd565b34801561048d57600080fd5b5061021d61049c366004611b7a565b610d36565b3480156104ad57600080fd5b5061028e610db9565b3480156104c257600080fd5b50610277610dbf565b3480156104d757600080fd5b506101f26104e636600461193c565b610e12565b3480156104f757600080fd5b50610277610506366004611b7a565b610e40565b34801561051757600080fd5b50610277610526366004611904565b610eed565b34801561053757600080fd5b5061054b610546366004611904565b610f5e565b6040516101ff9190611c56565b60006001600160e01b031982166380ac58cd60e01b148061058957506001600160e01b03198216635b5e139f60e01b145b8061059857506105988261114f565b90505b919050565b6060600080546105af90612309565b80601f01602080910402602001604051908101604052809291908181526020018280546105db90612309565b80156106285780601f106105fd57610100808354040283529160200191610628565b820191906000526020600020905b81548152906001019060200180831161060b57829003601f168201915b5050505050905090565b600061063d82611168565b6106625760405162461bcd60e51b815260040161065990612048565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610689826107c5565b9050806001600160a01b0316836001600160a01b031614156106bd5760405162461bcd60e51b815260040161065990612161565b806001600160a01b03166106cf611185565b6001600160a01b031614806106eb57506106eb816104e6611185565b6107075760405162461bcd60e51b815260040161065990611efa565b6107118383611189565b505050565b60075490565b61072d610727611185565b826111f7565b6107495760405162461bcd60e51b8152600401610659906121a2565b61071183838361127c565b61071183838360405180602001604052806000815250610cfd565b610777611185565b6001600160a01b0316610788610b4a565b6001600160a01b0316146107ae5760405162461bcd60e51b815260040161065990612094565b80516107c190600f9060208401906117fb565b5050565b6000818152600260205260408120546001600160a01b0316806105985760405162461bcd60e51b815260040161065990611fa1565b600b5460ff1681565b600f805461081090612309565b80601f016020809104026020016040519081016040528092919081815260200182805461083c90612309565b80156108895780601f1061085e57610100808354040283529160200191610889565b820191906000526020600020905b81548152906001019060200180831161086c57829003601f168201915b505050505081565b600a5481565b60006001600160a01b0382166108bf5760405162461bcd60e51b815260040161065990611f57565b506001600160a01b031660009081526003602052604090205490565b6108e3611185565b6001600160a01b03166108f4610b4a565b6001600160a01b03161461091a5760405162461bcd60e51b815260040161065990612094565b61092460006113a9565b565b600b5460ff166109485760405162461bcd60e51b815260040161065990611e82565b60085460075461095990839061227b565b11156109775760405162461bcd60e51b815260040161065990611d68565b600e546001600160a01b031660005b82811015610b4457600c60008585848181106109b257634e487b7160e01b600052603260045260246000fd5b602090810292909201358352508101919091526040016000205460ff16156109ec5760405162461bcd60e51b81526004016106599061223b565b816001600160a01b0316636352211e858584818110610a1b57634e487b7160e01b600052603260045260246000fd5b905060200201356040518263ffffffff1660e01b8152600401610a3e9190612272565b60206040518083038186803b158015610a5657600080fd5b505afa158015610a6a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a8e9190611920565b6001600160a01b0316336001600160a01b031614610abe5760405162461bcd60e51b815260040161065990611cb8565b6001600c6000868685818110610ae457634e487b7160e01b600052603260045260246000fd5b90506020020135815260200190815260200160002060006101000a81548160ff021916908315150217905550610b1c336007546113fb565b60078054906000610b2c83612344565b91905055508080610b3c90612344565b915050610986565b50505050565b6006546001600160a01b031690565b610b61611185565b6001600160a01b0316610b72610b4a565b6001600160a01b031614610b985760405162461bcd60e51b815260040161065990612094565b600955565b6060600180546105af90612309565b60095481565b600b5460ff16610bd45760405162461bcd60e51b815260040161065990611cef565b60085481600754610be5919061227b565b1115610c035760405162461bcd60e51b815260040161065990611d68565b600954610c1090826122a7565b341015610c2f5760405162461bcd60e51b815260040161065990611fea565b600081118015610c415750600a548111155b610c5d5760405162461bcd60e51b8152600401610659906121f3565b600d546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015610c96573d6000803e3d6000fd5b5060005b818110156107c157610cae336007546113fb565b60078054906000610cbe83612344565b91905055508080610cce90612344565b915050610c9a565b6107c1610ce1611185565b83836114da565b6000908152600c602052604090205460ff1690565b610d0e610d08611185565b836111f7565b610d2a5760405162461bcd60e51b8152600401610659906121a2565b610b448484848461157d565b6060610d4182611168565b610d5d5760405162461bcd60e51b815260040161065990612112565b6000610d676115b0565b90506000815111610d875760405180602001604052806000815250610db2565b80610d91846115bf565b604051602001610da2929190611bd6565b6040516020818303038152906040525b9392505050565b60085490565b610dc7611185565b6001600160a01b0316610dd8610b4a565b6001600160a01b031614610dfe5760405162461bcd60e51b815260040161065990612094565b600b805460ff19811660ff90911615179055565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610e48611185565b6001600160a01b0316610e59610b4a565b6001600160a01b031614610e7f5760405162461bcd60e51b815260040161065990612094565b60085481600754610e90919061227b565b1115610eae5760405162461bcd60e51b815260040161065990611d68565b60005b818110156107c157610ec5336007546113fb565b60078054906000610ed583612344565b91905055508080610ee590612344565b915050610eb1565b610ef5611185565b6001600160a01b0316610f06610b4a565b6001600160a01b031614610f2c5760405162461bcd60e51b815260040161065990612094565b6001600160a01b038116610f525760405162461bcd60e51b815260040161065990611d8a565b610f5b816113a9565b50565b600e546040516370a0823160e01b81526060916001600160a01b03169060009082906370a0823190610f94908790600401611c05565b60206040518083038186803b158015610fac57600080fd5b505afa158015610fc0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe49190611b92565b905060008167ffffffffffffffff81111561100f57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015611038578160200160208202803683370190505b5090506000805b61270f8111611144576040516331a9108f60e11b81526001600160a01b03861690636352211e90611074908490600401612272565b60206040518083038186803b15801561108c57600080fd5b505afa1580156110a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110c49190611920565b6001600160a01b0316876001600160a01b03161480156110f357506000818152600c602052604090205460ff16155b15611132578083838151811061111957634e487b7160e01b600052603260045260246000fd5b60209081029190910101528161112e81612344565b9250505b8061113c81612344565b91505061103f565b509095945050505050565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906111be826107c5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061120282611168565b61121e5760405162461bcd60e51b815260040161065990611eae565b6000611229836107c5565b9050806001600160a01b0316846001600160a01b031614806112645750836001600160a01b031661125984610632565b6001600160a01b0316145b8061127457506112748185610e12565b949350505050565b826001600160a01b031661128f826107c5565b6001600160a01b0316146112b55760405162461bcd60e51b8152600401610659906120c9565b6001600160a01b0382166112db5760405162461bcd60e51b815260040161065990611e07565b6112e6838383610711565b6112f1600082611189565b6001600160a01b038316600090815260036020526040812080546001929061131a9084906122c6565b90915550506001600160a01b038216600090815260036020526040812080546001929061134890849061227b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166114215760405162461bcd60e51b815260040161065990612013565b61142a81611168565b156114475760405162461bcd60e51b815260040161065990611dd0565b61145360008383610711565b6001600160a01b038216600090815260036020526040812080546001929061147c90849061227b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b816001600160a01b0316836001600160a01b0316141561150c5760405162461bcd60e51b815260040161065990611e4b565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190611570908590611c9a565b60405180910390a3505050565b61158884848461127c565b611594848484846116da565b610b445760405162461bcd60e51b815260040161065990611d16565b6060600f80546105af90612309565b6060816115e457506040805180820190915260018152600360fc1b602082015261059b565b8160005b811561160e57806115f881612344565b91506116079050600a83612293565b91506115e8565b60008167ffffffffffffffff81111561163757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611661576020820181803683370190505b5090505b8415611274576116766001836122c6565b9150611683600a8661235f565b61168e90603061227b565b60f81b8183815181106116b157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506116d3600a86612293565b9450611665565b60006116ee846001600160a01b03166117f5565b156117ea57836001600160a01b031663150b7a0261170a611185565b8786866040518563ffffffff1660e01b815260040161172c9493929190611c19565b602060405180830381600087803b15801561174657600080fd5b505af1925050508015611776575060408051601f3d908101601f1916820190925261177391810190611b18565b60015b6117d0573d8080156117a4576040519150601f19603f3d011682016040523d82523d6000602084013e6117a9565b606091505b5080516117c85760405162461bcd60e51b815260040161065990611d16565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611274565b506001949350505050565b3b151590565b82805461180790612309565b90600052602060002090601f016020900481019282611829576000855561186f565b82601f1061184257805160ff191683800117855561186f565b8280016001018555821561186f579182015b8281111561186f578251825591602001919060010190611854565b5061187b92915061187f565b5090565b5b8082111561187b5760008155600101611880565b600067ffffffffffffffff808411156118af576118af61239f565b604051601f8501601f1916810160200182811182821017156118d3576118d361239f565b6040528481529150818385018610156118eb57600080fd5b8484602083013760006020868301015250509392505050565b600060208284031215611915578081fd5b8135610db2816123b5565b600060208284031215611931578081fd5b8151610db2816123b5565b6000806040838503121561194e578081fd5b8235611959816123b5565b91506020830135611969816123b5565b809150509250929050565b600080600060608486031215611988578081fd5b8335611993816123b5565b925060208401356119a3816123b5565b929592945050506040919091013590565b600080600080608085870312156119c9578081fd5b84356119d4816123b5565b935060208501356119e4816123b5565b925060408501359150606085013567ffffffffffffffff811115611a06578182fd5b8501601f81018713611a16578182fd5b611a2587823560208401611894565b91505092959194509250565b60008060408385031215611a43578182fd5b8235611a4e816123b5565b915060208301358015158114611969578182fd5b60008060408385031215611a74578182fd5b8235611a7f816123b5565b946020939093013593505050565b60008060208385031215611a9f578182fd5b823567ffffffffffffffff80821115611ab6578384fd5b818501915085601f830112611ac9578384fd5b813581811115611ad7578485fd5b8660208083028501011115611aea578485fd5b60209290920196919550909350505050565b600060208284031215611b0d578081fd5b8135610db2816123ca565b600060208284031215611b29578081fd5b8151610db2816123ca565b600060208284031215611b45578081fd5b813567ffffffffffffffff811115611b5b578182fd5b8201601f81018413611b6b578182fd5b61127484823560208401611894565b600060208284031215611b8b578081fd5b5035919050565b600060208284031215611ba3578081fd5b5051919050565b60008151808452611bc28160208601602086016122dd565b601f01601f19169290920160200192915050565b60008351611be88184602088016122dd565b835190830190611bfc8183602088016122dd565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c4c90830184611baa565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611c8e57835183529284019291840191600101611c72565b50909695505050505050565b901515815260200190565b600060208252610db26020830184611baa565b60208082526018908201527f596f7520646f6e74206f776e207468697320446f6f646c650000000000000000604082015260600190565b6020808252600d908201526c53616c65204e6f74204c69766560981b604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526008908201526714dbdb190813dd5d60c21b604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601290820152714d696e74696e67206e6f742061637469766560701b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252600f908201526e496e636f727265637420507269636560881b604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526028908201527f43616e6e6f74204d696e74204d6f7265205468616e20313020506572205472616040820152673739b0b1ba34b7b760c11b606082015260800190565b60208082526019908201527f446f6f646c6520494420416c726561647920436c61696d656400000000000000604082015260600190565b90815260200190565b6000821982111561228e5761228e612373565b500190565b6000826122a2576122a2612389565b500490565b60008160001904831182151516156122c1576122c1612373565b500290565b6000828210156122d8576122d8612373565b500390565b60005b838110156122f85781810151838201526020016122e0565b83811115610b445750506000910152565b60028104600182168061231d57607f821691505b6020821081141561233e57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561235857612358612373565b5060010190565b60008261236e5761236e612389565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610f5b57600080fd5b6001600160e01b031981168114610f5b57600080fdfea2646970667358221220e672451a1cf463456d1a0ca7124b1b2135074ed45b0c86174e8ac0981de18cda64736f6c63430008000033697066733a2f2f516d64386871656a556838355363476e63446f35644a5467457278666f686b6554426761576851594c63754437342f

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80638da5cb5b116100f7578063b88d4fde11610095578063e985e9c511610064578063e985e9c5146104cb578063f19e75d4146104eb578063f2fde38b1461050b578063f807b57b1461052b576101cd565b8063b88d4fde14610461578063c87b56dd14610481578063d5abeb01146104a1578063daaeec86146104b6576101cd565b8063a035b1fe116100d1578063a035b1fe146103f9578063a0712d681461040e578063a22cb46514610421578063b0e6efbd14610441576101cd565b80638da5cb5b146103af57806391b7f5ed146103c457806395d89b41146103e4576101cd565b806355f804b31161016f5780636caae8321161013e5780636caae8321461034557806370a082311461035a578063715018a61461037a57806373fc9ccc1461038f576101cd565b806355f804b3146102db5780636352211e146102fb57806368428a1b1461031b5780636c0360eb14610330576101cd565b8063095ea7b3116101ab578063095ea7b31461025757806318160ddd1461027957806323b872dd1461029b57806342842e0e146102bb576101cd565b806301ffc9a7146101d257806306fdde0314610208578063081812fc1461022a575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611afc565b610558565b6040516101ff9190611c9a565b60405180910390f35b34801561021457600080fd5b5061021d6105a0565b6040516101ff9190611ca5565b34801561023657600080fd5b5061024a610245366004611b7a565b610632565b6040516101ff9190611c05565b34801561026357600080fd5b50610277610272366004611a62565b61067e565b005b34801561028557600080fd5b5061028e610716565b6040516101ff9190612272565b3480156102a757600080fd5b506102776102b6366004611974565b61071c565b3480156102c757600080fd5b506102776102d6366004611974565b610754565b3480156102e757600080fd5b506102776102f6366004611b34565b61076f565b34801561030757600080fd5b5061024a610316366004611b7a565b6107c5565b34801561032757600080fd5b506101f26107fa565b34801561033c57600080fd5b5061021d610803565b34801561035157600080fd5b5061028e610891565b34801561036657600080fd5b5061028e610375366004611904565b610897565b34801561038657600080fd5b506102776108db565b34801561039b57600080fd5b506102776103aa366004611a8d565b610926565b3480156103bb57600080fd5b5061024a610b4a565b3480156103d057600080fd5b506102776103df366004611b7a565b610b59565b3480156103f057600080fd5b5061021d610b9d565b34801561040557600080fd5b5061028e610bac565b61027761041c366004611b7a565b610bb2565b34801561042d57600080fd5b5061027761043c366004611a31565b610cd6565b34801561044d57600080fd5b506101f261045c366004611b7a565b610ce8565b34801561046d57600080fd5b5061027761047c3660046119b4565b610cfd565b34801561048d57600080fd5b5061021d61049c366004611b7a565b610d36565b3480156104ad57600080fd5b5061028e610db9565b3480156104c257600080fd5b50610277610dbf565b3480156104d757600080fd5b506101f26104e636600461193c565b610e12565b3480156104f757600080fd5b50610277610506366004611b7a565b610e40565b34801561051757600080fd5b50610277610526366004611904565b610eed565b34801561053757600080fd5b5061054b610546366004611904565b610f5e565b6040516101ff9190611c56565b60006001600160e01b031982166380ac58cd60e01b148061058957506001600160e01b03198216635b5e139f60e01b145b8061059857506105988261114f565b90505b919050565b6060600080546105af90612309565b80601f01602080910402602001604051908101604052809291908181526020018280546105db90612309565b80156106285780601f106105fd57610100808354040283529160200191610628565b820191906000526020600020905b81548152906001019060200180831161060b57829003601f168201915b5050505050905090565b600061063d82611168565b6106625760405162461bcd60e51b815260040161065990612048565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610689826107c5565b9050806001600160a01b0316836001600160a01b031614156106bd5760405162461bcd60e51b815260040161065990612161565b806001600160a01b03166106cf611185565b6001600160a01b031614806106eb57506106eb816104e6611185565b6107075760405162461bcd60e51b815260040161065990611efa565b6107118383611189565b505050565b60075490565b61072d610727611185565b826111f7565b6107495760405162461bcd60e51b8152600401610659906121a2565b61071183838361127c565b61071183838360405180602001604052806000815250610cfd565b610777611185565b6001600160a01b0316610788610b4a565b6001600160a01b0316146107ae5760405162461bcd60e51b815260040161065990612094565b80516107c190600f9060208401906117fb565b5050565b6000818152600260205260408120546001600160a01b0316806105985760405162461bcd60e51b815260040161065990611fa1565b600b5460ff1681565b600f805461081090612309565b80601f016020809104026020016040519081016040528092919081815260200182805461083c90612309565b80156108895780601f1061085e57610100808354040283529160200191610889565b820191906000526020600020905b81548152906001019060200180831161086c57829003601f168201915b505050505081565b600a5481565b60006001600160a01b0382166108bf5760405162461bcd60e51b815260040161065990611f57565b506001600160a01b031660009081526003602052604090205490565b6108e3611185565b6001600160a01b03166108f4610b4a565b6001600160a01b03161461091a5760405162461bcd60e51b815260040161065990612094565b61092460006113a9565b565b600b5460ff166109485760405162461bcd60e51b815260040161065990611e82565b60085460075461095990839061227b565b11156109775760405162461bcd60e51b815260040161065990611d68565b600e546001600160a01b031660005b82811015610b4457600c60008585848181106109b257634e487b7160e01b600052603260045260246000fd5b602090810292909201358352508101919091526040016000205460ff16156109ec5760405162461bcd60e51b81526004016106599061223b565b816001600160a01b0316636352211e858584818110610a1b57634e487b7160e01b600052603260045260246000fd5b905060200201356040518263ffffffff1660e01b8152600401610a3e9190612272565b60206040518083038186803b158015610a5657600080fd5b505afa158015610a6a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a8e9190611920565b6001600160a01b0316336001600160a01b031614610abe5760405162461bcd60e51b815260040161065990611cb8565b6001600c6000868685818110610ae457634e487b7160e01b600052603260045260246000fd5b90506020020135815260200190815260200160002060006101000a81548160ff021916908315150217905550610b1c336007546113fb565b60078054906000610b2c83612344565b91905055508080610b3c90612344565b915050610986565b50505050565b6006546001600160a01b031690565b610b61611185565b6001600160a01b0316610b72610b4a565b6001600160a01b031614610b985760405162461bcd60e51b815260040161065990612094565b600955565b6060600180546105af90612309565b60095481565b600b5460ff16610bd45760405162461bcd60e51b815260040161065990611cef565b60085481600754610be5919061227b565b1115610c035760405162461bcd60e51b815260040161065990611d68565b600954610c1090826122a7565b341015610c2f5760405162461bcd60e51b815260040161065990611fea565b600081118015610c415750600a548111155b610c5d5760405162461bcd60e51b8152600401610659906121f3565b600d546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015610c96573d6000803e3d6000fd5b5060005b818110156107c157610cae336007546113fb565b60078054906000610cbe83612344565b91905055508080610cce90612344565b915050610c9a565b6107c1610ce1611185565b83836114da565b6000908152600c602052604090205460ff1690565b610d0e610d08611185565b836111f7565b610d2a5760405162461bcd60e51b8152600401610659906121a2565b610b448484848461157d565b6060610d4182611168565b610d5d5760405162461bcd60e51b815260040161065990612112565b6000610d676115b0565b90506000815111610d875760405180602001604052806000815250610db2565b80610d91846115bf565b604051602001610da2929190611bd6565b6040516020818303038152906040525b9392505050565b60085490565b610dc7611185565b6001600160a01b0316610dd8610b4a565b6001600160a01b031614610dfe5760405162461bcd60e51b815260040161065990612094565b600b805460ff19811660ff90911615179055565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610e48611185565b6001600160a01b0316610e59610b4a565b6001600160a01b031614610e7f5760405162461bcd60e51b815260040161065990612094565b60085481600754610e90919061227b565b1115610eae5760405162461bcd60e51b815260040161065990611d68565b60005b818110156107c157610ec5336007546113fb565b60078054906000610ed583612344565b91905055508080610ee590612344565b915050610eb1565b610ef5611185565b6001600160a01b0316610f06610b4a565b6001600160a01b031614610f2c5760405162461bcd60e51b815260040161065990612094565b6001600160a01b038116610f525760405162461bcd60e51b815260040161065990611d8a565b610f5b816113a9565b50565b600e546040516370a0823160e01b81526060916001600160a01b03169060009082906370a0823190610f94908790600401611c05565b60206040518083038186803b158015610fac57600080fd5b505afa158015610fc0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe49190611b92565b905060008167ffffffffffffffff81111561100f57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015611038578160200160208202803683370190505b5090506000805b61270f8111611144576040516331a9108f60e11b81526001600160a01b03861690636352211e90611074908490600401612272565b60206040518083038186803b15801561108c57600080fd5b505afa1580156110a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110c49190611920565b6001600160a01b0316876001600160a01b03161480156110f357506000818152600c602052604090205460ff16155b15611132578083838151811061111957634e487b7160e01b600052603260045260246000fd5b60209081029190910101528161112e81612344565b9250505b8061113c81612344565b91505061103f565b509095945050505050565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906111be826107c5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061120282611168565b61121e5760405162461bcd60e51b815260040161065990611eae565b6000611229836107c5565b9050806001600160a01b0316846001600160a01b031614806112645750836001600160a01b031661125984610632565b6001600160a01b0316145b8061127457506112748185610e12565b949350505050565b826001600160a01b031661128f826107c5565b6001600160a01b0316146112b55760405162461bcd60e51b8152600401610659906120c9565b6001600160a01b0382166112db5760405162461bcd60e51b815260040161065990611e07565b6112e6838383610711565b6112f1600082611189565b6001600160a01b038316600090815260036020526040812080546001929061131a9084906122c6565b90915550506001600160a01b038216600090815260036020526040812080546001929061134890849061227b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166114215760405162461bcd60e51b815260040161065990612013565b61142a81611168565b156114475760405162461bcd60e51b815260040161065990611dd0565b61145360008383610711565b6001600160a01b038216600090815260036020526040812080546001929061147c90849061227b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b816001600160a01b0316836001600160a01b0316141561150c5760405162461bcd60e51b815260040161065990611e4b565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190611570908590611c9a565b60405180910390a3505050565b61158884848461127c565b611594848484846116da565b610b445760405162461bcd60e51b815260040161065990611d16565b6060600f80546105af90612309565b6060816115e457506040805180820190915260018152600360fc1b602082015261059b565b8160005b811561160e57806115f881612344565b91506116079050600a83612293565b91506115e8565b60008167ffffffffffffffff81111561163757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611661576020820181803683370190505b5090505b8415611274576116766001836122c6565b9150611683600a8661235f565b61168e90603061227b565b60f81b8183815181106116b157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506116d3600a86612293565b9450611665565b60006116ee846001600160a01b03166117f5565b156117ea57836001600160a01b031663150b7a0261170a611185565b8786866040518563ffffffff1660e01b815260040161172c9493929190611c19565b602060405180830381600087803b15801561174657600080fd5b505af1925050508015611776575060408051601f3d908101601f1916820190925261177391810190611b18565b60015b6117d0573d8080156117a4576040519150601f19603f3d011682016040523d82523d6000602084013e6117a9565b606091505b5080516117c85760405162461bcd60e51b815260040161065990611d16565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611274565b506001949350505050565b3b151590565b82805461180790612309565b90600052602060002090601f016020900481019282611829576000855561186f565b82601f1061184257805160ff191683800117855561186f565b8280016001018555821561186f579182015b8281111561186f578251825591602001919060010190611854565b5061187b92915061187f565b5090565b5b8082111561187b5760008155600101611880565b600067ffffffffffffffff808411156118af576118af61239f565b604051601f8501601f1916810160200182811182821017156118d3576118d361239f565b6040528481529150818385018610156118eb57600080fd5b8484602083013760006020868301015250509392505050565b600060208284031215611915578081fd5b8135610db2816123b5565b600060208284031215611931578081fd5b8151610db2816123b5565b6000806040838503121561194e578081fd5b8235611959816123b5565b91506020830135611969816123b5565b809150509250929050565b600080600060608486031215611988578081fd5b8335611993816123b5565b925060208401356119a3816123b5565b929592945050506040919091013590565b600080600080608085870312156119c9578081fd5b84356119d4816123b5565b935060208501356119e4816123b5565b925060408501359150606085013567ffffffffffffffff811115611a06578182fd5b8501601f81018713611a16578182fd5b611a2587823560208401611894565b91505092959194509250565b60008060408385031215611a43578182fd5b8235611a4e816123b5565b915060208301358015158114611969578182fd5b60008060408385031215611a74578182fd5b8235611a7f816123b5565b946020939093013593505050565b60008060208385031215611a9f578182fd5b823567ffffffffffffffff80821115611ab6578384fd5b818501915085601f830112611ac9578384fd5b813581811115611ad7578485fd5b8660208083028501011115611aea578485fd5b60209290920196919550909350505050565b600060208284031215611b0d578081fd5b8135610db2816123ca565b600060208284031215611b29578081fd5b8151610db2816123ca565b600060208284031215611b45578081fd5b813567ffffffffffffffff811115611b5b578182fd5b8201601f81018413611b6b578182fd5b61127484823560208401611894565b600060208284031215611b8b578081fd5b5035919050565b600060208284031215611ba3578081fd5b5051919050565b60008151808452611bc28160208601602086016122dd565b601f01601f19169290920160200192915050565b60008351611be88184602088016122dd565b835190830190611bfc8183602088016122dd565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c4c90830184611baa565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611c8e57835183529284019291840191600101611c72565b50909695505050505050565b901515815260200190565b600060208252610db26020830184611baa565b60208082526018908201527f596f7520646f6e74206f776e207468697320446f6f646c650000000000000000604082015260600190565b6020808252600d908201526c53616c65204e6f74204c69766560981b604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526008908201526714dbdb190813dd5d60c21b604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601290820152714d696e74696e67206e6f742061637469766560701b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252600f908201526e496e636f727265637420507269636560881b604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526028908201527f43616e6e6f74204d696e74204d6f7265205468616e20313020506572205472616040820152673739b0b1ba34b7b760c11b606082015260800190565b60208082526019908201527f446f6f646c6520494420416c726561647920436c61696d656400000000000000604082015260600190565b90815260200190565b6000821982111561228e5761228e612373565b500190565b6000826122a2576122a2612389565b500490565b60008160001904831182151516156122c1576122c1612373565b500290565b6000828210156122d8576122d8612373565b500390565b60005b838110156122f85781810151838201526020016122e0565b83811115610b445750506000910152565b60028104600182168061231d57607f821691505b6020821081141561233e57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561235857612358612373565b5060010190565b60008261236e5761236e612389565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610f5b57600080fd5b6001600160e01b031981168114610f5b57600080fdfea2646970667358221220e672451a1cf463456d1a0ca7124b1b2135074ed45b0c86174e8ac0981de18cda64736f6c63430008000033

Deployed Bytecode Sourcemap

36426:3433:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23742:305;;;;;;;;;;-1:-1:-1;23742:305:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24687:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26246:221::-;;;;;;;;;;-1:-1:-1;26246:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;25769:411::-;;;;;;;;;;-1:-1:-1;25769:411:0;;;;;:::i;:::-;;:::i;:::-;;39055:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26996:339::-;;;;;;;;;;-1:-1:-1;26996:339:0;;;;;:::i;:::-;;:::i;27406:185::-;;;;;;;;;;-1:-1:-1;27406:185:0;;;;;:::i;:::-;;:::i;38742:102::-;;;;;;;;;;-1:-1:-1;38742:102:0;;;;;:::i;:::-;;:::i;24381:239::-;;;;;;;;;;-1:-1:-1;24381:239:0;;;;;:::i;:::-;;:::i;36626:29::-;;;;;;;;;;;;;:::i;36879:80::-;;;;;;;;;;;;;:::i;36592:27::-;;;;;;;;;;;;;:::i;24111:208::-;;;;;;;;;;-1:-1:-1;24111:208:0;;;;;:::i;:::-;;:::i;4730:103::-;;;;;;;;;;;;;:::i;37619:650::-;;;;;;;;;;-1:-1:-1;37619:650:0;;;;;:::i;:::-;;:::i;4079:87::-;;;;;;;;;;;;;:::i;38644:90::-;;;;;;;;;;-1:-1:-1;38644:90:0;;;;;:::i;:::-;;:::i;24856:104::-;;;;;;;;;;;;;:::i;36552:33::-;;;;;;;;;;;;;:::i;37100:511::-;;;;;;:::i;:::-;;:::i;26539:155::-;;;;;;;;;;-1:-1:-1;26539:155:0;;;;;:::i;:::-;;:::i;39154:114::-;;;;;;;;;;-1:-1:-1;39154:114:0;;;;;:::i;:::-;;:::i;27662:328::-;;;;;;;;;;-1:-1:-1;27662:328:0;;;;;:::i;:::-;;:::i;25031:334::-;;;;;;;;;;-1:-1:-1;25031:334:0;;;;;:::i;:::-;;:::i;38960:87::-;;;;;;;;;;;;;:::i;38547:89::-;;;;;;;;;;;;;:::i;26765:164::-;;;;;;;;;;-1:-1:-1;26765:164:0;;;;;:::i;:::-;;:::i;38277:262::-;;;;;;;;;;-1:-1:-1;38277:262:0;;;;;:::i;:::-;;:::i;4988:201::-;;;;;;;;;;-1:-1:-1;4988:201:0;;;;;:::i;:::-;;:::i;39276:580::-;;;;;;;;;;-1:-1:-1;39276:580:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;23742:305::-;23844:4;-1:-1:-1;;;;;;23881:40:0;;-1:-1:-1;;;23881:40:0;;:105;;-1:-1:-1;;;;;;;23938:48:0;;-1:-1:-1;;;23938:48:0;23881:105;:158;;;;24003:36;24027:11;24003:23;:36::i;:::-;23861:178;;23742:305;;;;:::o;24687:100::-;24741:13;24774:5;24767:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24687:100;:::o;26246:221::-;26322:7;26350:16;26358:7;26350;:16::i;:::-;26342:73;;;;-1:-1:-1;;;26342:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;26435:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26435:24:0;;26246:221::o;25769:411::-;25850:13;25866:23;25881:7;25866:14;:23::i;:::-;25850:39;;25914:5;-1:-1:-1;;;;;25908:11:0;:2;-1:-1:-1;;;;;25908:11:0;;;25900:57;;;;-1:-1:-1;;;25900:57:0;;;;;;;:::i;:::-;26008:5;-1:-1:-1;;;;;25992:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;25992:21:0;;:62;;;;26017:37;26034:5;26041:12;:10;:12::i;26017:37::-;25970:168;;;;-1:-1:-1;;;25970:168:0;;;;;;;:::i;:::-;26151:21;26160:2;26164:7;26151:8;:21::i;:::-;25769:411;;;:::o;39055:91::-;39126:12;;39055:91;:::o;26996:339::-;27191:41;27210:12;:10;:12::i;:::-;27224:7;27191:18;:41::i;:::-;27183:103;;;;-1:-1:-1;;;27183:103:0;;;;;;;:::i;:::-;27299:28;27309:4;27315:2;27319:7;27299:9;:28::i;27406:185::-;27544:39;27561:4;27567:2;27571:7;27544:39;;;;;;;;;;;;:16;:39::i;38742:102::-;4310:12;:10;:12::i;:::-;-1:-1:-1;;;;;4299:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4299:23:0;;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;38816:20;;::::1;::::0;:7:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;:::-;;38742:102:::0;:::o;24381:239::-;24453:7;24489:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24489:16:0;24524:19;24516:73;;;;-1:-1:-1;;;24516:73:0;;;;;;;:::i;36626:29::-;;;;;;:::o;36879:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;36592:27::-;;;;:::o;24111:208::-;24183:7;-1:-1:-1;;;;;24211:19:0;;24203:74;;;;-1:-1:-1;;;24203:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;24295:16:0;;;;;:9;:16;;;;;;;24111:208::o;4730:103::-;4310:12;:10;:12::i;:::-;-1:-1:-1;;;;;4299:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4299:23:0;;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;37619:650::-;37696:10;;;;37688:41;;;;-1:-1:-1;;;37688:41:0;;;;;;;:::i;:::-;37783:10;;37748:12;;:31;;37763:9;;37748:31;:::i;:::-;:45;;37740:66;;;;-1:-1:-1;;;37740:66:0;;;;;;;:::i;:::-;37867:16;;-1:-1:-1;;;;;37867:16:0;37819:29;37897:365;37917:20;;;37897:365;;;37968:12;:26;37981:9;;37991:1;37981:12;;;;;-1:-1:-1;;;37981:12:0;;;;;;;;;;;;;;;;;;37968:26;;-1:-1:-1;37968:26:0;;;;;;;;-1:-1:-1;37968:26:0;;;;37967:27;37959:65;;;;-1:-1:-1;;;37959:65:0;;;;;;;:::i;:::-;38061:13;-1:-1:-1;;;;;38061:21:0;;38083:9;;38093:1;38083:12;;;;;-1:-1:-1;;;38083:12:0;;;;;;;;;;;;;;;38061:35;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;38047:49:0;:10;-1:-1:-1;;;;;38047:49:0;;38039:86;;;;-1:-1:-1;;;38039:86:0;;;;;;;:::i;:::-;38169:4;38140:12;:26;38153:9;;38163:1;38153:12;;;;;-1:-1:-1;;;38153:12:0;;;;;;;;;;;;;;;38140:26;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;38190:31;38196:10;38208:12;;38190:5;:31::i;:::-;38236:12;:14;;;:12;:14;;;:::i;:::-;;;;;;37939:3;;;;;:::i;:::-;;;;37897:365;;;;37619:650;;;:::o;4079:87::-;4152:6;;-1:-1:-1;;;;;4152:6:0;4079:87;:::o;38644:90::-;4310:12;:10;:12::i;:::-;-1:-1:-1;;;;;4299:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4299:23:0;;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;38710:5:::1;:16:::0;38644:90::o;24856:104::-;24912:13;24945:7;24938:14;;;;;:::i;36552:33::-;;;;:::o;37100:511::-;37165:10;;;;37157:36;;;;-1:-1:-1;;;37157:36:0;;;;;;;:::i;:::-;37236:10;;37227:5;37212:12;;:20;;;;:::i;:::-;:34;;37204:55;;;;-1:-1:-1;;;37204:55:0;;;;;;;:::i;:::-;37299:5;;37291:13;;:5;:13;:::i;:::-;37278:9;:26;;37270:54;;;;-1:-1:-1;;;37270:54:0;;;;;;;:::i;:::-;37351:1;37343:5;:9;:29;;;;;37365:7;;37356:5;:16;;37343:29;37335:82;;;;-1:-1:-1;;;37335:82:0;;;;;;;:::i;:::-;37438:9;;37430:38;;-1:-1:-1;;;;;37438:9:0;;;;37458;37430:38;;;;;37438:9;37430:38;37438:9;37430:38;37458:9;37438;37430:38;;;;;;;;;;;;;;;;;;;;;37486:9;37481:123;37505:5;37501:1;:9;37481:123;;;37532:31;37538:10;37550:12;;37532:5;:31::i;:::-;37578:12;:14;;;:12;:14;;;:::i;:::-;;;;;;37512:3;;;;;:::i;:::-;;;;37481:123;;26539:155;26634:52;26653:12;:10;:12::i;:::-;26667:8;26677;26634:18;:52::i;39154:114::-;39216:4;39240:20;;;:12;:20;;;;;;;;;39154:114::o;27662:328::-;27837:41;27856:12;:10;:12::i;:::-;27870:7;27837:18;:41::i;:::-;27829:103;;;;-1:-1:-1;;;27829:103:0;;;;;;;:::i;:::-;27943:39;27957:4;27963:2;27967:7;27976:5;27943:13;:39::i;25031:334::-;25104:13;25138:16;25146:7;25138;:16::i;:::-;25130:76;;;;-1:-1:-1;;;25130:76:0;;;;;;;:::i;:::-;25219:21;25243:10;:8;:10::i;:::-;25219:34;;25295:1;25277:7;25271:21;:25;:86;;;;;;;;;;;;;;;;;25323:7;25332:18;:7;:16;:18::i;:::-;25306:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25271:86;25264:93;25031:334;-1:-1:-1;;;25031:334:0:o;38960:87::-;39029:10;;38960:87;:::o;38547:89::-;4310:12;:10;:12::i;:::-;-1:-1:-1;;;;;4299:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4299:23:0;;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;38618:10:::1;::::0;;-1:-1:-1;;38604:24:0;::::1;38618:10;::::0;;::::1;38617:11;38604:24;::::0;;38547:89::o;26765:164::-;-1:-1:-1;;;;;26886:25:0;;;26862:4;26886:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26765:164::o;38277:262::-;4310:12;:10;:12::i;:::-;-1:-1:-1;;;;;4299:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4299:23:0;;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;38373:10:::1;;38364:5;38349:12;;:20;;;;:::i;:::-;:34;;38341:55;;;;-1:-1:-1::0;;;38341:55:0::1;;;;;;;:::i;:::-;38414:9;38409:123;38433:5;38429:1;:9;38409:123;;;38460:31;38466:10;38478:12;;38460:5;:31::i;:::-;38506:12;:14:::0;;;:12:::1;:14;::::0;::::1;:::i;:::-;;;;;;38440:3;;;;;:::i;:::-;;;;38409:123;;4988:201:::0;4310:12;:10;:12::i;:::-;-1:-1:-1;;;;;4299:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4299:23:0;;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5077:22:0;::::1;5069:73;;;;-1:-1:-1::0;;;5069:73:0::1;;;;;;;:::i;:::-;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;39276:580::-;39430:16;;39480:31;;-1:-1:-1;;;39480:31:0;;39341:28;;-1:-1:-1;;;;;39430:16:0;;39382:29;;39430:16;;39480:23;;:31;;39504:6;;39480:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39458:53;;39522:23;39562:11;39548:26;;;;;;-1:-1:-1;;;39548:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39548:26:0;;39522:52;;39585:16;39623:9;39618:207;39643:4;39638:1;:9;39618:207;;39684:24;;-1:-1:-1;;;39684:24:0;;-1:-1:-1;;;;;39684:21:0;;;;;:24;;39706:1;;39684:24;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;39674:34:0;:6;-1:-1:-1;;;;;39674:34:0;;39673:56;;;;-1:-1:-1;39714:15:0;;;;:12;:15;;;;;;;;39713:16;39673:56;39669:145;;;39768:1;39749:6;39756:8;39749:16;;;;;;-1:-1:-1;;;39749:16:0;;;;;;;;;;;;;;;;;;:20;39788:10;;;;:::i;:::-;;;;39669:145;39649:3;;;;:::i;:::-;;;;39618:207;;;-1:-1:-1;39842:6:0;;39276:580;-1:-1:-1;;;;;39276:580:0:o;16511:157::-;-1:-1:-1;;;;;;16620:40:0;;-1:-1:-1;;;16620:40:0;16511:157;;;:::o;29500:127::-;29565:4;29589:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29589:16:0;:30;;;29500:127::o;2803:98::-;2883:10;2803:98;:::o;33482:174::-;33557:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33557:29:0;-1:-1:-1;;;;;33557:29:0;;;;;;;;:24;;33611:23;33557:24;33611:14;:23::i;:::-;-1:-1:-1;;;;;33602:46:0;;;;;;;;;;;33482:174;;:::o;29794:348::-;29887:4;29912:16;29920:7;29912;:16::i;:::-;29904:73;;;;-1:-1:-1;;;29904:73:0;;;;;;;:::i;:::-;29988:13;30004:23;30019:7;30004:14;:23::i;:::-;29988:39;;30057:5;-1:-1:-1;;;;;30046:16:0;:7;-1:-1:-1;;;;;30046:16:0;;:51;;;;30090:7;-1:-1:-1;;;;;30066:31:0;:20;30078:7;30066:11;:20::i;:::-;-1:-1:-1;;;;;30066:31:0;;30046:51;:87;;;;30101:32;30118:5;30125:7;30101:16;:32::i;:::-;30038:96;29794:348;-1:-1:-1;;;;29794:348:0:o;32786:578::-;32945:4;-1:-1:-1;;;;;32918:31:0;:23;32933:7;32918:14;:23::i;:::-;-1:-1:-1;;;;;32918:31:0;;32910:85;;;;-1:-1:-1;;;32910:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33014:16:0;;33006:65;;;;-1:-1:-1;;;33006:65:0;;;;;;;:::i;:::-;33084:39;33105:4;33111:2;33115:7;33084:20;:39::i;:::-;33188:29;33205:1;33209:7;33188:8;:29::i;:::-;-1:-1:-1;;;;;33230:15:0;;;;;;:9;:15;;;;;:20;;33249:1;;33230:15;:20;;33249:1;;33230:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33261:13:0;;;;;;:9;:13;;;;;:18;;33278:1;;33261:13;:18;;33278:1;;33261:18;:::i;:::-;;;;-1:-1:-1;;33290:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33290:21:0;-1:-1:-1;;;;;33290:21:0;;;;;;;;;33329:27;;33290:16;;33329:27;;;;;;;32786:578;;;:::o;5349:191::-;5442:6;;;-1:-1:-1;;;;;5459:17:0;;;-1:-1:-1;;;;;;5459:17:0;;;;;;;5492:40;;5442:6;;;5459:17;5442:6;;5492:40;;5423:16;;5492:40;5349:191;;:::o;31478:382::-;-1:-1:-1;;;;;31558:16:0;;31550:61;;;;-1:-1:-1;;;31550:61:0;;;;;;;:::i;:::-;31631:16;31639:7;31631;:16::i;:::-;31630:17;31622:58;;;;-1:-1:-1;;;31622:58:0;;;;;;;:::i;:::-;31693:45;31722:1;31726:2;31730:7;31693:20;:45::i;:::-;-1:-1:-1;;;;;31751:13:0;;;;;;:9;:13;;;;;:18;;31768:1;;31751:13;:18;;31768:1;;31751:18;:::i;:::-;;;;-1:-1:-1;;31780:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31780:21:0;-1:-1:-1;;;;;31780:21:0;;;;;;;;31819:33;;31780:16;;;31819:33;;31780:16;;31819:33;31478:382;;:::o;33798:315::-;33953:8;-1:-1:-1;;;;;33944:17:0;:5;-1:-1:-1;;;;;33944:17:0;;;33936:55;;;;-1:-1:-1;;;33936:55:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34002:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;:46;;-1:-1:-1;;34002:46:0;;;;;;;34064:41;;;;;34002:46;;34064:41;:::i;:::-;;;;;;;;33798:315;;;:::o;28872:::-;29029:28;29039:4;29045:2;29049:7;29029:9;:28::i;:::-;29076:48;29099:4;29105:2;29109:7;29118:5;29076:22;:48::i;:::-;29068:111;;;;-1:-1:-1;;;29068:111:0;;;;;;;:::i;38852:100::-;38904:13;38937:7;38930:14;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;;638:53;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;-1:-1:-1;;;867:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;-1:-1:-1;;;955:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;34678:799;34833:4;34854:15;:2;-1:-1:-1;;;;;34854:13:0;;:15::i;:::-;34850:620;;;34906:2;-1:-1:-1;;;;;34890:36:0;;34927:12;:10;:12::i;:::-;34941:4;34947:7;34956:5;34890:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34890:72:0;;;;;;;;-1:-1:-1;;34890:72:0;;;;;;;;;;;;:::i;:::-;;;34886:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35132:13:0;;35128:272;;35175:60;;-1:-1:-1;;;35175:60:0;;;;;;;:::i;35128:272::-;35350:6;35344:13;35335:6;35331:2;35327:15;35320:38;34886:529;-1:-1:-1;;;;;;35013:51:0;-1:-1:-1;;;35013:51:0;;-1:-1:-1;35006:58:0;;34850:620;-1:-1:-1;35454:4:0;34678:799;;;;;;:::o;6367:387::-;6690:20;6738:8;;;6367:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:259::-;;738:2;726:9;717:7;713:23;709:32;706:2;;;759:6;751;744:22;706:2;803:9;790:23;822:33;849:5;822:33;:::i;890:263::-;;1013:2;1001:9;992:7;988:23;984:32;981:2;;;1034:6;1026;1019:22;981:2;1071:9;1065:16;1090:33;1117:5;1090:33;:::i;1158:402::-;;;1287:2;1275:9;1266:7;1262:23;1258:32;1255:2;;;1308:6;1300;1293:22;1255:2;1352:9;1339:23;1371:33;1398:5;1371:33;:::i;:::-;1423:5;-1:-1:-1;1480:2:1;1465:18;;1452:32;1493:35;1452:32;1493:35;:::i;:::-;1547:7;1537:17;;;1245:315;;;;;:::o;1565:470::-;;;;1711:2;1699:9;1690:7;1686:23;1682:32;1679:2;;;1732:6;1724;1717:22;1679:2;1776:9;1763:23;1795:33;1822:5;1795:33;:::i;:::-;1847:5;-1:-1:-1;1904:2:1;1889:18;;1876:32;1917:35;1876:32;1917:35;:::i;:::-;1669:366;;1971:7;;-1:-1:-1;;;2025:2:1;2010:18;;;;1997:32;;1669:366::o;2040:830::-;;;;;2212:3;2200:9;2191:7;2187:23;2183:33;2180:2;;;2234:6;2226;2219:22;2180:2;2278:9;2265:23;2297:33;2324:5;2297:33;:::i;:::-;2349:5;-1:-1:-1;2406:2:1;2391:18;;2378:32;2419:35;2378:32;2419:35;:::i;:::-;2473:7;-1:-1:-1;2527:2:1;2512:18;;2499:32;;-1:-1:-1;2582:2:1;2567:18;;2554:32;2609:18;2598:30;;2595:2;;;2646:6;2638;2631:22;2595:2;2674:22;;2727:4;2719:13;;2715:27;-1:-1:-1;2705:2:1;;2761:6;2753;2746:22;2705:2;2789:75;2856:7;2851:2;2838:16;2833:2;2829;2825:11;2789:75;:::i;:::-;2779:85;;;2170:700;;;;;;;:::o;2875:438::-;;;3001:2;2989:9;2980:7;2976:23;2972:32;2969:2;;;3022:6;3014;3007:22;2969:2;3066:9;3053:23;3085:33;3112:5;3085:33;:::i;:::-;3137:5;-1:-1:-1;3194:2:1;3179:18;;3166:32;3236:15;;3229:23;3217:36;;3207:2;;3272:6;3264;3257:22;3318:327;;;3447:2;3435:9;3426:7;3422:23;3418:32;3415:2;;;3468:6;3460;3453:22;3415:2;3512:9;3499:23;3531:33;3558:5;3531:33;:::i;:::-;3583:5;3635:2;3620:18;;;;3607:32;;-1:-1:-1;;;3405:240:1:o;3650:666::-;;;3797:2;3785:9;3776:7;3772:23;3768:32;3765:2;;;3818:6;3810;3803:22;3765:2;3863:9;3850:23;3892:18;3933:2;3925:6;3922:14;3919:2;;;3954:6;3946;3939:22;3919:2;3997:6;3986:9;3982:22;3972:32;;4042:7;4035:4;4031:2;4027:13;4023:27;4013:2;;4069:6;4061;4054:22;4013:2;4114;4101:16;4140:2;4132:6;4129:14;4126:2;;;4161:6;4153;4146:22;4126:2;4220:7;4215:2;4209;4201:6;4197:15;4193:2;4189:24;4185:33;4182:46;4179:2;;;4246:6;4238;4231:22;4179:2;4282;4274:11;;;;;4304:6;;-1:-1:-1;3755:561:1;;-1:-1:-1;;;;3755:561:1:o;4321:257::-;;4432:2;4420:9;4411:7;4407:23;4403:32;4400:2;;;4453:6;4445;4438:22;4400:2;4497:9;4484:23;4516:32;4542:5;4516:32;:::i;4583:261::-;;4705:2;4693:9;4684:7;4680:23;4676:32;4673:2;;;4726:6;4718;4711:22;4673:2;4763:9;4757:16;4782:32;4808:5;4782:32;:::i;4849:482::-;;4971:2;4959:9;4950:7;4946:23;4942:32;4939:2;;;4992:6;4984;4977:22;4939:2;5037:9;5024:23;5070:18;5062:6;5059:30;5056:2;;;5107:6;5099;5092:22;5056:2;5135:22;;5188:4;5180:13;;5176:27;-1:-1:-1;5166:2:1;;5222:6;5214;5207:22;5166:2;5250:75;5317:7;5312:2;5299:16;5294:2;5290;5286:11;5250:75;:::i;5336:190::-;;5448:2;5436:9;5427:7;5423:23;5419:32;5416:2;;;5469:6;5461;5454:22;5416:2;-1:-1:-1;5497:23:1;;5406:120;-1:-1:-1;5406:120:1:o;5531:194::-;;5654:2;5642:9;5633:7;5629:23;5625:32;5622:2;;;5675:6;5667;5660:22;5622:2;-1:-1:-1;5703:16:1;;5612:113;-1:-1:-1;5612:113:1:o;5730:259::-;;5811:5;5805:12;5838:6;5833:3;5826:19;5854:63;5910:6;5903:4;5898:3;5894:14;5887:4;5880:5;5876:16;5854:63;:::i;:::-;5971:2;5950:15;-1:-1:-1;;5946:29:1;5937:39;;;;5978:4;5933:50;;5781:208;-1:-1:-1;;5781:208:1:o;5994:470::-;;6211:6;6205:13;6227:53;6273:6;6268:3;6261:4;6253:6;6249:17;6227:53;:::i;:::-;6343:13;;6302:16;;;;6365:57;6343:13;6302:16;6399:4;6387:17;;6365:57;:::i;:::-;6438:20;;6181:283;-1:-1:-1;;;;6181:283:1:o;6469:203::-;-1:-1:-1;;;;;6633:32:1;;;;6615:51;;6603:2;6588:18;;6570:102::o;6677:490::-;-1:-1:-1;;;;;6946:15:1;;;6928:34;;6998:15;;6993:2;6978:18;;6971:43;7045:2;7030:18;;7023:34;;;7093:3;7088:2;7073:18;;7066:31;;;6677:490;;7114:47;;7141:19;;7133:6;7114:47;:::i;:::-;7106:55;6880:287;-1:-1:-1;;;;;;6880:287:1:o;7172:635::-;7343:2;7395:21;;;7465:13;;7368:18;;;7487:22;;;7172:635;;7343:2;7566:15;;;;7540:2;7525:18;;;7172:635;7612:169;7626:6;7623:1;7620:13;7612:169;;;7687:13;;7675:26;;7756:15;;;;7721:12;;;;7648:1;7641:9;7612:169;;;-1:-1:-1;7798:3:1;;7323:484;-1:-1:-1;;;;;;7323:484:1:o;7812:187::-;7977:14;;7970:22;7952:41;;7940:2;7925:18;;7907:92::o;8004:221::-;;8153:2;8142:9;8135:21;8173:46;8215:2;8204:9;8200:18;8192:6;8173:46;:::i;8230:348::-;8432:2;8414:21;;;8471:2;8451:18;;;8444:30;8510:26;8505:2;8490:18;;8483:54;8569:2;8554:18;;8404:174::o;8583:337::-;8785:2;8767:21;;;8824:2;8804:18;;;8797:30;-1:-1:-1;;;8858:2:1;8843:18;;8836:43;8911:2;8896:18;;8757:163::o;8925:414::-;9127:2;9109:21;;;9166:2;9146:18;;;9139:30;9205:34;9200:2;9185:18;;9178:62;-1:-1:-1;;;9271:2:1;9256:18;;9249:48;9329:3;9314:19;;9099:240::o;9344:331::-;9546:2;9528:21;;;9585:1;9565:18;;;9558:29;-1:-1:-1;;;9618:2:1;9603:18;;9596:38;9666:2;9651:18;;9518:157::o;9680:402::-;9882:2;9864:21;;;9921:2;9901:18;;;9894:30;9960:34;9955:2;9940:18;;9933:62;-1:-1:-1;;;10026:2:1;10011:18;;10004:36;10072:3;10057:19;;9854:228::o;10087:352::-;10289:2;10271:21;;;10328:2;10308:18;;;10301:30;10367;10362:2;10347:18;;10340:58;10430:2;10415:18;;10261:178::o;10444:400::-;10646:2;10628:21;;;10685:2;10665:18;;;10658:30;10724:34;10719:2;10704:18;;10697:62;-1:-1:-1;;;10790:2:1;10775:18;;10768:34;10834:3;10819:19;;10618:226::o;10849:349::-;11051:2;11033:21;;;11090:2;11070:18;;;11063:30;11129:27;11124:2;11109:18;;11102:55;11189:2;11174:18;;11023:175::o;11203:342::-;11405:2;11387:21;;;11444:2;11424:18;;;11417:30;-1:-1:-1;;;11478:2:1;11463:18;;11456:48;11536:2;11521:18;;11377:168::o;11550:408::-;11752:2;11734:21;;;11791:2;11771:18;;;11764:30;11830:34;11825:2;11810:18;;11803:62;-1:-1:-1;;;11896:2:1;11881:18;;11874:42;11948:3;11933:19;;11724:234::o;11963:420::-;12165:2;12147:21;;;12204:2;12184:18;;;12177:30;12243:34;12238:2;12223:18;;12216:62;12314:26;12309:2;12294:18;;12287:54;12373:3;12358:19;;12137:246::o;12388:406::-;12590:2;12572:21;;;12629:2;12609:18;;;12602:30;12668:34;12663:2;12648:18;;12641:62;-1:-1:-1;;;12734:2:1;12719:18;;12712:40;12784:3;12769:19;;12562:232::o;12799:405::-;13001:2;12983:21;;;13040:2;13020:18;;;13013:30;13079:34;13074:2;13059:18;;13052:62;-1:-1:-1;;;13145:2:1;13130:18;;13123:39;13194:3;13179:19;;12973:231::o;13209:339::-;13411:2;13393:21;;;13450:2;13430:18;;;13423:30;-1:-1:-1;;;13484:2:1;13469:18;;13462:45;13539:2;13524:18;;13383:165::o;13553:356::-;13755:2;13737:21;;;13774:18;;;13767:30;13833:34;13828:2;13813:18;;13806:62;13900:2;13885:18;;13727:182::o;13914:408::-;14116:2;14098:21;;;14155:2;14135:18;;;14128:30;14194:34;14189:2;14174:18;;14167:62;-1:-1:-1;;;14260:2:1;14245:18;;14238:42;14312:3;14297:19;;14088:234::o;14327:356::-;14529:2;14511:21;;;14548:18;;;14541:30;14607:34;14602:2;14587:18;;14580:62;14674:2;14659:18;;14501:182::o;14688:405::-;14890:2;14872:21;;;14929:2;14909:18;;;14902:30;14968:34;14963:2;14948:18;;14941:62;-1:-1:-1;;;15034:2:1;15019:18;;15012:39;15083:3;15068:19;;14862:231::o;15098:411::-;15300:2;15282:21;;;15339:2;15319:18;;;15312:30;15378:34;15373:2;15358:18;;15351:62;-1:-1:-1;;;15444:2:1;15429:18;;15422:45;15499:3;15484:19;;15272:237::o;15514:397::-;15716:2;15698:21;;;15755:2;15735:18;;;15728:30;15794:34;15789:2;15774:18;;15767:62;-1:-1:-1;;;15860:2:1;15845:18;;15838:31;15901:3;15886:19;;15688:223::o;15916:413::-;16118:2;16100:21;;;16157:2;16137:18;;;16130:30;16196:34;16191:2;16176:18;;16169:62;-1:-1:-1;;;16262:2:1;16247:18;;16240:47;16319:3;16304:19;;16090:239::o;16334:404::-;16536:2;16518:21;;;16575:2;16555:18;;;16548:30;16614:34;16609:2;16594:18;;16587:62;-1:-1:-1;;;16680:2:1;16665:18;;16658:38;16728:3;16713:19;;16508:230::o;16743:349::-;16945:2;16927:21;;;16984:2;16964:18;;;16957:30;17023:27;17018:2;17003:18;;16996:55;17083:2;17068:18;;16917:175::o;17097:177::-;17243:25;;;17231:2;17216:18;;17198:76::o;17279:128::-;;17350:1;17346:6;17343:1;17340:13;17337:2;;;17356:18;;:::i;:::-;-1:-1:-1;17392:9:1;;17327:80::o;17412:120::-;;17478:1;17468:2;;17483:18;;:::i;:::-;-1:-1:-1;17517:9:1;;17458:74::o;17537:168::-;;17643:1;17639;17635:6;17631:14;17628:1;17625:21;17620:1;17613:9;17606:17;17602:45;17599:2;;;17650:18;;:::i;:::-;-1:-1:-1;17690:9:1;;17589:116::o;17710:125::-;;17778:1;17775;17772:8;17769:2;;;17783:18;;:::i;:::-;-1:-1:-1;17820:9:1;;17759:76::o;17840:258::-;17912:1;17922:113;17936:6;17933:1;17930:13;17922:113;;;18012:11;;;18006:18;17993:11;;;17986:39;17958:2;17951:10;17922:113;;;18053:6;18050:1;18047:13;18044:2;;;-1:-1:-1;;18088:1:1;18070:16;;18063:27;17893:205::o;18103:380::-;18188:1;18178:12;;18235:1;18225:12;;;18246:2;;18300:4;18292:6;18288:17;18278:27;;18246:2;18353;18345:6;18342:14;18322:18;18319:38;18316:2;;;18399:10;18394:3;18390:20;18387:1;18380:31;18434:4;18431:1;18424:15;18462:4;18459:1;18452:15;18316:2;;18158:325;;;:::o;18488:135::-;;-1:-1:-1;;18548:17:1;;18545:2;;;18568:18;;:::i;:::-;-1:-1:-1;18615:1:1;18604:13;;18535:88::o;18628:112::-;;18686:1;18676:2;;18691:18;;:::i;:::-;-1:-1:-1;18725:9:1;;18666:74::o;18745:127::-;18806:10;18801:3;18797:20;18794:1;18787:31;18837:4;18834:1;18827:15;18861:4;18858:1;18851:15;18877:127;18938:10;18933:3;18929:20;18926:1;18919:31;18969:4;18966:1;18959:15;18993:4;18990:1;18983:15;19009:127;19070:10;19065:3;19061:20;19058:1;19051:31;19101:4;19098:1;19091:15;19125:4;19122:1;19115:15;19141:133;-1:-1:-1;;;;;19218:31:1;;19208:42;;19198:2;;19264:1;19261;19254:12;19279:133;-1:-1:-1;;;;;;19355:32:1;;19345:43;;19335:2;;19402:1;19399;19392:12

Swarm Source

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