Abstract Testnet

Token

Joba SoulBound Token (JSBT)
ERC-721

Overview

Max Total Supply

10,000 JSBT

Holders

11

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Balance
1 JSBT
0x612d0f59d17484d136026ace1d14d67c7f6501e4
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
JobaSoulBound

Compiler Version
v0.8.4+commit.c7e474f2

ZkSolc Version
v1.5.7

Optimization Enabled:
Yes with Mode 3

Other Settings:
default evmVersion

Contract Source Code (Solidity Standard Json-Input format)

File 1 of 20 : JobaSoulBound.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";

interface JobaGenesisSoulBoundToken {
    function minted(address addr) external view returns (bool);
}

contract JobaSoulBound is
    ERC721,
    ERC721URIStorage,
    Ownable,
    Pausable,
    ReentrancyGuard
{
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIdCounter;

    JobaGenesisSoulBoundToken internal GenesisSBT;

    // Maximum number of tokens in the genesis collection
    uint256 internal MAX_SUPPLY = 10000;

    // Number of tokens minted from the genesis collection
    uint64 public TOTAL_MINTED;

    // Mapping to track minted addresses
    mapping(address => bool) public minted;

    // mapping address to token ID
    mapping(address => uint256) internal _tokenIdOf;

    //base token uri
    string public baseURI;

    // Contract URI
    string internal _contractURI;

    // Token base fee
    uint256 public fee = 0.002 ether;

    bool public isFreeMintActive = false;

    address public treasury;

    // Event to notify when a profile is updated
    event ProfileUpdated(uint256 indexed tokenId, string newProfileDataURI);

    // Event to notify when a token is burned
    event TokenBurned(uint256 indexed tokenId);

    // Event set base token URI
    event BaseTokenURI(string baseURI);

    // Event for withdrawing funds
    event Withdrawal(address treasury, uint256 amount);

    // Event to update treasury address
    event UpdateTreasury(address newTreasury);

    // event to notify when token is minted
    event TokenMinted(address indexed addr, string tokenURI, uint256 tokenId);

    // event to notify when token has passed a 80% minted
    event MintingCrossedThreshold();

    constructor() ERC721("Joba SoulBound Token", "JSBT") {
        baseURI = "https://sbt.joba.network/ipfs/";
        _contractURI = "";
        treasury = address(0x0A524aB6005E83e4cb09ac333DB357E823365931);
    }

    /**
     * @param uri The base URI to be set.
     */
    function setBaseURI(string memory uri) public onlyOwner {
        baseURI = uri;

        emit BaseTokenURI(uri);
    }

    function setContractURI(string memory uri) public onlyOwner {
        _contractURI = uri;
    }

    function contractURI() public view returns (string memory) {
        return _contractURI;
    }

    function mint(
        string memory profileTokenURI
    ) public payable whenNotPaused returns (uint256 newTokenId) {
        validateMint(msg.sender, profileTokenURI);

        if (msg.sender != owner() && isFreeMintActive == false) {
            require(msg.value >= fee, "SBT: mint value incorrect");
        }

        _tokenIdCounter.increment();
        uint256 tokenId = _tokenIdCounter.current();

        if (tokenId == ((MAX_SUPPLY * 80) / 100)) {
            emit MintingCrossedThreshold();
        }

        _safeMint(msg.sender, tokenId);
        _setTokenURI(tokenId, profileTokenURI);

        TOTAL_MINTED++;
        minted[msg.sender] = true;
        _tokenIdOf[msg.sender] = tokenId;

        emit TokenMinted(msg.sender, profileTokenURI, tokenId);

        return tokenId;
    }

    function safeMint(
        address to,
        string memory profileTokenURI
    ) public onlyOwner whenNotPaused returns (uint256 newTokenId) {
        validateMint(to, profileTokenURI);

        _tokenIdCounter.increment();
        uint256 tokenId = _tokenIdCounter.current();

        if (tokenId == ((MAX_SUPPLY * 80) / 100)) {
            emit MintingCrossedThreshold();
        }

        _safeMint(to, tokenId);
        _setTokenURI(tokenId, profileTokenURI);

        TOTAL_MINTED++;
        minted[to] = true;
        _tokenIdOf[to] = tokenId;

        emit TokenMinted(to, profileTokenURI, tokenId);

        return tokenId;
    }

    /**
     * @dev Allows the owner of the token or the contract owner to update the tokenURI.
     * @param tokenId The ID of the token.
     * @param newTokenURI The new token URI to be set.
     */
    function updateTokenURI(
        uint256 tokenId,
        string memory newTokenURI
    ) public whenNotPaused {
        require(
            _exists(tokenId),
            "ERC721URIStorage: URI set of nonexistent token"
        );
        require(
            ownerOf(tokenId) == msg.sender || msg.sender == owner(),
            "SBT: caller is not token owner nor contract owner"
        );

        _setTokenURI(tokenId, newTokenURI);

        emit ProfileUpdated(tokenId, newTokenURI);
    }

    /**
     *
     * @param addr The address to check token minted to the address
     * @return tokenId The token ID minted to the address
     */

    function tokenIdOf(address addr) public view returns (uint256 tokenId) {
        require(minted[addr], "Address has not minted a token");
        return _tokenIdOf[addr];
    }

    /**
     * @dev Burns a token, removing it from the blockchain - the token owner or contract owner can burn a token.
     * @param tokenId The ID of the token to be burned.
     */
    function burn(uint256 tokenId) public whenNotPaused {
        require(_exists(tokenId), "ERC721: invalid token ID");

        address tokenOwner = ownerOf(tokenId);

        require(
            tokenOwner == msg.sender || msg.sender == owner(),
            "SBT: caller is not token owner nor contract owner"
        );

        // Burn the token
        _burn(tokenId);

        // Remove mapping of the address that minted the token
        delete _tokenIdOf[tokenOwner];

        // Emit the burn event
        emit TokenBurned(tokenId);
    }

    /**
     * @dev Total supply of tokens.
     */

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

    function setTotalSupply(uint64 newTotalSupply) public onlyOwner {
        MAX_SUPPLY = newTotalSupply;
    }

    function setFreeMintActive(bool active) public onlyOwner {
        isFreeMintActive = active;
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function setTokenFee(uint256 newFee) public onlyOwner {
        fee = newFee;
    }

    function setTreasury(address newTreasury) public onlyOwner nonReentrant {
        // cannot be zero address
        require(newTreasury != address(0), "SBT: Invalid treasury address");
        treasury = newTreasury;
        emit UpdateTreasury(newTreasury);
    }

    function withdraw() public payable onlyOwner nonReentrant {
        require(address(this).balance > 0, "SBT: Insufficient balance");
        require(treasury != address(0), "SBT: Invalid treasury address");

        uint256 balance = address(this).balance;

        (bool success, ) = payable(treasury).call{value: address(this).balance}(
            ""
        );

        require(success, "SBT: Withdrawal failed");
        emit Withdrawal(treasury, balance);
    }

    function setGenesisSBT(address newGenesisSBT) public onlyOwner {
        GenesisSBT = JobaGenesisSoulBoundToken(newGenesisSBT);
    }

    // Override tokenURI to use the one from ERC721URIStorage
    function tokenURI(
        uint256 tokenId
    ) public view override(ERC721, ERC721URIStorage) returns (string memory) {
        return super.tokenURI(tokenId);
    }

    function isMaxSupplyMinted() public view returns (bool) {
        return TOTAL_MINTED >= MAX_SUPPLY;
    }

    // Override the ERC721 transfer functions to prevent transferring
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId,
        uint256 batchSize
    ) internal override(ERC721) {
        // Allow operations where:
        // - Minting (from == address(0))
        // - Burning (to == address(0))
        // - Updating or other internal operations (from == to)
        if (from != address(0) && to != address(0) && from != to) {
            revert("SBT: Soul Bound Tokens are non-transferable");
        }

        super._beforeTokenTransfer(from, to, tokenId, batchSize);
    }

    // Override the _burn function from ERC721URIStorage
    function _burn(
        uint256 tokenId
    ) internal override(ERC721, ERC721URIStorage) {
        super._burn(tokenId);
    }

    // Override supportsInterface to include both ERC721 and ERC721URIStorage
    function supportsInterface(
        bytes4 interfaceId
    ) public view override(ERC721, ERC721URIStorage) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

    function validateMint(
        address recipient,
        string memory profileTokenURI
    ) internal view {
        if (GenesisSBT != JobaGenesisSoulBoundToken(address(0))) {
            // Check if address has minted the genesis SBT token and do not allow minting if address has minted;
            require(
                !GenesisSBT.minted(recipient),
                "SBT: address already minted Genesis SBT"
            );
        }

        // Check if the address has already minted a token
        require(!minted[recipient], "SBT: Address already minted");
        require(TOTAL_MINTED < MAX_SUPPLY, "SBT: collection cap reached");
        require(bytes(profileTokenURI).length > 0, "SBT: Token URI is empty");
    }
}

File 2 of 20 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 3 of 20 : ERC721URIStorage.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/extensions/ERC721URIStorage.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "../../../interfaces/IERC4906.sol";

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

        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`.
     *
     * Emits {MetadataUpdate}.
     *
     * 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;

        emit MetadataUpdate(tokenId);
    }

    /**
     * @dev See {ERC721-_burn}. This override additionally checks to see if a
     * token-specific URI was set for the token, and if so, it deletes the token URI from
     * the storage mapping.
     */
    function _burn(uint256 tokenId) internal virtual override {
        super._burn(tokenId);

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

File 4 of 20 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 5 of 20 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 6 of 20 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

File 7 of 20 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (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;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

File 8 of 20 : IERC4906.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC4906.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";
import "./IERC721.sol";

/// @title EIP-721 Metadata Update Extension
interface IERC4906 is IERC165, IERC721 {
    /// @dev This event emits when the metadata of a token is changed.
    /// So that the third-party platforms such as NFT market could
    /// timely update the images and related attributes of the NFT.
    event MetadataUpdate(uint256 _tokenId);

    /// @dev This event emits when the metadata of a range of tokens is changed.
    /// So that the third-party platforms such as NFT market could
    /// timely update the images and related attributes of the NFTs.
    event BatchMetadataUpdate(uint256 _fromTokenId, uint256 _toTokenId);
}

File 9 of 20 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/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: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _ownerOf(tokenId);
        require(owner != address(0), "ERC721: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 overridden 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 token owner or approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        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: caller is not token owner or 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: caller is not token owner or 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 the owner of the `tokenId`. Does NOT revert if token doesn't exist
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @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 _ownerOf(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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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, 1);

        // Check that tokenId was not minted by `_beforeTokenTransfer` hook
        require(!_exists(tokenId), "ERC721: token already minted");

        unchecked {
            // Will not overflow unless all 2**256 token ids are minted to the same owner.
            // Given that tokens are minted one by one, it is impossible in practice that
            // this ever happens. Might change if we allow batch minting.
            // The ERC fails to describe this case.
            _balances[to] += 1;
        }

        _owners[tokenId] = to;

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

        _afterTokenTransfer(address(0), to, tokenId, 1);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
        owner = ERC721.ownerOf(tokenId);

        // Clear approvals
        delete _tokenApprovals[tokenId];

        unchecked {
            // Cannot overflow, as that would require more tokens to be burned/transferred
            // out than the owner initially received through minting and transferring in.
            _balances[owner] -= 1;
        }
        delete _owners[tokenId];

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

        _afterTokenTransfer(owner, address(0), tokenId, 1);
    }

    /**
     * @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 from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId, 1);

        // Check that tokenId was not transferred by `_beforeTokenTransfer` hook
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");

        // Clear approvals from the previous owner
        delete _tokenApprovals[tokenId];

        unchecked {
            // `_balances[from]` cannot overflow for the same reason as described in `_burn`:
            // `from`'s balance is the number of token held, which is at least one before the current
            // transfer.
            // `_balances[to]` could overflow in the conditions described in `_mint`. That would require
            // all 2**256 token ids to be minted, which in practice is impossible.
            _balances[from] -= 1;
            _balances[to] += 1;
        }
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {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 an {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 Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
     * - When `from` is zero, the tokens will be minted for `to`.
     * - When `to` is zero, ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {}

    /**
     * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
     * - When `from` is zero, the tokens were minted for `to`.
     * - When `to` is zero, ``from``'s tokens were burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {}

    /**
     * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
     *
     * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant
     * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such
     * that `ownerOf(tokenId)` is `a`.
     */
    // solhint-disable-next-line func-name-mixedcase
    function __unsafe_increaseBalance(address account, uint256 amount) internal {
        _balances[account] += amount;
    }
}

File 10 of 20 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC721.sol)

pragma solidity ^0.8.0;

import "../token/ERC721/IERC721.sol";

File 11 of 20 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol)

pragma solidity ^0.8.0;

import "../utils/introspection/IERC165.sol";

File 12 of 20 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 13 of 20 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/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`.
     *
     * 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;

    /**
     * @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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

File 14 of 20 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 15 of 20 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";
import "./math/SignedMath.sol";

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

File 16 of 20 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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://consensys.net/diligence/blog/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.8.0/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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 17 of 20 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 18 of 20 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 19 of 20 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1, "Math: mulDiv overflow");

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
        }
    }
}

File 20 of 20 : SignedMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "mode": "3"
  },
  "outputSelection": {
    "*": {
      "*": [
        "abi",
        "metadata"
      ],
      "": [
        "ast"
      ]
    }
  },
  "detectMissingLibraries": false,
  "forceEVMLA": false,
  "enableEraVMExtensions": false,
  "libraries": {}
}

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"baseURI","type":"string"}],"name":"BaseTokenURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_toTokenId","type":"uint256"}],"name":"BatchMetadataUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"MetadataUpdate","type":"event"},{"anonymous":false,"inputs":[],"name":"MintingCrossedThreshold","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"newProfileDataURI","type":"string"}],"name":"ProfileUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"TokenBurned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"addr","type":"address"},{"indexed":false,"internalType":"string","name":"tokenURI","type":"string"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"TokenMinted","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newTreasury","type":"address"}],"name":"UpdateTreasury","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"treasury","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdrawal","type":"event"},{"inputs":[],"name":"TOTAL_MINTED","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isFreeMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMaxSupplyMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"profileTokenURI","type":"string"}],"name":"mint","outputs":[{"internalType":"uint256","name":"newTokenId","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"string","name":"profileTokenURI","type":"string"}],"name":"safeMint","outputs":[{"internalType":"uint256","name":"newTokenId","type":"uint256"}],"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":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"active","type":"bool"}],"name":"setFreeMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newGenesisSBT","type":"address"}],"name":"setGenesisSBT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFee","type":"uint256"}],"name":"setTokenFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"newTotalSupply","type":"uint64"}],"name":"setTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newTreasury","type":"address"}],"name":"setTreasury","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":"address","name":"addr","type":"address"}],"name":"tokenIdOf","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"newTokenURI","type":"string"}],"name":"updateTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

9c4d535b000000000000000000000000000000000000000000000000000000000000000001000591364913a321353773771ab572a12321b8f8b3af0f2a53bd7c00959f5c00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x000200000000000200050000000000020000006003100270000004d90430019700010000004103550000008003000039000000400030043f00000001002001900000003a0000c13d000000040040008c00000aea0000413d000000000201043b000000e002200270000004f40020009c0000006e0000a13d000004f50020009c000000dd0000a13d000004f60020009c000001350000a13d000004f70020009c000002580000213d000004fb0020009c0000034e0000613d000004fc0020009c000003b00000613d000004fd0020009c00000aea0000c13d0000000001000416000000000001004b00000aea0000c13d0000001003000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f0000000100500190000000680000c13d000000800010043f000000000004004b000007f20000613d000000000030043f000000000001004b0000058e0000613d000004ef0200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000000310000413d000004be0000013d0000000001000416000000000001004b00000aea0000c13d0000001401000039000000800010043f000004da01000041000000a00010043f0000010001000039000000400010043f0000000401000039000000c00010043f000004db01000041000000e00010043f000000000100041a000000010210019000000001011002700000007f0110618f0000001f0010008c00000000030000390000000103002039000000000032004b000000680000c13d000000200010008c0000005b0000413d000004dc020000410000001f011000390000000501100270000004dd0110009a000000000000043f000000000002041b0000000102200039000000000012004b000000570000413d000004de01000041000000000010041b0000000104000039000000000204041a000000010020019000000001012002700000007f0110618f0000001f0010008c00000000030000390000000103002039000000000232013f00000001002001900000007f0000613d0000055301000041000000000010043f0000002201000039000000040010043f00000540010000410000136200010430000005110020009c000000ee0000213d0000051f0020009c0000021b0000213d000005260020009c000002a00000a13d000005270020009c000006a50000613d000005280020009c000003b80000613d000005290020009c00000aea0000c13d0000000001000416000000000001004b00000aea0000c13d0000000b01000039000003b40000013d000000200010008c0000008a0000413d000000000040043f000004df020000410000001f011000390000000501100270000004e00110009a000000000002041b0000000102200039000000000012004b000000860000413d000004e101000041000000000014041b0000000006000411000004e2016001970000000705000039000000000205041a000004e303200197000000000113019f000000000015041b0000000001000414000004e205200197000004d90010009c000004d901008041000000c001100210000004e4011001c70000800d020000390000000303000039000004e504000041136013560000040f000000010020019000000aea0000613d0000000702000039000000000102041a000004e601100197000000000012041b00000008010000390000000102000039000000000021041b00002710010000390000000b02000039000000000012041b000004e7010000410000001102000039000000000012041b0000001201000039000000000301041a0000058402300197000000000021041b000000400200043d000004e80020009c000000d70000813d0000004003200039000000400030043f0000001e030000390000000003320436000004e90200004100000000002304350000000f02000039000000000502041a000000010050019000000001045002700000007f0440618f0000001f0040008c00000000060000390000000106002039000000000565013f0000000100500190000000680000c13d000004ea05000041000000200040008c000000d30000413d000000000020043f000004eb050000410000001f044000390000000504400270000004ec0440009a000000000005041b0000000105500039000000000045004b000000cc0000413d0000000003030433000004ed033001970000003c053001bf000000000052041b000000400200043d000004ee0020009c000007cf0000a13d0000055301000041000000000010043f0000004101000039000000040010043f00000540010000410000136200010430000005040020009c0000010e0000213d0000050b0020009c0000027b0000a13d0000050c0020009c000003eb0000613d0000050d0020009c000004000000613d0000050e0020009c00000aea0000c13d0000000001000416000000000001004b00000aea0000c13d0000001201000039000000000101041a000000ff00100190000003490000013d000005120020009c000002470000213d000005190020009c000002c20000a13d0000051a0020009c000006b40000613d0000051b0020009c000004220000613d0000051c0020009c00000aea0000c13d000000240040008c00000aea0000413d0000000002000416000000000002004b00000aea0000c13d0000000401100370000000000101043b000000000001004b0000000002000039000000010200c039000000000021004b00000aea0000c13d0000000702000039000000000202041a000004e2022001970000000003000411000000000032004b000005cb0000c13d0000001202000039000000000302041a0000058403300197000004340000013d000005050020009c000002960000a13d000005060020009c000004380000613d000005070020009c000004a00000613d000005080020009c00000aea0000c13d000000440040008c00000aea0000413d0000000002000416000000000002004b00000aea0000c13d0000000402100370000000000202043b000500000002001d000004e20020009c00000aea0000213d0000002401100370000000000201043b000000000002004b0000000001000039000000010100c039000400000002001d000000000012004b00000aea0000c13d0000000002000411000000050020006c000008320000c13d0000052d01000041000000800010043f0000002001000039000000840010043f0000001901000039000000a40010043f0000055601000041000000c40010043f00000535010000410000136200010430000004fe0020009c000002dc0000a13d000004ff0020009c000007890000613d000005000020009c000004c50000613d000005010020009c00000aea0000c13d000000440040008c00000aea0000413d0000000002000416000000000002004b00000aea0000c13d0000000402100370000000000202043b000500000002001d000004e20020009c00000aea0000213d0000002402100370000000000302043b0000053a0030009c00000aea0000213d0000002302300039000000000042004b00000aea0000813d0000000405300039000000000251034f000000000202043b0000053a0020009c000000d70000213d0000001f0620003900000585066001970000003f0660003900000585066001970000053b0060009c000000d70000213d00000024033000390000008006600039000000400060043f000000800020043f0000000003320019000000000043004b00000aea0000213d0000002003500039000000000331034f00000585042001980000001f0520018f000000a0014000390000016c0000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000016004b000001680000c13d000000000005004b000001790000613d000000000343034f0000000304500210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000000a00120003900000000000104350000000701000039000000000101041a000004e2021001970000000003000411000000000032004b000008980000c13d0000053c00100198000009480000c13d0000000a01000039000000000101041a000404e20010019c00000a290000c13d0000000501000029000000000010043f0000000d01000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b000000000101041a000000ff0010019000000a160000c13d0000000b01000039000000000101041a0000000c02000039000000000202041a0000053a02200197000000000012004b00000b1b0000813d000000800200043d000000000002004b000003a90000613d0000000902000039000000000302041a0000000103300039000400000003001d000000000032041b000005520010009c00000c750000813d00000050011000c9000000640110011a000000040010006b000001bd0000c13d000000400100043d000004d90010009c000004d90100804100000040011002100000000002000414000004d90020009c000004d902008041000000c002200210000000000112019f0000054a011001c70000800d0200003900000001030000390000054b04000041136013560000040f000000010020019000000aea0000613d0000000501000029000000040200002913600f4f0000040f0000000401000029000000000010043f0000000201000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b000000000101041a000004e200100198000006330000613d0000000401000029000000000010043f0000000601000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b000300000001001d000000800100043d000200000001001d0000053a0010009c000000d70000213d0000000301000029000000000101041a000000010010019000000001021002700000007f0220618f000100000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000000680000c13d000000010200002900000002012001af000000200010008c00000db10000413d0000000301000029000000000010043f0000000001000414000004d90010009c000004d901008041000000c0011002100000054c011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b0000000102000029000000200020008c000002130000413d00000002040000290000001f024000390000000503200270000000200040008c000000000300401900000001020000290000001f02200039000000050220027000000000022100190000000003310019000000000023004b000002130000813d000000000003041b0000000103300039000000000023004b0000020f0000413d00000002020000290000001f0020008c00000db10000a13d000000200200008a000000020220018000000e9a0000c13d000000a00300003900000ea80000013d000005200020009c000003240000a13d000005210020009c000007920000613d000005220020009c000005170000613d000005230020009c00000aea0000c13d0000000701000039000000000101041a000004e2011001970000000002000411000000000021004b000005cb0000c13d0000000801000039000000000201041a000000020020008c000005650000613d0000000202000039000000000021041b00000566010000410000000000100443000000000100041000000004001004430000000001000414000004d90010009c000004d901008041000000c0011002100000053e011001c70000800a020000391360135b0000040f000000010020019000000a460000613d0000000002000410000000000101043b000000000001004b0000088c0000c13d000000400100043d00000044021000390000056903000041000000000032043500000024021000390000001903000039000007ba0000013d000005130020009c0000033f0000a13d000005140020009c000007c50000613d000005150020009c000005280000613d000005160020009c00000aea0000c13d000000240040008c00000aea0000413d0000000002000416000000000002004b00000aea0000c13d0000000401100370000000000101043b136010fa0000040f000006ad0000013d000004f80020009c0000053b0000613d000004f90020009c000005520000613d000004fa0020009c00000aea0000c13d000000240040008c00000aea0000413d0000000002000416000000000002004b00000aea0000c13d0000000401100370000000000601043b000004e20060009c00000aea0000213d0000000701000039000000000201041a000004e2032001970000000005000411000000000053004b000005cb0000c13d000000000006004b000008620000c13d0000052d01000041000000800010043f0000002001000039000000840010043f0000002601000039000000a40010043f0000052e01000041000000c40010043f0000052f01000041000000e40010043f000005300100004100001362000104300000050f0020009c0000056f0000613d000005100020009c00000aea0000c13d000000240040008c00000aea0000413d0000000002000416000000000002004b00000aea0000c13d0000000401100370000000000101043b000004e20010009c00000aea0000213d000000000001004b000007fe0000c13d0000052d01000041000000800010043f0000002001000039000000840010043f0000002901000039000000a40010043f0000055b01000041000000c40010043f0000055c01000041000000e40010043f00000530010000410000136200010430000005090020009c000005900000613d0000050a0020009c00000aea0000c13d0000000001000416000000000001004b00000aea0000c13d0000000701000039000000000101041a000007cb0000013d0000052a0020009c000005a80000613d0000052b0020009c00000aea0000c13d0000000001000416000000000001004b00000aea0000c13d000000000200041a000000010320019000000001012002700000007f0110618f0000001f0010008c00000000040000390000000104002039000000000442013f0000000100400190000000680000c13d000000800010043f000000000003004b000007f20000613d000000000000043f000000000001004b0000058e0000613d000004dc0200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000002b90000413d000004be0000013d0000051d0020009c000005b60000613d0000051e0020009c00000aea0000c13d000000640040008c00000aea0000413d0000000002000416000000000002004b00000aea0000c13d0000000402100370000000000502043b000004e20050009c00000aea0000213d0000002402100370000000000202043b000004e20020009c00000aea0000213d0000004401100370000000000301043b000000a001000039000000400010043f000000800000043f000000800400003900000000010500191360111e0000040f000008220000013d000005020020009c000005d40000613d000005030020009c00000aea0000c13d000000840040008c00000aea0000413d0000000002000416000000000002004b00000aea0000c13d0000000402100370000000000502043b000004e20050009c00000aea0000213d0000002402100370000000000202043b000004e20020009c00000aea0000213d0000004403100370000000000303043b0000006406100370000000000706043b0000053a0070009c00000aea0000213d0000002306700039000000000046004b00000aea0000813d0000000408700039000000000681034f000000000606043b0000053a0060009c000000d70000213d0000001f0a600039000005850aa001970000003f0aa00039000005850aa001970000053b00a0009c000000d70000213d0000002407700039000000800aa000390000004000a0043f000000800060043f0000000007760019000000000047004b00000aea0000213d0000002004800039000000000441034f00000585076001980000001f0860018f000000a001700039000003140000613d000000a009000039000000000a04034f00000000ab0a043c0000000009b90436000000000019004b000003100000c13d000000000008004b000003210000613d000000000474034f0000000307800210000000000801043300000000087801cf000000000878022f000000000404043b0000010007700089000000000474022f00000000047401cf000000000484019f0000000000410435000000a0016000390000000000010435000002d80000013d000005240020009c000005e20000613d000005250020009c00000aea0000c13d000000240040008c00000aea0000413d0000000002000416000000000002004b00000aea0000c13d0000000401100370000000000101043b000004e20010009c00000aea0000213d000000000010043f0000000d01000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b0000054d0000013d000005170020009c0000063d0000613d000005180020009c00000aea0000c13d0000000001000416000000000001004b00000aea0000c13d0000000701000039000000000101041a0000053c001001980000000001000039000000010100c039000000800010043f0000053901000041000013610001042e000000240040008c00000aea0000413d0000000402100370000000000302043b0000053a0030009c00000aea0000213d0000002302300039000000000042004b00000aea0000813d0000000405300039000000000251034f000000000202043b0000053a0020009c000000d70000213d0000001f0620003900000585066001970000003f0660003900000585066001970000053b0060009c000000d70000213d00000024033000390000008006600039000000400060043f000000800020043f0000000003320019000000000043004b00000aea0000213d0000002003500039000000000331034f00000585042001980000001f0520018f000000a001400039000003750000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000016004b000003710000c13d000000000005004b000003820000613d000000000343034f0000000304500210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000000a00120003900000000000104350000000701000039000000000101041a0000053c00100198000009480000c13d0000000a01000039000000000101041a000004e202100198000009d70000c13d0000000001000411000504e20010019b0000000501000029000000000010043f0000000d01000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b000000000101041a000000ff0010019000000a160000c13d0000000b01000039000000000101041a0000000c02000039000000000202041a0000053a02200197000000000012004b00000b1b0000813d000000800200043d000000000002004b00000be60000c13d000000400100043d00000044021000390000055403000041000000000032043500000024021000390000001703000039000007ba0000013d0000000001000416000000000001004b00000aea0000c13d0000001101000039000000000101041a000000800010043f0000053901000041000013610001042e000000440040008c00000aea0000413d0000000002000416000000000002004b00000aea0000c13d0000000402100370000000000202043b000500000002001d000004e20020009c00000aea0000213d0000002401100370000000000101043b000400000001001d000000000010043f0000000201000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b000000000101041a000004e201100198000007b40000613d000000050010006b000008a30000c13d000000400100043d00000064021000390000057c03000041000000000032043500000044021000390000057d0300004100000000003204350000002402100039000000210300003900000000003204350000052d020000410000000000210435000000040210003900000020030000390000000000320435000004d90010009c000004d901008041000000400110021000000545011001c700001362000104300000000001000416000000000001004b00000aea0000c13d0000000701000039000000000201041a000004e2032001970000000005000411000000000053004b000005cb0000c13d000004e302200197000000000021041b0000000001000414000004d90010009c000004d901008041000000c0011002100000052c011001c70000800d020000390000000303000039000004e50400004100000000060000190000081f0000013d000000240040008c00000aea0000413d0000000002000416000000000002004b00000aea0000c13d0000000401100370000000000101043b000500000001001d000004e20010009c00000aea0000213d0000000501000029000000000010043f0000000d01000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b000000000101041a000000ff001001900000086e0000c13d000000400100043d00000044021000390000055a03000041000000000032043500000024021000390000001e03000039000007ba0000013d000000240040008c00000aea0000413d0000000002000416000000000002004b00000aea0000c13d0000000401100370000000000101043b000004e20010009c00000aea0000213d0000000702000039000000000202041a000004e2022001970000000003000411000000000032004b000005cb0000c13d0000000a02000039000000000302041a000004e303300197000000000113019f000000000012041b0000055d01000041000013610001042e000000240040008c00000aea0000413d0000000002000416000000000002004b00000aea0000c13d0000000402100370000000000502043b0000053a0050009c00000aea0000213d0000002302500039000000000042004b00000aea0000813d0000000406500039000000000261034f000000000302043b0000053a0030009c000000d70000213d0000001f0730003900000585077001970000003f0770003900000585077001970000053b0070009c000000d70000213d00000024055000390000008007700039000000400070043f000000800030043f0000000005530019000000000045004b00000aea0000213d0000002004600039000000000441034f00000585053001980000001f0630018f000000a001500039000004620000613d000000a007000039000000000804034f000000008908043c0000000007970436000000000017004b0000045e0000c13d000000000006004b0000046f0000613d000000000454034f0000000305600210000000000601043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f0000000000410435000000a00130003900000000000104350000000701000039000000000101041a000004e2011001970000000003000411000000000031004b000008980000c13d000000800300043d0000053a0030009c000000d70000213d0000001001000039000000000501041a000000010050019000000001045002700000007f0440618f0000001f0040008c00000000060000390000000106002039000000000565013f0000000100500190000000680000c13d000000000534019f000000200050008c00000a010000413d000000000010043f000000200040008c000004990000413d0000001f053000390000000505500270000000200030008c00000000050040190000001f044000390000000504400270000000000045004b000004990000813d000004f00440009a000004f00550009a000000000005041b0000000105500039000000000045004b000004950000413d0000001f0030008c00000a010000a13d000005850430019800000bf90000c13d000000a005000039000004ef0200004100000c070000013d0000000001000416000000000001004b00000aea0000c13d0000000103000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f0000000100500190000000680000c13d000000800010043f000000000004004b000007f20000613d000000000030043f000000000001004b0000058e0000613d000004df0200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000004b60000413d000005370130009a000005380010009c000000d70000413d0000005f0130003900000585011001970000008001100039000008060000013d000000240040008c00000aea0000413d0000000002000416000000000002004b00000aea0000c13d0000000401100370000000000101043b000500000001001d000000000010043f0000000201000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b000000000101041a000004e200100198000007b40000613d0000000501000029000000000010043f0000000601000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b000000000501041a000000010350019000000001065002700000007f0660618f0000001f0060008c00000000040000390000000104002039000000000445013f0000000100400190000000680000c13d000000400200043d000500000006001d0000000004620436000000000003004b0000094f0000613d000300000004001d000400000002001d000000000010043f0000000001000414000004d90010009c000004d901008041000000c0011002100000054c011001c700008010020000391360135b0000040f000000010020019000000aea0000613d0000000505000029000000000005004b00000000020000190000000306000029000005140000613d000000000101043b00000000020000190000000003620019000000000401041a000000000043043500000001011000390000002002200039000000000052004b0000050d0000413d00000000016200190000000402000029000009520000013d000000240040008c00000aea0000413d0000000002000416000000000002004b00000aea0000c13d0000000702000039000000000202041a000004e2022001970000000003000411000000000032004b000005cb0000c13d0000000401100370000000000101043b0000001102000039000000000012041b0000055d01000041000013610001042e000000240040008c00000aea0000413d0000000002000416000000000002004b00000aea0000c13d0000000401100370000000000101043b0000053a0010009c00000aea0000213d0000000702000039000000000202041a000004e2022001970000000003000411000000000032004b000005cb0000c13d0000000b02000039000000000012041b0000055d01000041000013610001042e000000440040008c00000aea0000413d0000000002000416000000000002004b00000aea0000c13d0000000402100370000000000202043b000004e20020009c00000aea0000213d0000002401100370000000000101043b000500000001001d000004e20010009c00000aea0000213d0000000001020019136013340000040f0000000502000029136013450000040f000000000101041a000000ff001001900000000001000039000000010100c039000006ad0000013d000000240040008c00000aea0000413d0000000002000416000000000002004b00000aea0000c13d0000000401100370000000000101043b000004e20010009c00000aea0000213d0000000702000039000000000202041a000004e2022001970000000003000411000000000032004b000005cb0000c13d0000000802000039000000000302041a000000020030008c0000087e0000c13d0000052d01000041000000800010043f0000002001000039000000840010043f0000001f01000039000000a40010043f0000056a01000041000000c40010043f000005350100004100001362000104300000000001000416000000000001004b00000aea0000c13d0000000f02000039000000000102041a000000010310019000000001051002700000007f0550618f0000001f0050008c00000000040000390000000104002039000000000441013f0000000100400190000000680000c13d000000800050043f000000000003004b000008030000613d000500000005001d000000000020043f0000000001000414000004d90010009c000004d901008041000000c0011002100000054c011001c700008010020000391360135b0000040f000000010020019000000aea0000613d0000000505000029000000000005004b000008da0000c13d000000a001000039000008060000013d0000000001000416000000000001004b00000aea0000c13d0000000701000039000000000301041a000004e2043001970000000002000411000000000024004b000005cb0000c13d0000053c00300198000007f40000c13d000004e60330019700000558033001c7000000000031041b000000800020043f0000000001000414000004d90010009c000004d901008041000000c00110021000000532011001c70000800d02000039000000010300003900000559040000410000081f0000013d000000240040008c00000aea0000413d0000000002000416000000000002004b00000aea0000c13d0000000401100370000000000101043b0000057e0010019800000aea0000c13d0000057f02100197000005800020009c000008270000c13d00000001010000390000082e0000013d0000000001000416000000000001004b00000aea0000c13d0000000701000039000000000201041a000004e2042001970000000003000411000000000034004b000005cb0000c13d0000053c00200198000008140000c13d0000052d01000041000000800010043f0000002001000039000000840010043f0000001401000039000000a40010043f0000056501000041000000c40010043f000005350100004100001362000104300000052d01000041000000800010043f0000002001000039000000840010043f000000a40010043f0000055e01000041000000c40010043f000005350100004100001362000104300000000001000416000000000001004b00000aea0000c13d0000000b01000039000000000101041a0000000c02000039000000000202041a0000053a02200197000000000012004b00000000010000390000000101008039000000800010043f0000053901000041000013610001042e000000440040008c00000aea0000413d0000000002000416000000000002004b00000aea0000c13d0000002402100370000000000302043b0000053a0030009c00000aea0000213d0000000402100370000000000202043b000500000002001d0000002302300039000000000042004b00000aea0000813d0000000405300039000000000251034f000000000202043b0000053a0020009c000000d70000213d0000001f0620003900000585066001970000003f0660003900000585066001970000053b0060009c000000d70000213d00000024033000390000008006600039000000400060043f000000800020043f0000000003320019000000000043004b00000aea0000213d0000002003500039000000000331034f00000585042001980000001f0520018f000000a0014000390000060f0000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000016004b0000060b0000c13d000000000005004b0000061c0000613d000000000343034f0000000304500210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000000a00120003900000000000104350000000701000039000000000101041a0000053c00100198000009480000c13d0000000501000029000000000010043f0000000201000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b000000000101041a000004e20010019800000a470000c13d000000400100043d00000064021000390000057603000041000000000032043500000044021000390000057703000041000000000032043500000024021000390000002e03000039000003e00000013d000000240040008c00000aea0000413d0000000002000416000000000002004b00000aea0000c13d0000000402100370000000000502043b0000053a0050009c00000aea0000213d0000002302500039000000000042004b00000aea0000813d0000000406500039000000000261034f000000000302043b0000053a0030009c000000d70000213d0000001f0730003900000585077001970000003f0770003900000585077001970000053b0070009c000000d70000213d00000024055000390000008007700039000000400070043f000000800030043f0000000005530019000000000045004b00000aea0000213d0000002004600039000000000441034f00000585053001980000001f0630018f000000a001500039000006670000613d000000a007000039000000000804034f000000008908043c0000000007970436000000000017004b000006630000c13d000000000006004b000006740000613d000000000454034f0000000305600210000000000601043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f0000000000410435000000a00130003900000000000104350000000701000039000000000101041a000004e2011001970000000003000411000000000031004b000008980000c13d000000800300043d0000053a0030009c000000d70000213d0000000f01000039000000000501041a000000010050019000000001045002700000007f0440618f0000001f0040008c00000000060000390000000106002039000000000565013f0000000100500190000000680000c13d000000000534019f000000200050008c00000a0b0000413d000000000010043f000000200040008c0000069e0000413d0000001f053000390000000505500270000000200030008c00000000050040190000001f044000390000000504400270000000000045004b0000069e0000813d000004ec0440009a000004ec0550009a000000000005041b0000000105500039000000000045004b0000069a0000413d0000001f0030008c00000a0b0000a13d000005850530019800000c150000c13d000000a006000039000004eb0400004100000c230000013d000000240040008c00000aea0000413d0000000002000416000000000002004b00000aea0000c13d0000000401100370000000000101043b136010c40000040f000000400200043d0000000000120435000004d90020009c000004d902008041000000400120021000000536011001c7000013610001042e000000240040008c00000aea0000413d0000000002000416000000000002004b00000aea0000c13d0000000401100370000000000201043b0000000701000039000000000101041a0000053c00100198000007f40000c13d000500000002001d000000000020043f0000000201000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b000000000101041a000004e200100198000007b40000613d0000000501000029000000000010043f0000000201000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b000000000101041a000004e202100198000007b40000613d0000000001000411000400000002001d000000000012004b000006ea0000613d0000000702000039000000000202041a000004e202200197000000000021004b00000abb0000c13d0000000501000029000000000010043f0000000201000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b000000000101041a000004e200100198000007b40000613d0000000501000029000000000010043f0000000201000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b000000000101041a000304e20010019c000007b40000613d0000000501000029000000000010043f0000000401000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b000000000201041a000004e302200197000000000021041b0000000301000029000000000010043f0000000301000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b000000000201041a000000010220008a000000000021041b0000000501000029000000000010043f0000000201000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b000000000201041a000004e302200197000000000021041b000000400100043d000004d90010009c000004d90100804100000040011002100000000002000414000004d90020009c000004d902008041000000c002200210000000000112019f0000054a011001c70000800d0200003900000004030000390000056204000041000000030500002900000000060000190000000507000029136013560000040f000000010020019000000aea0000613d0000000501000029000000000010043f0000000601000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b000000000201041a000000010020019000000001012002700000007f0110618f0000001f0010008c00000000030000390000000103002039000000000232013f0000000100200190000000680000c13d000000000001004b00000d5d0000c13d0000000401000029000000000010043f0000000e01000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b000000000001041b000000400100043d000004d90010009c000004d90100804100000040011002100000000002000414000004d90020009c000004d902008041000000c002200210000000000112019f0000054a011001c70000800d020000390000000203000039000005630400004100000e120000013d0000000001000416000000000001004b00000aea0000c13d0000000c01000039000000000101041a0000053a01100197000000800010043f0000053901000041000013610001042e000000640040008c00000aea0000413d0000000002000416000000000002004b00000aea0000c13d0000000402100370000000000202043b000500000002001d000004e20020009c00000aea0000213d0000002402100370000000000202043b000400000002001d000004e20020009c00000aea0000213d0000004401100370000000000101043b000300000001001d000000000010043f0000000201000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b000000000101041a000004e201100198000008e90000c13d000000400100043d00000044021000390000057b0300004100000000003204350000002402100039000000180300003900000000003204350000052d020000410000000000210435000000040210003900000020030000390000000000320435000004d90010009c000004d901008041000000400110021000000548011001c700001362000104300000000001000416000000000001004b00000aea0000c13d0000001201000039000000000101041a0000000801100270000004e201100197000000800010043f0000053901000041000013610001042e0000002003200039000000400030043f00000000000204350000001002000039000000000402041a000000010040019000000001034002700000007f0330618f0000001f0030008c00000000050000390000000105002039000000000454013f0000000100400190000000680000c13d000000200030008c000007e80000413d000000000020043f000004ef040000410000001f033000390000000503300270000004f00330009a000000000004041b0000000104400039000000000034004b000007e40000413d000000000002041b000000000201041a000004f102200197000004f2022001c7000000000021041b000000200100003900000100001004430000012000000443000004f301000041000013610001042e0000058401200197000008040000013d0000052d01000041000000800010043f0000002001000039000000840010043f0000001001000039000000a40010043f0000056101000041000000c40010043f00000535010000410000136200010430000000000010043f0000000301000039000000200010043f0000000001000414000008730000013d0000058401100197000000a00010043f000000c001000039000000400010043f0000008002000039000500000001001d13600f2c0000040f00000005020000290000000001210049000004d90010009c000004d9010080410000006001100210000004d90020009c000004d9020080410000004002200210000000000121019f000013610001042e000004e602200197000000000021041b000000800030043f0000000001000414000004d90010009c000004d901008041000000c00110021000000532011001c70000800d0200003900000001030000390000056404000041136013560000040f000000010020019000000aea0000613d000000400100043d000004d90010009c000004d9010080410000004001100210000013610001042e000005810020009c00000000010000390000000101006039000005820020009c00000001011061bf000005830020009c00000001011061bf000000010110018f000000800010043f0000053901000041000013610001042e000000000020043f0000000501000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b0000000502000029000000000020043f000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b000000000201041a00000584022001970000000403000029000000000232019f000000000021041b000000400100043d0000000000310435000004d90010009c000004d90100804100000040011002100000000002000414000004d90020009c000004d902008041000000c002200210000000000112019f0000054c011001c70000800d0200003900000003030000390000055504000041000000000500041100000005060000290000081f0000013d000004e302200197000000000262019f000000000021041b0000000001000414000004d90010009c000004d901008041000000c0011002100000052c011001c70000800d020000390000000303000039000004e5040000410000081f0000013d0000000501000029000000000010043f0000000e01000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b000000000101041a000006ad0000013d0000000203000039000000000032041b000000000001004b0000090c0000c13d0000052d01000041000000800010043f0000002001000039000000840010043f0000001d01000039000000a40010043f0000053401000041000000c40010043f000005350100004100001362000104300000001201000039000000000101041a0000000801100270000004e201100198000009230000c13d000000400100043d00000044021000390000053403000041000000000032043500000024021000390000001d03000039000007ba0000013d000000400100043d00000044021000390000055e0300004100000000003204350000052d0200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000007bf0000013d0000000002000411000000000012004b000009650000c13d0000000401000029000000000010043f0000000401000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b000000000201041a000004e30220019700000005022001af000000000021041b0000000401000029000000000010043f0000000201000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000400200043d000000000101043b000000000101041a000004e20510019800000a1a0000c13d00000044012000390000057b0300004100000000003104350000002401200039000000180300003900000000003104350000052d010000410000000000120435000000040120003900000020030000390000000000310435000004d90020009c000004d902008041000000400120021000000548011001c70000136200010430000000000101043b00000000030000190000000002030019000000000301041a000000a004200039000000000034043500000001011000390000002003200039000000000053004b000008dc0000413d000005370120009a000005380010009c000000d70000413d0000005f01200039000004c20000013d0000000002000411000204e20020019b000000020010006b0000098d0000c13d0000000301000029000000000010043f0000000201000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b000000000101041a000004e201100198000007b40000613d000000050010006c00000b8e0000c13d000000040000006b00000b220000c13d000000400100043d00000064021000390000057103000041000000000032043500000044021000390000057203000041000000000032043500000024021000390000002403000039000003e00000013d000000080210021000000531022001970000001203000039000000000403041a000004f104400197000000000224019f000000000023041b000000800010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000532011001c70000800d0200003900000001030000390000053304000041136013560000040f000000010020019000000aea0000613d00000001010000390000000802000039000000000012041b000008220000013d000500000001001d0000056601000041000000000010044300000004002004430000000001000414000004d90010009c000004d901008041000000c0011002100000053e011001c70000800a020000391360135b0000040f000000010020019000000a460000613d000000000101043b000400000001001d00000566010000410000000000100443000000000100041000000004001004430000000001000414000004d90010009c000004d901008041000000c0011002100000053e011001c70000800a020000391360135b0000040f000000010020019000000a460000613d000000400200043d000000000301043b00000000010004140000000504000029000000040040008c000009f60000c13d0000000102000039000000000100003100000ace0000013d000000400100043d00000044021000390000056103000041000000000032043500000024021000390000001003000039000007ba0000013d00000584015001970000000000140435000000400120003900000000012100490000001f0110003900000585031001970000000001230019000000000031004b000000000300003900000001030040390000053a0010009c000000d70000213d0000000100300190000000d70000c13d000000400010043f000004ee0010009c000000d70000213d0000002003100039000000400030043f0000000000010435000000400100043d000008080000013d000000000010043f0000000501000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b0000000002000411000004e202200197000000000020043f000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b000000000101041a000000ff00100190000008a60000c13d000000400100043d00000064021000390000057803000041000000000032043500000044021000390000057903000041000000000032043500000024021000390000003d03000039000003e00000013d000000000010043f0000000501000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b0000000202000029000000000020043f000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b000000000101041a000000ff00100190000008ed0000c13d0000000301000029000000000010043f0000000201000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b000000000101041a000004e200100198000007b40000613d0000000301000029000000000010043f0000000401000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b000000000101041a000004e201100197000000020010006c000008ed0000613d000000400100043d00000064021000390000056b03000041000000000032043500000044021000390000056c03000041000000000032043500000024021000390000002d03000039000003e00000013d0000053d010000410000000000100443000400000002001d00000004002004430000000001000414000004d90010009c000004d901008041000000c0011002100000053e011001c700008002020000391360135b0000040f000000010020019000000a460000613d000000000101043b000000000001004b00000aea0000613d000000400300043d0000053f0100004100000000001304350000000001000411000004e202100197000300000003001d0000000401300039000500000002001d000000000021043500000000010004140000000402000029000000040020008c00000b980000c13d000000000300003100000bc30000013d000004d90020009c000004d9020080410000004002200210000004d90010009c000004d901008041000000c001100210000000000121019f000000000003004b00000ac50000c13d000000050200002900000ac90000013d000000000003004b000000000200001900000c130000613d0000000302300210000005860220027f0000058602200167000000a00400043d000000000424016f000000010230021000000c120000013d000000000003004b000000000400001900000c2e0000613d0000000304300210000005860440027f0000058604400167000000a00500043d000000000445016f0000000103300210000000000434019f00000c2e0000013d000000400100043d0000004402100039000005500300004100000b1e0000013d000004d90020009c000004d90200804100000040012002100000000002000414000004d90020009c000004d902008041000000c002200210000000000112019f0000054a011001c70000800d0200003900000004030000390000057a04000041000000050600002900000004070000290000081f0000013d0000053d010000410000000000100443000000040100002900000004001004430000000001000414000004d90010009c000004d901008041000000c0011002100000053e011001c700008002020000391360135b0000040f000000010020019000000a460000613d000000000101043b000000000001004b00000aea0000613d000000400200043d0000053f010000410000000000120435000300000002001d00000004012000390000000502000029000000000021043500000000010004140000000402000029000000040020008c00000c7b0000c13d000000000300003100000ca60000013d000000000001042f0000000501000029000000000010043f0000000201000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b000000000101041a000004e202100198000007b40000613d0000000001000411000000000012004b00000a600000613d0000000702000039000000000202041a000004e202200197000000000021004b00000abb0000c13d0000000501000029000000000010043f0000000201000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b000000000101041a000004e200100198000006330000613d0000000501000029000000000010043f0000000601000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b000400000001001d000000800100043d000300000001001d0000053a0010009c000000d70000213d0000000401000029000000000101041a000000010010019000000001021002700000007f0220618f000200000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000000680000c13d000000020200002900000003012001af000000200010008c00000d510000413d0000000401000029000000000010043f0000000001000414000004d90010009c000004d901008041000000c0011002100000054c011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b0000000202000029000000200020008c00000ab30000413d00000003040000290000001f024000390000000503200270000000200040008c000000000300401900000002020000290000001f02200039000000050220027000000000022100190000000003310019000000000023004b00000ab30000813d000000000003041b0000000103300039000000000023004b00000aaf0000413d00000003020000290000001f0020008c00000d510000a13d000000200200008a000000030220018000000dbd0000c13d000000a00300003900000dcb0000013d000000400100043d00000064021000390000057303000041000000000032043500000044021000390000057403000041000000000032043500000024021000390000003103000039000003e00000013d0000054a011001c7000080090200003900000005040000290000000005000019136013560000040f00010000000103550000006001100270000004d90010019d000004d901100197000000000001004b00000aec0000c13d000000400100043d000000010020019000000b150000613d0000001202000039000000000202041a0000002003100039000000040400002900000000004304350000000802200270000004e2022001970000000000210435000004d90010009c000004d90100804100000040011002100000000002000414000004d90020009c000004d902008041000000c002200210000000000112019f00000546011001c70000800d0200003900000001030000390000056804000041136013560000040f00000001002001900000091f0000c13d000000000100001900001362000104300000053a0010009c000000d70000213d0000001f0410003900000585044001970000003f044000390000058505400197000000400400043d0000000005540019000000000045004b000000000600003900000001060040390000053a0050009c000000d70000213d0000000100600190000000d70000c13d000000400050043f000000000614043600000585031001980000001f0410018f0000000001360019000000010500036700000b070000613d000000000705034f000000007807043c0000000006860436000000000016004b00000b030000c13d000000000004004b00000ad00000613d000000000335034f0000000304400210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f000000000031043500000ad00000013d00000044021000390000056703000041000000000032043500000024021000390000001603000039000007ba0000013d000000400100043d00000044021000390000055103000041000000000032043500000024021000390000001b03000039000007ba0000013d0000000402000029000000050020006b00000bdc0000c13d0000000301000029000000000010043f0000000201000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b000000000101041a000004e201100198000007b40000613d000000050010006c00000b8e0000c13d0000000301000029000000000010043f0000000401000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b000000000201041a000004e302200197000000000021041b0000000501000029000000000010043f0000000301000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b000000000201041a000000010220008a000000000021041b0000000501000029000000000010043f0000000301000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b000000000201041a0000000102200039000000000021041b0000000301000029000000000010043f0000000201000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b000000000201041a000004e3022001970000000505000029000000000252019f000000000021041b000000400100043d000004d90010009c000004d90100804100000040011002100000000002000414000004d90020009c000004d902008041000000c002200210000000000112019f0000054a011001c70000800d0200003900000004030000390000056204000041000000000605001900000003070000290000081f0000013d000000400100043d00000064021000390000056f03000041000000000032043500000044021000390000057003000041000000000032043500000024021000390000002503000039000003e00000013d0000000302000029000004d90020009c000004d9020080410000004002200210000004d90010009c000004d901008041000000c001100210000000000121019f00000540011001c700000004020000291360135b0000040f0000006003100270000004d903300197000000200030008c000000200400003900000000040340190000001f0540018f0000002006400190000000030460002900000bb20000613d000000000701034f0000000308000029000000007907043c0000000008980436000000000048004b00000bae0000c13d000000000005004b00000bbf0000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000000000003001f0001000000010355000000010020019000000c560000613d0000001f0130003900000585021001970000000301200029000000000021004b000000000200003900000001020040390000053a0010009c000000d70000213d0000000100200190000000d70000c13d000000400010043f000005420030009c00000aea0000213d000000200030008c00000aea0000413d00000003020000290000000002020433000000000002004b0000000003000039000000010300c039000000000032004b00000aea0000c13d000000000002004b0000038e0000613d00000cbe0000013d000000400100043d00000064021000390000056d03000041000000000032043500000044021000390000056e03000041000000000032043500000024021000390000002b03000039000003e00000013d0000000702000039000000000202041a000004e2022001970000000003000411000000000023004b00000c6e0000613d0000001202000039000000000202041a000000ff0020019000000c6e0000c13d0000001102000039000000000202041a0000000003000416000000000023004b00000c6e0000813d000000400100043d00000044021000390000054703000041000002430000013d000004ef020000410000002006000039000000010540008a0000000505500270000005570550009a000000000706001900000080066000390000000006060433000000000062041b00000020067000390000000102200039000000000052004b00000bfe0000c13d000000a005700039000000000034004b00000c100000813d0000000304300210000000f80440018f000005860440027f00000586044001670000000005050433000000000445016f000000000042041b00000001020000390000000104300210000000000224019f000000000021041b000008220000013d000004eb040000410000002007000039000000010650008a00000005066002700000055f0660009a000000000807001900000080077000390000000007070433000000000074041b00000020078000390000000104400039000000000064004b00000c1a0000c13d000000a006800039000000000035004b00000c2c0000813d0000000305300210000000f80550018f000005860550027f00000586055001670000000006060433000000000556016f000000000054041b000000010330021000000001043001bf000000000041041b0000002003000039000000400100043d0000000004310436000000800300043d0000000000340435000000000003004b00000c420000613d000000400410003900000000050000190000000006450019000000a007500039000000000707043300000000007604350000002005500039000000000035004b00000c380000413d00000c420000a13d000000000443001900000000000404350000001f0330003900000585023001970000004002200039000004d90020009c000004d9020080410000006002200210000004d90010009c000004d9010080410000004001100210000000000112019f0000000002000414000004d90020009c000004d902008041000000c002200210000000000112019f0000054a011001c70000800d02000039000000010300003900000560040000410000081f0000013d0000001f0430018f000005410230019800000c5f0000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000026004b00000c5b0000c13d000000000004004b00000c6c0000613d000000000121034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000001362000104300000000902000039000000000302041a0000000103300039000400000003001d000000000032041b000005490010009c00000cc70000a13d0000055301000041000000000010043f0000001101000039000000040010043f000005400100004100001362000104300000000302000029000004d90020009c000004d9020080410000004002200210000004d90010009c000004d901008041000000c001100210000000000121019f00000540011001c700000004020000291360135b0000040f0000006003100270000004d903300197000000200030008c000000200400003900000000040340190000001f0540018f0000002006400190000000030460002900000c950000613d000000000701034f0000000308000029000000007907043c0000000008980436000000000048004b00000c910000c13d000000000005004b00000ca20000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000000000003001f0001000000010355000000010020019000000d390000613d0000001f0130003900000585021001970000000301200029000000000021004b000000000200003900000001020040390000053a0010009c000000d70000213d0000000100200190000000d70000c13d000000400010043f000005420030009c00000aea0000213d000000200030008c00000aea0000413d00000003020000290000000002020433000000000002004b0000000003000039000000010300c039000000000032004b00000aea0000c13d000000000002004b000001870000613d00000064021000390000054303000041000000000032043500000044021000390000054403000041000000000032043500000024021000390000002703000039000003e00000013d00000050011000c9000000640110011a000000040010006b00000cdb0000c13d000000400100043d000004d90010009c000004d90100804100000040011002100000000002000414000004d90020009c000004d902008041000000c002200210000000000112019f0000054a011001c70000800d0200003900000001030000390000054b04000041136013560000040f000000010020019000000aea0000613d0000000001000411000000040200002913600f4f0000040f0000000401000029000000000010043f0000000201000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b000000000101041a000004e200100198000006330000613d0000000401000029000000000010043f0000000601000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b000300000001001d000000800100043d000200000001001d0000053a0010009c000000d70000213d0000000301000029000000000101041a000000010010019000000001021002700000007f0220618f000100000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000000680000c13d000000010200002900000002012001af000000200010008c00000da50000413d0000000301000029000000000010043f0000000001000414000004d90010009c000004d901008041000000c0011002100000054c011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b0000000102000029000000200020008c00000d310000413d00000002040000290000001f024000390000000503200270000000200040008c000000000300401900000001020000290000001f02200039000000050220027000000000022100190000000003310019000000000023004b00000d310000813d000000000003041b0000000103300039000000000023004b00000d2d0000413d00000002020000290000001f0020008c00000da50000a13d000000200200008a000000020220018000000e140000c13d000000a00300003900000e220000013d0000001f0430018f000005410230019800000d420000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000026004b00000d3e0000c13d000000000004004b00000d4f0000613d000000000121034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000012043500000060013002100000136200010430000000030000006b000000000100001900000dd80000613d00000003030000290000000301300210000005860110027f0000058601100167000000a00200043d000000000112016f0000000102300210000000000121019f00000dd80000013d0000000501000029000000000010043f0000000601000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b000200000001001d000000000101041a000000010010019000000001021002700000007f0220618f000300000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000000680000c13d000000030000006b0000076c0000613d00000003010000290000001f0010008c00000da20000a13d0000000201000029000000000010043f0000000001000414000004d90010009c000004d901008041000000c0011002100000054c011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000201043b00000003010000290000001f01100039000000050110027000000000011200190000000102200039000000000012004b00000d930000813d000000000002041b0000000102200039000000000012004b00000d8f0000413d0000000201000029000000000010043f0000000001000414000004d90010009c000004d901008041000000c0011002100000054c011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b0000000202000029000000000002041b000200000001001d0000000201000029000000000001041b0000076c0000013d000000020000006b000000000100001900000e2f0000613d00000002030000290000000301300210000005860110027f0000058601100167000000a00200043d000000000112016f0000000102300210000000000121019f00000e2f0000013d000000020000006b000000000100001900000eb50000613d00000002030000290000000301300210000005860110027f0000058601100167000000a00200043d000000000112016f0000000102300210000000000121019f00000eb50000013d000000010320008a0000000503300270000000000331001900000020040000390000000103300039000000000504001900000080044000390000000004040433000000000041041b00000020045000390000000101100039000000000031004b00000dc20000c13d000000a003500039000000030020006c00000dd50000813d00000003020000290000000302200210000000f80220018f000005860220027f00000586022001670000000003030433000000000223016f000000000021041b0000000301000029000000010110021000000001011001bf0000000402000029000000000012041b000000400100043d00000005020000290000000000210435000004d90010009c000004d90100804100000040011002100000000002000414000004d90020009c000004d902008041000000c002200210000000000112019f0000054c011001c70000800d0200003900000001030000390000054d04000041136013560000040f000000010020019000000aea0000613d000000400100043d00000020020000390000000003210436000000800200043d0000000000230435000000000002004b00000dff0000613d000000400310003900000000040000190000000005340019000000a006400039000000000606043300000000006504350000002004400039000000000024004b00000df50000413d00000dff0000a13d000000000332001900000000000304350000001f0220003900000585022001970000004002200039000004d90020009c000004d9020080410000006002200210000004d90010009c000004d9010080410000004001100210000000000112019f0000000002000414000004d90020009c000004d902008041000000c002200210000000000112019f0000054a011001c70000800d020000390000000203000039000005750400004100000005050000290000081f0000013d000000010320008a0000000503300270000000000331001900000020040000390000000103300039000000000504001900000080044000390000000004040433000000000041041b00000020045000390000000101100039000000000031004b00000e190000c13d000000a003500039000000020020006c00000e2c0000813d00000002020000290000000302200210000000f80220018f000005860220027f00000586022001670000000003030433000000000223016f000000000021041b0000000201000029000000010110021000000001011001bf0000000302000029000000000012041b000000400100043d00000004020000290000000000210435000004d90010009c000004d90100804100000040011002100000000002000414000004d90020009c000004d902008041000000c002200210000000000112019f0000054c011001c70000800d0200003900000001030000390000054d04000041136013560000040f000000010020019000000aea0000613d0000000c01000039000000000101041a0000053a021001970000053a0020009c00000c750000613d0000054e011001970000000102200039000000000112019f0000000c02000039000000000012041b0000000501000029000000000010043f0000000d01000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b000000000201041a000005840220019700000001022001bf000000000021041b0000000501000029000000000010043f0000000e01000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b0000000402000029000000000021041b0000004002000039000000400100043d00000000022104360000004004100039000000800300043d0000000000340435000000000003004b00000e830000613d000000600410003900000000050000190000000006450019000000a007500039000000000707043300000000007604350000002005500039000000000035004b00000e790000413d00000e830000a13d00000000044300190000000000040435000000040400002900000000004204350000001f0230003900000585022001970000006002200039000004d90020009c000004d9020080410000006002200210000004d90010009c000004d9010080410000004001100210000000000112019f0000000002000414000004d90020009c000004d902008041000000c002200210000000000112019f0000054a011001c70000800d0200003900000002030000390000054f04000041000000000500041100000f210000013d000000010320008a0000000503300270000000000331001900000020040000390000000103300039000000000504001900000080044000390000000004040433000000000041041b00000020045000390000000101100039000000000031004b00000e9f0000c13d000000a003500039000000020020006c00000eb20000813d00000002020000290000000302200210000000f80220018f000005860220027f00000586022001670000000003030433000000000223016f000000000021041b0000000201000029000000010110021000000001011001bf0000000302000029000000000012041b000000400100043d00000004020000290000000000210435000004d90010009c000004d90100804100000040011002100000000002000414000004d90020009c000004d902008041000000c002200210000000000112019f0000054c011001c70000800d0200003900000001030000390000054d04000041136013560000040f000000010020019000000aea0000613d0000000c01000039000000000101041a0000053a021001970000053a0020009c00000c750000613d0000054e011001970000000102200039000000000112019f0000000c02000039000000000012041b0000000501000029000004e201100197000300000001001d000000000010043f0000000d01000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b000000000201041a000005840220019700000001022001bf000000000021041b0000000301000029000000000010043f0000000e01000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f000000010020019000000aea0000613d000000000101043b0000000402000029000000000021041b0000004002000039000000400100043d00000000022104360000004004100039000000800300043d0000000000340435000000000003004b00000f0b0000613d000000600410003900000000050000190000000006450019000000a007500039000000000707043300000000007604350000002005500039000000000035004b00000f010000413d00000f0b0000a13d00000000044300190000000000040435000000040400002900000000004204350000001f0230003900000585022001970000006002200039000004d90020009c000004d9020080410000006002200210000004d90010009c000004d9010080410000004001100210000000000112019f0000000002000414000004d90020009c000004d902008041000000c002200210000000000112019f0000054a011001c70000800d0200003900000002030000390000054f040000410000000505000029136013560000040f000000010020019000000aea0000613d000000400100043d00000004020000290000000000210435000004d90010009c000004d901008041000000400110021000000536011001c7000013610001042e00000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b00000f3e0000613d000000000400001900000000051400190000000006430019000000000606043300000000006504350000002004400039000000000024004b00000f340000413d00000f3e0000a13d000000000312001900000000000304350000001f0220003900000585022001970000000001120019000000000001042d000000600210003900000587030000410000000000320435000000400210003900000588030000410000000000320435000000200210003900000032030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d0008000000000002000600000002001d000000400200043d000005890020009c000010b50000813d0000002003200039000100000003001d000000400030043f000200000002001d0000000000020435000400000001001d000504e20010019c000010670000613d0000000601000029000000000010043f0000000201000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f0000000100200190000010580000613d000000000101043b000000000101041a000004e2001001980000105a0000c13d0000000601000029000000000010043f0000000201000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f0000000100200190000010580000613d000000000101043b000000000101041a000004e2001001980000105a0000c13d0000000501000029000000000010043f0000000301000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f0000000100200190000010580000613d000000000101043b000000000201041a0000000102200039000000000021041b0000000601000029000000000010043f0000000201000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f0000000100200190000010580000613d000000000101043b000000000201041a000004e30220019700000005022001af000000000021041b000000400100043d000004d90010009c000004d90100804100000040011002100000000002000414000004d90020009c000004d902008041000000c002200210000000000112019f0000054a011001c70000800d0200003900000004030000390000056204000041000000000500001900000004060000290000000607000029136013560000040f0000000100200190000010580000613d0000000001000415000300000001001d0000053d010000410000000000100443000000040100002900000004001004430000000001000414000004d90010009c000004d901008041000000c0011002100000053e011001c700008002020000391360135b0000040f0000000100200190000010660000613d000000000101043b000000000001004b000010020000613d0000053d010000410000000000100443000000050100002900000004001004430000000001000414000004d90010009c000004d901008041000000c0011002100000053e011001c700008002020000391360135b0000040f0000000100200190000010660000613d000000000101043b000000000001004b000010580000613d000000400a00043d0000006401a00039000000800700003900000000007104350000004401a00039000000060200002900000000002104350000058b0100004100000000001a04350000000001000411000004e2011001970000000402a0003900000000001204350000002401a000390000000000010435000000020100002900000000010104330000008402a000390000000000120435000000000001004b00000ff80000613d000000a402a000390000000003000019000000010600002900000000042300190000000005630019000000000505043300000000005404350000002003300039000000000013004b00000fee0000413d00000ff80000a13d0000000002210019000000000002043500000000040004140000000502000029000000040020008c000000200500008a000010060000c13d0000000004000415000000080440008a000000050440021000000000030000310000103d0000013d000000000100041500000003011000690000000001000002000000000001042d000400000007001d0000001f01100039000000000151016f000000a401100039000004d90010009c000004d9010080410000006001100210000004d900a0009c000004d90300004100000000030a40190000004003300210000000000131019f000004d90040009c000004d904008041000000c003400210000000000113019f00060000000a001d136013560000040f000000060a0000290000006003100270000004d903300197000000200030008c000000200400003900000000040340190000001f0540018f000000200640019000000000046a0019000010280000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b000010240000c13d000000000005004b000010350000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000000000003001f00010000000103550000000004000415000000070440008a00000005044002100000000100200190000010770000613d000000200500008a0000001f01300039000000000251016f0000000001a20019000000000021004b000000000200003900000001020040390000053a0010009c000010b50000213d0000000100200190000010b50000c13d000000400010043f000005420030009c000010580000213d000000200030008c000010580000413d00000000010a04330000057e00100198000010580000c13d0000000502400270000000000201001f0000000002000415000000030220006900000000020000020000057f011001970000058b0010009c000010a50000c13d000000000001042d00000000010000190000136200010430000000400100043d00000044021000390000058a03000041000000000032043500000024021000390000001c0300003900000000003204350000052d02000041000000000021043500000004021000390000002003000039000010710000013d000000000001042f000000400100043d00000044021000390000058e0300004100000000003204350000052d02000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000004d90010009c000004d901008041000000400110021000000548011001c70000136200010430000000000003004b0000107b0000c13d0000006002000039000010a20000013d0000001f023000390000058c022001970000003f022000390000058d04200197000000400200043d0000000004420019000000000024004b000000000500003900000001050040390000053a0040009c000010b50000213d0000000100500190000010b50000c13d000000400040043f0000001f0430018f00000000063204360000054105300198000400000006001d0000000003560019000010950000613d000000000601034f0000000407000029000000006806043c0000000007870436000000000037004b000010910000c13d000000000004004b000010a20000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b000010bb0000c13d000000400200043d000600000002001d0000052d010000410000000000120435000000040120003913600f420000040f00000006020000290000000001210049000004d90010009c000004d9010080410000006001100210000004d90020009c000004d9020080410000004002200210000000000121019f00001362000104300000055301000041000000000010043f0000004101000039000000040010043f000005400100004100001362000104300000000402000029000004d90020009c000004d9020080410000004002200210000004d90010009c000004d9010080410000006001100210000000000121019f00001362000104300001000000000002000100000001001d000000000010043f0000000201000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f0000000100200190000010e70000613d000000000101043b000000000101041a000004e200100198000010e90000613d0000000101000029000000000010043f0000000401000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f0000000100200190000010e70000613d000000000101043b000000000101041a000004e201100197000000000001042d00000000010000190000136200010430000000400100043d00000044021000390000057b0300004100000000003204350000002402100039000000180300003900000000003204350000052d020000410000000000210435000000040210003900000020030000390000000000320435000004d90010009c000004d901008041000000400110021000000548011001c70000136200010430000000000010043f0000000201000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f00000001002001900000110b0000613d000000000101043b000000000101041a000004e2011001980000110d0000613d000000000001042d00000000010000190000136200010430000000400100043d00000044021000390000057b0300004100000000003204350000002402100039000000180300003900000000003204350000052d020000410000000000210435000000040210003900000020030000390000000000320435000004d90010009c000004d901008041000000400110021000000548011001c700001362000104300008000000000002000100000004001d000400000002001d000300000001001d000600000003001d000000000030043f0000000201000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f0000000100200190000012a10000613d000000000101043b000000000101041a000004e201100198000012a30000613d0000000002000411000204e20020019b000000020010006b000011770000613d000000000010043f0000000501000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f0000000100200190000012a10000613d000000000101043b0000000202000029000000000020043f000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f0000000100200190000012a10000613d000000000101043b000000000101041a000000ff00100190000011770000c13d0000000601000029000000000010043f0000000201000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f0000000100200190000012a10000613d000000000101043b000000000101041a000004e200100198000012a30000613d0000000601000029000000000010043f0000000401000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f0000000100200190000012a10000613d000000000101043b000000000101041a000004e201100197000000020010006c000012e10000c13d0000000601000029000000000010043f0000000201000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f0000000100200190000012a10000613d000000000101043b000000000101041a000004e202100198000012a30000613d0000000301000029000004e201100197000000000012004b000012b40000c13d0000000401000029000004e201100198000012bf0000613d000500000002001d000000000012004b000012c90000c13d0000000601000029000000000010043f0000000201000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f0000000100200190000012a10000613d000000000101043b000000000101041a000004e2011001980000000502000029000012a30000613d000000000021004b000012b40000c13d0000000601000029000000000010043f0000000401000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f0000000100200190000012a10000613d000000000101043b000000000201041a000004e302200197000000000021041b0000000501000029000000000010043f0000000301000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f0000000100200190000012a10000613d000000000101043b000000000201041a000000010220008a000000000021041b0000000501000029000000000010043f0000000301000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f0000000100200190000012a10000613d000000000101043b000000000201041a0000000102200039000000000021041b0000000601000029000000000010043f0000000201000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f0000000100200190000012a10000613d000000000101043b000000000201041a000004e30220019700000005022001af000000000021041b000000400100043d000004d90010009c000004d90100804100000040011002100000000002000414000004d90020009c000004d902008041000000c002200210000000000112019f0000054a011001c70000800d0200003900000004030000390000056204000041000000030500002900000004060000290000000607000029136013560000040f0000000100200190000012a10000613d0000000001000415000300000001001d0000053d010000410000000000100443000000040100002900000004001004430000000001000414000004d90010009c000004d901008041000000c0011002100000053e011001c700008002020000391360135b0000040f0000000100200190000012be0000613d000000000101043b000000000001004b00000005020000290000124a0000613d0000053d01000041000000000010044300000004002004430000000001000414000004d90010009c000004d901008041000000c0011002100000053e011001c700008002020000391360135b0000040f0000000100200190000012be0000613d000000000101043b000000000001004b000012a10000613d000000400a00043d0000006401a00039000000800800003900000000008104350000004401a00039000000060200002900000000002104350000002401a00039000000050700002900000000007104350000058b0100004100000000001a04350000000401a00039000000020200002900000000002104350000008403a00039000000010100002900000000210104340000000000130435000000000001004b000012410000613d000000a403a00039000000000400001900000000053400190000000006420019000000000606043300000000006504350000002004400039000000000014004b000012370000413d000012410000a13d000000000231001900000000000204350000000002000414000000040070008c000000200500008a0000124e0000c13d0000000004000415000000080440008a00000005044002100000000003000031000012860000013d000000000100041500000003011000690000000001000002000000000001042d000400000008001d0000001f01100039000000000151016f000000a401100039000004d90010009c000004d9010080410000006001100210000004d900a0009c000004d90300004100000000030a40190000004003300210000000000131019f000004d90020009c000004d902008041000000c002200210000000000112019f000000000207001900060000000a001d136013560000040f000000060a0000290000006003100270000004d903300197000000200030008c000000200400003900000000040340190000001f0540018f000000200640019000000000046a0019000012710000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b0000126d0000c13d000000000005004b0000127e0000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000000000003001f00010000000103550000000004000415000000070440008a00000005044002100000000100200190000012dd0000613d000000200500008a0000001f01300039000000000251016f0000000001a20019000000000021004b000000000200003900000001020040390000053a0010009c000013250000213d0000000100200190000013250000c13d000000400010043f000005420030009c000012a10000213d000000200030008c000012a10000413d00000000010a04330000057e00100198000012a10000c13d0000000502400270000000000201001f0000000002000415000000030220006900000000020000020000057f011001970000058b0010009c000013150000c13d000000000001042d00000000010000190000136200010430000000400100043d00000044021000390000057b0300004100000000003204350000002402100039000000180300003900000000003204350000052d020000410000000000210435000000040210003900000020030000390000000000320435000004d90010009c000004d901008041000000400110021000000548011001c70000136200010430000000400100043d00000064021000390000056f03000041000000000032043500000044021000390000057003000041000000000032043500000024021000390000002503000039000012d20000013d000000000001042f000000400100043d00000064021000390000057103000041000000000032043500000044021000390000057203000041000000000032043500000024021000390000002403000039000012d20000013d000000400100043d00000064021000390000056d03000041000000000032043500000044021000390000056e03000041000000000032043500000024021000390000002b0300003900000000003204350000052d020000410000000000210435000000040210003900000020030000390000000000320435000004d90010009c000004d901008041000000400110021000000545011001c70000136200010430000000000003004b000012eb0000c13d0000006002000039000013120000013d000000400100043d00000064021000390000056b03000041000000000032043500000044021000390000056c03000041000000000032043500000024021000390000002d03000039000012d20000013d0000001f023000390000058c022001970000003f022000390000058d04200197000000400200043d0000000004420019000000000024004b000000000500003900000001050040390000053a0040009c000013250000213d0000000100500190000013250000c13d000000400040043f0000001f0430018f00000000063204360000054105300198000400000006001d0000000003560019000013050000613d000000000601034f0000000407000029000000006806043c0000000007870436000000000037004b000013010000c13d000000000004004b000013120000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b0000132b0000c13d000000400200043d000600000002001d0000052d010000410000000000120435000000040120003913600f420000040f00000006020000290000000001210049000004d90010009c000004d9010080410000006001100210000004d90020009c000004d9020080410000004002200210000000000121019f00001362000104300000055301000041000000000010043f0000004101000039000000040010043f000005400100004100001362000104300000000402000029000004d90020009c000004d9020080410000004002200210000004d90010009c000004d9010080410000006001100210000000000121019f0000136200010430000004e201100197000000000010043f0000000501000039000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f0000000100200190000013430000613d000000000101043b000000000001042d00000000010000190000136200010430000004e202200197000000000020043f000000200010043f0000000001000414000004d90010009c000004d901008041000000c00110021000000546011001c700008010020000391360135b0000040f0000000100200190000013530000613d000000000101043b000000000001042d00000000010000190000136200010430000000000001042f00001359002104210000000102000039000000000001042d0000000002000019000000000001042d0000135e002104230000000102000039000000000001042d0000000002000019000000000001042d0000136000000432000013610001042e0000136200010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffff4a6f626120536f756c426f756e6420546f6b656e0000000000000000000000004a53425400000000000000000000000000000000000000000000000000000000290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563d6f21326ab749d5729fcba5677c79037b459436ab7bff709c9d06ce9f10c1a9d4a6f626120536f756c426f756e6420546f6b656e000000000000000000000028b10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf64ef1d2ad89edf8c4d91132028e8195cdf30bb4b5053d4f8cd260341d4805f30a4a53425400000000000000000000000000000000000000000000000000000008000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000010000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0ffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000071afd498d0000000000000000000000000000000000000000000000000000ffffffffffffffc068747470733a2f2f7362742e6a6f62612e6e6574776f726b2f697066732f000068747470733a2f2f7362742e6a6f62612e6e6574776f726b2f697066732f003c8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac80272eef71ef43483d822203fd126296c5f8bfc62fd930b15bdbf4bf082a7e537feffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000ffffffffffffffdf1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae672e497b8238be5e4f32f72d877ba0627e627848cb8a6504aa01d21a347d565198effffffffffffffffffffff0000000000000000000000000000000000000000ff00000000000000000000000a524ab6005e83e4cb09ac333db357e823365931000000000200000000000000000000000000000040000001000000000000000000000000000000000000000000000000000000000000000000000000006c0360ea00000000000000000000000000000000000000000000000000000000a408d4c100000000000000000000000000000000000000000000000000000000d85d3d2600000000000000000000000000000000000000000000000000000000e985e9c400000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000f0f4426000000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000d85d3d2700000000000000000000000000000000000000000000000000000000ddca3f4300000000000000000000000000000000000000000000000000000000e8a3d48500000000000000000000000000000000000000000000000000000000c54d668e00000000000000000000000000000000000000000000000000000000c54d668f00000000000000000000000000000000000000000000000000000000c87b56dd00000000000000000000000000000000000000000000000000000000d204c45e00000000000000000000000000000000000000000000000000000000a408d4c200000000000000000000000000000000000000000000000000000000b88d4fde000000000000000000000000000000000000000000000000000000008456cb5800000000000000000000000000000000000000000000000000000000938e3d7a00000000000000000000000000000000000000000000000000000000938e3d7b0000000000000000000000000000000000000000000000000000000095d89b4100000000000000000000000000000000000000000000000000000000a22cb465000000000000000000000000000000000000000000000000000000008456cb59000000000000000000000000000000000000000000000000000000008da5cb5b00000000000000000000000000000000000000000000000000000000715018a500000000000000000000000000000000000000000000000000000000715018a600000000000000000000000000000000000000000000000000000000773c02d4000000000000000000000000000000000000000000000000000000007a5b85c1000000000000000000000000000000000000000000000000000000006c0360eb0000000000000000000000000000000000000000000000000000000070a08231000000000000000000000000000000000000000000000000000000003f4ba8390000000000000000000000000000000000000000000000000000000055f804b20000000000000000000000000000000000000000000000000000000061d027b20000000000000000000000000000000000000000000000000000000061d027b300000000000000000000000000000000000000000000000000000000623d746c000000000000000000000000000000000000000000000000000000006352211e0000000000000000000000000000000000000000000000000000000055f804b3000000000000000000000000000000000000000000000000000000005c975abb0000000000000000000000000000000000000000000000000000000042966c670000000000000000000000000000000000000000000000000000000042966c680000000000000000000000000000000000000000000000000000000042ad823a000000000000000000000000000000000000000000000000000000004f9b563c000000000000000000000000000000000000000000000000000000003f4ba83a0000000000000000000000000000000000000000000000000000000042842e0e0000000000000000000000000000000000000000000000000000000018e97fd00000000000000000000000000000000000000000000000000000000023b872dc0000000000000000000000000000000000000000000000000000000023b872dd0000000000000000000000000000000000000000000000000000000031b31b88000000000000000000000000000000000000000000000000000000003ccfd60b0000000000000000000000000000000000000000000000000000000018e97fd1000000000000000000000000000000000000000000000000000000001e7269c500000000000000000000000000000000000000000000000000000000081812fb00000000000000000000000000000000000000000000000000000000081812fc00000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000006fdde03020000000000000000000000000000000000000000000080000000000000000008c379a0000000000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000840000008000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff0002000000000000000000000000000000000000200000008000000000000000001f54d231bb9d500b1923e4a1cb25e600f366a8368873d9af7c1c623814df19fc5342543a20496e76616c6964207472656173757279206164647265737300000000000000000000000000000000000000000000640000008000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff21ffffffffffffffffffffffffffffffffffffffffffffffff00000000000000800000000000000000000000000000000000000020000000800000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffff7f0000000000000000000000ff00000000000000000000000000000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b8302000002000000000000000000000000000000240000000000000000000000001e7269c500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffe07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff73697320534254000000000000000000000000000000000000000000000000005342543a206164647265737320616c7265616479206d696e7465642047656e65000000000000000000000000000000000000008400000000000000000000000002000000000000000000000000000000000000400000000000000000000000005342543a206d696e742076616c756520696e636f727265637400000000000000000000000000000000000000000000000000006400000000000000000000000003333333333333333333333333333333333333333333333333333333333333330200000000000000000000000000000000000000000000000000000000000000a90b4820da00b5a159b06d1e0b1e2399a2a57c79661830244c75d9800b4e50290200000000000000000000000000000000000020000000000000000000000000f8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce7ffffffffffffffffffffffffffffffffffffffffffffffff000000000000000037021d1908eb5d88f0643480d365f74a16995c98633411b11ab6b27f60ddfe1e5342543a204164647265737320616c7265616479206d696e74656400000000005342543a20636f6c6c656374696f6e206361702072656163686564000000000003333333333333333333333333333333333333333333333333333333333333344e487b71000000000000000000000000000000000000000000000000000000005342543a20546f6b656e2055524920697320656d70747900000000000000000017307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c314552433732313a20617070726f766520746f2063616c6c657200000000000000e497b8238be5e4f32f72d877ba0627e627848cb8a6504aa01d21a347d565198d000000000000000000000001000000000000000000000000000000000000000062e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2584164647265737320686173206e6f74206d696e746564206120746f6b656e00004552433732313a2061646472657373207a65726f206973206e6f7420612076616c6964206f776e6572000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657272eef71ef43483d822203fd126296c5f8bfc62fd930b15bdbf4bf082a7e537fd884aa40d81e735119060f4556570167b3965bfc77707da024db88280f3795b225061757361626c653a2070617573656400000000000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef0c526103b8f47af5516191d0c89a598755bd00faa211a3cb52e4c2cc782f7fe25db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa5061757361626c653a206e6f74207061757365640000000000000000000000009cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f395342543a205769746864726177616c206661696c6564000000000000000000007fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b655342543a20496e73756666696369656e742062616c616e6365000000000000005265656e7472616e637947756172643a207265656e7472616e742063616c6c0072206f7220617070726f766564000000000000000000000000000000000000004552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6572616e7366657261626c650000000000000000000000000000000000000000005342543a20536f756c20426f756e6420546f6b656e7320617265206e6f6e2d746f776e65720000000000000000000000000000000000000000000000000000004552433732313a207472616e736665722066726f6d20696e636f72726563742072657373000000000000000000000000000000000000000000000000000000004552433732313a207472616e7366657220746f20746865207a65726f206164646f7220636f6e7472616374206f776e65720000000000000000000000000000005342543a2063616c6c6572206973206e6f7420746f6b656e206f776e6572206ef96ba9de8f35fc1b2f70be308b08d6f4474871473f0e193bd910b20f565ff0b16578697374656e7420746f6b656e00000000000000000000000000000000000045524337323155524953746f726167653a2055524920736574206f66206e6f6e6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000004552433732313a20617070726f76652063616c6c6572206973206e6f7420746f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9254552433732313a20696e76616c696420746f6b656e204944000000000000000072000000000000000000000000000000000000000000000000000000000000004552433732313a20617070726f76616c20746f2063757272656e74206f776e6500000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000049064906000000000000000000000000000000000000000000000000000000005b5e139f0000000000000000000000000000000000000000000000000000000080ac58cd0000000000000000000000000000000000000000000000000000000001ffc9a700000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff63656976657220696d706c656d656e74657200000000000000000000000000004552433732313a207472616e7366657220746f206e6f6e204552433732315265000000000000000000000000000000000000000000000000ffffffffffffffe04552433732313a20746f6b656e20616c7265616479206d696e74656400000000150b7a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000003ffffffe04552433732313a206d696e7420746f20746865207a65726f20616464726573730000000000000000000000000000000000000000000000000000000000000000361c26d347adb8edce229a7ae86ab5453939a411defa7e1ea39607acef27546c

[ 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.