ETH Price: $2,483.08 (-1.60%)

Token

loserpunks (loserpunks)
 

Overview

Max Total Supply

255 loserpunks

Holders

69

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 loserpunks
0xac90d0f650475db876d4cd95595bdb8d04370044
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:
loserpunks

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-07
*/

/**
 *Submitted for verification at Etherscan.io on 2023-04-29
*/

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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

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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}
/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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

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



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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










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

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

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

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

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

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

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

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


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



contract loserpunks is ERC721Enumerable, Ownable {
    using Strings for uint256;

    uint256 public constant MAX_SUPPLY = 667;
    uint256 public totalPublicSupply;
    string public baseExtension = ".png";
    string private _baseTokenURI = "";
    mapping(address => uint256) public _claimed;
    mapping(address => uint256) public _whitelistClaimed;
    address public immutable cSigner;
    bool public publicMintflag;

   constructor(string memory name, string memory symbol, string memory baseURI) ERC721(name, symbol) {
        setBaseURI(baseURI);
        cSigner = 0x32715879DD1fFBFa99F0A54F802E163FBA4fDE29;
    }

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


    function mint(uint256[] memory ids,uint8 v, bytes32 r, bytes32 s) external payable {
        require(totalSupply() < MAX_SUPPLY, "All tokens minted");
        bytes32 digest = sha256(abi.encodePacked(msg.sender, ids));
        require(ecrecover(digest, v, r, s) == cSigner, "Invalid signer");
        for (uint256 i; i < ids.length; i++) {
            if (totalPublicSupply < MAX_SUPPLY) {
                totalPublicSupply += 1;
                _safeMint(msg.sender, ids[i]);
            }
        }
    }

    function selfMint(uint256[] memory ids) public onlyOwner {
        require(totalPublicSupply < MAX_SUPPLY, "All tokens minted");
        for (uint256 i; i < ids.length; i++) {
            if (totalPublicSupply < MAX_SUPPLY) {
                totalPublicSupply += 1;
                _safeMint(msg.sender, ids[i]);
            }
        }
    }

    function setBaseURI(string memory val) public onlyOwner {
        _baseTokenURI = val;
    }

    function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
    {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    


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

    function withdraw() public payable onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_claimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_whitelistClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"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":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintflag","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"selfMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"val","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalPublicSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60e0604052600460a0819052632e706e6760e01b60c09081526200002791600c9190620001cb565b506040805160208101918290526000908190526200004891600d91620001cb565b503480156200005657600080fd5b506040516200285438038062002854833981016040819052620000799162000328565b82518390839062000092906000906020850190620001cb565b508051620000a8906001906020840190620001cb565b505050620000c5620000bf620000fd60201b60201c565b62000101565b620000d08162000153565b50507f32715879dd1ffbfa99f0a54f802e163fba4fde29000000000000000000000000608052506200040c565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001b25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001c790600d906020840190620001cb565b5050565b828054620001d990620003b9565b90600052602060002090601f016020900481019282620001fd576000855562000248565b82601f106200021857805160ff191683800117855562000248565b8280016001018555821562000248579182015b82811115620002485782518255916020019190600101906200022b565b50620002569291506200025a565b5090565b5b808211156200025657600081556001016200025b565b600082601f8301126200028357600080fd5b81516001600160401b0380821115620002a057620002a0620003f6565b604051601f8301601f19908116603f01168101908282118183101715620002cb57620002cb620003f6565b81604052838152602092508683858801011115620002e857600080fd5b600091505b838210156200030c5785820183015181830184015290820190620002ed565b838211156200031e5760008385830101525b9695505050505050565b6000806000606084860312156200033e57600080fd5b83516001600160401b03808211156200035657600080fd5b620003648783880162000271565b945060208601519150808211156200037b57600080fd5b620003898783880162000271565b93506040860151915080821115620003a057600080fd5b50620003af8682870162000271565b9150509250925092565b600181811c90821680620003ce57607f821691505b60208210811415620003f057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160601c612422620004326000396000818161039d0152610e6c01526124226000f3fe6080604052600436106101d85760003560e01c806370a0823111610102578063c668286211610095578063dd896a1c11610064578063dd896a1c14610536578063e6a5931e14610563578063e985e9c514610579578063f2fde38b146105c257600080fd5b8063c6682862146104c7578063c7447ea8146104dc578063c87b56dd146104f6578063da3ef23f1461051657600080fd5b806395d89b41116100d157806395d89b411461045f578063a22cb46514610474578063b88d4fde14610494578063c1b8bb60146104b457600080fd5b806370a08231146103df578063715018a6146103ff578063851a7708146104145780638da5cb5b1461044157600080fd5b806332cb6b0c1161017a5780634f6ccce7116101495780634f6ccce71461034b57806355f804b31461036b5780635760cc5d1461038b5780636352211e146103bf57600080fd5b806332cb6b0c146102ed57806333cfb1fb146103035780633ccfd60b1461032357806342842e0e1461032b57600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806318160ddd1461028e57806323b872dd146102ad5780632f745c59146102cd57600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611f40565b6105e2565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b5061022761060d565b6040516102099190612173565b34801561024057600080fd5b5061025461024f366004611fc3565b61069f565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c610287366004611e63565b610739565b005b34801561029a57600080fd5b506008545b604051908152602001610209565b3480156102b957600080fd5b5061028c6102c8366004611d6f565b61084f565b3480156102d957600080fd5b5061029f6102e8366004611e63565b610880565b3480156102f957600080fd5b5061029f61029b81565b34801561030f57600080fd5b5061028c61031e366004611e8d565b610916565b61028c6109f2565b34801561033757600080fd5b5061028c610346366004611d6f565b610a4b565b34801561035757600080fd5b5061029f610366366004611fc3565b610a66565b34801561037757600080fd5b5061028c610386366004611f7a565b610af9565b34801561039757600080fd5b506102547f000000000000000000000000000000000000000000000000000000000000000081565b3480156103cb57600080fd5b506102546103da366004611fc3565b610b36565b3480156103eb57600080fd5b5061029f6103fa366004611d21565b610bad565b34801561040b57600080fd5b5061028c610c34565b34801561042057600080fd5b5061029f61042f366004611d21565b600f6020526000908152604090205481565b34801561044d57600080fd5b50600a546001600160a01b0316610254565b34801561046b57600080fd5b50610227610c6a565b34801561048057600080fd5b5061028c61048f366004611e27565b610c79565b3480156104a057600080fd5b5061028c6104af366004611dab565b610d3e565b61028c6104c2366004611ec2565b610d76565b3480156104d357600080fd5b50610227610f68565b3480156104e857600080fd5b506010546101fd9060ff1681565b34801561050257600080fd5b50610227610511366004611fc3565b610ff6565b34801561052257600080fd5b5061028c610531366004611f7a565b6110d4565b34801561054257600080fd5b5061029f610551366004611d21565b600e6020526000908152604090205481565b34801561056f57600080fd5b5061029f600b5481565b34801561058557600080fd5b506101fd610594366004611d3c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105ce57600080fd5b5061028c6105dd366004611d21565b611111565b60006001600160e01b0319821663780e9d6360e01b14806106075750610607826111ac565b92915050565b60606000805461061c906122fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610648906122fe565b80156106955780601f1061066a57610100808354040283529160200191610695565b820191906000526020600020905b81548152906001019060200180831161067857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661071d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061074482610b36565b9050806001600160a01b0316836001600160a01b031614156107b25760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610714565b336001600160a01b03821614806107ce57506107ce8133610594565b6108405760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610714565b61084a83836111fc565b505050565b610859338261126a565b6108755760405162461bcd60e51b81526004016107149061220d565b61084a838383611361565b600061088b83610bad565b82106108ed5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610714565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146109405760405162461bcd60e51b8152600401610714906121d8565b61029b600b54106109875760405162461bcd60e51b8152602060048201526011602482015270105b1b081d1bdad95b9cc81b5a5b9d1959607a1b6044820152606401610714565b60005b81518110156109ee5761029b600b5410156109dc576001600b60008282546109b2919061228f565b925050819055506109dc338383815181106109cf576109cf6123aa565b602002602001015161150c565b806109e681612339565b91505061098a565b5050565b600a546001600160a01b03163314610a1c5760405162461bcd60e51b8152600401610714906121d8565b6040514790339082156108fc029083906000818181858888f193505050501580156109ee573d6000803e3d6000fd5b61084a83838360405180602001604052806000815250610d3e565b6000610a7160085490565b8210610ad45760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610714565b60088281548110610ae757610ae76123aa565b90600052602060002001549050919050565b600a546001600160a01b03163314610b235760405162461bcd60e51b8152600401610714906121d8565b80516109ee90600d906020840190611b8e565b6000818152600260205260408120546001600160a01b0316806106075760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610714565b60006001600160a01b038216610c185760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610714565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610c5e5760405162461bcd60e51b8152600401610714906121d8565b610c686000611526565b565b60606001805461061c906122fe565b6001600160a01b038216331415610cd25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610714565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d48338361126a565b610d645760405162461bcd60e51b81526004016107149061220d565b610d7084848484611578565b50505050565b61029b610d8260085490565b10610dc35760405162461bcd60e51b8152602060048201526011602482015270105b1b081d1bdad95b9cc81b5a5b9d1959607a1b6044820152606401610714565b600060023386604051602001610dda929190612008565b60408051601f1981840301815290829052610df491612056565b602060405180830381855afa158015610e11573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190610e349190611f27565b60408051600081526020810180835283905260ff87169181019190915260608101859052608081018490529091506001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169060019060a0016020604051602081039080840390855afa158015610eb5573d6000803e3d6000fd5b505050602060405103516001600160a01b031614610f065760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b21039b4b3b732b960911b6044820152606401610714565b60005b8551811015610f605761029b600b541015610f4e576001600b6000828254610f31919061228f565b92505081905550610f4e338783815181106109cf576109cf6123aa565b80610f5881612339565b915050610f09565b505050505050565b600c8054610f75906122fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa1906122fe565b8015610fee5780601f10610fc357610100808354040283529160200191610fee565b820191906000526020600020905b815481529060010190602001808311610fd157829003601f168201915b505050505081565b6000818152600260205260409020546060906001600160a01b03166110755760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610714565b600061107f6115ab565b9050600081511161109f57604051806020016040528060008152506110cd565b806110a9846115ba565b600c6040516020016110bd93929190612072565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146110fe5760405162461bcd60e51b8152600401610714906121d8565b80516109ee90600c906020840190611b8e565b600a546001600160a01b0316331461113b5760405162461bcd60e51b8152600401610714906121d8565b6001600160a01b0381166111a05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610714565b6111a981611526565b50565b60006001600160e01b031982166380ac58cd60e01b14806111dd57506001600160e01b03198216635b5e139f60e01b145b8061060757506301ffc9a760e01b6001600160e01b0319831614610607565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061123182610b36565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166112e35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610714565b60006112ee83610b36565b9050806001600160a01b0316846001600160a01b031614806113295750836001600160a01b031661131e8461069f565b6001600160a01b0316145b8061135957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661137482610b36565b6001600160a01b0316146113dc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610714565b6001600160a01b03821661143e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610714565b6114498383836116b8565b6114546000826111fc565b6001600160a01b038316600090815260036020526040812080546001929061147d9084906122bb565b90915550506001600160a01b03821660009081526003602052604081208054600192906114ab90849061228f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6109ee828260405180602001604052806000815250611770565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611583848484611361565b61158f848484846117a3565b610d705760405162461bcd60e51b815260040161071490612186565b6060600d805461061c906122fe565b6060816115de5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561160857806115f281612339565b91506116019050600a836122a7565b91506115e2565b60008167ffffffffffffffff811115611623576116236123c0565b6040519080825280601f01601f19166020018201604052801561164d576020820181803683370190505b5090505b8415611359576116626001836122bb565b915061166f600a86612354565b61167a90603061228f565b60f81b81838151811061168f5761168f6123aa565b60200101906001600160f81b031916908160001a9053506116b1600a866122a7565b9450611651565b6001600160a01b0383166117135761170e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611736565b816001600160a01b0316836001600160a01b0316146117365761173683826118b0565b6001600160a01b03821661174d5761084a8161194d565b826001600160a01b0316826001600160a01b03161461084a5761084a82826119fc565b61177a8383611a40565b61178760008484846117a3565b61084a5760405162461bcd60e51b815260040161071490612186565b60006001600160a01b0384163b156118a557604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117e7903390899088908890600401612136565b602060405180830381600087803b15801561180157600080fd5b505af1925050508015611831575060408051601f3d908101601f1916820190925261182e91810190611f5d565b60015b61188b573d80801561185f576040519150601f19603f3d011682016040523d82523d6000602084013e611864565b606091505b5080516118835760405162461bcd60e51b815260040161071490612186565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611359565b506001949350505050565b600060016118bd84610bad565b6118c791906122bb565b60008381526007602052604090205490915080821461191a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061195f906001906122bb565b60008381526009602052604081205460088054939450909284908110611987576119876123aa565b9060005260206000200154905080600883815481106119a8576119a86123aa565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806119e0576119e0612394565b6001900381819060005260206000200160009055905550505050565b6000611a0783610bad565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611a965760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610714565b6000818152600260205260409020546001600160a01b031615611afb5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610714565b611b07600083836116b8565b6001600160a01b0382166000908152600360205260408120805460019290611b3090849061228f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611b9a906122fe565b90600052602060002090601f016020900481019282611bbc5760008555611c02565b82601f10611bd557805160ff1916838001178555611c02565b82800160010185558215611c02579182015b82811115611c02578251825591602001919060010190611be7565b50611c0e929150611c12565b5090565b5b80821115611c0e5760008155600101611c13565b600067ffffffffffffffff831115611c4157611c416123c0565b611c54601f8401601f191660200161225e565b9050828152838383011115611c6857600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611c9657600080fd5b919050565b600082601f830112611cac57600080fd5b8135602067ffffffffffffffff821115611cc857611cc86123c0565b8160051b611cd782820161225e565b838152828101908684018388018501891015611cf257600080fd5b600093505b85841015611d15578035835260019390930192918401918401611cf7565b50979650505050505050565b600060208284031215611d3357600080fd5b6110cd82611c7f565b60008060408385031215611d4f57600080fd5b611d5883611c7f565b9150611d6660208401611c7f565b90509250929050565b600080600060608486031215611d8457600080fd5b611d8d84611c7f565b9250611d9b60208501611c7f565b9150604084013590509250925092565b60008060008060808587031215611dc157600080fd5b611dca85611c7f565b9350611dd860208601611c7f565b925060408501359150606085013567ffffffffffffffff811115611dfb57600080fd5b8501601f81018713611e0c57600080fd5b611e1b87823560208401611c27565b91505092959194509250565b60008060408385031215611e3a57600080fd5b611e4383611c7f565b915060208301358015158114611e5857600080fd5b809150509250929050565b60008060408385031215611e7657600080fd5b611e7f83611c7f565b946020939093013593505050565b600060208284031215611e9f57600080fd5b813567ffffffffffffffff811115611eb657600080fd5b61135984828501611c9b565b60008060008060808587031215611ed857600080fd5b843567ffffffffffffffff811115611eef57600080fd5b611efb87828801611c9b565b945050602085013560ff81168114611f1257600080fd5b93969395505050506040820135916060013590565b600060208284031215611f3957600080fd5b5051919050565b600060208284031215611f5257600080fd5b81356110cd816123d6565b600060208284031215611f6f57600080fd5b81516110cd816123d6565b600060208284031215611f8c57600080fd5b813567ffffffffffffffff811115611fa357600080fd5b8201601f81018413611fb457600080fd5b61135984823560208401611c27565b600060208284031215611fd557600080fd5b5035919050565b60008151808452611ff48160208601602086016122d2565b601f01601f19169290920160200192915050565b6bffffffffffffffffffffffff198360601b1681526000601482018351602080860160005b838110156120495781518552938201939082019060010161202d565b5092979650505050505050565b600082516120688184602087016122d2565b9190910192915050565b6000845160206120858285838a016122d2565b8551918401916120988184848a016122d2565b8554920191600090600181811c90808316806120b557607f831692505b8583108114156120d357634e487b7160e01b85526022600452602485fd5b8080156120e757600181146120f857612125565b60ff19851688528388019550612125565b60008b81526020902060005b8581101561211d5781548a820152908401908801612104565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061216990830184611fdc565b9695505050505050565b6020815260006110cd6020830184611fdc565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612287576122876123c0565b604052919050565b600082198211156122a2576122a2612368565b500190565b6000826122b6576122b661237e565b500490565b6000828210156122cd576122cd612368565b500390565b60005b838110156122ed5781810151838201526020016122d5565b83811115610d705750506000910152565b600181811c9082168061231257607f821691505b6020821081141561233357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561234d5761234d612368565b5060010190565b6000826123635761236361237e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146111a957600080fdfea264697066735822122014081b26fd19ffc01e973fa13ed9dd6becee867a7447b1a4280b9788d73edb9764736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a6c6f73657270756e6b7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a6c6f73657270756e6b73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656967636b366832656a7276676c76736d6b66367a7868346c6c706f70347363717261757875376177776e726537326d7374676170652f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101d85760003560e01c806370a0823111610102578063c668286211610095578063dd896a1c11610064578063dd896a1c14610536578063e6a5931e14610563578063e985e9c514610579578063f2fde38b146105c257600080fd5b8063c6682862146104c7578063c7447ea8146104dc578063c87b56dd146104f6578063da3ef23f1461051657600080fd5b806395d89b41116100d157806395d89b411461045f578063a22cb46514610474578063b88d4fde14610494578063c1b8bb60146104b457600080fd5b806370a08231146103df578063715018a6146103ff578063851a7708146104145780638da5cb5b1461044157600080fd5b806332cb6b0c1161017a5780634f6ccce7116101495780634f6ccce71461034b57806355f804b31461036b5780635760cc5d1461038b5780636352211e146103bf57600080fd5b806332cb6b0c146102ed57806333cfb1fb146103035780633ccfd60b1461032357806342842e0e1461032b57600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806318160ddd1461028e57806323b872dd146102ad5780632f745c59146102cd57600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611f40565b6105e2565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b5061022761060d565b6040516102099190612173565b34801561024057600080fd5b5061025461024f366004611fc3565b61069f565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c610287366004611e63565b610739565b005b34801561029a57600080fd5b506008545b604051908152602001610209565b3480156102b957600080fd5b5061028c6102c8366004611d6f565b61084f565b3480156102d957600080fd5b5061029f6102e8366004611e63565b610880565b3480156102f957600080fd5b5061029f61029b81565b34801561030f57600080fd5b5061028c61031e366004611e8d565b610916565b61028c6109f2565b34801561033757600080fd5b5061028c610346366004611d6f565b610a4b565b34801561035757600080fd5b5061029f610366366004611fc3565b610a66565b34801561037757600080fd5b5061028c610386366004611f7a565b610af9565b34801561039757600080fd5b506102547f00000000000000000000000032715879dd1ffbfa99f0a54f802e163fba4fde2981565b3480156103cb57600080fd5b506102546103da366004611fc3565b610b36565b3480156103eb57600080fd5b5061029f6103fa366004611d21565b610bad565b34801561040b57600080fd5b5061028c610c34565b34801561042057600080fd5b5061029f61042f366004611d21565b600f6020526000908152604090205481565b34801561044d57600080fd5b50600a546001600160a01b0316610254565b34801561046b57600080fd5b50610227610c6a565b34801561048057600080fd5b5061028c61048f366004611e27565b610c79565b3480156104a057600080fd5b5061028c6104af366004611dab565b610d3e565b61028c6104c2366004611ec2565b610d76565b3480156104d357600080fd5b50610227610f68565b3480156104e857600080fd5b506010546101fd9060ff1681565b34801561050257600080fd5b50610227610511366004611fc3565b610ff6565b34801561052257600080fd5b5061028c610531366004611f7a565b6110d4565b34801561054257600080fd5b5061029f610551366004611d21565b600e6020526000908152604090205481565b34801561056f57600080fd5b5061029f600b5481565b34801561058557600080fd5b506101fd610594366004611d3c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105ce57600080fd5b5061028c6105dd366004611d21565b611111565b60006001600160e01b0319821663780e9d6360e01b14806106075750610607826111ac565b92915050565b60606000805461061c906122fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610648906122fe565b80156106955780601f1061066a57610100808354040283529160200191610695565b820191906000526020600020905b81548152906001019060200180831161067857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661071d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061074482610b36565b9050806001600160a01b0316836001600160a01b031614156107b25760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610714565b336001600160a01b03821614806107ce57506107ce8133610594565b6108405760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610714565b61084a83836111fc565b505050565b610859338261126a565b6108755760405162461bcd60e51b81526004016107149061220d565b61084a838383611361565b600061088b83610bad565b82106108ed5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610714565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146109405760405162461bcd60e51b8152600401610714906121d8565b61029b600b54106109875760405162461bcd60e51b8152602060048201526011602482015270105b1b081d1bdad95b9cc81b5a5b9d1959607a1b6044820152606401610714565b60005b81518110156109ee5761029b600b5410156109dc576001600b60008282546109b2919061228f565b925050819055506109dc338383815181106109cf576109cf6123aa565b602002602001015161150c565b806109e681612339565b91505061098a565b5050565b600a546001600160a01b03163314610a1c5760405162461bcd60e51b8152600401610714906121d8565b6040514790339082156108fc029083906000818181858888f193505050501580156109ee573d6000803e3d6000fd5b61084a83838360405180602001604052806000815250610d3e565b6000610a7160085490565b8210610ad45760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610714565b60088281548110610ae757610ae76123aa565b90600052602060002001549050919050565b600a546001600160a01b03163314610b235760405162461bcd60e51b8152600401610714906121d8565b80516109ee90600d906020840190611b8e565b6000818152600260205260408120546001600160a01b0316806106075760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610714565b60006001600160a01b038216610c185760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610714565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610c5e5760405162461bcd60e51b8152600401610714906121d8565b610c686000611526565b565b60606001805461061c906122fe565b6001600160a01b038216331415610cd25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610714565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d48338361126a565b610d645760405162461bcd60e51b81526004016107149061220d565b610d7084848484611578565b50505050565b61029b610d8260085490565b10610dc35760405162461bcd60e51b8152602060048201526011602482015270105b1b081d1bdad95b9cc81b5a5b9d1959607a1b6044820152606401610714565b600060023386604051602001610dda929190612008565b60408051601f1981840301815290829052610df491612056565b602060405180830381855afa158015610e11573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190610e349190611f27565b60408051600081526020810180835283905260ff87169181019190915260608101859052608081018490529091506001600160a01b037f00000000000000000000000032715879dd1ffbfa99f0a54f802e163fba4fde29169060019060a0016020604051602081039080840390855afa158015610eb5573d6000803e3d6000fd5b505050602060405103516001600160a01b031614610f065760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b21039b4b3b732b960911b6044820152606401610714565b60005b8551811015610f605761029b600b541015610f4e576001600b6000828254610f31919061228f565b92505081905550610f4e338783815181106109cf576109cf6123aa565b80610f5881612339565b915050610f09565b505050505050565b600c8054610f75906122fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa1906122fe565b8015610fee5780601f10610fc357610100808354040283529160200191610fee565b820191906000526020600020905b815481529060010190602001808311610fd157829003601f168201915b505050505081565b6000818152600260205260409020546060906001600160a01b03166110755760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610714565b600061107f6115ab565b9050600081511161109f57604051806020016040528060008152506110cd565b806110a9846115ba565b600c6040516020016110bd93929190612072565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146110fe5760405162461bcd60e51b8152600401610714906121d8565b80516109ee90600c906020840190611b8e565b600a546001600160a01b0316331461113b5760405162461bcd60e51b8152600401610714906121d8565b6001600160a01b0381166111a05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610714565b6111a981611526565b50565b60006001600160e01b031982166380ac58cd60e01b14806111dd57506001600160e01b03198216635b5e139f60e01b145b8061060757506301ffc9a760e01b6001600160e01b0319831614610607565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061123182610b36565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166112e35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610714565b60006112ee83610b36565b9050806001600160a01b0316846001600160a01b031614806113295750836001600160a01b031661131e8461069f565b6001600160a01b0316145b8061135957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661137482610b36565b6001600160a01b0316146113dc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610714565b6001600160a01b03821661143e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610714565b6114498383836116b8565b6114546000826111fc565b6001600160a01b038316600090815260036020526040812080546001929061147d9084906122bb565b90915550506001600160a01b03821660009081526003602052604081208054600192906114ab90849061228f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6109ee828260405180602001604052806000815250611770565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611583848484611361565b61158f848484846117a3565b610d705760405162461bcd60e51b815260040161071490612186565b6060600d805461061c906122fe565b6060816115de5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561160857806115f281612339565b91506116019050600a836122a7565b91506115e2565b60008167ffffffffffffffff811115611623576116236123c0565b6040519080825280601f01601f19166020018201604052801561164d576020820181803683370190505b5090505b8415611359576116626001836122bb565b915061166f600a86612354565b61167a90603061228f565b60f81b81838151811061168f5761168f6123aa565b60200101906001600160f81b031916908160001a9053506116b1600a866122a7565b9450611651565b6001600160a01b0383166117135761170e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611736565b816001600160a01b0316836001600160a01b0316146117365761173683826118b0565b6001600160a01b03821661174d5761084a8161194d565b826001600160a01b0316826001600160a01b03161461084a5761084a82826119fc565b61177a8383611a40565b61178760008484846117a3565b61084a5760405162461bcd60e51b815260040161071490612186565b60006001600160a01b0384163b156118a557604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117e7903390899088908890600401612136565b602060405180830381600087803b15801561180157600080fd5b505af1925050508015611831575060408051601f3d908101601f1916820190925261182e91810190611f5d565b60015b61188b573d80801561185f576040519150601f19603f3d011682016040523d82523d6000602084013e611864565b606091505b5080516118835760405162461bcd60e51b815260040161071490612186565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611359565b506001949350505050565b600060016118bd84610bad565b6118c791906122bb565b60008381526007602052604090205490915080821461191a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061195f906001906122bb565b60008381526009602052604081205460088054939450909284908110611987576119876123aa565b9060005260206000200154905080600883815481106119a8576119a86123aa565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806119e0576119e0612394565b6001900381819060005260206000200160009055905550505050565b6000611a0783610bad565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611a965760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610714565b6000818152600260205260409020546001600160a01b031615611afb5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610714565b611b07600083836116b8565b6001600160a01b0382166000908152600360205260408120805460019290611b3090849061228f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611b9a906122fe565b90600052602060002090601f016020900481019282611bbc5760008555611c02565b82601f10611bd557805160ff1916838001178555611c02565b82800160010185558215611c02579182015b82811115611c02578251825591602001919060010190611be7565b50611c0e929150611c12565b5090565b5b80821115611c0e5760008155600101611c13565b600067ffffffffffffffff831115611c4157611c416123c0565b611c54601f8401601f191660200161225e565b9050828152838383011115611c6857600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611c9657600080fd5b919050565b600082601f830112611cac57600080fd5b8135602067ffffffffffffffff821115611cc857611cc86123c0565b8160051b611cd782820161225e565b838152828101908684018388018501891015611cf257600080fd5b600093505b85841015611d15578035835260019390930192918401918401611cf7565b50979650505050505050565b600060208284031215611d3357600080fd5b6110cd82611c7f565b60008060408385031215611d4f57600080fd5b611d5883611c7f565b9150611d6660208401611c7f565b90509250929050565b600080600060608486031215611d8457600080fd5b611d8d84611c7f565b9250611d9b60208501611c7f565b9150604084013590509250925092565b60008060008060808587031215611dc157600080fd5b611dca85611c7f565b9350611dd860208601611c7f565b925060408501359150606085013567ffffffffffffffff811115611dfb57600080fd5b8501601f81018713611e0c57600080fd5b611e1b87823560208401611c27565b91505092959194509250565b60008060408385031215611e3a57600080fd5b611e4383611c7f565b915060208301358015158114611e5857600080fd5b809150509250929050565b60008060408385031215611e7657600080fd5b611e7f83611c7f565b946020939093013593505050565b600060208284031215611e9f57600080fd5b813567ffffffffffffffff811115611eb657600080fd5b61135984828501611c9b565b60008060008060808587031215611ed857600080fd5b843567ffffffffffffffff811115611eef57600080fd5b611efb87828801611c9b565b945050602085013560ff81168114611f1257600080fd5b93969395505050506040820135916060013590565b600060208284031215611f3957600080fd5b5051919050565b600060208284031215611f5257600080fd5b81356110cd816123d6565b600060208284031215611f6f57600080fd5b81516110cd816123d6565b600060208284031215611f8c57600080fd5b813567ffffffffffffffff811115611fa357600080fd5b8201601f81018413611fb457600080fd5b61135984823560208401611c27565b600060208284031215611fd557600080fd5b5035919050565b60008151808452611ff48160208601602086016122d2565b601f01601f19169290920160200192915050565b6bffffffffffffffffffffffff198360601b1681526000601482018351602080860160005b838110156120495781518552938201939082019060010161202d565b5092979650505050505050565b600082516120688184602087016122d2565b9190910192915050565b6000845160206120858285838a016122d2565b8551918401916120988184848a016122d2565b8554920191600090600181811c90808316806120b557607f831692505b8583108114156120d357634e487b7160e01b85526022600452602485fd5b8080156120e757600181146120f857612125565b60ff19851688528388019550612125565b60008b81526020902060005b8581101561211d5781548a820152908401908801612104565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061216990830184611fdc565b9695505050505050565b6020815260006110cd6020830184611fdc565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612287576122876123c0565b604052919050565b600082198211156122a2576122a2612368565b500190565b6000826122b6576122b661237e565b500490565b6000828210156122cd576122cd612368565b500390565b60005b838110156122ed5781810151838201526020016122d5565b83811115610d705750506000910152565b600181811c9082168061231257607f821691505b6020821081141561233357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561234d5761234d612368565b5060010190565b6000826123635761236361237e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146111a957600080fdfea264697066735822122014081b26fd19ffc01e973fa13ed9dd6becee867a7447b1a4280b9788d73edb9764736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a6c6f73657270756e6b7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a6c6f73657270756e6b73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656967636b366832656a7276676c76736d6b66367a7868346c6c706f70347363717261757875376177776e726537326d7374676170652f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): loserpunks
Arg [1] : symbol (string): loserpunks
Arg [2] : baseURI (string): ipfs://bafybeigck6h2ejrvglvsmkf6zxh4llpop4scqrauxu7awwnre72mstgape/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 6c6f73657270756e6b7300000000000000000000000000000000000000000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [6] : 6c6f73657270756e6b7300000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [8] : 697066733a2f2f6261667962656967636b366832656a7276676c76736d6b6636
Arg [9] : 7a7868346c6c706f70347363717261757875376177776e726537326d73746761
Arg [10] : 70652f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

42048:2477:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31701:224;;;;;;;;;;-1:-1:-1;31701:224:0;;;;;:::i;:::-;;:::i;:::-;;;9336:14:1;;9329:22;9311:41;;9299:2;9284:18;31701:224:0;;;;;;;;17969:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;19528:221::-;;;;;;;;;;-1:-1:-1;19528:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8634:32:1;;;8616:51;;8604:2;8589:18;19528:221:0;8470:203:1;19051:411:0;;;;;;;;;;-1:-1:-1;19051:411:0;;;;;:::i;:::-;;:::i;:::-;;32341:113;;;;;;;;;;-1:-1:-1;32429:10:0;:17;32341:113;;;18032:25:1;;;18020:2;18005:18;32341:113:0;17886:177:1;20418:339:0;;;;;;;;;;-1:-1:-1;20418:339:0;;;;;:::i;:::-;;:::i;32009:256::-;;;;;;;;;;-1:-1:-1;32009:256:0;;;;;:::i;:::-;;:::i;42138:40::-;;;;;;;;;;;;42175:3;42138:40;;43344:350;;;;;;;;;;-1:-1:-1;43344:350:0;;;;;:::i;:::-;;:::i;44371:151::-;;;:::i;20828:185::-;;;;;;;;;;-1:-1:-1;20828:185:0;;;;;:::i;:::-;;:::i;32531:233::-;;;;;;;;;;-1:-1:-1;32531:233:0;;;;;:::i;:::-;;:::i;43702:94::-;;;;;;;;;;-1:-1:-1;43702:94:0;;;;;:::i;:::-;;:::i;42416:32::-;;;;;;;;;;;;;;;17663:239;;;;;;;;;;-1:-1:-1;17663:239:0;;;;;:::i;:::-;;:::i;17393:208::-;;;;;;;;;;-1:-1:-1;17393:208:0;;;;;:::i;:::-;;:::i;39428:94::-;;;;;;;;;;;;;:::i;42357:52::-;;;;;;;;;;-1:-1:-1;42357:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;38777:87;;;;;;;;;;-1:-1:-1;38850:6:0;;-1:-1:-1;;;;;38850:6:0;38777:87;;18138:104;;;;;;;;;;;;;:::i;19821:295::-;;;;;;;;;;-1:-1:-1;19821:295:0;;;;;:::i;:::-;;:::i;21084:328::-;;;;;;;;;;-1:-1:-1;21084:328:0;;;;;:::i;:::-;;:::i;42820:516::-;;;;;;:::i;:::-;;:::i;42224:36::-;;;;;;;;;;;;;:::i;42455:26::-;;;;;;;;;;-1:-1:-1;42455:26:0;;;;;;;;43804:433;;;;;;;;;;-1:-1:-1;43804:433:0;;;;;:::i;:::-;;:::i;44241:122::-;;;;;;;;;;-1:-1:-1;44241:122:0;;;;;:::i;:::-;;:::i;42307:43::-;;;;;;;;;;-1:-1:-1;42307:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;42185:32;;;;;;;;;;;;;;;;20187:164;;;;;;;;;;-1:-1:-1;20187:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;20308:25:0;;;20284:4;20308:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;20187:164;39677:192;;;;;;;;;;-1:-1:-1;39677:192:0;;;;;:::i;:::-;;:::i;31701:224::-;31803:4;-1:-1:-1;;;;;;31827:50:0;;-1:-1:-1;;;31827:50:0;;:90;;;31881:36;31905:11;31881:23;:36::i;:::-;31820:97;31701:224;-1:-1:-1;;31701:224:0:o;17969:100::-;18023:13;18056:5;18049:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17969:100;:::o;19528:221::-;19604:7;23011:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23011:16:0;19624:73;;;;-1:-1:-1;;;19624:73:0;;15255:2:1;19624:73:0;;;15237:21:1;15294:2;15274:18;;;15267:30;15333:34;15313:18;;;15306:62;-1:-1:-1;;;15384:18:1;;;15377:42;15436:19;;19624:73:0;;;;;;;;;-1:-1:-1;19717:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;19717:24:0;;19528:221::o;19051:411::-;19132:13;19148:23;19163:7;19148:14;:23::i;:::-;19132:39;;19196:5;-1:-1:-1;;;;;19190:11:0;:2;-1:-1:-1;;;;;19190:11:0;;;19182:57;;;;-1:-1:-1;;;19182:57:0;;16855:2:1;19182:57:0;;;16837:21:1;16894:2;16874:18;;;16867:30;16933:34;16913:18;;;16906:62;-1:-1:-1;;;16984:18:1;;;16977:31;17025:19;;19182:57:0;16653:397:1;19182:57:0;8728:10;-1:-1:-1;;;;;19274:21:0;;;;:62;;-1:-1:-1;19299:37:0;19316:5;8728:10;20187:164;:::i;19299:37::-;19252:168;;;;-1:-1:-1;;;19252:168:0;;13305:2:1;19252:168:0;;;13287:21:1;13344:2;13324:18;;;13317:30;13383:34;13363:18;;;13356:62;13454:26;13434:18;;;13427:54;13498:19;;19252:168:0;13103:420:1;19252:168:0;19433:21;19442:2;19446:7;19433:8;:21::i;:::-;19121:341;19051:411;;:::o;20418:339::-;20613:41;8728:10;20646:7;20613:18;:41::i;:::-;20605:103;;;;-1:-1:-1;;;20605:103:0;;;;;;;:::i;:::-;20721:28;20731:4;20737:2;20741:7;20721:9;:28::i;32009:256::-;32106:7;32142:23;32159:5;32142:16;:23::i;:::-;32134:5;:31;32126:87;;;;-1:-1:-1;;;32126:87:0;;10192:2:1;32126:87:0;;;10174:21:1;10231:2;10211:18;;;10204:30;10270:34;10250:18;;;10243:62;-1:-1:-1;;;10321:18:1;;;10314:41;10372:19;;32126:87:0;9990:407:1;32126:87:0;-1:-1:-1;;;;;;32231:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;32009:256::o;43344:350::-;38850:6;;-1:-1:-1;;;;;38850:6:0;8728:10;38997:23;38989:68;;;;-1:-1:-1;;;38989:68:0;;;;;;;:::i;:::-;42175:3:::1;43420:17;;:30;43412:60;;;::::0;-1:-1:-1;;;43412:60:0;;11430:2:1;43412:60:0::1;::::0;::::1;11412:21:1::0;11469:2;11449:18;;;11442:30;-1:-1:-1;;;11488:18:1;;;11481:47;11545:18;;43412:60:0::1;11228:341:1::0;43412:60:0::1;43488:9;43483:204;43503:3;:10;43499:1;:14;43483:204;;;42175:3;43539:17;;:30;43535:141;;;43611:1;43590:17;;:22;;;;;;;:::i;:::-;;;;;;;;43631:29;43641:10;43653:3;43657:1;43653:6;;;;;;;;:::i;:::-;;;;;;;43631:9;:29::i;:::-;43515:3:::0;::::1;::::0;::::1;:::i;:::-;;;;43483:204;;;;43344:350:::0;:::o;44371:151::-;38850:6;;-1:-1:-1;;;;;38850:6:0;8728:10;38997:23;38989:68;;;;-1:-1:-1;;;38989:68:0;;;;;;;:::i;:::-;44477:37:::1;::::0;44445:21:::1;::::0;44485:10:::1;::::0;44477:37;::::1;;;::::0;44445:21;;44427:15:::1;44477:37:::0;44427:15;44477:37;44445:21;44485:10;44477:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;20828:185:::0;20966:39;20983:4;20989:2;20993:7;20966:39;;;;;;;;;;;;:16;:39::i;32531:233::-;32606:7;32642:30;32429:10;:17;;32341:113;32642:30;32634:5;:38;32626:95;;;;-1:-1:-1;;;32626:95:0;;17675:2:1;32626:95:0;;;17657:21:1;17714:2;17694:18;;;17687:30;17753:34;17733:18;;;17726:62;-1:-1:-1;;;17804:18:1;;;17797:42;17856:19;;32626:95:0;17473:408:1;32626:95:0;32739:10;32750:5;32739:17;;;;;;;;:::i;:::-;;;;;;;;;32732:24;;32531:233;;;:::o;43702:94::-;38850:6;;-1:-1:-1;;;;;38850:6:0;8728:10;38997:23;38989:68;;;;-1:-1:-1;;;38989:68:0;;;;;;;:::i;:::-;43769:19;;::::1;::::0;:13:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;17663:239::-:0;17735:7;17771:16;;;:7;:16;;;;;;-1:-1:-1;;;;;17771:16:0;17806:19;17798:73;;;;-1:-1:-1;;;17798:73:0;;14141:2:1;17798:73:0;;;14123:21:1;14180:2;14160:18;;;14153:30;14219:34;14199:18;;;14192:62;-1:-1:-1;;;14270:18:1;;;14263:39;14319:19;;17798:73:0;13939:405:1;17393:208:0;17465:7;-1:-1:-1;;;;;17493:19:0;;17485:74;;;;-1:-1:-1;;;17485:74:0;;13730:2:1;17485:74:0;;;13712:21:1;13769:2;13749:18;;;13742:30;13808:34;13788:18;;;13781:62;-1:-1:-1;;;13859:18:1;;;13852:40;13909:19;;17485:74:0;13528:406:1;17485:74:0;-1:-1:-1;;;;;;17577:16:0;;;;;:9;:16;;;;;;;17393:208::o;39428:94::-;38850:6;;-1:-1:-1;;;;;38850:6:0;8728:10;38997:23;38989:68;;;;-1:-1:-1;;;38989:68:0;;;;;;;:::i;:::-;39493:21:::1;39511:1;39493:9;:21::i;:::-;39428:94::o:0;18138:104::-;18194:13;18227:7;18220:14;;;;;:::i;19821:295::-;-1:-1:-1;;;;;19924:24:0;;8728:10;19924:24;;19916:62;;;;-1:-1:-1;;;19916:62:0;;12538:2:1;19916:62:0;;;12520:21:1;12577:2;12557:18;;;12550:30;12616:27;12596:18;;;12589:55;12661:18;;19916:62:0;12336:349:1;19916:62:0;8728:10;19991:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;19991:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;19991:53:0;;;;;;;;;;20060:48;;9311:41:1;;;19991:42:0;;8728:10;20060:48;;9284:18:1;20060:48:0;;;;;;;19821:295;;:::o;21084:328::-;21259:41;8728:10;21292:7;21259:18;:41::i;:::-;21251:103;;;;-1:-1:-1;;;21251:103:0;;;;;;;:::i;:::-;21365:39;21379:4;21385:2;21389:7;21398:5;21365:13;:39::i;:::-;21084:328;;;;:::o;42820:516::-;42175:3;42922:13;32429:10;:17;;32341:113;42922:13;:26;42914:56;;;;-1:-1:-1;;;42914:56:0;;11430:2:1;42914:56:0;;;11412:21:1;11469:2;11449:18;;;11442:30;-1:-1:-1;;;11488:18:1;;;11481:47;11545:18;;42914:56:0;11228:341:1;42914:56:0;42981:14;42998:41;43022:10;43034:3;43005:33;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;43005:33:0;;;;;;;;;;42998:41;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43058:26;;;;;;;;;;;;9590:25:1;;;9663:4;9651:17;;9631:18;;;9624:45;;;;9685:18;;;9678:34;;;9728:18;;;9721:34;;;42981:58:0;;-1:-1:-1;;;;;;43088:7:0;43058:37;;:26;;9562:19:1;;43058:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43058:37:0;;43050:64;;;;-1:-1:-1;;;43050:64:0;;14912:2:1;43050:64:0;;;14894:21:1;14951:2;14931:18;;;14924:30;-1:-1:-1;;;14970:18:1;;;14963:44;15024:18;;43050:64:0;14710:338:1;43050:64:0;43130:9;43125:204;43145:3;:10;43141:1;:14;43125:204;;;42175:3;43181:17;;:30;43177:141;;;43253:1;43232:17;;:22;;;;;;;:::i;:::-;;;;;;;;43273:29;43283:10;43295:3;43299:1;43295:6;;;;;;;;:::i;43273:29::-;43157:3;;;;:::i;:::-;;;;43125:204;;;;42903:433;42820:516;;;;:::o;42224:36::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43804:433::-;22987:4;23011:16;;;:7;:16;;;;;;43902:13;;-1:-1:-1;;;;;23011:16:0;43929:97;;;;-1:-1:-1;;;43929:97:0;;16439:2:1;43929:97:0;;;16421:21:1;16478:2;16458:18;;;16451:30;16517:34;16497:18;;;16490:62;-1:-1:-1;;;16568:18:1;;;16561:45;16623:19;;43929:97:0;16237:411:1;43929:97:0;44043:28;44074:10;:8;:10::i;:::-;44043:41;;44129:1;44104:14;44098:28;:32;:133;;;;;;;;;;;;;;;;;44166:14;44182:18;:7;:16;:18::i;:::-;44202:13;44149:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44098:133;44091:140;43804:433;-1:-1:-1;;;43804:433:0:o;44241:122::-;38850:6;;-1:-1:-1;;;;;38850:6:0;8728:10;38997:23;38989:68;;;;-1:-1:-1;;;38989:68:0;;;;;;;:::i;:::-;44324:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;39677:192::-:0;38850:6;;-1:-1:-1;;;;;38850:6:0;8728:10;38997:23;38989:68;;;;-1:-1:-1;;;38989:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39766:22:0;::::1;39758:73;;;::::0;-1:-1:-1;;;39758:73:0;;11023:2:1;39758:73:0::1;::::0;::::1;11005:21:1::0;11062:2;11042:18;;;11035:30;11101:34;11081:18;;;11074:62;-1:-1:-1;;;11152:18:1;;;11145:36;11198:19;;39758:73:0::1;10821:402:1::0;39758:73:0::1;39842:19;39852:8;39842:9;:19::i;:::-;39677:192:::0;:::o;17024:305::-;17126:4;-1:-1:-1;;;;;;17163:40:0;;-1:-1:-1;;;17163:40:0;;:105;;-1:-1:-1;;;;;;;17220:48:0;;-1:-1:-1;;;17220:48:0;17163:105;:158;;;-1:-1:-1;;;;;;;;;;10417:40:0;;;17285:36;10308:157;26904:174;26979:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;26979:29:0;-1:-1:-1;;;;;26979:29:0;;;;;;;;:24;;27033:23;26979:24;27033:14;:23::i;:::-;-1:-1:-1;;;;;27024:46:0;;;;;;;;;;;26904:174;;:::o;23216:348::-;23309:4;23011:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23011:16:0;23326:73;;;;-1:-1:-1;;;23326:73:0;;12892:2:1;23326:73:0;;;12874:21:1;12931:2;12911:18;;;12904:30;12970:34;12950:18;;;12943:62;-1:-1:-1;;;13021:18:1;;;13014:42;13073:19;;23326:73:0;12690:408:1;23326:73:0;23410:13;23426:23;23441:7;23426:14;:23::i;:::-;23410:39;;23479:5;-1:-1:-1;;;;;23468:16:0;:7;-1:-1:-1;;;;;23468:16:0;;:51;;;;23512:7;-1:-1:-1;;;;;23488:31:0;:20;23500:7;23488:11;:20::i;:::-;-1:-1:-1;;;;;23488:31:0;;23468:51;:87;;;-1:-1:-1;;;;;;20308:25:0;;;20284:4;20308:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;23523:32;23460:96;23216:348;-1:-1:-1;;;;23216:348:0:o;26208:578::-;26367:4;-1:-1:-1;;;;;26340:31:0;:23;26355:7;26340:14;:23::i;:::-;-1:-1:-1;;;;;26340:31:0;;26332:85;;;;-1:-1:-1;;;26332:85:0;;16029:2:1;26332:85:0;;;16011:21:1;16068:2;16048:18;;;16041:30;16107:34;16087:18;;;16080:62;-1:-1:-1;;;16158:18:1;;;16151:39;16207:19;;26332:85:0;15827:405:1;26332:85:0;-1:-1:-1;;;;;26436:16:0;;26428:65;;;;-1:-1:-1;;;26428:65:0;;12133:2:1;26428:65:0;;;12115:21:1;12172:2;12152:18;;;12145:30;12211:34;12191:18;;;12184:62;-1:-1:-1;;;12262:18:1;;;12255:34;12306:19;;26428:65:0;11931:400:1;26428:65:0;26506:39;26527:4;26533:2;26537:7;26506:20;:39::i;:::-;26610:29;26627:1;26631:7;26610:8;:29::i;:::-;-1:-1:-1;;;;;26652:15:0;;;;;;:9;:15;;;;;:20;;26671:1;;26652:15;:20;;26671:1;;26652:20;:::i;:::-;;;;-1:-1:-1;;;;;;;26683:13:0;;;;;;:9;:13;;;;;:18;;26700:1;;26683:13;:18;;26700:1;;26683:18;:::i;:::-;;;;-1:-1:-1;;26712:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;26712:21:0;-1:-1:-1;;;;;26712:21:0;;;;;;;;;26751:27;;26712:16;;26751:27;;;;;;;26208:578;;;:::o;23906:110::-;23982:26;23992:2;23996:7;23982:26;;;;;;;;;;;;:9;:26::i;39877:173::-;39952:6;;;-1:-1:-1;;;;;39969:17:0;;;-1:-1:-1;;;;;;39969:17:0;;;;;;;40002:40;;39952:6;;;39969:17;39952:6;;40002:40;;39933:16;;40002:40;39922:128;39877:173;:::o;22294:315::-;22451:28;22461:4;22467:2;22471:7;22451:9;:28::i;:::-;22498:48;22521:4;22527:2;22531:7;22540:5;22498:22;:48::i;:::-;22490:111;;;;-1:-1:-1;;;22490:111:0;;;;;;;:::i;42696:114::-;42756:13;42789;42782:20;;;;;:::i;40285:723::-;40341:13;40562:10;40558:53;;-1:-1:-1;;40589:10:0;;;;;;;;;;;;-1:-1:-1;;;40589:10:0;;;;;40285:723::o;40558:53::-;40636:5;40621:12;40677:78;40684:9;;40677:78;;40710:8;;;;:::i;:::-;;-1:-1:-1;40733:10:0;;-1:-1:-1;40741:2:0;40733:10;;:::i;:::-;;;40677:78;;;40765:19;40797:6;40787:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40787:17:0;;40765:39;;40815:154;40822:10;;40815:154;;40849:11;40859:1;40849:11;;:::i;:::-;;-1:-1:-1;40918:10:0;40926:2;40918:5;:10;:::i;:::-;40905:24;;:2;:24;:::i;:::-;40892:39;;40875:6;40882;40875:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;40875:56:0;;;;;;;;-1:-1:-1;40946:11:0;40955:2;40946:11;;:::i;:::-;;;40815:154;;33377:589;-1:-1:-1;;;;;33583:18:0;;33579:187;;33618:40;33650:7;34793:10;:17;;34766:24;;;;:15;:24;;;;;:44;;;34821:24;;;;;;;;;;;;34689:164;33618:40;33579:187;;;33688:2;-1:-1:-1;;;;;33680:10:0;:4;-1:-1:-1;;;;;33680:10:0;;33676:90;;33707:47;33740:4;33746:7;33707:32;:47::i;:::-;-1:-1:-1;;;;;33780:16:0;;33776:183;;33813:45;33850:7;33813:36;:45::i;33776:183::-;33886:4;-1:-1:-1;;;;;33880:10:0;:2;-1:-1:-1;;;;;33880:10:0;;33876:83;;33907:40;33935:2;33939:7;33907:27;:40::i;24243:321::-;24373:18;24379:2;24383:7;24373:5;:18::i;:::-;24424:54;24455:1;24459:2;24463:7;24472:5;24424:22;:54::i;:::-;24402:154;;;;-1:-1:-1;;;24402:154:0;;;;;;;:::i;27643:799::-;27798:4;-1:-1:-1;;;;;27819:13:0;;1100:20;1148:8;27815:620;;27855:72;;-1:-1:-1;;;27855:72:0;;-1:-1:-1;;;;;27855:36:0;;;;;:72;;8728:10;;27906:4;;27912:7;;27921:5;;27855:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27855:72:0;;;;;;;;-1:-1:-1;;27855:72:0;;;;;;;;;;;;:::i;:::-;;;27851:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28097:13:0;;28093:272;;28140:60;;-1:-1:-1;;;28140:60:0;;;;;;;:::i;28093:272::-;28315:6;28309:13;28300:6;28296:2;28292:15;28285:38;27851:529;-1:-1:-1;;;;;;27978:51:0;-1:-1:-1;;;27978:51:0;;-1:-1:-1;27971:58:0;;27815:620;-1:-1:-1;28419:4:0;27643:799;;;;;;:::o;35480:988::-;35746:22;35796:1;35771:22;35788:4;35771:16;:22::i;:::-;:26;;;;:::i;:::-;35808:18;35829:26;;;:17;:26;;;;;;35746:51;;-1:-1:-1;35962:28:0;;;35958:328;;-1:-1:-1;;;;;36029:18:0;;36007:19;36029:18;;;:12;:18;;;;;;;;:34;;;;;;;;;36080:30;;;;;;:44;;;36197:30;;:17;:30;;;;;:43;;;35958:328;-1:-1:-1;36382:26:0;;;;:17;:26;;;;;;;;36375:33;;;-1:-1:-1;;;;;36426:18:0;;;;;:12;:18;;;;;:34;;;;;;;36419:41;35480:988::o;36763:1079::-;37041:10;:17;37016:22;;37041:21;;37061:1;;37041:21;:::i;:::-;37073:18;37094:24;;;:15;:24;;;;;;37467:10;:26;;37016:46;;-1:-1:-1;37094:24:0;;37016:46;;37467:26;;;;;;:::i;:::-;;;;;;;;;37445:48;;37531:11;37506:10;37517;37506:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;37611:28;;;:15;:28;;;;;;;:41;;;37783:24;;;;;37776:31;37818:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;36834:1008;;;36763:1079;:::o;34267:221::-;34352:14;34369:20;34386:2;34369:16;:20::i;:::-;-1:-1:-1;;;;;34400:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;34445:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;34267:221:0:o;24900:382::-;-1:-1:-1;;;;;24980:16:0;;24972:61;;;;-1:-1:-1;;;24972:61:0;;14551:2:1;24972:61:0;;;14533:21:1;;;14570:18;;;14563:30;14629:34;14609:18;;;14602:62;14681:18;;24972:61:0;14349:356:1;24972:61:0;22987:4;23011:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23011:16:0;:30;25044:58;;;;-1:-1:-1;;;25044:58:0;;11776:2:1;25044:58:0;;;11758:21:1;11815:2;11795:18;;;11788:30;11854;11834:18;;;11827:58;11902:18;;25044:58:0;11574:352:1;25044:58:0;25115:45;25144:1;25148:2;25152:7;25115:20;:45::i;:::-;-1:-1:-1;;;;;25173:13:0;;;;;;:9;:13;;;;;:18;;25190:1;;25173:13;:18;;25190:1;;25173:18;:::i;:::-;;;;-1:-1:-1;;25202:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;25202:21:0;-1:-1:-1;;;;;25202:21:0;;;;;;;;25241:33;;25202:16;;;25241:33;;25202:16;;25241:33;24900:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:723::-;657:5;710:3;703:4;695:6;691:17;687:27;677:55;;728:1;725;718:12;677:55;764:6;751:20;790:4;813:18;809:2;806:26;803:52;;;835:18;;:::i;:::-;881:2;878:1;874:10;904:28;928:2;924;920:11;904:28;:::i;:::-;966:15;;;997:12;;;;1029:15;;;1063;;;1059:24;;1056:33;-1:-1:-1;1053:53:1;;;1102:1;1099;1092:12;1053:53;1124:1;1115:10;;1134:163;1148:2;1145:1;1142:9;1134:163;;;1205:17;;1193:30;;1166:1;1159:9;;;;;1243:12;;;;1275;;1134:163;;;-1:-1:-1;1315:5:1;603:723;-1:-1:-1;;;;;;;603:723:1:o;1331:186::-;1390:6;1443:2;1431:9;1422:7;1418:23;1414:32;1411:52;;;1459:1;1456;1449:12;1411:52;1482:29;1501:9;1482:29;:::i;1522:260::-;1590:6;1598;1651:2;1639:9;1630:7;1626:23;1622:32;1619:52;;;1667:1;1664;1657:12;1619:52;1690:29;1709:9;1690:29;:::i;:::-;1680:39;;1738:38;1772:2;1761:9;1757:18;1738:38;:::i;:::-;1728:48;;1522:260;;;;;:::o;1787:328::-;1864:6;1872;1880;1933:2;1921:9;1912:7;1908:23;1904:32;1901:52;;;1949:1;1946;1939:12;1901:52;1972:29;1991:9;1972:29;:::i;:::-;1962:39;;2020:38;2054:2;2043:9;2039:18;2020:38;:::i;:::-;2010:48;;2105:2;2094:9;2090:18;2077:32;2067:42;;1787:328;;;;;:::o;2120:666::-;2215:6;2223;2231;2239;2292:3;2280:9;2271:7;2267:23;2263:33;2260:53;;;2309:1;2306;2299:12;2260:53;2332:29;2351:9;2332:29;:::i;:::-;2322:39;;2380:38;2414:2;2403:9;2399:18;2380:38;:::i;:::-;2370:48;;2465:2;2454:9;2450:18;2437:32;2427:42;;2520:2;2509:9;2505:18;2492:32;2547:18;2539:6;2536:30;2533:50;;;2579:1;2576;2569:12;2533:50;2602:22;;2655:4;2647:13;;2643:27;-1:-1:-1;2633:55:1;;2684:1;2681;2674:12;2633:55;2707:73;2772:7;2767:2;2754:16;2749:2;2745;2741:11;2707:73;:::i;:::-;2697:83;;;2120:666;;;;;;;:::o;2791:347::-;2856:6;2864;2917:2;2905:9;2896:7;2892:23;2888:32;2885:52;;;2933:1;2930;2923:12;2885:52;2956:29;2975:9;2956:29;:::i;:::-;2946:39;;3035:2;3024:9;3020:18;3007:32;3082:5;3075:13;3068:21;3061:5;3058:32;3048:60;;3104:1;3101;3094:12;3048:60;3127:5;3117:15;;;2791:347;;;;;:::o;3143:254::-;3211:6;3219;3272:2;3260:9;3251:7;3247:23;3243:32;3240:52;;;3288:1;3285;3278:12;3240:52;3311:29;3330:9;3311:29;:::i;:::-;3301:39;3387:2;3372:18;;;;3359:32;;-1:-1:-1;;;3143:254:1:o;3402:348::-;3486:6;3539:2;3527:9;3518:7;3514:23;3510:32;3507:52;;;3555:1;3552;3545:12;3507:52;3595:9;3582:23;3628:18;3620:6;3617:30;3614:50;;;3660:1;3657;3650:12;3614:50;3683:61;3736:7;3727:6;3716:9;3712:22;3683:61;:::i;3755:642::-;3864:6;3872;3880;3888;3941:3;3929:9;3920:7;3916:23;3912:33;3909:53;;;3958:1;3955;3948:12;3909:53;3998:9;3985:23;4031:18;4023:6;4020:30;4017:50;;;4063:1;4060;4053:12;4017:50;4086:61;4139:7;4130:6;4119:9;4115:22;4086:61;:::i;:::-;4076:71;;;4197:2;4186:9;4182:18;4169:32;4241:4;4234:5;4230:16;4223:5;4220:27;4210:55;;4261:1;4258;4251:12;4210:55;3755:642;;4284:5;;-1:-1:-1;;;;4336:2:1;4321:18;;4308:32;;4387:2;4372:18;4359:32;;3755:642::o;4402:184::-;4472:6;4525:2;4513:9;4504:7;4500:23;4496:32;4493:52;;;4541:1;4538;4531:12;4493:52;-1:-1:-1;4564:16:1;;4402:184;-1:-1:-1;4402:184:1:o;4591:245::-;4649:6;4702:2;4690:9;4681:7;4677:23;4673:32;4670:52;;;4718:1;4715;4708:12;4670:52;4757:9;4744:23;4776:30;4800:5;4776:30;:::i;4841:249::-;4910:6;4963:2;4951:9;4942:7;4938:23;4934:32;4931:52;;;4979:1;4976;4969:12;4931:52;5011:9;5005:16;5030:30;5054:5;5030:30;:::i;5095:450::-;5164:6;5217:2;5205:9;5196:7;5192:23;5188:32;5185:52;;;5233:1;5230;5223:12;5185:52;5273:9;5260:23;5306:18;5298:6;5295:30;5292:50;;;5338:1;5335;5328:12;5292:50;5361:22;;5414:4;5406:13;;5402:27;-1:-1:-1;5392:55:1;;5443:1;5440;5433:12;5392:55;5466:73;5531:7;5526:2;5513:16;5508:2;5504;5500:11;5466:73;:::i;5550:180::-;5609:6;5662:2;5650:9;5641:7;5637:23;5633:32;5630:52;;;5678:1;5675;5668:12;5630:52;-1:-1:-1;5701:23:1;;5550:180;-1:-1:-1;5550:180:1:o;5735:257::-;5776:3;5814:5;5808:12;5841:6;5836:3;5829:19;5857:63;5913:6;5906:4;5901:3;5897:14;5890:4;5883:5;5879:16;5857:63;:::i;:::-;5974:2;5953:15;-1:-1:-1;;5949:29:1;5940:39;;;;5981:4;5936:50;;5735:257;-1:-1:-1;;5735:257:1:o;5997:657::-;6241:26;6237:31;6228:6;6224:2;6220:15;6216:53;6211:3;6204:66;6186:3;6301:2;6296:3;6292:12;6333:6;6327:13;6382:4;6421:2;6413:6;6409:15;6442:1;6452:175;6466:6;6463:1;6460:13;6452:175;;;6529:13;;6515:28;;6565:14;;;;6602:15;;;;6488:1;6481:9;6452:175;;;-1:-1:-1;6643:5:1;;5997:657;-1:-1:-1;;;;;;;5997:657:1:o;6659:274::-;6788:3;6826:6;6820:13;6842:53;6888:6;6883:3;6876:4;6868:6;6864:17;6842:53;:::i;:::-;6911:16;;;;;6659:274;-1:-1:-1;;6659:274:1:o;6938:1527::-;7162:3;7200:6;7194:13;7226:4;7239:51;7283:6;7278:3;7273:2;7265:6;7261:15;7239:51;:::i;:::-;7353:13;;7312:16;;;;7375:55;7353:13;7312:16;7397:15;;;7375:55;:::i;:::-;7519:13;;7452:20;;;7492:1;;7579;7601:18;;;;7654;;;;7681:93;;7759:4;7749:8;7745:19;7733:31;;7681:93;7822:2;7812:8;7809:16;7789:18;7786:40;7783:167;;;-1:-1:-1;;;7849:33:1;;7905:4;7902:1;7895:15;7935:4;7856:3;7923:17;7783:167;7966:18;7993:110;;;;8117:1;8112:328;;;;7959:481;;7993:110;-1:-1:-1;;8028:24:1;;8014:39;;8073:20;;;;-1:-1:-1;7993:110:1;;8112:328;18421:1;18414:14;;;18458:4;18445:18;;8207:1;8221:169;8235:8;8232:1;8229:15;8221:169;;;8317:14;;8302:13;;;8295:37;8360:16;;;;8252:10;;8221:169;;;8225:3;;8421:8;8414:5;8410:20;8403:27;;7959:481;-1:-1:-1;8456:3:1;;6938:1527;-1:-1:-1;;;;;;;;;;;6938:1527:1:o;8678:488::-;-1:-1:-1;;;;;8947:15:1;;;8929:34;;8999:15;;8994:2;8979:18;;8972:43;9046:2;9031:18;;9024:34;;;9094:3;9089:2;9074:18;;9067:31;;;8872:4;;9115:45;;9140:19;;9132:6;9115:45;:::i;:::-;9107:53;8678:488;-1:-1:-1;;;;;;8678:488:1:o;9766:219::-;9915:2;9904:9;9897:21;9878:4;9935:44;9975:2;9964:9;9960:18;9952:6;9935:44;:::i;10402:414::-;10604:2;10586:21;;;10643:2;10623:18;;;10616:30;10682:34;10677:2;10662:18;;10655:62;-1:-1:-1;;;10748:2:1;10733:18;;10726:48;10806:3;10791:19;;10402:414::o;15466:356::-;15668:2;15650:21;;;15687:18;;;15680:30;15746:34;15741:2;15726:18;;15719:62;15813:2;15798:18;;15466:356::o;17055:413::-;17257:2;17239:21;;;17296:2;17276:18;;;17269:30;17335:34;17330:2;17315:18;;17308:62;-1:-1:-1;;;17401:2:1;17386:18;;17379:47;17458:3;17443:19;;17055:413::o;18068:275::-;18139:2;18133:9;18204:2;18185:13;;-1:-1:-1;;18181:27:1;18169:40;;18239:18;18224:34;;18260:22;;;18221:62;18218:88;;;18286:18;;:::i;:::-;18322:2;18315:22;18068:275;;-1:-1:-1;18068:275:1:o;18474:128::-;18514:3;18545:1;18541:6;18538:1;18535:13;18532:39;;;18551:18;;:::i;:::-;-1:-1:-1;18587:9:1;;18474:128::o;18607:120::-;18647:1;18673;18663:35;;18678:18;;:::i;:::-;-1:-1:-1;18712:9:1;;18607:120::o;18732:125::-;18772:4;18800:1;18797;18794:8;18791:34;;;18805:18;;:::i;:::-;-1:-1:-1;18842:9:1;;18732:125::o;18862:258::-;18934:1;18944:113;18958:6;18955:1;18952:13;18944:113;;;19034:11;;;19028:18;19015:11;;;19008:39;18980:2;18973:10;18944:113;;;19075:6;19072:1;19069:13;19066:48;;;-1:-1:-1;;19110:1:1;19092:16;;19085:27;18862:258::o;19125:380::-;19204:1;19200:12;;;;19247;;;19268:61;;19322:4;19314:6;19310:17;19300:27;;19268:61;19375:2;19367:6;19364:14;19344:18;19341:38;19338:161;;;19421:10;19416:3;19412:20;19409:1;19402:31;19456:4;19453:1;19446:15;19484:4;19481:1;19474:15;19338:161;;19125:380;;;:::o;19510:135::-;19549:3;-1:-1:-1;;19570:17:1;;19567:43;;;19590:18;;:::i;:::-;-1:-1:-1;19637:1:1;19626:13;;19510:135::o;19650:112::-;19682:1;19708;19698:35;;19713:18;;:::i;:::-;-1:-1:-1;19747:9:1;;19650:112::o;19767:127::-;19828:10;19823:3;19819:20;19816:1;19809:31;19859:4;19856:1;19849:15;19883:4;19880:1;19873:15;19899:127;19960:10;19955:3;19951:20;19948:1;19941:31;19991:4;19988:1;19981:15;20015:4;20012:1;20005:15;20031:127;20092:10;20087:3;20083:20;20080:1;20073:31;20123:4;20120:1;20113:15;20147:4;20144:1;20137:15;20163:127;20224:10;20219:3;20215:20;20212:1;20205:31;20255:4;20252:1;20245:15;20279:4;20276:1;20269:15;20295:127;20356:10;20351:3;20347:20;20344:1;20337:31;20387:4;20384:1;20377:15;20411:4;20408:1;20401:15;20427:131;-1:-1:-1;;;;;;20501:32:1;;20491:43;;20481:71;;20548:1;20545;20538:12

Swarm Source

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