ETH Price: $3,159.60 (-8.17%)
Gas: 3 Gwei

Token

3D-Crusaders (3D-Crusaders)
 

Overview

Max Total Supply

346 3D-Crusaders

Holders

113

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 3D-Crusaders
0xC03fe5A6a856adcb1b2A1f3080D44888F47385CD
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:
Crusaders3D

Compiler Version
v0.8.3+commit.8d00100c

Optimization Enabled:
Yes with 200 runs

Other Settings:
byzantium EvmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-06-24
*/

// File: @openzeppelin/contracts/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/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/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/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/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;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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



pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

// File: @openzeppelin/contracts/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/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}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data)
        private returns (bool)
    {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { }
}

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



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

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



pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: contracts/Crusaders3d.sol


pragma solidity ^0.8.0;




contract Crusaders3D is ERC721Enumerable, Ownable {
    uint256 public constant MAX_CRUSADERS = 9999;
    uint256 public constant GIVE_AWAY_COUNT = 333;
    uint256 public constant DEV_NFT_GIVEAWAY = 222;
    uint256 public delDevGiveAway = 0;
    string _baseTokenURI;

    // Truth.
    constructor(string memory baseURI) ERC721("3D-Crusaders", "3D-Crusaders") {
        setBaseURI(baseURI);
    }

    // Public Functions
    function mintMyCrusader(uint256 numberOfcrusaders) public payable {
        require(
            totalSupply() + numberOfcrusaders <= MAX_CRUSADERS,
            "Max limit hit!"
        );

        if (totalSupply() < GIVE_AWAY_COUNT) {
            require(numberOfcrusaders == 1, "Exceeds 1!");
        } else {
            require(numberOfcrusaders <= 100, "Exceeds 100!");
        }

        require(msg.value >= price(numberOfcrusaders), "Value below price!");

        for (uint256 i = 0; i < numberOfcrusaders; i++) {
            _safeMint(msg.sender, totalSupply());
        }
    }

    function price(uint256 _count) public view returns (uint256) {
        uint256 _id = totalSupply();
        if (_id < GIVE_AWAY_COUNT) {
            return 0;
        }
        return 50000000000000000 * _count; // 0.05 ETH
    }

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

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

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

        return tokensId;
    }

    // Only Owner
    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }

    function devNFTGiveAway(address[] memory _to) public payable onlyOwner {
        require(totalSupply() + _to.length <= MAX_CRUSADERS, "Max limit hit!");
        require(
            delDevGiveAway + _to.length <= DEV_NFT_GIVEAWAY,
            "Developer GiveAway limit has already been hit!"
        );

        for (uint256 i = 0; i < _to.length; i++) {
            _safeMint(_to[i], totalSupply());
            delDevGiveAway += 1;
        }
    }

    function withdrawAll() public payable onlyOwner {
        require(payable(_msgSender()).send(address(this).balance));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEV_NFT_GIVEAWAY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GIVE_AWAY_COUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_CRUSADERS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"delDevGiveAway","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"}],"name":"devNFTGiveAway","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfcrusaders","type":"uint256"}],"name":"mintMyCrusader","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526000600b553480156200001657600080fd5b5060405162002a2238038062002a228339810160408190526200003991620002a4565b604080518082018252600c8082527f33442d43727573616465727300000000000000000000000000000000000000006020808401828152855180870190965292855284015281519192916200009191600091620001fe565b508051620000a7906001906020840190620001fe565b5050506000620000c56200012e640100000000026401000000009004565b600a8054600160a060020a031916600160a060020a038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620001278164010000000062000132810204565b5062000400565b3390565b620001456401000000006200012e810204565b600160a060020a031662000161640100000000620001ef810204565b600160a060020a031614620001d6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001eb90600c906020840190620001fe565b5050565b600a54600160a060020a031690565b8280546200020c906200037b565b90600052602060002090601f0160209004810192826200023057600085556200027b565b82601f106200024b57805160ff19168380011785556200027b565b828001600101855582156200027b579182015b828111156200027b5782518255916020019190600101906200025e565b50620002899291506200028d565b5090565b5b808211156200028957600081556001016200028e565b60006020808385031215620002b7578182fd5b825167ffffffffffffffff80821115620002cf578384fd5b818501915085601f830112620002e3578384fd5b815181811115620002f857620002f8620003d1565b604051601f8201601f19908116603f01168101908382118183101715620003235762000323620003d1565b8160405282815288868487010111156200033b578687fd5b8693505b828410156200035e57848401860151818501870152928501926200033f565b828411156200036f57868684830101525b98975050505050505050565b6002810460018216806200039057607f821691505b60208210811415620003cb577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61261280620004106000396000f3fe6080604052600436106101df576000357c010000000000000000000000000000000000000000000000000000000090048063715018a611610114578063a22cb465116100b2578063bd5cf9a911610081578063bd5cf9a9146104d8578063c87b56dd146104ee578063e985e9c51461050e578063f2fde38b14610557576101df565b8063a22cb46514610472578063b83c611714610492578063b88d4fde146104a5578063ba8b7e84146104c5576101df565b80638da5cb5b116100ee5780638da5cb5b14610414578063931ee5d21461043257806395d89b411461044857806396d668b11461045d576101df565b8063715018a6146103ca5780638462151c146103df578063853828b61461040c576101df565b80632f745c59116101815780634f6ccce71161015b5780634f6ccce71461034a57806355f804b31461036a5780636352211e1461038a57806370a08231146103aa576101df565b80632f745c59146102f457806342842e0e1461031457806346ab30c514610334576101df565b8063095ea7b3116101bd578063095ea7b31461027357806318160ddd1461029557806323b872dd146102b457806326a49e37146102d4576101df565b806301ffc9a7146101e457806306fdde0314610219578063081812fc1461023b575b600080fd5b3480156101f057600080fd5b506102046101ff3660046121d9565b610577565b60405190151581526020015b60405180910390f35b34801561022557600080fd5b5061022e6105bd565b604051610210919061234a565b34801561024757600080fd5b5061025b610256366004612257565b61064f565b604051600160a060020a039091168152602001610210565b34801561027f57600080fd5b5061029361028e366004612102565b6106fd565b005b3480156102a157600080fd5b506008545b604051908152602001610210565b3480156102c057600080fd5b506102936102cf366004612014565b610835565b3480156102e057600080fd5b506102a66102ef366004612257565b610869565b34801561030057600080fd5b506102a661030f366004612102565b6108a3565b34801561032057600080fd5b5061029361032f366004612014565b61094e565b34801561034057600080fd5b506102a6600b5481565b34801561035657600080fd5b506102a6610365366004612257565b610969565b34801561037657600080fd5b50610293610385366004612211565b610a21565b34801561039657600080fd5b5061025b6103a5366004612257565b610a65565b3480156103b657600080fd5b506102a66103c5366004611fc8565b610af3565b3480156103d657600080fd5b50610293610b90565b3480156103eb57600080fd5b506103ff6103fa366004611fc8565b610c14565b6040516102109190612306565b610293610cd8565b34801561042057600080fd5b50600a54600160a060020a031661025b565b34801561043e57600080fd5b506102a661270f81565b34801561045457600080fd5b5061022e610d2c565b34801561046957600080fd5b506102a660de81565b34801561047e57600080fd5b5061029361048d3660046120c8565b610d3b565b6102936104a036600461212b565b610e10565b3480156104b157600080fd5b506102936104c036600461204f565b610fa1565b6102936104d3366004612257565b610fdc565b3480156104e457600080fd5b506102a661014d81565b3480156104fa57600080fd5b5061022e610509366004612257565b611187565b34801561051a57600080fd5b50610204610529366004611fe2565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561056357600080fd5b50610293610572366004611fc8565b611273565b6000600160e060020a031982167f780e9d630000000000000000000000000000000000000000000000000000000014806105b557506105b582611388565b90505b919050565b6060600080546105cc9061250b565b80601f01602080910402602001604051908101604052809291908181526020018280546105f89061250b565b80156106455780601f1061061a57610100808354040283529160200191610645565b820191906000526020600020905b81548152906001019060200180831161062857829003601f168201915b5050505050905090565b600081815260026020526040812054600160a060020a03166106e15760405160e560020a62461bcd02815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b50600090815260046020526040902054600160a060020a031690565b600061070882610a65565b905080600160a060020a031683600160a060020a031614156107955760405160e560020a62461bcd02815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016106d8565b33600160a060020a03821614806107b157506107b18133610529565b6108265760405160e560020a62461bcd02815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106d8565b6108308383611423565b505050565b61083f338261149e565b61085e5760405160e560020a62461bcd0281526004016106d8906123ef565b6108308383836115a9565b60008061087560085490565b905061014d81101561088b5760009150506105b8565b61089c8366b1a2bc2ec500006124a9565b9392505050565b60006108ae83610af3565b82106109255760405160e560020a62461bcd02815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e647300000000000000000000000000000000000000000060648201526084016106d8565b50600160a060020a03919091166000908152600660209081526040808320938352929052205490565b61083083838360405180602001604052806000815250610fa1565b600061097460085490565b82106109eb5760405160e560020a62461bcd02815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e6473000000000000000000000000000000000000000060648201526084016106d8565b60088281548110610a0f5760e060020a634e487b7102600052603260045260246000fd5b90600052602060002001549050919050565b600a54600160a060020a03163314610a4e5760405160e560020a62461bcd0281526004016106d8906123ba565b8051610a6190600c906020840190611ec0565b5050565b600081815260026020526040812054600160a060020a0316806105b55760405160e560020a62461bcd02815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016106d8565b6000600160a060020a038216610b745760405160e560020a62461bcd02815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016106d8565b50600160a060020a031660009081526003602052604090205490565b600a54600160a060020a03163314610bbd5760405160e560020a62461bcd0281526004016106d8906123ba565b600a54604051600091600160a060020a0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a805473ffffffffffffffffffffffffffffffffffffffff19169055565b60606000610c2183610af3565b905060008167ffffffffffffffff811115610c4f5760e060020a634e487b7102600052604160045260246000fd5b604051908082528060200260200182016040528015610c78578160200160208202803683370190505b50905060005b82811015610cd057610c9085826108a3565b828281518110610cb35760e060020a634e487b7102600052603260045260246000fd5b602090810291909101015280610cc881612549565b915050610c7e565b509392505050565b600a54600160a060020a03163314610d055760405160e560020a62461bcd0281526004016106d8906123ba565b6040513390303180156108fc02916000818181858888f19350505050610d2a57600080fd5b565b6060600180546105cc9061250b565b600160a060020a038216331415610d975760405160e560020a62461bcd02815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106d8565b336000818152600560209081526040808320600160a060020a0387168085529252909120805460ff191684151517905590600160a060020a03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e04911515815260200190565b60405180910390a35050565b600a54600160a060020a03163314610e3d5760405160e560020a62461bcd0281526004016106d8906123ba565b61270f8151610e4b60085490565b610e55919061247d565b1115610ea65760405160e560020a62461bcd02815260206004820152600e60248201527f4d6178206c696d6974206869742100000000000000000000000000000000000060448201526064016106d8565b60de8151600b54610eb7919061247d565b1115610f2e5760405160e560020a62461bcd02815260206004820152602e60248201527f446576656c6f706572204769766541776179206c696d69742068617320616c7260448201527f65616479206265656e206869742100000000000000000000000000000000000060648201526084016106d8565b60005b8151811015610a6157610f76828281518110610f605760e060020a634e487b7102600052603260045260246000fd5b6020026020010151610f7160085490565b611794565b6001600b6000828254610f89919061247d565b90915550819050610f9981612549565b915050610f31565b610fab338361149e565b610fca5760405160e560020a62461bcd0281526004016106d8906123ef565b610fd6848484846117ae565b50505050565b61270f81610fe960085490565b610ff3919061247d565b11156110445760405160e560020a62461bcd02815260206004820152600e60248201527f4d6178206c696d6974206869742100000000000000000000000000000000000060448201526064016106d8565b61014d61105060085490565b10156110ae57806001146110a95760405160e560020a62461bcd02815260206004820152600a60248201527f457863656564732031210000000000000000000000000000000000000000000060448201526064016106d8565b611102565b60648111156111025760405160e560020a62461bcd02815260206004820152600c60248201527f457863656564732031303021000000000000000000000000000000000000000060448201526064016106d8565b61110b81610869565b34101561115d5760405160e560020a62461bcd02815260206004820152601260248201527f56616c75652062656c6f7720707269636521000000000000000000000000000060448201526064016106d8565b60005b81811015610a615761117533610f7160085490565b8061117f81612549565b915050611160565b600081815260026020526040902054606090600160a060020a03166112175760405160e560020a62461bcd02815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016106d8565b60006112216117e4565b90506000815111611241576040518060200160405280600081525061089c565b8061124b846117f3565b60405160200161125c92919061229b565b604051602081830303815290604052915050919050565b600a54600160a060020a031633146112a05760405160e560020a62461bcd0281526004016106d8906123ba565b600160a060020a03811661131f5760405160e560020a62461bcd02815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016106d8565b600a54604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6000600160e060020a031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806113eb5750600160e060020a031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806105b557507f01ffc9a700000000000000000000000000000000000000000000000000000000600160e060020a03198316146105b5565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a038416908117909155819061146582610a65565b600160a060020a03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081815260026020526040812054600160a060020a031661152b5760405160e560020a62461bcd02815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016106d8565b600061153683610a65565b905080600160a060020a031684600160a060020a03161480611571575083600160a060020a03166115668461064f565b600160a060020a0316145b806115a15750600160a060020a0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b82600160a060020a03166115bc82610a65565b600160a060020a03161461163b5760405160e560020a62461bcd02815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016106d8565b600160a060020a0382166116b95760405160e560020a62461bcd028152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016106d8565b6116c4838383611967565b6116cf600082611423565b600160a060020a03831660009081526003602052604081208054600192906116f89084906124c8565b9091555050600160a060020a038216600090815260036020526040812080546001929061172690849061247d565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610a61828260405180602001604052806000815250611a24565b6117b98484846115a9565b6117c584848484611a5a565b610fd65760405160e560020a62461bcd0281526004016106d89061235d565b6060600c80546105cc9061250b565b606081611834575060408051808201909152600181527f300000000000000000000000000000000000000000000000000000000000000060208201526105b8565b8160005b811561185e578061184881612549565b91506118579050600a83612495565b9150611838565b60008167ffffffffffffffff81111561188a5760e060020a634e487b7102600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156118b4576020820181803683370190505b5090505b84156115a1576118c96001836124c8565b91506118d6600a86612564565b6118e190603061247d565b7f0100000000000000000000000000000000000000000000000000000000000000028183815181106119265760e060020a634e487b7102600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611960600a86612495565b94506118b8565b600160a060020a0383166119c2576119bd81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6119e5565b81600160a060020a031683600160a060020a0316146119e5576119e58382611b9c565b600160a060020a038216611a01576119fc81611c39565b610830565b82600160a060020a031682600160a060020a031614610830576108308282611d1b565b611a2e8383611d5f565b611a3b6000848484611a5a565b6108305760405160e560020a62461bcd0281526004016106d89061235d565b6000600160a060020a0384163b15611b91576040517f150b7a02000000000000000000000000000000000000000000000000000000008152600160a060020a0385169063150b7a0290611ab79033908990889088906004016122ca565b602060405180830381600087803b158015611ad157600080fd5b505af1925050508015611b01575060408051601f3d908101601f19168201909252611afe918101906121f5565b60015b611b5e573d808015611b2f576040519150601f19603f3d011682016040523d82523d6000602084013e611b34565b606091505b508051611b565760405160e560020a62461bcd0281526004016106d89061235d565b805181602001fd5b600160e060020a0319167f150b7a02000000000000000000000000000000000000000000000000000000001490506115a1565b506001949350505050565b60006001611ba984610af3565b611bb391906124c8565b600083815260076020526040902054909150808214611c0657600160a060020a03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b506000918252600760209081526040808420849055600160a060020a039094168352600681528383209183525290812055565b600854600090611c4b906001906124c8565b60008381526009602052604081205460088054939450909284908110611c845760e060020a634e487b7102600052603260045260246000fd5b906000526020600020015490508060088381548110611cb65760e060020a634e487b7102600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611cff5760e060020a634e487b7102600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611d2683610af3565b600160a060020a039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b600160a060020a038216611db85760405160e560020a62461bcd02815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106d8565b600081815260026020526040902054600160a060020a031615611e205760405160e560020a62461bcd02815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106d8565b611e2c60008383611967565b600160a060020a0382166000908152600360205260408120805460019290611e5590849061247d565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611ecc9061250b565b90600052602060002090601f016020900481019282611eee5760008555611f34565b82601f10611f0757805160ff1916838001178555611f34565b82800160010185558215611f34579182015b82811115611f34578251825591602001919060010190611f19565b50611f40929150611f44565b5090565b5b80821115611f405760008155600101611f45565b600067ffffffffffffffff831115611f7357611f736125aa565b611f86601f8401601f191660200161244c565b9050828152838383011115611f9a57600080fd5b828260208301376000602084830101529392505050565b8035600160a060020a03811681146105b857600080fd5b600060208284031215611fd9578081fd5b61089c82611fb1565b60008060408385031215611ff4578081fd5b611ffd83611fb1565b915061200b60208401611fb1565b90509250929050565b600080600060608486031215612028578081fd5b61203184611fb1565b925061203f60208501611fb1565b9150604084013590509250925092565b60008060008060808587031215612064578081fd5b61206d85611fb1565b935061207b60208601611fb1565b925060408501359150606085013567ffffffffffffffff81111561209d578182fd5b8501601f810187136120ad578182fd5b6120bc87823560208401611f59565b91505092959194509250565b600080604083850312156120da578182fd5b6120e383611fb1565b9150602083013580151581146120f7578182fd5b809150509250929050565b60008060408385031215612114578182fd5b61211d83611fb1565b946020939093013593505050565b6000602080838503121561213d578182fd5b823567ffffffffffffffff80821115612154578384fd5b818501915085601f830112612167578384fd5b813581811115612179576121796125aa565b838102915061218984830161244c565b8181528481019084860184860187018a10156121a3578788fd5b8795505b838610156121cc576121b881611fb1565b8352600195909501949186019186016121a7565b5098975050505050505050565b6000602082840312156121ea578081fd5b813561089c816125c3565b600060208284031215612206578081fd5b815161089c816125c3565b600060208284031215612222578081fd5b813567ffffffffffffffff811115612238578182fd5b8201601f81018413612248578182fd5b6115a184823560208401611f59565b600060208284031215612268578081fd5b5035919050565b600081518084526122878160208601602086016124df565b601f01601f19169290920160200192915050565b600083516122ad8184602088016124df565b8351908301906122c18183602088016124df565b01949350505050565b6000600160a060020a038087168352808616602084015250836040830152608060608301526122fc608083018461226f565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561233e57835183529284019291840191600101612322565b50909695505050505050565b60006020825261089c602083018461226f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527f63656976657220696d706c656d656e7465720000000000000000000000000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612475576124756125aa565b604052919050565b6000821982111561249057612490612578565b500190565b6000826124a4576124a4612591565b500490565b60008160001904831182151516156124c3576124c3612578565b500290565b6000828210156124da576124da612578565b500390565b60005b838110156124fa5781810151838201526020016124e2565b83811115610fd65750506000910152565b60028104600182168061251f57607f821691505b602082108114156125435760e060020a634e487b7102600052602260045260246000fd5b50919050565b600060001982141561255d5761255d612578565b5060010190565b60008261257357612573612591565b500690565b60e060020a634e487b7102600052601160045260246000fd5b60e060020a634e487b7102600052601260045260246000fd5b60e060020a634e487b7102600052604160045260246000fd5b600160e060020a0319811681146125d957600080fd5b5056fea2646970667358221220399457eb7ebbee9cad1142cbd91c288ae0a41bb311ca0698d07617a057ef010e64736f6c634300080300330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d4e4e6e6342445a6f365055757754635377356f74516a75527a524e7432704c4b6b61646d35727569795343412f000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101df576000357c010000000000000000000000000000000000000000000000000000000090048063715018a611610114578063a22cb465116100b2578063bd5cf9a911610081578063bd5cf9a9146104d8578063c87b56dd146104ee578063e985e9c51461050e578063f2fde38b14610557576101df565b8063a22cb46514610472578063b83c611714610492578063b88d4fde146104a5578063ba8b7e84146104c5576101df565b80638da5cb5b116100ee5780638da5cb5b14610414578063931ee5d21461043257806395d89b411461044857806396d668b11461045d576101df565b8063715018a6146103ca5780638462151c146103df578063853828b61461040c576101df565b80632f745c59116101815780634f6ccce71161015b5780634f6ccce71461034a57806355f804b31461036a5780636352211e1461038a57806370a08231146103aa576101df565b80632f745c59146102f457806342842e0e1461031457806346ab30c514610334576101df565b8063095ea7b3116101bd578063095ea7b31461027357806318160ddd1461029557806323b872dd146102b457806326a49e37146102d4576101df565b806301ffc9a7146101e457806306fdde0314610219578063081812fc1461023b575b600080fd5b3480156101f057600080fd5b506102046101ff3660046121d9565b610577565b60405190151581526020015b60405180910390f35b34801561022557600080fd5b5061022e6105bd565b604051610210919061234a565b34801561024757600080fd5b5061025b610256366004612257565b61064f565b604051600160a060020a039091168152602001610210565b34801561027f57600080fd5b5061029361028e366004612102565b6106fd565b005b3480156102a157600080fd5b506008545b604051908152602001610210565b3480156102c057600080fd5b506102936102cf366004612014565b610835565b3480156102e057600080fd5b506102a66102ef366004612257565b610869565b34801561030057600080fd5b506102a661030f366004612102565b6108a3565b34801561032057600080fd5b5061029361032f366004612014565b61094e565b34801561034057600080fd5b506102a6600b5481565b34801561035657600080fd5b506102a6610365366004612257565b610969565b34801561037657600080fd5b50610293610385366004612211565b610a21565b34801561039657600080fd5b5061025b6103a5366004612257565b610a65565b3480156103b657600080fd5b506102a66103c5366004611fc8565b610af3565b3480156103d657600080fd5b50610293610b90565b3480156103eb57600080fd5b506103ff6103fa366004611fc8565b610c14565b6040516102109190612306565b610293610cd8565b34801561042057600080fd5b50600a54600160a060020a031661025b565b34801561043e57600080fd5b506102a661270f81565b34801561045457600080fd5b5061022e610d2c565b34801561046957600080fd5b506102a660de81565b34801561047e57600080fd5b5061029361048d3660046120c8565b610d3b565b6102936104a036600461212b565b610e10565b3480156104b157600080fd5b506102936104c036600461204f565b610fa1565b6102936104d3366004612257565b610fdc565b3480156104e457600080fd5b506102a661014d81565b3480156104fa57600080fd5b5061022e610509366004612257565b611187565b34801561051a57600080fd5b50610204610529366004611fe2565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561056357600080fd5b50610293610572366004611fc8565b611273565b6000600160e060020a031982167f780e9d630000000000000000000000000000000000000000000000000000000014806105b557506105b582611388565b90505b919050565b6060600080546105cc9061250b565b80601f01602080910402602001604051908101604052809291908181526020018280546105f89061250b565b80156106455780601f1061061a57610100808354040283529160200191610645565b820191906000526020600020905b81548152906001019060200180831161062857829003601f168201915b5050505050905090565b600081815260026020526040812054600160a060020a03166106e15760405160e560020a62461bcd02815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b50600090815260046020526040902054600160a060020a031690565b600061070882610a65565b905080600160a060020a031683600160a060020a031614156107955760405160e560020a62461bcd02815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016106d8565b33600160a060020a03821614806107b157506107b18133610529565b6108265760405160e560020a62461bcd02815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106d8565b6108308383611423565b505050565b61083f338261149e565b61085e5760405160e560020a62461bcd0281526004016106d8906123ef565b6108308383836115a9565b60008061087560085490565b905061014d81101561088b5760009150506105b8565b61089c8366b1a2bc2ec500006124a9565b9392505050565b60006108ae83610af3565b82106109255760405160e560020a62461bcd02815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e647300000000000000000000000000000000000000000060648201526084016106d8565b50600160a060020a03919091166000908152600660209081526040808320938352929052205490565b61083083838360405180602001604052806000815250610fa1565b600061097460085490565b82106109eb5760405160e560020a62461bcd02815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e6473000000000000000000000000000000000000000060648201526084016106d8565b60088281548110610a0f5760e060020a634e487b7102600052603260045260246000fd5b90600052602060002001549050919050565b600a54600160a060020a03163314610a4e5760405160e560020a62461bcd0281526004016106d8906123ba565b8051610a6190600c906020840190611ec0565b5050565b600081815260026020526040812054600160a060020a0316806105b55760405160e560020a62461bcd02815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016106d8565b6000600160a060020a038216610b745760405160e560020a62461bcd02815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016106d8565b50600160a060020a031660009081526003602052604090205490565b600a54600160a060020a03163314610bbd5760405160e560020a62461bcd0281526004016106d8906123ba565b600a54604051600091600160a060020a0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a805473ffffffffffffffffffffffffffffffffffffffff19169055565b60606000610c2183610af3565b905060008167ffffffffffffffff811115610c4f5760e060020a634e487b7102600052604160045260246000fd5b604051908082528060200260200182016040528015610c78578160200160208202803683370190505b50905060005b82811015610cd057610c9085826108a3565b828281518110610cb35760e060020a634e487b7102600052603260045260246000fd5b602090810291909101015280610cc881612549565b915050610c7e565b509392505050565b600a54600160a060020a03163314610d055760405160e560020a62461bcd0281526004016106d8906123ba565b6040513390303180156108fc02916000818181858888f19350505050610d2a57600080fd5b565b6060600180546105cc9061250b565b600160a060020a038216331415610d975760405160e560020a62461bcd02815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106d8565b336000818152600560209081526040808320600160a060020a0387168085529252909120805460ff191684151517905590600160a060020a03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e04911515815260200190565b60405180910390a35050565b600a54600160a060020a03163314610e3d5760405160e560020a62461bcd0281526004016106d8906123ba565b61270f8151610e4b60085490565b610e55919061247d565b1115610ea65760405160e560020a62461bcd02815260206004820152600e60248201527f4d6178206c696d6974206869742100000000000000000000000000000000000060448201526064016106d8565b60de8151600b54610eb7919061247d565b1115610f2e5760405160e560020a62461bcd02815260206004820152602e60248201527f446576656c6f706572204769766541776179206c696d69742068617320616c7260448201527f65616479206265656e206869742100000000000000000000000000000000000060648201526084016106d8565b60005b8151811015610a6157610f76828281518110610f605760e060020a634e487b7102600052603260045260246000fd5b6020026020010151610f7160085490565b611794565b6001600b6000828254610f89919061247d565b90915550819050610f9981612549565b915050610f31565b610fab338361149e565b610fca5760405160e560020a62461bcd0281526004016106d8906123ef565b610fd6848484846117ae565b50505050565b61270f81610fe960085490565b610ff3919061247d565b11156110445760405160e560020a62461bcd02815260206004820152600e60248201527f4d6178206c696d6974206869742100000000000000000000000000000000000060448201526064016106d8565b61014d61105060085490565b10156110ae57806001146110a95760405160e560020a62461bcd02815260206004820152600a60248201527f457863656564732031210000000000000000000000000000000000000000000060448201526064016106d8565b611102565b60648111156111025760405160e560020a62461bcd02815260206004820152600c60248201527f457863656564732031303021000000000000000000000000000000000000000060448201526064016106d8565b61110b81610869565b34101561115d5760405160e560020a62461bcd02815260206004820152601260248201527f56616c75652062656c6f7720707269636521000000000000000000000000000060448201526064016106d8565b60005b81811015610a615761117533610f7160085490565b8061117f81612549565b915050611160565b600081815260026020526040902054606090600160a060020a03166112175760405160e560020a62461bcd02815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016106d8565b60006112216117e4565b90506000815111611241576040518060200160405280600081525061089c565b8061124b846117f3565b60405160200161125c92919061229b565b604051602081830303815290604052915050919050565b600a54600160a060020a031633146112a05760405160e560020a62461bcd0281526004016106d8906123ba565b600160a060020a03811661131f5760405160e560020a62461bcd02815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016106d8565b600a54604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6000600160e060020a031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806113eb5750600160e060020a031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806105b557507f01ffc9a700000000000000000000000000000000000000000000000000000000600160e060020a03198316146105b5565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a038416908117909155819061146582610a65565b600160a060020a03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081815260026020526040812054600160a060020a031661152b5760405160e560020a62461bcd02815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016106d8565b600061153683610a65565b905080600160a060020a031684600160a060020a03161480611571575083600160a060020a03166115668461064f565b600160a060020a0316145b806115a15750600160a060020a0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b82600160a060020a03166115bc82610a65565b600160a060020a03161461163b5760405160e560020a62461bcd02815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016106d8565b600160a060020a0382166116b95760405160e560020a62461bcd028152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016106d8565b6116c4838383611967565b6116cf600082611423565b600160a060020a03831660009081526003602052604081208054600192906116f89084906124c8565b9091555050600160a060020a038216600090815260036020526040812080546001929061172690849061247d565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610a61828260405180602001604052806000815250611a24565b6117b98484846115a9565b6117c584848484611a5a565b610fd65760405160e560020a62461bcd0281526004016106d89061235d565b6060600c80546105cc9061250b565b606081611834575060408051808201909152600181527f300000000000000000000000000000000000000000000000000000000000000060208201526105b8565b8160005b811561185e578061184881612549565b91506118579050600a83612495565b9150611838565b60008167ffffffffffffffff81111561188a5760e060020a634e487b7102600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156118b4576020820181803683370190505b5090505b84156115a1576118c96001836124c8565b91506118d6600a86612564565b6118e190603061247d565b7f0100000000000000000000000000000000000000000000000000000000000000028183815181106119265760e060020a634e487b7102600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611960600a86612495565b94506118b8565b600160a060020a0383166119c2576119bd81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6119e5565b81600160a060020a031683600160a060020a0316146119e5576119e58382611b9c565b600160a060020a038216611a01576119fc81611c39565b610830565b82600160a060020a031682600160a060020a031614610830576108308282611d1b565b611a2e8383611d5f565b611a3b6000848484611a5a565b6108305760405160e560020a62461bcd0281526004016106d89061235d565b6000600160a060020a0384163b15611b91576040517f150b7a02000000000000000000000000000000000000000000000000000000008152600160a060020a0385169063150b7a0290611ab79033908990889088906004016122ca565b602060405180830381600087803b158015611ad157600080fd5b505af1925050508015611b01575060408051601f3d908101601f19168201909252611afe918101906121f5565b60015b611b5e573d808015611b2f576040519150601f19603f3d011682016040523d82523d6000602084013e611b34565b606091505b508051611b565760405160e560020a62461bcd0281526004016106d89061235d565b805181602001fd5b600160e060020a0319167f150b7a02000000000000000000000000000000000000000000000000000000001490506115a1565b506001949350505050565b60006001611ba984610af3565b611bb391906124c8565b600083815260076020526040902054909150808214611c0657600160a060020a03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b506000918252600760209081526040808420849055600160a060020a039094168352600681528383209183525290812055565b600854600090611c4b906001906124c8565b60008381526009602052604081205460088054939450909284908110611c845760e060020a634e487b7102600052603260045260246000fd5b906000526020600020015490508060088381548110611cb65760e060020a634e487b7102600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611cff5760e060020a634e487b7102600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611d2683610af3565b600160a060020a039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b600160a060020a038216611db85760405160e560020a62461bcd02815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106d8565b600081815260026020526040902054600160a060020a031615611e205760405160e560020a62461bcd02815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106d8565b611e2c60008383611967565b600160a060020a0382166000908152600360205260408120805460019290611e5590849061247d565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611ecc9061250b565b90600052602060002090601f016020900481019282611eee5760008555611f34565b82601f10611f0757805160ff1916838001178555611f34565b82800160010185558215611f34579182015b82811115611f34578251825591602001919060010190611f19565b50611f40929150611f44565b5090565b5b80821115611f405760008155600101611f45565b600067ffffffffffffffff831115611f7357611f736125aa565b611f86601f8401601f191660200161244c565b9050828152838383011115611f9a57600080fd5b828260208301376000602084830101529392505050565b8035600160a060020a03811681146105b857600080fd5b600060208284031215611fd9578081fd5b61089c82611fb1565b60008060408385031215611ff4578081fd5b611ffd83611fb1565b915061200b60208401611fb1565b90509250929050565b600080600060608486031215612028578081fd5b61203184611fb1565b925061203f60208501611fb1565b9150604084013590509250925092565b60008060008060808587031215612064578081fd5b61206d85611fb1565b935061207b60208601611fb1565b925060408501359150606085013567ffffffffffffffff81111561209d578182fd5b8501601f810187136120ad578182fd5b6120bc87823560208401611f59565b91505092959194509250565b600080604083850312156120da578182fd5b6120e383611fb1565b9150602083013580151581146120f7578182fd5b809150509250929050565b60008060408385031215612114578182fd5b61211d83611fb1565b946020939093013593505050565b6000602080838503121561213d578182fd5b823567ffffffffffffffff80821115612154578384fd5b818501915085601f830112612167578384fd5b813581811115612179576121796125aa565b838102915061218984830161244c565b8181528481019084860184860187018a10156121a3578788fd5b8795505b838610156121cc576121b881611fb1565b8352600195909501949186019186016121a7565b5098975050505050505050565b6000602082840312156121ea578081fd5b813561089c816125c3565b600060208284031215612206578081fd5b815161089c816125c3565b600060208284031215612222578081fd5b813567ffffffffffffffff811115612238578182fd5b8201601f81018413612248578182fd5b6115a184823560208401611f59565b600060208284031215612268578081fd5b5035919050565b600081518084526122878160208601602086016124df565b601f01601f19169290920160200192915050565b600083516122ad8184602088016124df565b8351908301906122c18183602088016124df565b01949350505050565b6000600160a060020a038087168352808616602084015250836040830152608060608301526122fc608083018461226f565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561233e57835183529284019291840191600101612322565b50909695505050505050565b60006020825261089c602083018461226f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527f63656976657220696d706c656d656e7465720000000000000000000000000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612475576124756125aa565b604052919050565b6000821982111561249057612490612578565b500190565b6000826124a4576124a4612591565b500490565b60008160001904831182151516156124c3576124c3612578565b500290565b6000828210156124da576124da612578565b500390565b60005b838110156124fa5781810151838201526020016124e2565b83811115610fd65750506000910152565b60028104600182168061251f57607f821691505b602082108114156125435760e060020a634e487b7102600052602260045260246000fd5b50919050565b600060001982141561255d5761255d612578565b5060010190565b60008261257357612573612591565b500690565b60e060020a634e487b7102600052601160045260246000fd5b60e060020a634e487b7102600052601260045260246000fd5b60e060020a634e487b7102600052604160045260246000fd5b600160e060020a0319811681146125d957600080fd5b5056fea2646970667358221220399457eb7ebbee9cad1142cbd91c288ae0a41bb311ca0698d07617a057ef010e64736f6c63430008030033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d4e4e6e6342445a6f365055757754635377356f74516a75527a524e7432704c4b6b61646d35727569795343412f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://gateway.pinata.cloud/ipfs/QmNNncBDZo6PUuwTcSw5otQjuRzRNt2pLKkadm5ruiySCA/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [2] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [3] : 732f516d4e4e6e6342445a6f365055757754635377356f74516a75527a524e74
Arg [4] : 32704c4b6b61646d35727569795343412f000000000000000000000000000000


Deployed Bytecode Sourcemap

42792:2573:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34293:237;;;;;;;;;;-1:-1:-1;34293:237:0;;;;;:::i;:::-;;:::i;:::-;;;7294:14:1;;7287:22;7269:41;;7257:2;7242:18;34293:237:0;;;;;;;;21498:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22958:221::-;;;;;;;;;;-1:-1:-1;22958:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5906:55:1;;;5888:74;;5876:2;5861:18;22958:221:0;5843:125:1;22495:397:0;;;;;;;;;;-1:-1:-1;22495:397:0;;;;;:::i;:::-;;:::i;:::-;;34946:113;;;;;;;;;;-1:-1:-1;35034:10:0;:17;34946:113;;;16683:25:1;;;16671:2;16656:18;34946:113:0;16638:76:1;23848:305:0;;;;;;;;;;-1:-1:-1;23848:305:0;;;;;:::i;:::-;;:::i;43848:235::-;;;;;;;;;;-1:-1:-1;43848:235:0;;;;;:::i;:::-;;:::i;34614:256::-;;;;;;;;;;-1:-1:-1;34614:256:0;;;;;:::i;:::-;;:::i;24224:151::-;;;;;;;;;;-1:-1:-1;24224:151:0;;;;;:::i;:::-;;:::i;43005:33::-;;;;;;;;;;;;;;;;35136:233;;;;;;;;;;-1:-1:-1;35136:233:0;;;;;:::i;:::-;;:::i;44659:102::-;;;;;;;;;;-1:-1:-1;44659:102:0;;;;;:::i;:::-;;:::i;21192:239::-;;;;;;;;;;-1:-1:-1;21192:239:0;;;;;:::i;:::-;;:::i;20922:208::-;;;;;;;;;;-1:-1:-1;20922:208:0;;;;;:::i;:::-;;:::i;42165:148::-;;;;;;;;;;;;;:::i;44247:385::-;;;;;;;;;;-1:-1:-1;44247:385:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;45237:125::-;;;:::i;41514:87::-;;;;;;;;;;-1:-1:-1;41587:6:0;;-1:-1:-1;;;;;41587:6:0;41514:87;;42849:44;;;;;;;;;;;;42889:4;42849:44;;21667:104;;;;;;;;;;;;;:::i;42952:46::-;;;;;;;;;;;;42995:3;42952:46;;23251:295;;;;;;;;;;-1:-1:-1;23251:295:0;;;;;:::i;:::-;;:::i;44769:460::-;;;;;;:::i;:::-;;:::i;24446:285::-;;;;;;;;;;-1:-1:-1;24446:285:0;;;;;:::i;:::-;;:::i;43234:606::-;;;;;;:::i;:::-;;:::i;42900:45::-;;;;;;;;;;;;42942:3;42900:45;;21842:360;;;;;;;;;;-1:-1:-1;21842:360:0;;;;;:::i;:::-;;:::i;23617:164::-;;;;;;;;;;-1:-1:-1;23617:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;23738:25:0;;;23714:4;23738:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23617:164;42468:244;;;;;;;;;;-1:-1:-1;42468:244:0;;;;;:::i;:::-;;:::i;34293:237::-;34395:4;-1:-1:-1;;;;;;34419:50:0;;34434:35;34419:50;;:103;;;34486:36;34510:11;34486:23;:36::i;:::-;34412:110;;34293:237;;;;:::o;21498:100::-;21552:13;21585:5;21578:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21498:100;:::o;22958:221::-;23034:7;26287:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26287:16:0;23054:73;;;;-1:-1:-1;;;;;23054:73:0;;13216:2:1;23054:73:0;;;13198:21:1;13255:2;13235:18;;;13228:30;13294:34;13274:18;;;13267:62;13365:14;13345:18;;;13338:42;13397:19;;23054:73:0;;;;;;;;;-1:-1:-1;23147:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23147:24:0;;22958:221::o;22495:397::-;22576:13;22592:23;22607:7;22592:14;:23::i;:::-;22576:39;;22640:5;-1:-1:-1;;;;;22634:11:0;:2;-1:-1:-1;;;;;22634:11:0;;;22626:57;;;;-1:-1:-1;;;;;22626:57:0;;14816:2:1;22626:57:0;;;14798:21:1;14855:2;14835:18;;;14828:30;14894:34;14874:18;;;14867:62;14965:3;14945:18;;;14938:31;14986:19;;22626:57:0;14788:223:1;22626:57:0;15934:10;-1:-1:-1;;;;;22704:21:0;;;;:62;;-1:-1:-1;22729:37:0;22746:5;15934:10;22753:12;15854:98;22729:37;22696:154;;;;-1:-1:-1;;;;;22696:154:0;;11268:2:1;22696:154:0;;;11250:21:1;11307:2;11287:18;;;11280:30;11346:34;11326:18;;;11319:62;11417:26;11397:18;;;11390:54;11461:19;;22696:154:0;11240:246:1;22696:154:0;22863:21;22872:2;22876:7;22863:8;:21::i;:::-;22495:397;;;:::o;23848:305::-;24009:41;15934:10;24042:7;24009:18;:41::i;:::-;24001:103;;;;-1:-1:-1;;;;;24001:103:0;;;;;;;:::i;:::-;24117:28;24127:4;24133:2;24137:7;24117:9;:28::i;43848:235::-;43900:7;43920:11;43934:13;35034:10;:17;34946:113;;43934:13;43920:27;;42942:3;43962;:21;43958:62;;;44007:1;44000:8;;;;;43958:62;44037:26;44057:6;44037:17;:26;:::i;:::-;44030:33;43848:235;-1:-1:-1;;;43848:235:0:o;34614:256::-;34711:7;34747:23;34764:5;34747:16;:23::i;:::-;34739:5;:31;34731:87;;;;-1:-1:-1;;;;;34731:87:0;;7747:2:1;34731:87:0;;;7729:21:1;7786:2;7766:18;;;7759:30;7825:34;7805:18;;;7798:62;7896:13;7876:18;;;7869:41;7927:19;;34731:87:0;7719:233:1;34731:87:0;-1:-1:-1;;;;;;34836:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34614:256::o;24224:151::-;24328:39;24345:4;24351:2;24355:7;24328:39;;;;;;;;;;;;:16;:39::i;35136:233::-;35211:7;35247:30;35034:10;:17;34946:113;;35247:30;35239:5;:38;35231:95;;;;-1:-1:-1;;;;;35231:95:0;;15979:2:1;35231:95:0;;;15961:21:1;16018:2;15998:18;;;15991:30;16057:34;16037:18;;;16030:62;16128:14;16108:18;;;16101:42;16160:19;;35231:95:0;15951:234:1;35231:95:0;35344:10;35355:5;35344:17;;;;;;-1:-1:-1;;;;;35344:17:0;;;;;;;;;;;;;;;;;35337:24;;35136:233;;;:::o;44659:102::-;41587:6;;-1:-1:-1;;;;;41587:6:0;15934:10;41734:23;41726:68;;;;-1:-1:-1;;;;;41726:68:0;;;;;;;:::i;:::-;44730:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;:::-;;44659:102:::0;:::o;21192:239::-;21264:7;21300:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21300:16:0;21335:19;21327:73;;;;-1:-1:-1;;;;;21327:73:0;;12104:2:1;21327:73:0;;;12086:21:1;12143:2;12123:18;;;12116:30;12182:34;12162:18;;;12155:62;12253:11;12233:18;;;12226:39;12282:19;;21327:73:0;12076:231:1;20922:208:0;20994:7;-1:-1:-1;;;;;21022:19:0;;21014:74;;;;-1:-1:-1;;;;;21014:74:0;;11693:2:1;21014:74:0;;;11675:21:1;11732:2;11712:18;;;11705:30;11771:34;11751:18;;;11744:62;11842:12;11822:18;;;11815:40;11872:19;;21014:74:0;11665:232:1;21014:74:0;-1:-1:-1;;;;;;21106:16:0;;;;;:9;:16;;;;;;;20922:208::o;42165:148::-;41587:6;;-1:-1:-1;;;;;41587:6:0;15934:10;41734:23;41726:68;;;;-1:-1:-1;;;;;41726:68:0;;;;;;;:::i;:::-;42256:6:::1;::::0;42235:40:::1;::::0;42272:1:::1;::::0;-1:-1:-1;;;;;42256:6:0::1;::::0;42235:40:::1;::::0;42272:1;;42235:40:::1;42286:6;:19:::0;;-1:-1:-1;;42286:19:0::1;::::0;;42165:148::o;44247:385::-;44336:16;44370:18;44391:17;44401:6;44391:9;:17::i;:::-;44370:38;;44421:25;44463:10;44449:25;;;;;;-1:-1:-1;;;;;44449:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44449:25:0;;44421:53;;44490:9;44485:112;44509:10;44505:1;:14;44485:112;;;44555:30;44575:6;44583:1;44555:19;:30::i;:::-;44541:8;44550:1;44541:11;;;;;;-1:-1:-1;;;;;44541:11:0;;;;;;;;;;;;;;;;;;:44;44521:3;;;;:::i;:::-;;;;44485:112;;;-1:-1:-1;44616:8:0;44247:385;-1:-1:-1;;;44247:385:0:o;45237:125::-;41587:6;;-1:-1:-1;;;;;41587:6:0;15934:10;41734:23;41726:68;;;;-1:-1:-1;;;;;41726:68:0;;;;;;;:::i;:::-;45304:49:::1;::::0;15934:10;;45339:4:::1;45331:21;45304:49:::0;::::1;;;::::0;::::1;::::0;;;45331:21;15934:10;45304:49;::::1;;;;;;45296:58;;;::::0;::::1;;45237:125::o:0;21667:104::-;21723:13;21756:7;21749:14;;;;;:::i;23251:295::-;-1:-1:-1;;;;;23354:24:0;;15934:10;23354:24;;23346:62;;;;-1:-1:-1;;;;;23346:62:0;;10086:2:1;23346:62:0;;;10068:21:1;10125:2;10105:18;;;10098:30;10164:27;10144:18;;;10137:55;10209:18;;23346:62:0;10058:175:1;23346:62:0;15934:10;23421:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;23421:42:0;;;;;;;;;;:53;;-1:-1:-1;;23421:53:0;;;;;;;:42;-1:-1:-1;;;;;23490:48:0;;23529:8;23490:48;;;;7294:14:1;7287:22;7269:41;;7257:2;7242:18;;7224:92;23490:48:0;;;;;;;;23251:295;;:::o;44769:460::-;41587:6;;-1:-1:-1;;;;;41587:6:0;15934:10;41734:23;41726:68;;;;-1:-1:-1;;;;;41726:68:0;;;;;;;:::i;:::-;42889:4:::1;44875:3;:10;44859:13;35034:10:::0;:17;34946:113;;44859:13:::1;:26;;;;:::i;:::-;:43;;44851:70;;;::::0;-1:-1:-1;;;;;44851:70:0;;15636:2:1;44851:70:0::1;::::0;::::1;15618:21:1::0;15675:2;15655:18;;;15648:30;15714:16;15694:18;;;15687:44;15748:18;;44851:70:0::1;15608:164:1::0;44851:70:0::1;42995:3;44971;:10;44954:14;;:27;;;;:::i;:::-;:47;;44932:143;;;::::0;-1:-1:-1;;;;;44932:143:0;;10853:2:1;44932:143:0::1;::::0;::::1;10835:21:1::0;10892:2;10872:18;;;10865:30;10931:34;10911:18;;;10904:62;11002:16;10982:18;;;10975:44;11036:19;;44932:143:0::1;10825:236:1::0;44932:143:0::1;45093:9;45088:134;45112:3;:10;45108:1;:14;45088:134;;;45144:32;45154:3;45158:1;45154:6;;;;;;-1:-1:-1::0;;;;;45154:6:0::1;;;;;;;;;;;;;;;45162:13;35034:10:::0;:17;34946:113;;45162:13:::1;45144:9;:32::i;:::-;45209:1;45191:14;;:19;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;45124:3:0;;-1:-1:-1;45124:3:0::1;::::0;::::1;:::i;:::-;;;;45088:134;;24446:285:::0;24578:41;15934:10;24611:7;24578:18;:41::i;:::-;24570:103;;;;-1:-1:-1;;;;;24570:103:0;;;;;;;:::i;:::-;24684:39;24698:4;24704:2;24708:7;24717:5;24684:13;:39::i;:::-;24446:285;;;;:::o;43234:606::-;42889:4;43349:17;43333:13;35034:10;:17;34946:113;;43333:13;:33;;;;:::i;:::-;:50;;43311:114;;;;-1:-1:-1;;;;;43311:114:0;;15636:2:1;43311:114:0;;;15618:21:1;15675:2;15655:18;;;15648:30;15714:16;15694:18;;;15687:44;15748:18;;43311:114:0;15608:164:1;43311:114:0;42942:3;43442:13;35034:10;:17;34946:113;;43442:13;:31;43438:191;;;43498:17;43519:1;43498:22;43490:45;;;;-1:-1:-1;;;;;43490:45:0;;9342:2:1;43490:45:0;;;9324:21:1;9381:2;9361:18;;;9354:30;9420:12;9400:18;;;9393:40;9450:18;;43490:45:0;9314:160:1;43490:45:0;43438:191;;;43597:3;43576:17;:24;;43568:49;;;;-1:-1:-1;;;;;43568:49:0;;12514:2:1;43568:49:0;;;12496:21:1;12553:2;12533:18;;;12526:30;12592:14;12572:18;;;12565:42;12624:18;;43568:49:0;12486:162:1;43568:49:0;43662:24;43668:17;43662:5;:24::i;:::-;43649:9;:37;;43641:68;;;;-1:-1:-1;;;;;43641:68:0;;16392:2:1;43641:68:0;;;16374:21:1;16431:2;16411:18;;;16404:30;16470:20;16450:18;;;16443:48;16508:18;;43641:68:0;16364:168:1;43641:68:0;43727:9;43722:111;43746:17;43742:1;:21;43722:111;;;43785:36;43795:10;43807:13;35034:10;:17;34946:113;;43785:36;43765:3;;;;:::i;:::-;;;;43722:111;;21842:360;26263:4;26287:16;;;:7;:16;;;;;;21915:13;;-1:-1:-1;;;;;26287:16:0;21941:76;;;;-1:-1:-1;;;;;21941:76:0;;14400:2:1;21941:76:0;;;14382:21:1;14439:2;14419:18;;;14412:30;14478:34;14458:18;;;14451:62;14549:17;14529:18;;;14522:45;14584:19;;21941:76:0;14372:237:1;21941:76:0;22030:21;22054:10;:8;:10::i;:::-;22030:34;;22106:1;22088:7;22082:21;:25;:112;;;;;;;;;;;;;;;;;22147:7;22156:18;:7;:16;:18::i;:::-;22130:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22075:119;;;21842:360;;;:::o;42468:244::-;41587:6;;-1:-1:-1;;;;;41587:6:0;15934:10;41734:23;41726:68;;;;-1:-1:-1;;;;;41726:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42557:22:0;::::1;42549:73;;;::::0;-1:-1:-1;;;;;42549:73:0;;8578:2:1;42549:73:0::1;::::0;::::1;8560:21:1::0;8617:2;8597:18;;;8590:30;8656:34;8636:18;;;8629:62;8727:8;8707:18;;;8700:36;8753:19;;42549:73:0::1;8550:228:1::0;42549:73:0::1;42659:6;::::0;42638:38:::1;::::0;-1:-1:-1;;;;;42638:38:0;;::::1;::::0;42659:6:::1;::::0;42638:38:::1;::::0;42659:6:::1;::::0;42638:38:::1;42687:6;:17:::0;;-1:-1:-1;;42687:17:0::1;-1:-1:-1::0;;;;;42687:17:0;;;::::1;::::0;;;::::1;::::0;;42468:244::o;20566:292::-;20668:4;-1:-1:-1;;;;;;20692:40:0;;20707:25;20692:40;;:105;;-1:-1:-1;;;;;;;20749:48:0;;20764:33;20749:48;20692:105;:158;;;-1:-1:-1;19188:25:0;-1:-1:-1;;;;;;19173:40:0;;;20814:36;19064:157;30075:174;30150:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;30150:29:0;-1:-1:-1;;;;;30150:29:0;;;;;;;;:24;;30204:23;30150:24;30204:14;:23::i;:::-;-1:-1:-1;;;;;30195:46:0;;;;;;;;;;;30075:174;;:::o;26492:348::-;26585:4;26287:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26287:16:0;26602:73;;;;-1:-1:-1;;;;;26602:73:0;;10440:2:1;26602:73:0;;;10422:21:1;10479:2;10459:18;;;10452:30;10518:34;10498:18;;;10491:62;10589:14;10569:18;;;10562:42;10621:19;;26602:73:0;10412:234:1;26602:73:0;26686:13;26702:23;26717:7;26702:14;:23::i;:::-;26686:39;;26755:5;-1:-1:-1;;;;;26744:16:0;:7;-1:-1:-1;;;;;26744:16:0;;:51;;;;26788:7;-1:-1:-1;;;;;26764:31:0;:20;26776:7;26764:11;:20::i;:::-;-1:-1:-1;;;;;26764:31:0;;26744:51;:87;;;-1:-1:-1;;;;;;23738:25:0;;;23714:4;23738:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;26799:32;26736:96;26492:348;-1:-1:-1;;;;26492:348:0:o;29413:544::-;29538:4;-1:-1:-1;;;;;29511:31:0;:23;29526:7;29511:14;:23::i;:::-;-1:-1:-1;;;;;29511:31:0;;29503:85;;;;-1:-1:-1;;;;;29503:85:0;;13990:2:1;29503:85:0;;;13972:21:1;14029:2;14009:18;;;14002:30;14068:34;14048:18;;;14041:62;14139:11;14119:18;;;14112:39;14168:19;;29503:85:0;13962:231:1;29503:85:0;-1:-1:-1;;;;;29607:16:0;;29599:65;;;;-1:-1:-1;;;;;29599:65:0;;9681:2:1;29599:65:0;;;9663:21:1;9720:2;9700:18;;;9693:30;9759:34;9739:18;;;9732:62;9830:6;9810:18;;;9803:34;9854:19;;29599:65:0;9653:226:1;29599:65:0;29677:39;29698:4;29704:2;29708:7;29677:20;:39::i;:::-;29781:29;29798:1;29802:7;29781:8;:29::i;:::-;-1:-1:-1;;;;;29823:15:0;;;;;;:9;:15;;;;;:20;;29842:1;;29823:15;:20;;29842:1;;29823:20;:::i;:::-;;;;-1:-1:-1;;;;;;;29854:13:0;;;;;;:9;:13;;;;;:18;;29871:1;;29854:13;:18;;29871:1;;29854:18;:::i;:::-;;;;-1:-1:-1;;29883:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;29883:21:0;-1:-1:-1;;;;;29883:21:0;;;;;;;;;29922:27;;29883:16;;29922:27;;;;;;;29413:544;;;:::o;27182:110::-;27258:26;27268:2;27272:7;27258:26;;;;;;;;;;;;:9;:26::i;25613:272::-;25727:28;25737:4;25743:2;25747:7;25727:9;:28::i;:::-;25774:48;25797:4;25803:2;25807:7;25816:5;25774:22;:48::i;:::-;25766:111;;;;-1:-1:-1;;;;;25766:111:0;;;;;;;:::i;44108:114::-;44168:13;44201;44194:20;;;;;:::i;16509:723::-;16565:13;16786:10;16782:53;;-1:-1:-1;16813:10:0;;;;;;;;;;;;;;;;;;;16782:53;16860:5;16845:12;16901:78;16908:9;;16901:78;;16934:8;;;;:::i;:::-;;-1:-1:-1;16957:10:0;;-1:-1:-1;16965:2:0;16957:10;;:::i;:::-;;;16901:78;;;16989:19;17021:6;17011:17;;;;;;-1:-1:-1;;;;;17011:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17011:17:0;;16989:39;;17039:154;17046:10;;17039:154;;17073:11;17083:1;17073:11;;:::i;:::-;;-1:-1:-1;17142:10:0;17150:2;17142:5;:10;:::i;:::-;17129:24;;:2;:24;:::i;:::-;17116:39;;17099:6;17106;17099:14;;;;;;-1:-1:-1;;;;;17099:14:0;;;;;;;;;;;;:56;;;;;;;;;;-1:-1:-1;17170:11:0;17179:2;17170:11;;:::i;:::-;;;17039:154;;35982:555;-1:-1:-1;;;;;36154:18:0;;36150:187;;36189:40;36221:7;37364:10;:17;;37337:24;;;;:15;:24;;;;;:44;;;37392:24;;;;;;;;;;;;37260:164;36189:40;36150:187;;;36259:2;-1:-1:-1;;;;;36251:10:0;:4;-1:-1:-1;;;;;36251:10:0;;36247:90;;36278:47;36311:4;36317:7;36278:32;:47::i;:::-;-1:-1:-1;;;;;36351:16:0;;36347:183;;36384:45;36421:7;36384:36;:45::i;:::-;36347:183;;;36457:4;-1:-1:-1;;;;;36451:10:0;:2;-1:-1:-1;;;;;36451:10:0;;36447:83;;36478:40;36506:2;36510:7;36478:27;:40::i;27519:250::-;27615:18;27621:2;27625:7;27615:5;:18::i;:::-;27652:54;27683:1;27687:2;27691:7;27700:5;27652:22;:54::i;:::-;27644:117;;;;-1:-1:-1;;;;;27644:117:0;;;;;;;:::i;30814:843::-;30935:4;-1:-1:-1;;;;;30961:13:0;;8338:20;8377:8;30957:693;;30997:72;;;;;-1:-1:-1;;;;;30997:36:0;;;;;:72;;15934:10;;31048:4;;31054:7;;31063:5;;30997:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30997:72:0;;;;;;;;-1:-1:-1;;30997:72:0;;;;;;;;;;;;:::i;:::-;;;30993:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31243:13:0;;31239:341;;31286:60;;-1:-1:-1;;;;;31286:60:0;;;;;;;:::i;31239:341::-;31530:6;31524:13;31515:6;31511:2;31507:15;31500:38;30993:602;-1:-1:-1;;;;;;31120:55:0;31130:45;31120:55;;-1:-1:-1;31113:62:0;;30957:693;-1:-1:-1;31634:4:0;30814:843;;;;;;:::o;38051:988::-;38317:22;38367:1;38342:22;38359:4;38342:16;:22::i;:::-;:26;;;;:::i;:::-;38379:18;38400:26;;;:17;:26;;;;;;38317:51;;-1:-1:-1;38533:28:0;;;38529:328;;-1:-1:-1;;;;;38600:18:0;;38578:19;38600:18;;;:12;:18;;;;;;;;:34;;;;;;;;;38651:30;;;;;;:44;;;38768:30;;:17;:30;;;;;:43;;;38529:328;-1:-1:-1;38953:26:0;;;;:17;:26;;;;;;;;38946:33;;;-1:-1:-1;;;;;38997:18:0;;;;;:12;:18;;;;;:34;;;;;;;38990:41;38051:988::o;39334:1079::-;39612:10;:17;39587:22;;39612:21;;39632:1;;39612:21;:::i;:::-;39644:18;39665:24;;;:15;:24;;;;;;40038:10;:26;;39587:46;;-1:-1:-1;39665:24:0;;39587:46;;40038:26;;;;-1:-1:-1;;;;;40038:26:0;;;;;;;;;;;;;;;;;40016:48;;40102:11;40077:10;40088;40077:22;;;;;;-1:-1:-1;;;;;40077:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;40182:28;;;:15;:28;;;;;;;:41;;;40354:24;;;;;40347:31;40389:10;:16;;;;;-1:-1:-1;;;;;40389:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;39334:1079;;;;:::o;36838:221::-;36923:14;36940:20;36957:2;36940:16;:20::i;:::-;-1:-1:-1;;;;;36971:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37016:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;36838:221:0:o;28105:382::-;-1:-1:-1;;;;;28185:16:0;;28177:61;;;;-1:-1:-1;;;;;28177:61:0;;12855:2:1;28177:61:0;;;12837:21:1;;;12874:18;;;12867:30;12933:34;12913:18;;;12906:62;12985:18;;28177:61:0;12827:182:1;28177:61:0;26263:4;26287:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26287:16:0;:30;28249:58;;;;-1:-1:-1;;;;;28249:58:0;;8985:2:1;28249:58:0;;;8967:21:1;9024:2;9004:18;;;8997:30;9063;9043:18;;;9036:58;9111:18;;28249:58:0;8957:178:1;28249:58:0;28320:45;28349:1;28353:2;28357:7;28320:20;:45::i;:::-;-1:-1:-1;;;;;28378:13:0;;;;;;:9;:13;;;;;:18;;28395:1;;28378:13;:18;;28395:1;;28378:18;:::i;:::-;;;;-1:-1:-1;;28407:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;28407:21:0;-1:-1:-1;;;;;28407:21:0;;;;;;;;28446:33;;28407:16;;;28446:33;;28407:16;;28446:33;28105:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;;112:18;104:6;101:30;98:2;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:2;;;309:1;306;299:12;268:2;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;88:332;;;;;:::o;425:196::-;493:20;;-1:-1:-1;;;;;542:54:1;;532:65;;522:2;;611:1;608;601:12;626:196;;738:2;726:9;717:7;713:23;709:32;706:2;;;759:6;751;744:22;706:2;787:29;806:9;787:29;:::i;827:270::-;;;956:2;944:9;935:7;931:23;927:32;924:2;;;977:6;969;962:22;924:2;1005:29;1024:9;1005:29;:::i;:::-;995:39;;1053:38;1087:2;1076:9;1072:18;1053:38;:::i;:::-;1043:48;;914:183;;;;;:::o;1102:338::-;;;;1248:2;1236:9;1227:7;1223:23;1219:32;1216:2;;;1269:6;1261;1254:22;1216:2;1297:29;1316:9;1297:29;:::i;:::-;1287:39;;1345:38;1379:2;1368:9;1364:18;1345:38;:::i;:::-;1335:48;;1430:2;1419:9;1415:18;1402:32;1392:42;;1206:234;;;;;:::o;1445:696::-;;;;;1617:3;1605:9;1596:7;1592:23;1588:33;1585:2;;;1639:6;1631;1624:22;1585:2;1667:29;1686:9;1667:29;:::i;:::-;1657:39;;1715:38;1749:2;1738:9;1734:18;1715:38;:::i;:::-;1705:48;;1800:2;1789:9;1785:18;1772:32;1762:42;;1855:2;1844:9;1840:18;1827:32;1882:18;1874:6;1871:30;1868:2;;;1919:6;1911;1904:22;1868:2;1947:22;;2000:4;1992:13;;1988:27;-1:-1:-1;1978:2:1;;2034:6;2026;2019:22;1978:2;2062:73;2127:7;2122:2;2109:16;2104:2;2100;2096:11;2062:73;:::i;:::-;2052:83;;;1575:566;;;;;;;:::o;2146:367::-;;;2272:2;2260:9;2251:7;2247:23;2243:32;2240:2;;;2293:6;2285;2278:22;2240:2;2321:29;2340:9;2321:29;:::i;:::-;2311:39;;2400:2;2389:9;2385:18;2372:32;2447:5;2440:13;2433:21;2426:5;2423:32;2413:2;;2474:6;2466;2459:22;2413:2;2502:5;2492:15;;;2230:283;;;;;:::o;2518:264::-;;;2647:2;2635:9;2626:7;2622:23;2618:32;2615:2;;;2668:6;2660;2653:22;2615:2;2696:29;2715:9;2696:29;:::i;:::-;2686:39;2772:2;2757:18;;;;2744:32;;-1:-1:-1;;;2605:177:1:o;2787:1009::-;;2902:2;2945;2933:9;2924:7;2920:23;2916:32;2913:2;;;2966:6;2958;2951:22;2913:2;3011:9;2998:23;3040:18;3081:2;3073:6;3070:14;3067:2;;;3102:6;3094;3087:22;3067:2;3145:6;3134:9;3130:22;3120:32;;3190:7;3183:4;3179:2;3175:13;3171:27;3161:2;;3217:6;3209;3202:22;3161:2;3258;3245:16;3280:2;3276;3273:10;3270:2;;;3286:18;;:::i;:::-;3333:2;3329;3325:11;3315:21;;3356:28;3380:2;3376;3372:11;3356:28;:::i;:::-;3418:15;;;3449:12;;;;3481:11;;;3511;;;3507:20;;3504:33;-1:-1:-1;3501:2:1;;;3555:6;3547;3540:22;3501:2;3582:6;3573:15;;3597:169;3611:2;3608:1;3605:9;3597:169;;;3668:23;3687:3;3668:23;:::i;:::-;3656:36;;3629:1;3622:9;;;;;3712:12;;;;3744;;3597:169;;;-1:-1:-1;3785:5:1;2882:914;-1:-1:-1;;;;;;;;2882:914:1:o;3801:255::-;;3912:2;3900:9;3891:7;3887:23;3883:32;3880:2;;;3933:6;3925;3918:22;3880:2;3977:9;3964:23;3996:30;4020:5;3996:30;:::i;4061:259::-;;4183:2;4171:9;4162:7;4158:23;4154:32;4151:2;;;4204:6;4196;4189:22;4151:2;4241:9;4235:16;4260:30;4284:5;4260:30;:::i;4325:480::-;;4447:2;4435:9;4426:7;4422:23;4418:32;4415:2;;;4468:6;4460;4453:22;4415:2;4513:9;4500:23;4546:18;4538:6;4535:30;4532:2;;;4583:6;4575;4568:22;4532:2;4611:22;;4664:4;4656:13;;4652:27;-1:-1:-1;4642:2:1;;4698:6;4690;4683:22;4642:2;4726:73;4791:7;4786:2;4773:16;4768:2;4764;4760:11;4726:73;:::i;4810:190::-;;4922:2;4910:9;4901:7;4897:23;4893:32;4890:2;;;4943:6;4935;4928:22;4890:2;-1:-1:-1;4971:23:1;;4880:120;-1:-1:-1;4880:120:1:o;5005:257::-;;5084:5;5078:12;5111:6;5106:3;5099:19;5127:63;5183:6;5176:4;5171:3;5167:14;5160:4;5153:5;5149:16;5127:63;:::i;:::-;5244:2;5223:15;-1:-1:-1;;5219:29:1;5210:39;;;;5251:4;5206:50;;5054:208;-1:-1:-1;;5054:208:1:o;5267:470::-;;5484:6;5478:13;5500:53;5546:6;5541:3;5534:4;5526:6;5522:17;5500:53;:::i;:::-;5616:13;;5575:16;;;;5638:57;5616:13;5575:16;5672:4;5660:17;;5638:57;:::i;:::-;5711:20;;5454:283;-1:-1:-1;;;;5454:283:1:o;5973:511::-;;-1:-1:-1;;;;;6277:2:1;6269:6;6265:15;6254:9;6247:34;6329:2;6321:6;6317:15;6312:2;6301:9;6297:18;6290:43;;6369:6;6364:2;6353:9;6349:18;6342:34;6412:3;6407:2;6396:9;6392:18;6385:31;6433:45;6473:3;6462:9;6458:19;6450:6;6433:45;:::i;:::-;6425:53;6176:308;-1:-1:-1;;;;;;6176:308:1:o;6489:635::-;6660:2;6712:21;;;6782:13;;6685:18;;;6804:22;;;6489:635;;6660:2;6883:15;;;;6857:2;6842:18;;;6489:635;6929:169;6943:6;6940:1;6937:13;6929:169;;;7004:13;;6992:26;;7073:15;;;;7038:12;;;;6965:1;6958:9;6929:169;;;-1:-1:-1;7115:3:1;;6640:484;-1:-1:-1;;;;;;6640:484:1:o;7321:219::-;;7470:2;7459:9;7452:21;7490:44;7530:2;7519:9;7515:18;7507:6;7490:44;:::i;7957:414::-;8159:2;8141:21;;;8198:2;8178:18;;;8171:30;8237:34;8232:2;8217:18;;8210:62;8308:20;8303:2;8288:18;;8281:48;8361:3;8346:19;;8131:240::o;13427:356::-;13629:2;13611:21;;;13648:18;;;13641:30;13707:34;13702:2;13687:18;;13680:62;13774:2;13759:18;;13601:182::o;15016:413::-;15218:2;15200:21;;;15257:2;15237:18;;;15230:30;15296:34;15291:2;15276:18;;15269:62;15367:19;15362:2;15347:18;;15340:47;15419:3;15404:19;;15190:239::o;16719:275::-;16790:2;16784:9;16855:2;16836:13;;-1:-1:-1;;16832:27:1;16820:40;;16890:18;16875:34;;16911:22;;;16872:62;16869:2;;;16937:18;;:::i;:::-;16973:2;16966:22;16764:230;;-1:-1:-1;16764:230:1:o;16999:128::-;;17070:1;17066:6;17063:1;17060:13;17057:2;;;17076:18;;:::i;:::-;-1:-1:-1;17112:9:1;;17047:80::o;17132:120::-;;17198:1;17188:2;;17203:18;;:::i;:::-;-1:-1:-1;17237:9:1;;17178:74::o;17257:168::-;;17363:1;17359;17355:6;17351:14;17348:1;17345:21;17340:1;17333:9;17326:17;17322:45;17319:2;;;17370:18;;:::i;:::-;-1:-1:-1;17410:9:1;;17309:116::o;17430:125::-;;17498:1;17495;17492:8;17489:2;;;17503:18;;:::i;:::-;-1:-1:-1;17540:9:1;;17479:76::o;17560:258::-;17632:1;17642:113;17656:6;17653:1;17650:13;17642:113;;;17732:11;;;17726:18;17713:11;;;17706:39;17678:2;17671:10;17642:113;;;17773:6;17770:1;17767:13;17764:2;;;-1:-1:-1;;17808:1:1;17790:16;;17783:27;17613:205::o;17823:437::-;17908:1;17898:12;;17955:1;17945:12;;;17966:2;;18020:4;18012:6;18008:17;17998:27;;17966:2;18073;18065:6;18062:14;18042:18;18039:38;18036:2;;;-1:-1:-1;;;;;18107:1:1;18100:88;18211:4;18208:1;18201:15;18239:4;18236:1;18229:15;18036:2;;17878:382;;;:::o;18265:135::-;;-1:-1:-1;;18325:17:1;;18322:2;;;18345:18;;:::i;:::-;-1:-1:-1;18392:1:1;18381:13;;18312:88::o;18405:112::-;;18463:1;18453:2;;18468:18;;:::i;:::-;-1:-1:-1;18502:9:1;;18443:74::o;18522:184::-;-1:-1:-1;;;;;18571:1:1;18564:88;18671:4;18668:1;18661:15;18695:4;18692:1;18685:15;18711:184;-1:-1:-1;;;;;18760:1:1;18753:88;18860:4;18857:1;18850:15;18884:4;18881:1;18874:15;18900:184;-1:-1:-1;;;;;18949:1:1;18942:88;19049:4;19046:1;19039:15;19073:4;19070:1;19063:15;19089:177;-1:-1:-1;;;;;;19167:5:1;19163:78;19156:5;19153:89;19143:2;;19256:1;19253;19246:12;19143:2;19133:133;:::o

Swarm Source

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