ETH Price: $3,442.64 (-1.10%)
Gas: 8 Gwei

Token

SQUADTS Golden Flail (SGF)
 

Overview

Max Total Supply

59 SGF

Holders

57

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 SGF
0x2ac8af898f3939369f6ef2e390dfeb6610e76a8d
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:
SquadtsFlail

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT


// File: @openzeppelin/contracts/utils/Strings.sol
// OpenZeppelin Contracts v4.4.0 (utils/Strings.sol)
pragma solidity ^0.8.0;

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

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

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

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

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


// File: @openzeppelin/contracts/utils/Address.sol
// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)
pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;

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


// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
// OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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


// File: @openzeppelin/contracts/utils/introspection/ERC165.sol
// OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

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


// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity ^0.8.0;

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

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

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


// File: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)
pragma solidity ^0.8.0;

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

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


// File: @openzeppelin/contracts/token/ERC721/ERC721.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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


// File: @openzeppelin/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File: contracts/SquadtsFlail.sol
pragma solidity ^0.8.13;

contract SquadtsFlail is ERC721, Ownable {
    using Strings for uint256;

    string private _metaDataURL = "";
    bool public isMintActive = true;

    uint256 constant TOKEN_IDS_STARTS_AT = 1;
    uint256 constant TOKEN_MIN = 1001;
    uint256 constant TOKEN_MAX = 1500;
    uint256 tokenCount = 0;

    address constant contractAddress = 0xEEAF63F35B7c365AFf27015A9AA5d6e4b734962C;

    mapping(uint256 => bool) public tokenClaimed;
    mapping(address => bool) public walletClaimed;

    // add "metaDataURL" to our constructor
    constructor(
        string memory name,
        string memory symbol,
        string memory metaDataURL
    ) ERC721(name, symbol) {
        setMetaDataURL(metaDataURL);
    }

    // Getters & Setters
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        return _metaDataURL;
    }
    function setMetaDataURL(string memory value) public onlyOwner {
        _metaDataURL = value;
    }
    function setMintActive(bool value) external onlyOwner {
        isMintActive = value;
    }
    function totalSupply() public view returns (uint256) {
        return tokenCount;
    }

    // Minting
    function mint(uint256 tokenId) external {
        require(isMintActive, "Minting is inactive");
        require(tokenId >= TOKEN_MIN, "Token is out of range");
        require(tokenId <= TOKEN_MAX, "Token is out of range");
        require(!tokenClaimed[tokenId], "Token already claimed");
        require(!walletClaimed[msg.sender], "Wallet already claimed");
        require(ERC721(contractAddress).ownerOf(tokenId) == msg.sender, "Wallet does not own token");
        uint256 supply = totalSupply();
        tokenClaimed[tokenId] = true;
        walletClaimed[msg.sender] = true;
        tokenCount += 1;
        _safeMint(msg.sender, TOKEN_IDS_STARTS_AT + supply);
    }
    function gift(address to) external onlyOwner {
        uint256 supply = totalSupply();
        walletClaimed[to] = true;
        tokenCount += 1;
        _safeMint(to, TOKEN_IDS_STARTS_AT + supply);
    }

    // Withdraw
    function withdraw() external payable onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = payable(msg.sender).call{value: balance}("");
        require(success, "Transfer failed");
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"metaDataURL","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"value","type":"string"}],"name":"setMetaDataURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setMintActive","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":"","type":"uint256"}],"name":"tokenClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60a0604052600060809081526007906200001a908262000219565b506008805460ff1916600117905560006009553480156200003a57600080fd5b50604051620020d8380380620020d88339810160408190526200005d916200039c565b828260006200006d838262000219565b5060016200007c828262000219565b5050506200009962000093620000ad60201b60201c565b620000b1565b620000a48162000103565b5050506200042d565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620001625760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b600762000170828262000219565b5050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200019f57607f821691505b602082108103620001c057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200021457600081815260208120601f850160051c81016020861015620001ef5750805b601f850160051c820191505b818110156200021057828155600101620001fb565b5050505b505050565b81516001600160401b0381111562000235576200023562000174565b6200024d816200024684546200018a565b84620001c6565b602080601f8311600181146200028557600084156200026c5750858301515b600019600386901b1c1916600185901b17855562000210565b600085815260208120601f198616915b82811015620002b65788860151825594840194600190910190840162000295565b5085821015620002d55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082601f830112620002f757600080fd5b81516001600160401b038082111562000314576200031462000174565b604051601f8301601f19908116603f011681019082821181831017156200033f576200033f62000174565b816040528381526020925086838588010111156200035c57600080fd5b600091505b8382101562000380578582018301518183018401529082019062000361565b83821115620003925760008385830101525b9695505050505050565b600080600060608486031215620003b257600080fd5b83516001600160401b0380821115620003ca57600080fd5b620003d887838801620002e5565b94506020860151915080821115620003ef57600080fd5b620003fd87838801620002e5565b935060408601519150808211156200041457600080fd5b506200042386828701620002e5565b9150509250925092565b611c9b806200043d6000396000f3fe6080604052600436106101665760003560e01c8063715018a6116100d1578063b88d4fde1161008a578063cbfc4bce11610064578063cbfc4bce14610425578063e985e9c514610445578063ee1cc9441461048e578063f2fde38b146104ae57600080fd5b8063b88d4fde146103b5578063c25d8f4d146103d5578063c87b56dd1461040557600080fd5b8063715018a61461030d5780638da5cb5b1461032257806395d89b41146103405780639d7b9a6c14610355578063a0712d6814610375578063a22cb4651461039557600080fd5b806336ee1d8d1161012357806336ee1d8d1461025b5780633ccfd60b1461028b57806342842e0e146102935780635b92ac0d146102b35780636352211e146102cd57806370a08231146102ed57600080fd5b806301ffc9a71461016b57806306fdde03146101a0578063081812fc146101c2578063095ea7b3146101fa57806318160ddd1461021c57806323b872dd1461023b575b600080fd5b34801561017757600080fd5b5061018b61018636600461165a565b6104ce565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101b5610520565b60405161019791906116cb565b3480156101ce57600080fd5b506101e26101dd3660046116de565b6105b2565b6040516001600160a01b039091168152602001610197565b34801561020657600080fd5b5061021a61021536600461170c565b61064c565b005b34801561022857600080fd5b506009545b604051908152602001610197565b34801561024757600080fd5b5061021a610256366004611738565b610761565b34801561026757600080fd5b5061018b6102763660046116de565b600a6020526000908152604090205460ff1681565b61021a610792565b34801561029f57600080fd5b5061021a6102ae366004611738565b61084c565b3480156102bf57600080fd5b5060085461018b9060ff1681565b3480156102d957600080fd5b506101e26102e83660046116de565b610867565b3480156102f957600080fd5b5061022d610308366004611779565b6108de565b34801561031957600080fd5b5061021a610965565b34801561032e57600080fd5b506006546001600160a01b03166101e2565b34801561034c57600080fd5b506101b561099b565b34801561036157600080fd5b5061021a610370366004611822565b6109aa565b34801561038157600080fd5b5061021a6103903660046116de565b6109e0565b3480156103a157600080fd5b5061021a6103b0366004611880565b610ca9565b3480156103c157600080fd5b5061021a6103d03660046118b5565b610cb4565b3480156103e157600080fd5b5061018b6103f0366004611779565b600b6020526000908152604090205460ff1681565b34801561041157600080fd5b506101b56104203660046116de565b610cec565b34801561043157600080fd5b5061021a610440366004611779565b610dfd565b34801561045157600080fd5b5061018b610460366004611935565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561049a57600080fd5b5061021a6104a936600461196e565b610e84565b3480156104ba57600080fd5b5061021a6104c9366004611779565b610ec1565b60006001600160e01b031982166380ac58cd60e01b14806104ff57506001600160e01b03198216635b5e139f60e01b145b8061051a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461052f90611989565b80601f016020809104026020016040519081016040528092919081815260200182805461055b90611989565b80156105a85780601f1061057d576101008083540402835291602001916105a8565b820191906000526020600020905b81548152906001019060200180831161058b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106305760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061065782610867565b9050806001600160a01b0316836001600160a01b0316036106c45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610627565b336001600160a01b03821614806106e057506106e08133610460565b6107525760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610627565b61075c8383610f5c565b505050565b61076b3382610fca565b6107875760405162461bcd60e51b8152600401610627906119c3565b61075c8383836110c1565b6006546001600160a01b031633146107bc5760405162461bcd60e51b815260040161062790611a14565b6040514790600090339083908381818185875af1925050503d8060008114610800576040519150601f19603f3d011682016040523d82523d6000602084013e610805565b606091505b50509050806108485760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610627565b5050565b61075c83838360405180602001604052806000815250610cb4565b6000818152600260205260408120546001600160a01b03168061051a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610627565b60006001600160a01b0382166109495760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610627565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b0316331461098f5760405162461bcd60e51b815260040161062790611a14565b6109996000611261565b565b60606001805461052f90611989565b6006546001600160a01b031633146109d45760405162461bcd60e51b815260040161062790611a14565b60076108488282611a97565b60085460ff16610a285760405162461bcd60e51b81526020600482015260136024820152724d696e74696e6720697320696e61637469766560681b6044820152606401610627565b6103e9811015610a725760405162461bcd60e51b8152602060048201526015602482015274546f6b656e206973206f7574206f662072616e676560581b6044820152606401610627565b6105dc811115610abc5760405162461bcd60e51b8152602060048201526015602482015274546f6b656e206973206f7574206f662072616e676560581b6044820152606401610627565b6000818152600a602052604090205460ff1615610b135760405162461bcd60e51b8152602060048201526015602482015274151bdad95b88185b1c9958591e4818db185a5b5959605a1b6044820152606401610627565b336000908152600b602052604090205460ff1615610b6c5760405162461bcd60e51b815260206004820152601660248201527515d85b1b195d08185b1c9958591e4818db185a5b595960521b6044820152606401610627565b6040516331a9108f60e11b815260048101829052339073eeaf63f35b7c365aff27015a9aa5d6e4b734962c90636352211e90602401602060405180830381865afa158015610bbe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610be29190611b57565b6001600160a01b031614610c385760405162461bcd60e51b815260206004820152601960248201527f57616c6c657420646f6573206e6f74206f776e20746f6b656e000000000000006044820152606401610627565b6000610c4360095490565b6000838152600a602090815260408083208054600160ff199182168117909255338552600b90935290832080549092168117909155600980549394509092909190610c8f908490611b8a565b90915550610848905033610ca4836001611b8a565b6112b3565b6108483383836112cd565b610cbe3383610fca565b610cda5760405162461bcd60e51b8152600401610627906119c3565b610ce68484848461139b565b50505050565b6000818152600260205260409020546060906001600160a01b0316610d6b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610627565b60078054610d7890611989565b80601f0160208091040260200160405190810160405280929190818152602001828054610da490611989565b8015610df15780601f10610dc657610100808354040283529160200191610df1565b820191906000526020600020905b815481529060010190602001808311610dd457829003601f168201915b50505050509050919050565b6006546001600160a01b03163314610e275760405162461bcd60e51b815260040161062790611a14565b6000610e3260095490565b6001600160a01b0383166000908152600b60205260408120805460ff19166001908117909155600980549394509092909190610e6f908490611b8a565b90915550610848905082610ca4836001611b8a565b6006546001600160a01b03163314610eae5760405162461bcd60e51b815260040161062790611a14565b6008805460ff1916911515919091179055565b6006546001600160a01b03163314610eeb5760405162461bcd60e51b815260040161062790611a14565b6001600160a01b038116610f505760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610627565b610f5981611261565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610f9182610867565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166110435760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610627565b600061104e83610867565b9050806001600160a01b0316846001600160a01b031614806110895750836001600160a01b031661107e846105b2565b6001600160a01b0316145b806110b957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166110d482610867565b6001600160a01b03161461113c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610627565b6001600160a01b03821661119e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610627565b6111a9600082610f5c565b6001600160a01b03831660009081526003602052604081208054600192906111d2908490611ba2565b90915550506001600160a01b0382166000908152600360205260408120805460019290611200908490611b8a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6108488282604051806020016040528060008152506113ce565b816001600160a01b0316836001600160a01b03160361132e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610627565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6113a68484846110c1565b6113b284848484611401565b610ce65760405162461bcd60e51b815260040161062790611bb9565b6113d88383611502565b6113e56000848484611401565b61075c5760405162461bcd60e51b815260040161062790611bb9565b60006001600160a01b0384163b156114f757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611445903390899088908890600401611c0b565b6020604051808303816000875af1925050508015611480575060408051601f3d908101601f1916820190925261147d91810190611c48565b60015b6114dd573d8080156114ae576040519150601f19603f3d011682016040523d82523d6000602084013e6114b3565b606091505b5080516000036114d55760405162461bcd60e51b815260040161062790611bb9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506110b9565b506001949350505050565b6001600160a01b0382166115585760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610627565b6000818152600260205260409020546001600160a01b0316156115bd5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610627565b6001600160a01b03821660009081526003602052604081208054600192906115e6908490611b8a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b031981168114610f5957600080fd5b60006020828403121561166c57600080fd5b813561167781611644565b9392505050565b6000815180845260005b818110156116a457602081850181015186830182015201611688565b818111156116b6576000602083870101525b50601f01601f19169290920160200192915050565b602081526000611677602083018461167e565b6000602082840312156116f057600080fd5b5035919050565b6001600160a01b0381168114610f5957600080fd5b6000806040838503121561171f57600080fd5b823561172a816116f7565b946020939093013593505050565b60008060006060848603121561174d57600080fd5b8335611758816116f7565b92506020840135611768816116f7565b929592945050506040919091013590565b60006020828403121561178b57600080fd5b8135611677816116f7565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156117c7576117c7611796565b604051601f8501601f19908116603f011681019082821181831017156117ef576117ef611796565b8160405280935085815286868601111561180857600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561183457600080fd5b813567ffffffffffffffff81111561184b57600080fd5b8201601f8101841361185c57600080fd5b6110b9848235602084016117ac565b8035801515811461187b57600080fd5b919050565b6000806040838503121561189357600080fd5b823561189e816116f7565b91506118ac6020840161186b565b90509250929050565b600080600080608085870312156118cb57600080fd5b84356118d6816116f7565b935060208501356118e6816116f7565b925060408501359150606085013567ffffffffffffffff81111561190957600080fd5b8501601f8101871361191a57600080fd5b611929878235602084016117ac565b91505092959194509250565b6000806040838503121561194857600080fd5b8235611953816116f7565b91506020830135611963816116f7565b809150509250929050565b60006020828403121561198057600080fd5b6116778261186b565b600181811c9082168061199d57607f821691505b6020821081036119bd57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f82111561075c57600081815260208120601f850160051c81016020861015611a705750805b601f850160051c820191505b81811015611a8f57828155600101611a7c565b505050505050565b815167ffffffffffffffff811115611ab157611ab1611796565b611ac581611abf8454611989565b84611a49565b602080601f831160018114611afa5760008415611ae25750858301515b600019600386901b1c1916600185901b178555611a8f565b600085815260208120601f198616915b82811015611b2957888601518255948401946001909101908401611b0a565b5085821015611b475787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215611b6957600080fd5b8151611677816116f7565b634e487b7160e01b600052601160045260246000fd5b60008219821115611b9d57611b9d611b74565b500190565b600082821015611bb457611bb4611b74565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c3e9083018461167e565b9695505050505050565b600060208284031215611c5a57600080fd5b81516116778161164456fea26469706673582212201c82b7497954aab56f27ab1e457040802550efde027cc43439ac832f3100f21f64736f6c634300080f0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000145351554144545320476f6c64656e20466c61696c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000035347460000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d624346684b6a675475617758364171464353686e42354d7539444e375a756b395538364476647036677254420000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101665760003560e01c8063715018a6116100d1578063b88d4fde1161008a578063cbfc4bce11610064578063cbfc4bce14610425578063e985e9c514610445578063ee1cc9441461048e578063f2fde38b146104ae57600080fd5b8063b88d4fde146103b5578063c25d8f4d146103d5578063c87b56dd1461040557600080fd5b8063715018a61461030d5780638da5cb5b1461032257806395d89b41146103405780639d7b9a6c14610355578063a0712d6814610375578063a22cb4651461039557600080fd5b806336ee1d8d1161012357806336ee1d8d1461025b5780633ccfd60b1461028b57806342842e0e146102935780635b92ac0d146102b35780636352211e146102cd57806370a08231146102ed57600080fd5b806301ffc9a71461016b57806306fdde03146101a0578063081812fc146101c2578063095ea7b3146101fa57806318160ddd1461021c57806323b872dd1461023b575b600080fd5b34801561017757600080fd5b5061018b61018636600461165a565b6104ce565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101b5610520565b60405161019791906116cb565b3480156101ce57600080fd5b506101e26101dd3660046116de565b6105b2565b6040516001600160a01b039091168152602001610197565b34801561020657600080fd5b5061021a61021536600461170c565b61064c565b005b34801561022857600080fd5b506009545b604051908152602001610197565b34801561024757600080fd5b5061021a610256366004611738565b610761565b34801561026757600080fd5b5061018b6102763660046116de565b600a6020526000908152604090205460ff1681565b61021a610792565b34801561029f57600080fd5b5061021a6102ae366004611738565b61084c565b3480156102bf57600080fd5b5060085461018b9060ff1681565b3480156102d957600080fd5b506101e26102e83660046116de565b610867565b3480156102f957600080fd5b5061022d610308366004611779565b6108de565b34801561031957600080fd5b5061021a610965565b34801561032e57600080fd5b506006546001600160a01b03166101e2565b34801561034c57600080fd5b506101b561099b565b34801561036157600080fd5b5061021a610370366004611822565b6109aa565b34801561038157600080fd5b5061021a6103903660046116de565b6109e0565b3480156103a157600080fd5b5061021a6103b0366004611880565b610ca9565b3480156103c157600080fd5b5061021a6103d03660046118b5565b610cb4565b3480156103e157600080fd5b5061018b6103f0366004611779565b600b6020526000908152604090205460ff1681565b34801561041157600080fd5b506101b56104203660046116de565b610cec565b34801561043157600080fd5b5061021a610440366004611779565b610dfd565b34801561045157600080fd5b5061018b610460366004611935565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561049a57600080fd5b5061021a6104a936600461196e565b610e84565b3480156104ba57600080fd5b5061021a6104c9366004611779565b610ec1565b60006001600160e01b031982166380ac58cd60e01b14806104ff57506001600160e01b03198216635b5e139f60e01b145b8061051a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461052f90611989565b80601f016020809104026020016040519081016040528092919081815260200182805461055b90611989565b80156105a85780601f1061057d576101008083540402835291602001916105a8565b820191906000526020600020905b81548152906001019060200180831161058b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106305760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061065782610867565b9050806001600160a01b0316836001600160a01b0316036106c45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610627565b336001600160a01b03821614806106e057506106e08133610460565b6107525760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610627565b61075c8383610f5c565b505050565b61076b3382610fca565b6107875760405162461bcd60e51b8152600401610627906119c3565b61075c8383836110c1565b6006546001600160a01b031633146107bc5760405162461bcd60e51b815260040161062790611a14565b6040514790600090339083908381818185875af1925050503d8060008114610800576040519150601f19603f3d011682016040523d82523d6000602084013e610805565b606091505b50509050806108485760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610627565b5050565b61075c83838360405180602001604052806000815250610cb4565b6000818152600260205260408120546001600160a01b03168061051a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610627565b60006001600160a01b0382166109495760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610627565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b0316331461098f5760405162461bcd60e51b815260040161062790611a14565b6109996000611261565b565b60606001805461052f90611989565b6006546001600160a01b031633146109d45760405162461bcd60e51b815260040161062790611a14565b60076108488282611a97565b60085460ff16610a285760405162461bcd60e51b81526020600482015260136024820152724d696e74696e6720697320696e61637469766560681b6044820152606401610627565b6103e9811015610a725760405162461bcd60e51b8152602060048201526015602482015274546f6b656e206973206f7574206f662072616e676560581b6044820152606401610627565b6105dc811115610abc5760405162461bcd60e51b8152602060048201526015602482015274546f6b656e206973206f7574206f662072616e676560581b6044820152606401610627565b6000818152600a602052604090205460ff1615610b135760405162461bcd60e51b8152602060048201526015602482015274151bdad95b88185b1c9958591e4818db185a5b5959605a1b6044820152606401610627565b336000908152600b602052604090205460ff1615610b6c5760405162461bcd60e51b815260206004820152601660248201527515d85b1b195d08185b1c9958591e4818db185a5b595960521b6044820152606401610627565b6040516331a9108f60e11b815260048101829052339073eeaf63f35b7c365aff27015a9aa5d6e4b734962c90636352211e90602401602060405180830381865afa158015610bbe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610be29190611b57565b6001600160a01b031614610c385760405162461bcd60e51b815260206004820152601960248201527f57616c6c657420646f6573206e6f74206f776e20746f6b656e000000000000006044820152606401610627565b6000610c4360095490565b6000838152600a602090815260408083208054600160ff199182168117909255338552600b90935290832080549092168117909155600980549394509092909190610c8f908490611b8a565b90915550610848905033610ca4836001611b8a565b6112b3565b6108483383836112cd565b610cbe3383610fca565b610cda5760405162461bcd60e51b8152600401610627906119c3565b610ce68484848461139b565b50505050565b6000818152600260205260409020546060906001600160a01b0316610d6b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610627565b60078054610d7890611989565b80601f0160208091040260200160405190810160405280929190818152602001828054610da490611989565b8015610df15780601f10610dc657610100808354040283529160200191610df1565b820191906000526020600020905b815481529060010190602001808311610dd457829003601f168201915b50505050509050919050565b6006546001600160a01b03163314610e275760405162461bcd60e51b815260040161062790611a14565b6000610e3260095490565b6001600160a01b0383166000908152600b60205260408120805460ff19166001908117909155600980549394509092909190610e6f908490611b8a565b90915550610848905082610ca4836001611b8a565b6006546001600160a01b03163314610eae5760405162461bcd60e51b815260040161062790611a14565b6008805460ff1916911515919091179055565b6006546001600160a01b03163314610eeb5760405162461bcd60e51b815260040161062790611a14565b6001600160a01b038116610f505760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610627565b610f5981611261565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610f9182610867565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166110435760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610627565b600061104e83610867565b9050806001600160a01b0316846001600160a01b031614806110895750836001600160a01b031661107e846105b2565b6001600160a01b0316145b806110b957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166110d482610867565b6001600160a01b03161461113c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610627565b6001600160a01b03821661119e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610627565b6111a9600082610f5c565b6001600160a01b03831660009081526003602052604081208054600192906111d2908490611ba2565b90915550506001600160a01b0382166000908152600360205260408120805460019290611200908490611b8a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6108488282604051806020016040528060008152506113ce565b816001600160a01b0316836001600160a01b03160361132e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610627565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6113a68484846110c1565b6113b284848484611401565b610ce65760405162461bcd60e51b815260040161062790611bb9565b6113d88383611502565b6113e56000848484611401565b61075c5760405162461bcd60e51b815260040161062790611bb9565b60006001600160a01b0384163b156114f757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611445903390899088908890600401611c0b565b6020604051808303816000875af1925050508015611480575060408051601f3d908101601f1916820190925261147d91810190611c48565b60015b6114dd573d8080156114ae576040519150601f19603f3d011682016040523d82523d6000602084013e6114b3565b606091505b5080516000036114d55760405162461bcd60e51b815260040161062790611bb9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506110b9565b506001949350505050565b6001600160a01b0382166115585760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610627565b6000818152600260205260409020546001600160a01b0316156115bd5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610627565b6001600160a01b03821660009081526003602052604081208054600192906115e6908490611b8a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b031981168114610f5957600080fd5b60006020828403121561166c57600080fd5b813561167781611644565b9392505050565b6000815180845260005b818110156116a457602081850181015186830182015201611688565b818111156116b6576000602083870101525b50601f01601f19169290920160200192915050565b602081526000611677602083018461167e565b6000602082840312156116f057600080fd5b5035919050565b6001600160a01b0381168114610f5957600080fd5b6000806040838503121561171f57600080fd5b823561172a816116f7565b946020939093013593505050565b60008060006060848603121561174d57600080fd5b8335611758816116f7565b92506020840135611768816116f7565b929592945050506040919091013590565b60006020828403121561178b57600080fd5b8135611677816116f7565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156117c7576117c7611796565b604051601f8501601f19908116603f011681019082821181831017156117ef576117ef611796565b8160405280935085815286868601111561180857600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561183457600080fd5b813567ffffffffffffffff81111561184b57600080fd5b8201601f8101841361185c57600080fd5b6110b9848235602084016117ac565b8035801515811461187b57600080fd5b919050565b6000806040838503121561189357600080fd5b823561189e816116f7565b91506118ac6020840161186b565b90509250929050565b600080600080608085870312156118cb57600080fd5b84356118d6816116f7565b935060208501356118e6816116f7565b925060408501359150606085013567ffffffffffffffff81111561190957600080fd5b8501601f8101871361191a57600080fd5b611929878235602084016117ac565b91505092959194509250565b6000806040838503121561194857600080fd5b8235611953816116f7565b91506020830135611963816116f7565b809150509250929050565b60006020828403121561198057600080fd5b6116778261186b565b600181811c9082168061199d57607f821691505b6020821081036119bd57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f82111561075c57600081815260208120601f850160051c81016020861015611a705750805b601f850160051c820191505b81811015611a8f57828155600101611a7c565b505050505050565b815167ffffffffffffffff811115611ab157611ab1611796565b611ac581611abf8454611989565b84611a49565b602080601f831160018114611afa5760008415611ae25750858301515b600019600386901b1c1916600185901b178555611a8f565b600085815260208120601f198616915b82811015611b2957888601518255948401946001909101908401611b0a565b5085821015611b475787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215611b6957600080fd5b8151611677816116f7565b634e487b7160e01b600052601160045260246000fd5b60008219821115611b9d57611b9d611b74565b500190565b600082821015611bb457611bb4611b74565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c3e9083018461167e565b9695505050505050565b600060208284031215611c5a57600080fd5b81516116778161164456fea26469706673582212201c82b7497954aab56f27ab1e457040802550efde027cc43439ac832f3100f21f64736f6c634300080f0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000145351554144545320476f6c64656e20466c61696c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000035347460000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d624346684b6a675475617758364171464353686e42354d7539444e375a756b395538364476647036677254420000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): SQUADTS Golden Flail
Arg [1] : symbol (string): SGF
Arg [2] : metaDataURL (string): https://ipfs.io/ipfs/QmbCFhKjgTuawX6AqFCShnB5Mu9DN7Zuk9U86Dvdp6grTB

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [4] : 5351554144545320476f6c64656e20466c61696c000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 5347460000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [8] : 68747470733a2f2f697066732e696f2f697066732f516d624346684b6a675475
Arg [9] : 617758364171464353686e42354d7539444e375a756b39553836447664703667
Arg [10] : 7254420000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

36232:2465:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21199:305;;;;;;;;;;-1:-1:-1;21199:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;21199:305:0;;;;;;;;22144:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23703:221::-;;;;;;;;;;-1:-1:-1;23703:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1643:32:1;;;1625:51;;1613:2;1598:18;23703:221:0;1479:203:1;23226:411:0;;;;;;;;;;-1:-1:-1;23226:411:0;;;;;:::i;:::-;;:::i;:::-;;37428:89;;;;;;;;;;-1:-1:-1;37499:10:0;;37428:89;;;2289:25:1;;;2277:2;2262:18;37428:89:0;2143:177:1;24453:339:0;;;;;;;;;;-1:-1:-1;24453:339:0;;;;;:::i;:::-;;:::i;36637:44::-;;;;;;;;;;-1:-1:-1;36637:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;38467:225;;;:::i;24863:185::-;;;;;;;;;;-1:-1:-1;24863:185:0;;;;;:::i;:::-;;:::i;36353:31::-;;;;;;;;;;-1:-1:-1;36353:31:0;;;;;;;;21838:239;;;;;;;;;;-1:-1:-1;21838:239:0;;;;;:::i;:::-;;:::i;21568:208::-;;;;;;;;;;-1:-1:-1;21568:208:0;;;;;:::i;:::-;;:::i;35348:103::-;;;;;;;;;;;;;:::i;34697:87::-;;;;;;;;;;-1:-1:-1;34770:6:0;;-1:-1:-1;;;;;34770:6:0;34697:87;;22313:104;;;;;;;;;;;;;:::i;37222:101::-;;;;;;;;;;-1:-1:-1;37222:101:0;;;;;:::i;:::-;;:::i;37541:686::-;;;;;;;;;;-1:-1:-1;37541:686:0;;;;;:::i;:::-;;:::i;23996:155::-;;;;;;;;;;-1:-1:-1;23996:155:0;;;;;:::i;:::-;;:::i;25119:328::-;;;;;;;;;;-1:-1:-1;25119:328:0;;;;;:::i;:::-;;:::i;36688:45::-;;;;;;;;;;-1:-1:-1;36688:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;37003:213;;;;;;;;;;-1:-1:-1;37003:213:0;;;;;:::i;:::-;;:::i;38233:209::-;;;;;;;;;;-1:-1:-1;38233:209:0;;;;;:::i;:::-;;:::i;24222:164::-;;;;;;;;;;-1:-1:-1;24222:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24343:25:0;;;24319:4;24343:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24222:164;37329:93;;;;;;;;;;-1:-1:-1;37329:93:0;;;;;:::i;:::-;;:::i;35606:201::-;;;;;;;;;;-1:-1:-1;35606:201:0;;;;;:::i;:::-;;:::i;21199:305::-;21301:4;-1:-1:-1;;;;;;21338:40:0;;-1:-1:-1;;;21338:40:0;;:105;;-1:-1:-1;;;;;;;21395:48:0;;-1:-1:-1;;;21395:48:0;21338:105;:158;;;-1:-1:-1;;;;;;;;;;13214:40:0;;;21460:36;21318:178;21199:305;-1:-1:-1;;21199:305:0:o;22144:100::-;22198:13;22231:5;22224:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22144:100;:::o;23703:221::-;23779:7;27046:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27046:16:0;23799:73;;;;-1:-1:-1;;;23799:73:0;;6713:2:1;23799:73:0;;;6695:21:1;6752:2;6732:18;;;6725:30;6791:34;6771:18;;;6764:62;-1:-1:-1;;;6842:18:1;;;6835:42;6894:19;;23799:73:0;;;;;;;;;-1:-1:-1;23892:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23892:24:0;;23703:221::o;23226:411::-;23307:13;23323:23;23338:7;23323:14;:23::i;:::-;23307:39;;23371:5;-1:-1:-1;;;;;23365:11:0;:2;-1:-1:-1;;;;;23365:11:0;;23357:57;;;;-1:-1:-1;;;23357:57:0;;7126:2:1;23357:57:0;;;7108:21:1;7165:2;7145:18;;;7138:30;7204:34;7184:18;;;7177:62;-1:-1:-1;;;7255:18:1;;;7248:31;7296:19;;23357:57:0;6924:397:1;23357:57:0;19689:10;-1:-1:-1;;;;;23449:21:0;;;;:62;;-1:-1:-1;23474:37:0;23491:5;19689:10;24222:164;:::i;23474:37::-;23427:168;;;;-1:-1:-1;;;23427:168:0;;7528:2:1;23427:168:0;;;7510:21:1;7567:2;7547:18;;;7540:30;7606:34;7586:18;;;7579:62;7677:26;7657:18;;;7650:54;7721:19;;23427:168:0;7326:420:1;23427:168:0;23608:21;23617:2;23621:7;23608:8;:21::i;:::-;23296:341;23226:411;;:::o;24453:339::-;24648:41;19689:10;24681:7;24648:18;:41::i;:::-;24640:103;;;;-1:-1:-1;;;24640:103:0;;;;;;;:::i;:::-;24756:28;24766:4;24772:2;24776:7;24756:9;:28::i;38467:225::-;34770:6;;-1:-1:-1;;;;;34770:6:0;19689:10;34917:23;34909:68;;;;-1:-1:-1;;;34909:68:0;;;;;;;:::i;:::-;38594:44:::1;::::0;38543:21:::1;::::0;38525:15:::1;::::0;38602:10:::1;::::0;38543:21;;38525:15;38594:44;38525:15;38594:44;38543:21;38602:10;38594:44:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38575:63;;;38657:7;38649:35;;;::::0;-1:-1:-1;;;38649:35:0;;8942:2:1;38649:35:0::1;::::0;::::1;8924:21:1::0;8981:2;8961:18;;;8954:30;-1:-1:-1;;;9000:18:1;;;8993:45;9055:18;;38649:35:0::1;8740:339:1::0;38649:35:0::1;38514:178;;38467:225::o:0;24863:185::-;25001:39;25018:4;25024:2;25028:7;25001:39;;;;;;;;;;;;:16;:39::i;21838:239::-;21910:7;21946:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21946:16:0;;21973:73;;;;-1:-1:-1;;;21973:73:0;;9286:2:1;21973:73:0;;;9268:21:1;9325:2;9305:18;;;9298:30;9364:34;9344:18;;;9337:62;-1:-1:-1;;;9415:18:1;;;9408:39;9464:19;;21973:73:0;9084:405:1;21568:208:0;21640:7;-1:-1:-1;;;;;21668:19:0;;21660:74;;;;-1:-1:-1;;;21660:74:0;;9696:2:1;21660:74:0;;;9678:21:1;9735:2;9715:18;;;9708:30;9774:34;9754:18;;;9747:62;-1:-1:-1;;;9825:18:1;;;9818:40;9875:19;;21660:74:0;9494:406:1;21660:74:0;-1:-1:-1;;;;;;21752:16:0;;;;;:9;:16;;;;;;;21568:208::o;35348:103::-;34770:6;;-1:-1:-1;;;;;34770:6:0;19689:10;34917:23;34909:68;;;;-1:-1:-1;;;34909:68:0;;;;;;;:::i;:::-;35413:30:::1;35440:1;35413:18;:30::i;:::-;35348:103::o:0;22313:104::-;22369:13;22402:7;22395:14;;;;;:::i;37222:101::-;34770:6;;-1:-1:-1;;;;;34770:6:0;19689:10;34917:23;34909:68;;;;-1:-1:-1;;;34909:68:0;;;;;;;:::i;:::-;37295:12:::1;:20;37310:5:::0;37295:12;:20:::1;:::i;37541:686::-:0;37600:12;;;;37592:44;;;;-1:-1:-1;;;37592:44:0;;12311:2:1;37592:44:0;;;12293:21:1;12350:2;12330:18;;;12323:30;-1:-1:-1;;;12369:18:1;;;12362:49;12428:18;;37592:44:0;12109:343:1;37592:44:0;36469:4;37655:7;:20;;37647:54;;;;-1:-1:-1;;;37647:54:0;;12659:2:1;37647:54:0;;;12641:21:1;12698:2;12678:18;;;12671:30;-1:-1:-1;;;12717:18:1;;;12710:51;12778:18;;37647:54:0;12457:345:1;37647:54:0;36509:4;37720:7;:20;;37712:54;;;;-1:-1:-1;;;37712:54:0;;12659:2:1;37712:54:0;;;12641:21:1;12698:2;12678:18;;;12671:30;-1:-1:-1;;;12717:18:1;;;12710:51;12778:18;;37712:54:0;12457:345:1;37712:54:0;37786:21;;;;:12;:21;;;;;;;;37785:22;37777:56;;;;-1:-1:-1;;;37777:56:0;;13009:2:1;37777:56:0;;;12991:21:1;13048:2;13028:18;;;13021:30;-1:-1:-1;;;13067:18:1;;;13060:51;13128:18;;37777:56:0;12807:345:1;37777:56:0;37867:10;37853:25;;;;:13;:25;;;;;;;;37852:26;37844:61;;;;-1:-1:-1;;;37844:61:0;;13359:2:1;37844:61:0;;;13341:21:1;13398:2;13378:18;;;13371:30;-1:-1:-1;;;13417:18:1;;;13410:52;13479:18;;37844:61:0;13157:346:1;37844:61:0;37924:40;;-1:-1:-1;;;37924:40:0;;;;;2289:25:1;;;37968:10:0;;36586:42;;37924:31;;2262:18:1;;37924:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;37924:54:0;;37916:92;;;;-1:-1:-1;;;37916:92:0;;13966:2:1;37916:92:0;;;13948:21:1;14005:2;13985:18;;;13978:30;14044:27;14024:18;;;14017:55;14089:18;;37916:92:0;13764:349:1;37916:92:0;38019:14;38036:13;37499:10;;;37428:89;38036:13;38060:21;;;;:12;:21;;;;;;;;:28;;38084:4;-1:-1:-1;;38060:28:0;;;;;;;;38113:10;38099:25;;:13;:25;;;;;;:32;;;;;;;;;;38142:10;:15;;38019:30;;-1:-1:-1;38084:4:0;;38142:10;;38060:21;38142:15;;38084:4;;38142:15;:::i;:::-;;;;-1:-1:-1;38168:51:0;;-1:-1:-1;38178:10:0;38190:28;38212:6;36432:1;38190:28;:::i;:::-;38168:9;:51::i;23996:155::-;24091:52;19689:10;24124:8;24134;24091:18;:52::i;25119:328::-;25294:41;19689:10;25327:7;25294:18;:41::i;:::-;25286:103;;;;-1:-1:-1;;;25286:103:0;;;;;;;:::i;:::-;25400:39;25414:4;25420:2;25424:7;25433:5;25400:13;:39::i;:::-;25119:328;;;;:::o;37003:213::-;27022:4;27046:16;;;:7;:16;;;;;;37076:13;;-1:-1:-1;;;;;27046:16:0;37102:76;;;;-1:-1:-1;;;37102:76:0;;14585:2:1;37102:76:0;;;14567:21:1;14624:2;14604:18;;;14597:30;14663:34;14643:18;;;14636:62;-1:-1:-1;;;14714:18:1;;;14707:45;14769:19;;37102:76:0;14383:411:1;37102:76:0;37196:12;37189:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37003:213;;;:::o;38233:209::-;34770:6;;-1:-1:-1;;;;;34770:6:0;19689:10;34917:23;34909:68;;;;-1:-1:-1;;;34909:68:0;;;;;;;:::i;:::-;38289:14:::1;38306:13;37499:10:::0;;;37428:89;38306:13:::1;-1:-1:-1::0;;;;;38330:17:0;::::1;;::::0;;;:13:::1;:17;::::0;;;;:24;;-1:-1:-1;;38330:24:0::1;38350:4;38330:24:::0;;::::1;::::0;;;38365:10:::1;:15:::0;;38289:30;;-1:-1:-1;38350:4:0;;38365:10;;38330:17;38365:15:::1;::::0;38350:4;;38365:15:::1;:::i;:::-;::::0;;;-1:-1:-1;38391:43:0::1;::::0;-1:-1:-1;38401:2:0;38405:28:::1;38427:6:::0;36432:1:::1;38405:28;:::i;37329:93::-:0;34770:6;;-1:-1:-1;;;;;34770:6:0;19689:10;34917:23;34909:68;;;;-1:-1:-1;;;34909:68:0;;;;;;;:::i;:::-;37394:12:::1;:20:::0;;-1:-1:-1;;37394:20:0::1;::::0;::::1;;::::0;;;::::1;::::0;;37329:93::o;35606:201::-;34770:6;;-1:-1:-1;;;;;34770:6:0;19689:10;34917:23;34909:68;;;;-1:-1:-1;;;34909:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35695:22:0;::::1;35687:73;;;::::0;-1:-1:-1;;;35687:73:0;;15001:2:1;35687:73:0::1;::::0;::::1;14983:21:1::0;15040:2;15020:18;;;15013:30;15079:34;15059:18;;;15052:62;-1:-1:-1;;;15130:18:1;;;15123:36;15176:19;;35687:73:0::1;14799:402:1::0;35687:73:0::1;35771:28;35790:8;35771:18;:28::i;:::-;35606:201:::0;:::o;30939:174::-;31014:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31014:29:0;-1:-1:-1;;;;;31014:29:0;;;;;;;;:24;;31068:23;31014:24;31068:14;:23::i;:::-;-1:-1:-1;;;;;31059:46:0;;;;;;;;;;;30939:174;;:::o;27251:348::-;27344:4;27046:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27046:16:0;27361:73;;;;-1:-1:-1;;;27361:73:0;;15408:2:1;27361:73:0;;;15390:21:1;15447:2;15427:18;;;15420:30;15486:34;15466:18;;;15459:62;-1:-1:-1;;;15537:18:1;;;15530:42;15589:19;;27361:73:0;15206:408:1;27361:73:0;27445:13;27461:23;27476:7;27461:14;:23::i;:::-;27445:39;;27514:5;-1:-1:-1;;;;;27503:16:0;:7;-1:-1:-1;;;;;27503:16:0;;:51;;;;27547:7;-1:-1:-1;;;;;27523:31:0;:20;27535:7;27523:11;:20::i;:::-;-1:-1:-1;;;;;27523:31:0;;27503:51;:87;;;-1:-1:-1;;;;;;24343:25:0;;;24319:4;24343:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27558:32;27495:96;27251:348;-1:-1:-1;;;;27251:348:0:o;30243:578::-;30402:4;-1:-1:-1;;;;;30375:31:0;:23;30390:7;30375:14;:23::i;:::-;-1:-1:-1;;;;;30375:31:0;;30367:85;;;;-1:-1:-1;;;30367:85:0;;15821:2:1;30367:85:0;;;15803:21:1;15860:2;15840:18;;;15833:30;15899:34;15879:18;;;15872:62;-1:-1:-1;;;15950:18:1;;;15943:39;15999:19;;30367:85:0;15619:405:1;30367:85:0;-1:-1:-1;;;;;30471:16:0;;30463:65;;;;-1:-1:-1;;;30463:65:0;;16231:2:1;30463:65:0;;;16213:21:1;16270:2;16250:18;;;16243:30;16309:34;16289:18;;;16282:62;-1:-1:-1;;;16360:18:1;;;16353:34;16404:19;;30463:65:0;16029:400:1;30463:65:0;30645:29;30662:1;30666:7;30645:8;:29::i;:::-;-1:-1:-1;;;;;30687:15:0;;;;;;:9;:15;;;;;:20;;30706:1;;30687:15;:20;;30706:1;;30687:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30718:13:0;;;;;;:9;:13;;;;;:18;;30735:1;;30718:13;:18;;30735:1;;30718:18;:::i;:::-;;;;-1:-1:-1;;30747:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30747:21:0;-1:-1:-1;;;;;30747:21:0;;;;;;;;;30786:27;;30747:16;;30786:27;;;;;;;30243:578;;;:::o;35967:191::-;36060:6;;;-1:-1:-1;;;;;36077:17:0;;;-1:-1:-1;;;;;;36077:17:0;;;;;;;36110:40;;36060:6;;;36077:17;36060:6;;36110:40;;36041:16;;36110:40;36030:128;35967:191;:::o;27941:110::-;28017:26;28027:2;28031:7;28017:26;;;;;;;;;;;;:9;:26::i;31255:315::-;31410:8;-1:-1:-1;;;;;31401:17:0;:5;-1:-1:-1;;;;;31401:17:0;;31393:55;;;;-1:-1:-1;;;31393:55:0;;16766:2:1;31393:55:0;;;16748:21:1;16805:2;16785:18;;;16778:30;16844:27;16824:18;;;16817:55;16889:18;;31393:55:0;16564:349:1;31393:55:0;-1:-1:-1;;;;;31459:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;31459:46:0;;;;;;;;;;31521:41;;540::1;;;31521::0;;513:18:1;31521:41:0;;;;;;;31255:315;;;:::o;26329:::-;26486:28;26496:4;26502:2;26506:7;26486:9;:28::i;:::-;26533:48;26556:4;26562:2;26566:7;26575:5;26533:22;:48::i;:::-;26525:111;;;;-1:-1:-1;;;26525:111:0;;;;;;;:::i;28278:321::-;28408:18;28414:2;28418:7;28408:5;:18::i;:::-;28459:54;28490:1;28494:2;28498:7;28507:5;28459:22;:54::i;:::-;28437:154;;;;-1:-1:-1;;;28437:154:0;;;;;;;:::i;32135:799::-;32290:4;-1:-1:-1;;;;;32311:13:0;;3294:20;3342:8;32307:620;;32347:72;;-1:-1:-1;;;32347:72:0;;-1:-1:-1;;;;;32347:36:0;;;;;:72;;19689:10;;32398:4;;32404:7;;32413:5;;32347:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32347:72:0;;;;;;;;-1:-1:-1;;32347:72:0;;;;;;;;;;;;:::i;:::-;;;32343:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32589:6;:13;32606:1;32589:18;32585:272;;32632:60;;-1:-1:-1;;;32632:60:0;;;;;;;:::i;32585:272::-;32807:6;32801:13;32792:6;32788:2;32784:15;32777:38;32343:529;-1:-1:-1;;;;;;32470:51:0;-1:-1:-1;;;32470:51:0;;-1:-1:-1;32463:58:0;;32307:620;-1:-1:-1;32911:4:0;32135:799;;;;;;:::o;28935:382::-;-1:-1:-1;;;;;29015:16:0;;29007:61;;;;-1:-1:-1;;;29007:61:0;;18287:2:1;29007:61:0;;;18269:21:1;;;18306:18;;;18299:30;18365:34;18345:18;;;18338:62;18417:18;;29007:61:0;18085:356:1;29007:61:0;27022:4;27046:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27046:16:0;:30;29079:58;;;;-1:-1:-1;;;29079:58:0;;18648:2:1;29079:58:0;;;18630:21:1;18687:2;18667:18;;;18660:30;18726;18706:18;;;18699:58;18774:18;;29079:58:0;18446:352:1;29079:58:0;-1:-1:-1;;;;;29208:13:0;;;;;;:9;:13;;;;;:18;;29225:1;;29208:13;:18;;29225:1;;29208:18;:::i;:::-;;;;-1:-1:-1;;29237:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29237:21:0;-1:-1:-1;;;;;29237:21:0;;;;;;;;29276:33;;29237:16;;;29276:33;;29237:16;;29276:33;28935:382;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:472::-;634:3;672:5;666:12;699:6;694:3;687:19;724:1;734:162;748:6;745:1;742:13;734:162;;;810:4;866:13;;;862:22;;856:29;838:11;;;834:20;;827:59;763:12;734:162;;;914:6;911:1;908:13;905:87;;;980:1;973:4;964:6;959:3;955:16;951:27;944:38;905:87;-1:-1:-1;1046:2:1;1025:15;-1:-1:-1;;1021:29:1;1012:39;;;;1053:4;1008:50;;592:472;-1:-1:-1;;592:472:1:o;1069:220::-;1218:2;1207:9;1200:21;1181:4;1238:45;1279:2;1268:9;1264:18;1256:6;1238:45;:::i;1294:180::-;1353:6;1406:2;1394:9;1385:7;1381:23;1377:32;1374:52;;;1422:1;1419;1412:12;1374:52;-1:-1:-1;1445:23:1;;1294:180;-1:-1:-1;1294:180:1:o;1687:131::-;-1:-1:-1;;;;;1762:31:1;;1752:42;;1742:70;;1808:1;1805;1798:12;1823:315;1891:6;1899;1952:2;1940:9;1931:7;1927:23;1923:32;1920:52;;;1968:1;1965;1958:12;1920:52;2007:9;1994:23;2026:31;2051:5;2026:31;:::i;:::-;2076:5;2128:2;2113:18;;;;2100:32;;-1:-1:-1;;;1823:315:1:o;2325:456::-;2402:6;2410;2418;2471:2;2459:9;2450:7;2446:23;2442:32;2439:52;;;2487:1;2484;2477:12;2439:52;2526:9;2513:23;2545:31;2570:5;2545:31;:::i;:::-;2595:5;-1:-1:-1;2652:2:1;2637:18;;2624:32;2665:33;2624:32;2665:33;:::i;:::-;2325:456;;2717:7;;-1:-1:-1;;;2771:2:1;2756:18;;;;2743:32;;2325:456::o;2786:247::-;2845:6;2898:2;2886:9;2877:7;2873:23;2869:32;2866:52;;;2914:1;2911;2904:12;2866:52;2953:9;2940:23;2972:31;2997:5;2972:31;:::i;3038:127::-;3099:10;3094:3;3090:20;3087:1;3080:31;3130:4;3127:1;3120:15;3154:4;3151:1;3144:15;3170:632;3235:5;3265:18;3306:2;3298:6;3295:14;3292:40;;;3312:18;;:::i;:::-;3387:2;3381:9;3355:2;3441:15;;-1:-1:-1;;3437:24:1;;;3463:2;3433:33;3429:42;3417:55;;;3487:18;;;3507:22;;;3484:46;3481:72;;;3533:18;;:::i;:::-;3573:10;3569:2;3562:22;3602:6;3593:15;;3632:6;3624;3617:22;3672:3;3663:6;3658:3;3654:16;3651:25;3648:45;;;3689:1;3686;3679:12;3648:45;3739:6;3734:3;3727:4;3719:6;3715:17;3702:44;3794:1;3787:4;3778:6;3770;3766:19;3762:30;3755:41;;;;3170:632;;;;;:::o;3807:451::-;3876:6;3929:2;3917:9;3908:7;3904:23;3900:32;3897:52;;;3945:1;3942;3935:12;3897:52;3985:9;3972:23;4018:18;4010:6;4007:30;4004:50;;;4050:1;4047;4040:12;4004:50;4073:22;;4126:4;4118:13;;4114:27;-1:-1:-1;4104:55:1;;4155:1;4152;4145:12;4104:55;4178:74;4244:7;4239:2;4226:16;4221:2;4217;4213:11;4178:74;:::i;4263:160::-;4328:20;;4384:13;;4377:21;4367:32;;4357:60;;4413:1;4410;4403:12;4357:60;4263:160;;;:::o;4428:315::-;4493:6;4501;4554:2;4542:9;4533:7;4529:23;4525:32;4522:52;;;4570:1;4567;4560:12;4522:52;4609:9;4596:23;4628:31;4653:5;4628:31;:::i;:::-;4678:5;-1:-1:-1;4702:35:1;4733:2;4718:18;;4702:35;:::i;:::-;4692:45;;4428:315;;;;;:::o;4748:795::-;4843:6;4851;4859;4867;4920:3;4908:9;4899:7;4895:23;4891:33;4888:53;;;4937:1;4934;4927:12;4888:53;4976:9;4963:23;4995:31;5020:5;4995:31;:::i;:::-;5045:5;-1:-1:-1;5102:2:1;5087:18;;5074:32;5115:33;5074:32;5115:33;:::i;:::-;5167:7;-1:-1:-1;5221:2:1;5206:18;;5193:32;;-1:-1:-1;5276:2:1;5261:18;;5248:32;5303:18;5292:30;;5289:50;;;5335:1;5332;5325:12;5289:50;5358:22;;5411:4;5403:13;;5399:27;-1:-1:-1;5389:55:1;;5440:1;5437;5430:12;5389:55;5463:74;5529:7;5524:2;5511:16;5506:2;5502;5498:11;5463:74;:::i;:::-;5453:84;;;4748:795;;;;;;;:::o;5548:388::-;5616:6;5624;5677:2;5665:9;5656:7;5652:23;5648:32;5645:52;;;5693:1;5690;5683:12;5645:52;5732:9;5719:23;5751:31;5776:5;5751:31;:::i;:::-;5801:5;-1:-1:-1;5858:2:1;5843:18;;5830:32;5871:33;5830:32;5871:33;:::i;:::-;5923:7;5913:17;;;5548:388;;;;;:::o;5941:180::-;5997:6;6050:2;6038:9;6029:7;6025:23;6021:32;6018:52;;;6066:1;6063;6056:12;6018:52;6089:26;6105:9;6089:26;:::i;6126:380::-;6205:1;6201:12;;;;6248;;;6269:61;;6323:4;6315:6;6311:17;6301:27;;6269:61;6376:2;6368:6;6365:14;6345:18;6342:38;6339:161;;6422:10;6417:3;6413:20;6410:1;6403:31;6457:4;6454:1;6447:15;6485:4;6482:1;6475:15;6339:161;;6126:380;;;:::o;7751:413::-;7953:2;7935:21;;;7992:2;7972:18;;;7965:30;8031:34;8026:2;8011:18;;8004:62;-1:-1:-1;;;8097:2:1;8082:18;;8075:47;8154:3;8139:19;;7751:413::o;8169:356::-;8371:2;8353:21;;;8390:18;;;8383:30;8449:34;8444:2;8429:18;;8422:62;8516:2;8501:18;;8169:356::o;10031:545::-;10133:2;10128:3;10125:11;10122:448;;;10169:1;10194:5;10190:2;10183:17;10239:4;10235:2;10225:19;10309:2;10297:10;10293:19;10290:1;10286:27;10280:4;10276:38;10345:4;10333:10;10330:20;10327:47;;;-1:-1:-1;10368:4:1;10327:47;10423:2;10418:3;10414:12;10411:1;10407:20;10401:4;10397:31;10387:41;;10478:82;10496:2;10489:5;10486:13;10478:82;;;10541:17;;;10522:1;10511:13;10478:82;;;10482:3;;;10031:545;;;:::o;10752:1352::-;10878:3;10872:10;10905:18;10897:6;10894:30;10891:56;;;10927:18;;:::i;:::-;10956:97;11046:6;11006:38;11038:4;11032:11;11006:38;:::i;:::-;11000:4;10956:97;:::i;:::-;11108:4;;11172:2;11161:14;;11189:1;11184:663;;;;11891:1;11908:6;11905:89;;;-1:-1:-1;11960:19:1;;;11954:26;11905:89;-1:-1:-1;;10709:1:1;10705:11;;;10701:24;10697:29;10687:40;10733:1;10729:11;;;10684:57;12007:81;;11154:944;;11184:663;9978:1;9971:14;;;10015:4;10002:18;;-1:-1:-1;;11220:20:1;;;11338:236;11352:7;11349:1;11346:14;11338:236;;;11441:19;;;11435:26;11420:42;;11533:27;;;;11501:1;11489:14;;;;11368:19;;11338:236;;;11342:3;11602:6;11593:7;11590:19;11587:201;;;11663:19;;;11657:26;-1:-1:-1;;11746:1:1;11742:14;;;11758:3;11738:24;11734:37;11730:42;11715:58;11700:74;;11587:201;-1:-1:-1;;;;;11834:1:1;11818:14;;;11814:22;11801:36;;-1:-1:-1;10752:1352:1:o;13508:251::-;13578:6;13631:2;13619:9;13610:7;13606:23;13602:32;13599:52;;;13647:1;13644;13637:12;13599:52;13679:9;13673:16;13698:31;13723:5;13698:31;:::i;14118:127::-;14179:10;14174:3;14170:20;14167:1;14160:31;14210:4;14207:1;14200:15;14234:4;14231:1;14224:15;14250:128;14290:3;14321:1;14317:6;14314:1;14311:13;14308:39;;;14327:18;;:::i;:::-;-1:-1:-1;14363:9:1;;14250:128::o;16434:125::-;16474:4;16502:1;16499;16496:8;16493:34;;;16507:18;;:::i;:::-;-1:-1:-1;16544:9:1;;16434:125::o;16918:414::-;17120:2;17102:21;;;17159:2;17139:18;;;17132:30;17198:34;17193:2;17178:18;;17171:62;-1:-1:-1;;;17264:2:1;17249:18;;17242:48;17322:3;17307:19;;16918:414::o;17337:489::-;-1:-1:-1;;;;;17606:15:1;;;17588:34;;17658:15;;17653:2;17638:18;;17631:43;17705:2;17690:18;;17683:34;;;17753:3;17748:2;17733:18;;17726:31;;;17531:4;;17774:46;;17800:19;;17792:6;17774:46;:::i;:::-;17766:54;17337:489;-1:-1:-1;;;;;;17337:489:1:o;17831:249::-;17900:6;17953:2;17941:9;17932:7;17928:23;17924:32;17921:52;;;17969:1;17966;17959:12;17921:52;18001:9;17995:16;18020:30;18044:5;18020:30;:::i

Swarm Source

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