ETH Price: $3,291.24 (-1.17%)

Token

Santas Workshop (SNTAWRKSP)
 

Overview

Max Total Supply

37 SNTAWRKSP

Holders

13

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
wenis.eth
Balance
1 SNTAWRKSP
0xbb2ea32f7b9262719e797429b2f82d1eab66253c
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:
SantasWorkshop

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 12 of 13: SantasWorkshop.sol
// SPDX-License-Identifier: MIT

/*
   _____             _             __          __        _        _                 
  / ____|           | |            \ \        / /       | |      | |                
 | (___   __ _ _ __ | |_ __ _ ___   \ \  /\  / /__  _ __| | _____| |__   ___  _ __  
  \___ \ / _` | '_ \| __/ _` / __|   \ \/  \/ / _ \| '__| |/ / __| '_ \ / _ \| '_ \ 
  ____) | (_| | | | | || (_| \__ \    \  /\  / (_) | |  |   <\__ \ | | | (_) | |_) |
 |_____/ \__,_|_| |_|\__\__,_|___/     \/  \/ \___/|_|  |_|\_\___/_| |_|\___/| .__/ 
                                                                             | |    
                                                                             |_|    
*/

pragma solidity ^0.8.0;

import "./Ownable.sol";
import "./ERC721URIStorage.sol";

contract SantasWorkshop is ERC721URIStorage, Ownable {
    string public baseURI;
    bool private saleStarted;

    uint256 public totalHats;
    uint256 public price = 25000000000000000;

    uint256 public maxHats = 12025;
    uint256 public maxPerTX = 12;

    address private constant santa = 0x513d334F1530cFc5bdCc3a589a952EaA0dA34547;

    constructor(string memory startURI) ERC721("Santas Workshop", "SNTAWRKSP") {
        baseURI = startURI;
    }

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

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

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

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

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

    function mint(uint256 amount) payable public {
        require(saleStarted, "Sale not live");
        require(amount > 0 && amount <= maxPerTX, "12 Max Hats Per Transaction");
        require(maxHats > amount + totalHats, "Sold Out");
        require(msg.value >= amount * price, "Send .025 per Hat");

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

        for(uint256 i=0; i< amount; i++){
            _mint(_msgSender(), 1 + totalHats++);
        }
    }  
}

File 1 of 13: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 2 of 13: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 3 of 13: ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 4 of 13: ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

File 5 of 13: ERC721Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Burnable.sol)

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./Context.sol";

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

File 6 of 13: ERC721URIStorage.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721URIStorage.sol)

pragma solidity ^0.8.0;

import "./ERC721.sol";

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

File 7 of 13: IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 8 of 13: IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 9 of 13: IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @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 10 of 13: IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 11 of 13: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

File 13 of 13: Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"startURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHats","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalHats","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"}]

60806040526658d15e17628000600b55612ef9600c55600c600d553480156200002757600080fd5b506040516200216d3803806200216d8339810160408190526200004a91620001ee565b604080518082018252600f81526e053616e74617320576f726b73686f7608c1b6020808301918252835180850190945260098452680534e544157524b53560bc1b908401528151919291620000a29160009162000148565b508051620000b890600190602084019062000148565b505050620000d5620000cf620000f260201b60201c565b620000f6565b8051620000ea90600890602084019062000148565b505062000310565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015690620002bd565b90600052602060002090601f0160209004810192826200017a5760008555620001c5565b82601f106200019557805160ff1916838001178555620001c5565b82800160010185558215620001c5579182015b82811115620001c5578251825591602001919060010190620001a8565b50620001d3929150620001d7565b5090565b5b80821115620001d35760008155600101620001d8565b6000602080838503121562000201578182fd5b82516001600160401b038082111562000218578384fd5b818501915085601f8301126200022c578384fd5b815181811115620002415762000241620002fa565b604051601f8201601f1916810185018381118282101715620002675762000267620002fa565b60405281815283820185018810156200027e578586fd5b8592505b81831015620002a1578383018501518184018601529184019162000282565b81831115620002b257858583830101525b979650505050505050565b600281046001821680620002d257607f821691505b60208210811415620002f457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611e4d80620003206000396000f3fe6080604052600436106101815760003560e01c806370a08231116100d1578063a0712d681161008a578063b88d4fde11610064578063b88d4fde146103ff578063c87b56dd1461041f578063e985e9c51461043f578063f2fde38b1461045f57610181565b8063a0712d68146103b7578063a22cb465146103ca578063a40d36cd146103ea57610181565b806370a0823114610323578063715018a6146103435780638da5cb5b1461035857806391b7f5ed1461036d57806395d89b411461038d578063a035b1fe146103a257610181565b806328d01cb31161013e57806342842e0e1161011857806342842e0e146102ae57806355f804b3146102ce5780636352211e146102ee5780636c0360eb1461030e57610181565b806328d01cb31461026f57806334918dfd146102845780633e04d9d01461029957610181565b806301ffc9a71461018657806306fdde03146101bc578063081812fc146101de578063095ea7b31461020b57806318160ddd1461022d57806323b872dd1461024f575b600080fd5b34801561019257600080fd5b506101a66101a13660046115fc565b61047f565b6040516101b3919061173e565b60405180910390f35b3480156101c857600080fd5b506101d16104c7565b6040516101b39190611749565b3480156101ea57600080fd5b506101fe6101f936600461167a565b610559565b6040516101b391906116ed565b34801561021757600080fd5b5061022b6102263660046115d3565b6105a5565b005b34801561023957600080fd5b5061024261063d565b6040516101b39190611cbe565b34801561025b57600080fd5b5061022b61026a3660046114e5565b610643565b34801561027b57600080fd5b5061024261067b565b34801561029057600080fd5b5061022b610681565b3480156102a557600080fd5b506102426106d4565b3480156102ba57600080fd5b5061022b6102c93660046114e5565b6106da565b3480156102da57600080fd5b5061022b6102e9366004611634565b6106f5565b3480156102fa57600080fd5b506101fe61030936600461167a565b61074b565b34801561031a57600080fd5b506101d1610780565b34801561032f57600080fd5b5061024261033e366004611499565b61080e565b34801561034f57600080fd5b5061022b610852565b34801561036457600080fd5b506101fe61089d565b34801561037957600080fd5b5061022b61038836600461167a565b6108ac565b34801561039957600080fd5b506101d16108f0565b3480156103ae57600080fd5b506102426108ff565b61022b6103c536600461167a565b610905565b3480156103d657600080fd5b5061022b6103e5366004611599565b610a3b565b3480156103f657600080fd5b50610242610a4d565b34801561040b57600080fd5b5061022b61041a366004611520565b610a53565b34801561042b57600080fd5b506101d161043a36600461167a565b610a92565b34801561044b57600080fd5b506101a661045a3660046114b3565b610bb3565b34801561046b57600080fd5b5061022b61047a366004611499565b610be1565b60006001600160e01b031982166380ac58cd60e01b14806104b057506001600160e01b03198216635b5e139f60e01b145b806104bf57506104bf82610c52565b90505b919050565b6060600080546104d690611d55565b80601f016020809104026020016040519081016040528092919081815260200182805461050290611d55565b801561054f5780601f106105245761010080835404028352916020019161054f565b820191906000526020600020905b81548152906001019060200180831161053257829003601f168201915b5050505050905090565b600061056482610c6b565b6105895760405162461bcd60e51b815260040161058090611b13565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105b08261074b565b9050806001600160a01b0316836001600160a01b031614156105e45760405162461bcd60e51b815260040161058090611c2c565b806001600160a01b03166105f6610c88565b6001600160a01b0316148061061257506106128161045a610c88565b61062e5760405162461bcd60e51b81526004016105809061194b565b6106388383610c8c565b505050565b600a5490565b61065461064e610c88565b82610cfa565b6106705760405162461bcd60e51b815260040161058090611c6d565b610638838383610d77565b600c5481565b610689610c88565b6001600160a01b031661069a61089d565b6001600160a01b0316146106c05760405162461bcd60e51b815260040161058090611b5f565b6009805460ff19811660ff90911615179055565b600a5481565b61063883838360405180602001604052806000815250610a53565b6106fd610c88565b6001600160a01b031661070e61089d565b6001600160a01b0316146107345760405162461bcd60e51b815260040161058090611b5f565b8051610747906008906020840190611379565b5050565b6000818152600260205260408120546001600160a01b0316806104bf5760405162461bcd60e51b8152600401610580906119f2565b6008805461078d90611d55565b80601f01602080910402602001604051908101604052809291908181526020018280546107b990611d55565b80156108065780601f106107db57610100808354040283529160200191610806565b820191906000526020600020905b8154815290600101906020018083116107e957829003601f168201915b505050505081565b60006001600160a01b0382166108365760405162461bcd60e51b8152600401610580906119a8565b506001600160a01b031660009081526003602052604090205490565b61085a610c88565b6001600160a01b031661086b61089d565b6001600160a01b0316146108915760405162461bcd60e51b815260040161058090611b5f565b61089b6000610ea4565b565b6007546001600160a01b031690565b6108b4610c88565b6001600160a01b03166108c561089d565b6001600160a01b0316146108eb5760405162461bcd60e51b815260040161058090611b5f565b600b55565b6060600180546104d690611d55565b600b5481565b60095460ff166109275760405162461bcd60e51b815260040161058090611a66565b6000811180156109395750600d548111155b6109555760405162461bcd60e51b81526004016105809061184d565b600a546109629082611cc7565b600c54116109825760405162461bcd60e51b8152600401610580906117ae565b600b5461098f9082611cf3565b3410156109ae5760405162461bcd60e51b815260040161058090611a3b565b60405173513d334f1530cfc5bdcc3a589a952eaa0da34547903480156108fc02916000818181858888f193505050501580156109ee573d6000803e3d6000fd5b5060005b8181101561074757610a29610a05610c88565b600a8054906000610a1583611d90565b90915550610a24906001611cc7565b610ef6565b80610a3381611d90565b9150506109f2565b610747610a46610c88565b8383610fd5565b600d5481565b610a64610a5e610c88565b83610cfa565b610a805760405162461bcd60e51b815260040161058090611c6d565b610a8c84848484611078565b50505050565b6060610a9d82610c6b565b610ab95760405162461bcd60e51b815260040161058090611ac2565b60008281526006602052604081208054610ad290611d55565b80601f0160208091040260200160405190810160405280929190818152602001828054610afe90611d55565b8015610b4b5780601f10610b2057610100808354040283529160200191610b4b565b820191906000526020600020905b815481529060010190602001808311610b2e57829003601f168201915b505050505090506000610b5c6110ab565b9050805160001415610b70575090506104c2565b815115610ba2578082604051602001610b8a9291906116be565b604051602081830303815290604052925050506104c2565b610bab846110ba565b949350505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610be9610c88565b6001600160a01b0316610bfa61089d565b6001600160a01b031614610c205760405162461bcd60e51b815260040161058090611b5f565b6001600160a01b038116610c465760405162461bcd60e51b8152600401610580906117d0565b610c4f81610ea4565b50565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610cc18261074b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610d0582610c6b565b610d215760405162461bcd60e51b8152600401610580906118ff565b6000610d2c8361074b565b9050806001600160a01b0316846001600160a01b03161480610d675750836001600160a01b0316610d5c84610559565b6001600160a01b0316145b80610bab5750610bab8185610bb3565b826001600160a01b0316610d8a8261074b565b6001600160a01b031614610db05760405162461bcd60e51b815260040161058090611b94565b6001600160a01b038216610dd65760405162461bcd60e51b815260040161058090611884565b610de1838383610638565b610dec600082610c8c565b6001600160a01b0383166000908152600360205260408120805460019290610e15908490611d12565b90915550506001600160a01b0382166000908152600360205260408120805460019290610e43908490611cc7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216610f1c5760405162461bcd60e51b815260040161058090611a8d565b610f2581610c6b565b15610f425760405162461bcd60e51b815260040161058090611816565b610f4e60008383610638565b6001600160a01b0382166000908152600360205260408120805460019290610f77908490611cc7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b816001600160a01b0316836001600160a01b031614156110075760405162461bcd60e51b8152600401610580906118c8565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319061106b90859061173e565b60405180910390a3505050565b611083848484610d77565b61108f8484848461113d565b610a8c5760405162461bcd60e51b81526004016105809061175c565b6060600880546104d690611d55565b60606110c582610c6b565b6110e15760405162461bcd60e51b815260040161058090611bdd565b60006110eb6110ab565b9050600081511161110b5760405180602001604052806000815250611136565b8061111584611258565b6040516020016111269291906116be565b6040516020818303038152906040525b9392505050565b6000611151846001600160a01b0316611373565b1561124d57836001600160a01b031663150b7a0261116d610c88565b8786866040518563ffffffff1660e01b815260040161118f9493929190611701565b602060405180830381600087803b1580156111a957600080fd5b505af19250505080156111d9575060408051601f3d908101601f191682019092526111d691810190611618565b60015b611233573d808015611207576040519150601f19603f3d011682016040523d82523d6000602084013e61120c565b606091505b50805161122b5760405162461bcd60e51b81526004016105809061175c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610bab565b506001949350505050565b60608161127d57506040805180820190915260018152600360fc1b60208201526104c2565b8160005b81156112a7578061129181611d90565b91506112a09050600a83611cdf565b9150611281565b60008167ffffffffffffffff8111156112d057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156112fa576020820181803683370190505b5090505b8415610bab5761130f600183611d12565b915061131c600a86611dab565b611327906030611cc7565b60f81b81838151811061134a57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061136c600a86611cdf565b94506112fe565b3b151590565b82805461138590611d55565b90600052602060002090601f0160209004810192826113a757600085556113ed565b82601f106113c057805160ff19168380011785556113ed565b828001600101855582156113ed579182015b828111156113ed5782518255916020019190600101906113d2565b506113f99291506113fd565b5090565b5b808211156113f957600081556001016113fe565b600067ffffffffffffffff8084111561142d5761142d611deb565b604051601f8501601f19168101602001828111828210171561145157611451611deb565b60405284815291508183850186101561146957600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146104c257600080fd5b6000602082840312156114aa578081fd5b61113682611482565b600080604083850312156114c5578081fd5b6114ce83611482565b91506114dc60208401611482565b90509250929050565b6000806000606084860312156114f9578081fd5b61150284611482565b925061151060208501611482565b9150604084013590509250925092565b60008060008060808587031215611535578081fd5b61153e85611482565b935061154c60208601611482565b925060408501359150606085013567ffffffffffffffff81111561156e578182fd5b8501601f8101871361157e578182fd5b61158d87823560208401611412565b91505092959194509250565b600080604083850312156115ab578182fd5b6115b483611482565b9150602083013580151581146115c8578182fd5b809150509250929050565b600080604083850312156115e5578182fd5b6115ee83611482565b946020939093013593505050565b60006020828403121561160d578081fd5b813561113681611e01565b600060208284031215611629578081fd5b815161113681611e01565b600060208284031215611645578081fd5b813567ffffffffffffffff81111561165b578182fd5b8201601f8101841361166b578182fd5b610bab84823560208401611412565b60006020828403121561168b578081fd5b5035919050565b600081518084526116aa816020860160208601611d29565b601f01601f19169290920160200192915050565b600083516116d0818460208801611d29565b8351908301906116e4818360208801611d29565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061173490830184611692565b9695505050505050565b901515815260200190565b6000602082526111366020830184611692565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526008908201526714dbdb190813dd5d60c21b604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601b908201527f3132204d6178204861747320506572205472616e73616374696f6e0000000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b60208082526011908201527014d95b99080b8c0c8d481c195c8812185d607a1b604082015260600190565b6020808252600d908201526c53616c65206e6f74206c69766560981b604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526031908201527f45524337323155524953746f726167653a2055524920717565727920666f72206040820152703737b732bc34b9ba32b73a103a37b5b2b760791b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b90815260200190565b60008219821115611cda57611cda611dbf565b500190565b600082611cee57611cee611dd5565b500490565b6000816000190483118215151615611d0d57611d0d611dbf565b500290565b600082821015611d2457611d24611dbf565b500390565b60005b83811015611d44578181015183820152602001611d2c565b83811115610a8c5750506000910152565b600281046001821680611d6957607f821691505b60208210811415611d8a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611da457611da4611dbf565b5060010190565b600082611dba57611dba611dd5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c4f57600080fdfea2646970667358221220f365d8ef04c5bfe76ab50e6a116525132d156a51439a453d9da53d2f5a25884664736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d59357261595a6b7256414653523274536a66704c4e595636664a4a416a6f6d4e33376a7664356b684141765a2f00000000000000000000

Deployed Bytecode

0x6080604052600436106101815760003560e01c806370a08231116100d1578063a0712d681161008a578063b88d4fde11610064578063b88d4fde146103ff578063c87b56dd1461041f578063e985e9c51461043f578063f2fde38b1461045f57610181565b8063a0712d68146103b7578063a22cb465146103ca578063a40d36cd146103ea57610181565b806370a0823114610323578063715018a6146103435780638da5cb5b1461035857806391b7f5ed1461036d57806395d89b411461038d578063a035b1fe146103a257610181565b806328d01cb31161013e57806342842e0e1161011857806342842e0e146102ae57806355f804b3146102ce5780636352211e146102ee5780636c0360eb1461030e57610181565b806328d01cb31461026f57806334918dfd146102845780633e04d9d01461029957610181565b806301ffc9a71461018657806306fdde03146101bc578063081812fc146101de578063095ea7b31461020b57806318160ddd1461022d57806323b872dd1461024f575b600080fd5b34801561019257600080fd5b506101a66101a13660046115fc565b61047f565b6040516101b3919061173e565b60405180910390f35b3480156101c857600080fd5b506101d16104c7565b6040516101b39190611749565b3480156101ea57600080fd5b506101fe6101f936600461167a565b610559565b6040516101b391906116ed565b34801561021757600080fd5b5061022b6102263660046115d3565b6105a5565b005b34801561023957600080fd5b5061024261063d565b6040516101b39190611cbe565b34801561025b57600080fd5b5061022b61026a3660046114e5565b610643565b34801561027b57600080fd5b5061024261067b565b34801561029057600080fd5b5061022b610681565b3480156102a557600080fd5b506102426106d4565b3480156102ba57600080fd5b5061022b6102c93660046114e5565b6106da565b3480156102da57600080fd5b5061022b6102e9366004611634565b6106f5565b3480156102fa57600080fd5b506101fe61030936600461167a565b61074b565b34801561031a57600080fd5b506101d1610780565b34801561032f57600080fd5b5061024261033e366004611499565b61080e565b34801561034f57600080fd5b5061022b610852565b34801561036457600080fd5b506101fe61089d565b34801561037957600080fd5b5061022b61038836600461167a565b6108ac565b34801561039957600080fd5b506101d16108f0565b3480156103ae57600080fd5b506102426108ff565b61022b6103c536600461167a565b610905565b3480156103d657600080fd5b5061022b6103e5366004611599565b610a3b565b3480156103f657600080fd5b50610242610a4d565b34801561040b57600080fd5b5061022b61041a366004611520565b610a53565b34801561042b57600080fd5b506101d161043a36600461167a565b610a92565b34801561044b57600080fd5b506101a661045a3660046114b3565b610bb3565b34801561046b57600080fd5b5061022b61047a366004611499565b610be1565b60006001600160e01b031982166380ac58cd60e01b14806104b057506001600160e01b03198216635b5e139f60e01b145b806104bf57506104bf82610c52565b90505b919050565b6060600080546104d690611d55565b80601f016020809104026020016040519081016040528092919081815260200182805461050290611d55565b801561054f5780601f106105245761010080835404028352916020019161054f565b820191906000526020600020905b81548152906001019060200180831161053257829003601f168201915b5050505050905090565b600061056482610c6b565b6105895760405162461bcd60e51b815260040161058090611b13565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105b08261074b565b9050806001600160a01b0316836001600160a01b031614156105e45760405162461bcd60e51b815260040161058090611c2c565b806001600160a01b03166105f6610c88565b6001600160a01b0316148061061257506106128161045a610c88565b61062e5760405162461bcd60e51b81526004016105809061194b565b6106388383610c8c565b505050565b600a5490565b61065461064e610c88565b82610cfa565b6106705760405162461bcd60e51b815260040161058090611c6d565b610638838383610d77565b600c5481565b610689610c88565b6001600160a01b031661069a61089d565b6001600160a01b0316146106c05760405162461bcd60e51b815260040161058090611b5f565b6009805460ff19811660ff90911615179055565b600a5481565b61063883838360405180602001604052806000815250610a53565b6106fd610c88565b6001600160a01b031661070e61089d565b6001600160a01b0316146107345760405162461bcd60e51b815260040161058090611b5f565b8051610747906008906020840190611379565b5050565b6000818152600260205260408120546001600160a01b0316806104bf5760405162461bcd60e51b8152600401610580906119f2565b6008805461078d90611d55565b80601f01602080910402602001604051908101604052809291908181526020018280546107b990611d55565b80156108065780601f106107db57610100808354040283529160200191610806565b820191906000526020600020905b8154815290600101906020018083116107e957829003601f168201915b505050505081565b60006001600160a01b0382166108365760405162461bcd60e51b8152600401610580906119a8565b506001600160a01b031660009081526003602052604090205490565b61085a610c88565b6001600160a01b031661086b61089d565b6001600160a01b0316146108915760405162461bcd60e51b815260040161058090611b5f565b61089b6000610ea4565b565b6007546001600160a01b031690565b6108b4610c88565b6001600160a01b03166108c561089d565b6001600160a01b0316146108eb5760405162461bcd60e51b815260040161058090611b5f565b600b55565b6060600180546104d690611d55565b600b5481565b60095460ff166109275760405162461bcd60e51b815260040161058090611a66565b6000811180156109395750600d548111155b6109555760405162461bcd60e51b81526004016105809061184d565b600a546109629082611cc7565b600c54116109825760405162461bcd60e51b8152600401610580906117ae565b600b5461098f9082611cf3565b3410156109ae5760405162461bcd60e51b815260040161058090611a3b565b60405173513d334f1530cfc5bdcc3a589a952eaa0da34547903480156108fc02916000818181858888f193505050501580156109ee573d6000803e3d6000fd5b5060005b8181101561074757610a29610a05610c88565b600a8054906000610a1583611d90565b90915550610a24906001611cc7565b610ef6565b80610a3381611d90565b9150506109f2565b610747610a46610c88565b8383610fd5565b600d5481565b610a64610a5e610c88565b83610cfa565b610a805760405162461bcd60e51b815260040161058090611c6d565b610a8c84848484611078565b50505050565b6060610a9d82610c6b565b610ab95760405162461bcd60e51b815260040161058090611ac2565b60008281526006602052604081208054610ad290611d55565b80601f0160208091040260200160405190810160405280929190818152602001828054610afe90611d55565b8015610b4b5780601f10610b2057610100808354040283529160200191610b4b565b820191906000526020600020905b815481529060010190602001808311610b2e57829003601f168201915b505050505090506000610b5c6110ab565b9050805160001415610b70575090506104c2565b815115610ba2578082604051602001610b8a9291906116be565b604051602081830303815290604052925050506104c2565b610bab846110ba565b949350505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610be9610c88565b6001600160a01b0316610bfa61089d565b6001600160a01b031614610c205760405162461bcd60e51b815260040161058090611b5f565b6001600160a01b038116610c465760405162461bcd60e51b8152600401610580906117d0565b610c4f81610ea4565b50565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610cc18261074b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610d0582610c6b565b610d215760405162461bcd60e51b8152600401610580906118ff565b6000610d2c8361074b565b9050806001600160a01b0316846001600160a01b03161480610d675750836001600160a01b0316610d5c84610559565b6001600160a01b0316145b80610bab5750610bab8185610bb3565b826001600160a01b0316610d8a8261074b565b6001600160a01b031614610db05760405162461bcd60e51b815260040161058090611b94565b6001600160a01b038216610dd65760405162461bcd60e51b815260040161058090611884565b610de1838383610638565b610dec600082610c8c565b6001600160a01b0383166000908152600360205260408120805460019290610e15908490611d12565b90915550506001600160a01b0382166000908152600360205260408120805460019290610e43908490611cc7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216610f1c5760405162461bcd60e51b815260040161058090611a8d565b610f2581610c6b565b15610f425760405162461bcd60e51b815260040161058090611816565b610f4e60008383610638565b6001600160a01b0382166000908152600360205260408120805460019290610f77908490611cc7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b816001600160a01b0316836001600160a01b031614156110075760405162461bcd60e51b8152600401610580906118c8565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319061106b90859061173e565b60405180910390a3505050565b611083848484610d77565b61108f8484848461113d565b610a8c5760405162461bcd60e51b81526004016105809061175c565b6060600880546104d690611d55565b60606110c582610c6b565b6110e15760405162461bcd60e51b815260040161058090611bdd565b60006110eb6110ab565b9050600081511161110b5760405180602001604052806000815250611136565b8061111584611258565b6040516020016111269291906116be565b6040516020818303038152906040525b9392505050565b6000611151846001600160a01b0316611373565b1561124d57836001600160a01b031663150b7a0261116d610c88565b8786866040518563ffffffff1660e01b815260040161118f9493929190611701565b602060405180830381600087803b1580156111a957600080fd5b505af19250505080156111d9575060408051601f3d908101601f191682019092526111d691810190611618565b60015b611233573d808015611207576040519150601f19603f3d011682016040523d82523d6000602084013e61120c565b606091505b50805161122b5760405162461bcd60e51b81526004016105809061175c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610bab565b506001949350505050565b60608161127d57506040805180820190915260018152600360fc1b60208201526104c2565b8160005b81156112a7578061129181611d90565b91506112a09050600a83611cdf565b9150611281565b60008167ffffffffffffffff8111156112d057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156112fa576020820181803683370190505b5090505b8415610bab5761130f600183611d12565b915061131c600a86611dab565b611327906030611cc7565b60f81b81838151811061134a57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061136c600a86611cdf565b94506112fe565b3b151590565b82805461138590611d55565b90600052602060002090601f0160209004810192826113a757600085556113ed565b82601f106113c057805160ff19168380011785556113ed565b828001600101855582156113ed579182015b828111156113ed5782518255916020019190600101906113d2565b506113f99291506113fd565b5090565b5b808211156113f957600081556001016113fe565b600067ffffffffffffffff8084111561142d5761142d611deb565b604051601f8501601f19168101602001828111828210171561145157611451611deb565b60405284815291508183850186101561146957600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146104c257600080fd5b6000602082840312156114aa578081fd5b61113682611482565b600080604083850312156114c5578081fd5b6114ce83611482565b91506114dc60208401611482565b90509250929050565b6000806000606084860312156114f9578081fd5b61150284611482565b925061151060208501611482565b9150604084013590509250925092565b60008060008060808587031215611535578081fd5b61153e85611482565b935061154c60208601611482565b925060408501359150606085013567ffffffffffffffff81111561156e578182fd5b8501601f8101871361157e578182fd5b61158d87823560208401611412565b91505092959194509250565b600080604083850312156115ab578182fd5b6115b483611482565b9150602083013580151581146115c8578182fd5b809150509250929050565b600080604083850312156115e5578182fd5b6115ee83611482565b946020939093013593505050565b60006020828403121561160d578081fd5b813561113681611e01565b600060208284031215611629578081fd5b815161113681611e01565b600060208284031215611645578081fd5b813567ffffffffffffffff81111561165b578182fd5b8201601f8101841361166b578182fd5b610bab84823560208401611412565b60006020828403121561168b578081fd5b5035919050565b600081518084526116aa816020860160208601611d29565b601f01601f19169290920160200192915050565b600083516116d0818460208801611d29565b8351908301906116e4818360208801611d29565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061173490830184611692565b9695505050505050565b901515815260200190565b6000602082526111366020830184611692565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526008908201526714dbdb190813dd5d60c21b604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601b908201527f3132204d6178204861747320506572205472616e73616374696f6e0000000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b60208082526011908201527014d95b99080b8c0c8d481c195c8812185d607a1b604082015260600190565b6020808252600d908201526c53616c65206e6f74206c69766560981b604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526031908201527f45524337323155524953746f726167653a2055524920717565727920666f72206040820152703737b732bc34b9ba32b73a103a37b5b2b760791b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b90815260200190565b60008219821115611cda57611cda611dbf565b500190565b600082611cee57611cee611dd5565b500490565b6000816000190483118215151615611d0d57611d0d611dbf565b500290565b600082821015611d2457611d24611dbf565b500390565b60005b83811015611d44578181015183820152602001611d2c565b83811115610a8c5750506000910152565b600281046001821680611d6957607f821691505b60208210811415611d8a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611da457611da4611dbf565b5060010190565b600082611dba57611dba611dd5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c4f57600080fdfea2646970667358221220f365d8ef04c5bfe76ab50e6a116525132d156a51439a453d9da53d2f5a25884664736f6c63430008000033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d59357261595a6b7256414653523274536a66704c4e595636664a4a416a6f6d4e33376a7664356b684141765a2f00000000000000000000

-----Decoded View---------------
Arg [0] : startURI (string): ipfs://QmY5raYZkrVAFSR2tSjfpLNYV6fJJAjomN37jvd5khAAvZ/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d59357261595a6b7256414653523274536a66704c4e5956
Arg [3] : 36664a4a416a6f6d4e33376a7664356b684141765a2f00000000000000000000


Deployed Bytecode Sourcemap

803:1414:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1490:300:3;;;;;;;;;;-1:-1:-1;1490:300:3;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2408:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3919:217::-;;;;;;;;;;-1:-1:-1;3919:217:3;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3457:401::-;;;;;;;;;;-1:-1:-1;3457:401:3;;;;;:::i;:::-;;:::i;:::-;;1266:94:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;4646:330:3:-;;;;;;;;;;-1:-1:-1;4646:330:3;;;;;:::i;:::-;;:::i;997:30:11:-;;;;;;;;;;;;;:::i;1575:85::-;;;;;;;;;;;;;:::i;920:24::-;;;;;;;;;;;;;:::i;5042:179:3:-;;;;;;;;;;-1:-1:-1;5042:179:3;;;;;:::i;:::-;;:::i;1477:92:11:-;;;;;;;;;;-1:-1:-1;1477:92:11;;;;;:::i;:::-;;:::i;2111:235:3:-;;;;;;;;;;-1:-1:-1;2111:235:3;;;;;:::i;:::-;;:::i;862:21:11:-;;;;;;;;;;;;;:::i;1849:205:3:-;;;;;;;;;;-1:-1:-1;1849:205:3;;;;;:::i;:::-;;:::i;1661:101:10:-;;;;;;;;;;;;;:::i;1029:85::-;;;;;;;;;;;;;:::i;1666:86:11:-;;;;;;;;;;-1:-1:-1;1666:86:11;;;;;:::i;:::-;;:::i;2570:102:3:-;;;;;;;;;;;;;:::i;950:40:11:-;;;;;;;;;;;;;:::i;1758:455::-;;;;;;:::i;:::-;;:::i;4203:153:3:-;;;;;;;;;;-1:-1:-1;4203:153:3;;;;;:::i;:::-;;:::i;1033:28:11:-;;;;;;;;;;;;;:::i;5287:320:3:-;;;;;;;;;;-1:-1:-1;5287:320:3;;;;;:::i;:::-;;:::i;466:663:5:-;;;;;;;;;;-1:-1:-1;466:663:5;;;;;:::i;:::-;;:::i;4422:162:3:-;;;;;;;;;;-1:-1:-1;4422:162:3;;;;;:::i;:::-;;:::i;1911:198:10:-;;;;;;;;;;-1:-1:-1;1911:198:10;;;;;:::i;:::-;;:::i;1490:300:3:-;1592:4;-1:-1:-1;;;;;;1627:40:3;;-1:-1:-1;;;1627:40:3;;:104;;-1:-1:-1;;;;;;;1683:48:3;;-1:-1:-1;;;1683:48:3;1627:104;:156;;;;1747:36;1771:11;1747:23;:36::i;:::-;1608:175;;1490:300;;;;:::o;2408:98::-;2462:13;2494:5;2487:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2408:98;:::o;3919:217::-;3995:7;4022:16;4030:7;4022;:16::i;:::-;4014:73;;;;-1:-1:-1;;;4014:73:3;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;4105:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;4105:24:3;;3919:217::o;3457:401::-;3537:13;3553:23;3568:7;3553:14;:23::i;:::-;3537:39;;3600:5;-1:-1:-1;;;;;3594:11:3;:2;-1:-1:-1;;;;;3594:11:3;;;3586:57;;;;-1:-1:-1;;;3586:57:3;;;;;;;:::i;:::-;3691:5;-1:-1:-1;;;;;3675:21:3;:12;:10;:12::i;:::-;-1:-1:-1;;;;;3675:21:3;;:62;;;;3700:37;3717:5;3724:12;:10;:12::i;3700:37::-;3654:165;;;;-1:-1:-1;;;3654:165:3;;;;;;;:::i;:::-;3830:21;3839:2;3843:7;3830:8;:21::i;:::-;3457:401;;;:::o;1266:94:11:-;1344:9;;1266:94;:::o;4646:330:3:-;4835:41;4854:12;:10;:12::i;:::-;4868:7;4835:18;:41::i;:::-;4827:103;;;;-1:-1:-1;;;4827:103:3;;;;;;;:::i;:::-;4941:28;4951:4;4957:2;4961:7;4941:9;:28::i;997:30:11:-;;;;:::o;1575:85::-;1252:12:10;:10;:12::i;:::-;-1:-1:-1;;;;;1241:23:10;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1241:23:10;;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;1642:11:11::1;::::0;;-1:-1:-1;;1627:26:11;::::1;1642:11;::::0;;::::1;1641:12;1627:26;::::0;;1575:85::o;920:24::-;;;;:::o;5042:179:3:-;5175:39;5192:4;5198:2;5202:7;5175:39;;;;;;;;;;;;:16;:39::i;1477:92:11:-;1252:12:10;:10;:12::i;:::-;-1:-1:-1;;;;;1241:23:10;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1241:23:10;;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;1546:16:11;;::::1;::::0;:7:::1;::::0;:16:::1;::::0;::::1;::::0;::::1;:::i;:::-;;1477:92:::0;:::o;2111:235:3:-;2183:7;2218:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2218:16:3;2252:19;2244:73;;;;-1:-1:-1;;;2244:73:3;;;;;;;:::i;862:21:11:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1849:205:3:-;1921:7;-1:-1:-1;;;;;1948:19:3;;1940:74;;;;-1:-1:-1;;;1940:74:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;;2031:16:3;;;;;:9;:16;;;;;;;1849:205::o;1661:101:10:-;1252:12;:10;:12::i;:::-;-1:-1:-1;;;;;1241:23:10;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1241:23:10;;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;1725:30:::1;1752:1;1725:18;:30::i;:::-;1661:101::o:0;1029:85::-;1101:6;;-1:-1:-1;;;;;1101:6:10;1029:85;:::o;1666:86:11:-;1252:12:10;:10;:12::i;:::-;-1:-1:-1;;;;;1241:23:10;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1241:23:10;;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;1729:5:11::1;:16:::0;1666:86::o;2570:102:3:-;2626:13;2658:7;2651:14;;;;;:::i;950:40:11:-;;;;:::o;1758:455::-;1821:11;;;;1813:37;;;;-1:-1:-1;;;1813:37:11;;;;;;;:::i;:::-;1877:1;1868:6;:10;:32;;;;;1892:8;;1882:6;:18;;1868:32;1860:72;;;;-1:-1:-1;;;1860:72:11;;;;;;;:::i;:::-;1969:9;;1960:18;;:6;:18;:::i;:::-;1950:7;;:28;1942:49;;;;-1:-1:-1;;;1942:49:11;;;;;;;:::i;:::-;2031:5;;2022:14;;:6;:14;:::i;:::-;2009:9;:27;;2001:57;;;;-1:-1:-1;;;2001:57:11;;;;;;;:::i;:::-;2069:34;;1101:42;;2093:9;2069:34;;;;;;;;;2093:9;1101:42;2069:34;;;;;;;;;;;;;;;;;;;;;2118:9;2114:93;2134:6;2131:1;:9;2114:93;;;2160:36;2166:12;:10;:12::i;:::-;2184:9;:11;;;:9;:11;;;:::i;:::-;;;;-1:-1:-1;2180:15:11;;:1;:15;:::i;:::-;2160:5;:36::i;:::-;2142:3;;;;:::i;:::-;;;;2114:93;;4203:153:3;4297:52;4316:12;:10;:12::i;:::-;4330:8;4340;4297:18;:52::i;1033:28:11:-;;;;:::o;5287:320:3:-;5456:41;5475:12;:10;:12::i;:::-;5489:7;5456:18;:41::i;:::-;5448:103;;;;-1:-1:-1;;;5448:103:3;;;;;;;:::i;:::-;5561:39;5575:4;5581:2;5585:7;5594:5;5561:13;:39::i;:::-;5287:320;;;;:::o;466:663:5:-;539:13;572:16;580:7;572;:16::i;:::-;564:78;;;;-1:-1:-1;;;564:78:5;;;;;;;:::i;:::-;653:23;679:19;;;:10;:19;;;;;653:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;708:18;729:10;:8;:10::i;:::-;708:31;;818:4;812:18;834:1;812:23;808:70;;;-1:-1:-1;858:9:5;-1:-1:-1;851:16:5;;808:70;980:23;;:27;976:106;;1054:4;1060:9;1037:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1023:48;;;;;;976:106;1099:23;1114:7;1099:14;:23::i;:::-;1092:30;466:663;-1:-1:-1;;;;466:663:5:o;4422:162:3:-;-1:-1:-1;;;;;4542:25:3;;;4519:4;4542:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4422:162::o;1911:198:10:-;1252:12;:10;:12::i;:::-;-1:-1:-1;;;;;1241:23:10;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1241:23:10;;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;-1:-1:-1;;;;;1999:22:10;::::1;1991:73;;;;-1:-1:-1::0;;;1991:73:10::1;;;;;;;:::i;:::-;2074:28;2093:8;2074:18;:28::i;:::-;1911:198:::0;:::o;829:155:2:-;-1:-1:-1;;;;;;937:40:2;;-1:-1:-1;;;937:40:2;829:155;;;:::o;7079:125:3:-;7144:4;7167:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7167:16:3;:30;;;7079:125::o;640:96:1:-;719:10;640:96;:::o;10930:171:3:-;11004:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11004:29:3;-1:-1:-1;;;;;11004:29:3;;;;;;;;:24;;11057:23;11004:24;11057:14;:23::i;:::-;-1:-1:-1;;;;;11048:46:3;;;;;;;;;;;10930:171;;:::o;7362:344::-;7455:4;7479:16;7487:7;7479;:16::i;:::-;7471:73;;;;-1:-1:-1;;;7471:73:3;;;;;;;:::i;:::-;7554:13;7570:23;7585:7;7570:14;:23::i;:::-;7554:39;;7622:5;-1:-1:-1;;;;;7611:16:3;:7;-1:-1:-1;;;;;7611:16:3;;:51;;;;7655:7;-1:-1:-1;;;;;7631:31:3;:20;7643:7;7631:11;:20::i;:::-;-1:-1:-1;;;;;7631:31:3;;7611:51;:87;;;;7666:32;7683:5;7690:7;7666:16;:32::i;10259:560::-;10413:4;-1:-1:-1;;;;;10386:31:3;:23;10401:7;10386:14;:23::i;:::-;-1:-1:-1;;;;;10386:31:3;;10378:85;;;;-1:-1:-1;;;10378:85:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;10481:16:3;;10473:65;;;;-1:-1:-1;;;10473:65:3;;;;;;;:::i;:::-;10549:39;10570:4;10576:2;10580:7;10549:20;:39::i;:::-;10650:29;10667:1;10671:7;10650:8;:29::i;:::-;-1:-1:-1;;;;;10690:15:3;;;;;;:9;:15;;;;;:20;;10709:1;;10690:15;:20;;10709:1;;10690:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10720:13:3;;;;;;:9;:13;;;;;:18;;10737:1;;10720:13;:18;;10737:1;;10720:18;:::i;:::-;;;;-1:-1:-1;;10748:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10748:21:3;-1:-1:-1;;;;;10748:21:3;;;;;;;;;10785:27;;10748:16;;10785:27;;;;;;;10259:560;;;:::o;2263:187:10:-;2355:6;;;-1:-1:-1;;;;;2371:17:10;;;-1:-1:-1;;;;;;2371:17:10;;;;;;;2403:40;;2355:6;;;2371:17;2355:6;;2403:40;;2336:16;;2403:40;2263:187;;:::o;8998:372:3:-;-1:-1:-1;;;;;9077:16:3;;9069:61;;;;-1:-1:-1;;;9069:61:3;;;;;;;:::i;:::-;9149:16;9157:7;9149;:16::i;:::-;9148:17;9140:58;;;;-1:-1:-1;;;9140:58:3;;;;;;;:::i;:::-;9209:45;9238:1;9242:2;9246:7;9209:20;:45::i;:::-;-1:-1:-1;;;;;9265:13:3;;;;;;:9;:13;;;;;:18;;9282:1;;9265:13;:18;;9282:1;;9265:18;:::i;:::-;;;;-1:-1:-1;;9293:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9293:21:3;-1:-1:-1;;;;;9293:21:3;;;;;;;;9330:33;;9293:16;;;9330:33;;9293:16;;9330:33;8998:372;;:::o;11236:307::-;11386:8;-1:-1:-1;;;;;11377:17:3;:5;-1:-1:-1;;;;;11377:17:3;;;11369:55;;;;-1:-1:-1;;;11369:55:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;11434:25:3;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;:46;;-1:-1:-1;;11434:46:3;;;;;;;11495:41;;;;;11434:46;;11495:41;:::i;:::-;;;;;;;;11236:307;;;:::o;6469:::-;6620:28;6630:4;6636:2;6640:7;6620:9;:28::i;:::-;6666:48;6689:4;6695:2;6699:7;6708:5;6666:22;:48::i;:::-;6658:111;;;;-1:-1:-1;;;6658:111:3;;;;;;;:::i;1366:105:11:-;1426:13;1457:7;1450:14;;;;;:::i;2738:329:3:-;2811:13;2844:16;2852:7;2844;:16::i;:::-;2836:76;;;;-1:-1:-1;;;2836:76:3;;;;;;;:::i;:::-;2923:21;2947:10;:8;:10::i;:::-;2923:34;;2998:1;2980:7;2974:21;:25;:86;;;;;;;;;;;;;;;;;3026:7;3035:18;:7;:16;:18::i;:::-;3009:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2974:86;2967:93;2738:329;-1:-1:-1;;;2738:329:3:o;12096:778::-;12246:4;12266:15;:2;-1:-1:-1;;;;;12266:13:3;;:15::i;:::-;12262:606;;;12317:2;-1:-1:-1;;;;;12301:36:3;;12338:12;:10;:12::i;:::-;12352:4;12358:7;12367:5;12301:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12301:72:3;;;;;;;;-1:-1:-1;;12301:72:3;;;;;;;;;;;;:::i;:::-;;;12297:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12540:13:3;;12536:266;;12582:60;;-1:-1:-1;;;12582:60:3;;;;;;;:::i;12536:266::-;12754:6;12748:13;12739:6;12735:2;12731:15;12724:38;12297:519;-1:-1:-1;;;;;;12423:51:3;-1:-1:-1;;;12423:51:3;;-1:-1:-1;12416:58:3;;12262:606;-1:-1:-1;12853:4:3;12096:778;;;;;;:::o;328:703:12:-;384:13;601:10;597:51;;-1:-1:-1;627:10:12;;;;;;;;;;;;-1:-1:-1;;;627:10:12;;;;;;597:51;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:12;;-1:-1:-1;773:2:12;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;-1:-1:-1;;;817:17:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:12;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:12;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;-1:-1:-1;;;902:14:12;;;;;;;;;;;;:56;-1:-1:-1;;;;;902:56:12;;;;;;;;-1:-1:-1;972:11:12;981:2;972:11;;:::i;:::-;;;844:150;;771:377:0;1087:20;1133:8;;;771:377::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:13;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:13;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:13;473:16;;;470:25;-1:-1:-1;467:2:13;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:13;;735:42;;725:2;;791:1;788;781:12;806:198;;918:2;906:9;897:7;893:23;889:32;886:2;;;939:6;931;924:22;886:2;967:31;988:9;967:31;:::i;1009:274::-;;;1138:2;1126:9;1117:7;1113:23;1109:32;1106:2;;;1159:6;1151;1144:22;1106:2;1187:31;1208:9;1187:31;:::i;:::-;1177:41;;1237:40;1273:2;1262:9;1258:18;1237:40;:::i;:::-;1227:50;;1096:187;;;;;:::o;1288:342::-;;;;1434:2;1422:9;1413:7;1409:23;1405:32;1402:2;;;1455:6;1447;1440:22;1402:2;1483:31;1504:9;1483:31;:::i;:::-;1473:41;;1533:40;1569:2;1558:9;1554:18;1533:40;:::i;:::-;1523:50;;1620:2;1609:9;1605:18;1592:32;1582:42;;1392:238;;;;;:::o;1635:702::-;;;;;1807:3;1795:9;1786:7;1782:23;1778:33;1775:2;;;1829:6;1821;1814:22;1775:2;1857:31;1878:9;1857:31;:::i;:::-;1847:41;;1907:40;1943:2;1932:9;1928:18;1907:40;:::i;:::-;1897:50;;1994:2;1983:9;1979:18;1966:32;1956:42;;2049:2;2038:9;2034:18;2021:32;2076:18;2068:6;2065:30;2062:2;;;2113:6;2105;2098:22;2062:2;2141:22;;2194:4;2186:13;;2182:27;-1:-1:-1;2172:2:13;;2228:6;2220;2213:22;2172:2;2256:75;2323:7;2318:2;2305:16;2300:2;2296;2292:11;2256:75;:::i;:::-;2246:85;;;1765:572;;;;;;;:::o;2342:369::-;;;2468:2;2456:9;2447:7;2443:23;2439:32;2436:2;;;2489:6;2481;2474:22;2436:2;2517:31;2538:9;2517:31;:::i;:::-;2507:41;;2598:2;2587:9;2583:18;2570:32;2645:5;2638:13;2631:21;2624:5;2621:32;2611:2;;2672:6;2664;2657:22;2611:2;2700:5;2690:15;;;2426:285;;;;;:::o;2716:266::-;;;2845:2;2833:9;2824:7;2820:23;2816:32;2813:2;;;2866:6;2858;2851:22;2813:2;2894:31;2915:9;2894:31;:::i;:::-;2884:41;2972:2;2957:18;;;;2944:32;;-1:-1:-1;;;2803:179:13:o;2987:257::-;;3098:2;3086:9;3077:7;3073:23;3069:32;3066:2;;;3119:6;3111;3104:22;3066:2;3163:9;3150:23;3182:32;3208:5;3182:32;:::i;3249:261::-;;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3392:6;3384;3377:22;3339:2;3429:9;3423:16;3448:32;3474:5;3448:32;:::i;3515:482::-;;3637:2;3625:9;3616:7;3612:23;3608:32;3605:2;;;3658:6;3650;3643:22;3605:2;3703:9;3690:23;3736:18;3728:6;3725:30;3722:2;;;3773:6;3765;3758:22;3722:2;3801:22;;3854:4;3846:13;;3842:27;-1:-1:-1;3832:2:13;;3888:6;3880;3873:22;3832:2;3916:75;3983:7;3978:2;3965:16;3960:2;3956;3952:11;3916:75;:::i;4002:190::-;;4114:2;4102:9;4093:7;4089:23;4085:32;4082:2;;;4135:6;4127;4120:22;4082:2;-1:-1:-1;4163:23:13;;4072:120;-1:-1:-1;4072:120:13:o;4197:259::-;;4278:5;4272:12;4305:6;4300:3;4293:19;4321:63;4377:6;4370:4;4365:3;4361:14;4354:4;4347:5;4343:16;4321:63;:::i;:::-;4438:2;4417:15;-1:-1:-1;;4413:29:13;4404:39;;;;4445:4;4400:50;;4248:208;-1:-1:-1;;4248:208:13:o;4461:470::-;;4678:6;4672:13;4694:53;4740:6;4735:3;4728:4;4720:6;4716:17;4694:53;:::i;:::-;4810:13;;4769:16;;;;4832:57;4810:13;4769:16;4866:4;4854:17;;4832:57;:::i;:::-;4905:20;;4648:283;-1:-1:-1;;;;4648:283:13:o;4936:203::-;-1:-1:-1;;;;;5100:32:13;;;;5082:51;;5070:2;5055:18;;5037:102::o;5144:490::-;-1:-1:-1;;;;;5413:15:13;;;5395:34;;5465:15;;5460:2;5445:18;;5438:43;5512:2;5497:18;;5490:34;;;5560:3;5555:2;5540:18;;5533:31;;;5144:490;;5581:47;;5608:19;;5600:6;5581:47;:::i;:::-;5573:55;5347:287;-1:-1:-1;;;;;;5347:287:13:o;5639:187::-;5804:14;;5797:22;5779:41;;5767:2;5752:18;;5734:92::o;5831:221::-;;5980:2;5969:9;5962:21;6000:46;6042:2;6031:9;6027:18;6019:6;6000:46;:::i;6057:414::-;6259:2;6241:21;;;6298:2;6278:18;;;6271:30;6337:34;6332:2;6317:18;;6310:62;-1:-1:-1;;;6403:2:13;6388:18;;6381:48;6461:3;6446:19;;6231:240::o;6476:331::-;6678:2;6660:21;;;6717:1;6697:18;;;6690:29;-1:-1:-1;;;6750:2:13;6735:18;;6728:38;6798:2;6783:18;;6650:157::o;6812:402::-;7014:2;6996:21;;;7053:2;7033:18;;;7026:30;7092:34;7087:2;7072:18;;7065:62;-1:-1:-1;;;7158:2:13;7143:18;;7136:36;7204:3;7189:19;;6986:228::o;7219:352::-;7421:2;7403:21;;;7460:2;7440:18;;;7433:30;7499;7494:2;7479:18;;7472:58;7562:2;7547:18;;7393:178::o;7576:351::-;7778:2;7760:21;;;7817:2;7797:18;;;7790:30;7856:29;7851:2;7836:18;;7829:57;7918:2;7903:18;;7750:177::o;7932:400::-;8134:2;8116:21;;;8173:2;8153:18;;;8146:30;8212:34;8207:2;8192:18;;8185:62;-1:-1:-1;;;8278:2:13;8263:18;;8256:34;8322:3;8307:19;;8106:226::o;8337:349::-;8539:2;8521:21;;;8578:2;8558:18;;;8551:30;8617:27;8612:2;8597:18;;8590:55;8677:2;8662:18;;8511:175::o;8691:408::-;8893:2;8875:21;;;8932:2;8912:18;;;8905:30;8971:34;8966:2;8951:18;;8944:62;-1:-1:-1;;;9037:2:13;9022:18;;9015:42;9089:3;9074:19;;8865:234::o;9104:420::-;9306:2;9288:21;;;9345:2;9325:18;;;9318:30;9384:34;9379:2;9364:18;;9357:62;9455:26;9450:2;9435:18;;9428:54;9514:3;9499:19;;9278:246::o;9529:406::-;9731:2;9713:21;;;9770:2;9750:18;;;9743:30;9809:34;9804:2;9789:18;;9782:62;-1:-1:-1;;;9875:2:13;9860:18;;9853:40;9925:3;9910:19;;9703:232::o;9940:405::-;10142:2;10124:21;;;10181:2;10161:18;;;10154:30;10220:34;10215:2;10200:18;;10193:62;-1:-1:-1;;;10286:2:13;10271:18;;10264:39;10335:3;10320:19;;10114:231::o;10350:341::-;10552:2;10534:21;;;10591:2;10571:18;;;10564:30;-1:-1:-1;;;10625:2:13;10610:18;;10603:47;10682:2;10667:18;;10524:167::o;10696:337::-;10898:2;10880:21;;;10937:2;10917:18;;;10910:30;-1:-1:-1;;;10971:2:13;10956:18;;10949:43;11024:2;11009:18;;10870:163::o;11038:356::-;11240:2;11222:21;;;11259:18;;;11252:30;11318:34;11313:2;11298:18;;11291:62;11385:2;11370:18;;11212:182::o;11399:413::-;11601:2;11583:21;;;11640:2;11620:18;;;11613:30;11679:34;11674:2;11659:18;;11652:62;-1:-1:-1;;;11745:2:13;11730:18;;11723:47;11802:3;11787:19;;11573:239::o;11817:408::-;12019:2;12001:21;;;12058:2;12038:18;;;12031:30;12097:34;12092:2;12077:18;;12070:62;-1:-1:-1;;;12163:2:13;12148:18;;12141:42;12215:3;12200:19;;11991:234::o;12230:356::-;12432:2;12414:21;;;12451:18;;;12444:30;12510:34;12505:2;12490:18;;12483:62;12577:2;12562:18;;12404:182::o;12591:405::-;12793:2;12775:21;;;12832:2;12812:18;;;12805:30;12871:34;12866:2;12851:18;;12844:62;-1:-1:-1;;;12937:2:13;12922:18;;12915:39;12986:3;12971:19;;12765:231::o;13001:411::-;13203:2;13185:21;;;13242:2;13222:18;;;13215:30;13281:34;13276:2;13261:18;;13254:62;-1:-1:-1;;;13347:2:13;13332:18;;13325:45;13402:3;13387:19;;13175:237::o;13417:397::-;13619:2;13601:21;;;13658:2;13638:18;;;13631:30;13697:34;13692:2;13677:18;;13670:62;-1:-1:-1;;;13763:2:13;13748:18;;13741:31;13804:3;13789:19;;13591:223::o;13819:413::-;14021:2;14003:21;;;14060:2;14040:18;;;14033:30;14099:34;14094:2;14079:18;;14072:62;-1:-1:-1;;;14165:2:13;14150:18;;14143:47;14222:3;14207:19;;13993:239::o;14237:177::-;14383:25;;;14371:2;14356:18;;14338:76::o;14419:128::-;;14490:1;14486:6;14483:1;14480:13;14477:2;;;14496:18;;:::i;:::-;-1:-1:-1;14532:9:13;;14467:80::o;14552:120::-;;14618:1;14608:2;;14623:18;;:::i;:::-;-1:-1:-1;14657:9:13;;14598:74::o;14677:168::-;;14783:1;14779;14775:6;14771:14;14768:1;14765:21;14760:1;14753:9;14746:17;14742:45;14739:2;;;14790:18;;:::i;:::-;-1:-1:-1;14830:9:13;;14729:116::o;14850:125::-;;14918:1;14915;14912:8;14909:2;;;14923:18;;:::i;:::-;-1:-1:-1;14960:9:13;;14899:76::o;14980:258::-;15052:1;15062:113;15076:6;15073:1;15070:13;15062:113;;;15152:11;;;15146:18;15133:11;;;15126:39;15098:2;15091:10;15062:113;;;15193:6;15190:1;15187:13;15184:2;;;-1:-1:-1;;15228:1:13;15210:16;;15203:27;15033:205::o;15243:380::-;15328:1;15318:12;;15375:1;15365:12;;;15386:2;;15440:4;15432:6;15428:17;15418:27;;15386:2;15493;15485:6;15482:14;15462:18;15459:38;15456:2;;;15539:10;15534:3;15530:20;15527:1;15520:31;15574:4;15571:1;15564:15;15602:4;15599:1;15592:15;15456:2;;15298:325;;;:::o;15628:135::-;;-1:-1:-1;;15688:17:13;;15685:2;;;15708:18;;:::i;:::-;-1:-1:-1;15755:1:13;15744:13;;15675:88::o;15768:112::-;;15826:1;15816:2;;15831:18;;:::i;:::-;-1:-1:-1;15865:9:13;;15806:74::o;15885:127::-;15946:10;15941:3;15937:20;15934:1;15927:31;15977:4;15974:1;15967:15;16001:4;15998:1;15991:15;16017:127;16078:10;16073:3;16069:20;16066:1;16059:31;16109:4;16106:1;16099:15;16133:4;16130:1;16123:15;16149:127;16210:10;16205:3;16201:20;16198:1;16191:31;16241:4;16238:1;16231:15;16265:4;16262:1;16255:15;16281:133;-1:-1:-1;;;;;;16357:32:13;;16347:43;;16337:2;;16404:1;16401;16394:12

Swarm Source

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