ETH Price: $3,486.98 (+0.74%)
Gas: 8 Gwei

Token

Animation Animation Actress Girl (AAAG)
 

Overview

Max Total Supply

2,022 AAAG

Holders

232

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
ethflash.eth
Balance
1 AAAG
0xdf4E0f7E6CBCB5a1B78fD0f3a71aff8e2A782112
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
AAAG

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : AAAG.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
/*
  ___    ___    ___  _____ 
 / _ \  / _ \  / _ \|  __ \
/ /_\ \/ /_\ \/ /_\ \ |  \/
|  _  ||  _  ||  _  | | __ 
| | | || | | || | | | |_\ \
\_| |_/\_| |_/\_| |_/\____/

*/
import "@openzeppelin/contracts/access/Ownable.sol";
import "./ERC721A.sol";

contract AAAG is ERC721A, Ownable {
  enum Status {
    Pending,
    PublicSale,
    Finished
  }

  Status public status;
  string public baseURI;
  uint256 public constant MAX_MINT_PER_ADDR = 10;
  uint256 public constant MAX_SUPPLY = 2022;
  uint256 public aaagPrice = 0.01 * 10**18; // 0.01 ETH

  event Minted(address minter, uint256 amount);
  event StatusChanged(Status status);
  event BaseURIChanged(string newBaseURI);

  constructor(string memory initBaseURI) ERC721A("Animation Animation Actress Girl", "AAAG") {
    baseURI = initBaseURI;
  }

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

  function mint(uint256 quantity) external payable {
    require(status == Status.PublicSale, "sale has not started yet");
    require(tx.origin == msg.sender, "EOA only");
    require(
      numberMinted(msg.sender) + quantity <= MAX_MINT_PER_ADDR,
      "can not mint this many"
    );
    require(totalSupply() + quantity <= MAX_SUPPLY, "reached max supply");

    _safeMint(msg.sender, quantity);
    refundIfOver(aaagPrice * quantity);

    emit Minted(msg.sender, quantity);
  }

  function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

  function refundIfOver(uint256 price) private {
    require(msg.value >= price, "Need to send more ETH.");
    if (msg.value > price) {
      payable(msg.sender).transfer(msg.value - price);
    }
  }

  function setStatus(Status _status) external onlyOwner {
    status = _status;
    emit StatusChanged(status);
  }

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

  function setBaseURI(string calldata newBaseURI) external onlyOwner {
    baseURI = newBaseURI;
    emit BaseURIChanged(newBaseURI);
  }

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

File 2 of 12 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used). 
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant: 
                    // There will always be an ownership that has an address and is not burned 
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _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 {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked { 
            _burnCounter++;
        }
    }

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

File 3 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

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

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

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

File 4 of 12 : 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 5 of 12 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 6 of 12 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 7 of 12 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 12 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 9 of 12 : 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 10 of 12 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 11 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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

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

File 12 of 12 : 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);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":"newBaseURI","type":"string"}],"name":"BaseURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Minted","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":"enum AAAG.Status","name":"status","type":"uint8"}],"name":"StatusChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINT_PER_ADDR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"aaagPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum AAAG.Status","name":"_status","type":"uint8"}],"name":"setStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"status","outputs":[{"internalType":"enum AAAG.Status","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"recipient","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052662386f26fc10000600a553480156200001c57600080fd5b5060405162003e2138038062003e2183398181016040528101906200004291906200031e565b6040518060400160405280602081526020017f416e696d6174696f6e20416e696d6174696f6e2041637472657373204769726c8152506040518060400160405280600481526020017f41414147000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000c6929190620001f0565b508060039080519060200190620000df929190620001f0565b50505062000102620000f66200012260201b60201c565b6200012a60201b60201c565b80600990805190602001906200011a929190620001f0565b5050620004f3565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001fe9062000404565b90600052602060002090601f0160209004810192826200022257600085556200026e565b82601f106200023d57805160ff19168380011785556200026e565b828001600101855582156200026e579182015b828111156200026d57825182559160200191906001019062000250565b5b5090506200027d919062000281565b5090565b5b808211156200029c57600081600090555060010162000282565b5090565b6000620002b7620002b18462000398565b6200036f565b905082815260208101848484011115620002d657620002d5620004d3565b5b620002e3848285620003ce565b509392505050565b600082601f830112620003035762000302620004ce565b5b815162000315848260208601620002a0565b91505092915050565b600060208284031215620003375762000336620004dd565b5b600082015167ffffffffffffffff811115620003585762000357620004d8565b5b6200036684828501620002eb565b91505092915050565b60006200037b6200038e565b90506200038982826200043a565b919050565b6000604051905090565b600067ffffffffffffffff821115620003b657620003b56200049f565b5b620003c182620004e2565b9050602081019050919050565b60005b83811015620003ee578082015181840152602081019050620003d1565b83811115620003fe576000848401525b50505050565b600060028204905060018216806200041d57607f821691505b6020821081141562000434576200043362000470565b5b50919050565b6200044582620004e2565b810181811067ffffffffffffffff821117156200046757620004666200049f565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b61391e80620005036000396000f3fe6080604052600436106101b75760003560e01c80636c0360eb116100ec578063a0712d681161008a578063c87b56dd11610064578063c87b56dd146105d7578063dc33e68114610614578063e985e9c514610651578063f2fde38b1461068e576101b7565b8063a0712d6814610569578063a22cb46514610585578063b88d4fde146105ae576101b7565b80637dee5629116100c65780637dee5629146104bf5780638da5cb5b146104ea57806391b7f5ed1461051557806395d89b411461053e576101b7565b80636c0360eb1461044057806370a082311461046b578063715018a6146104a8576101b7565b806323b872dd1161015957806342842e0e1161013357806342842e0e1461038857806351cff8d9146103b157806355f804b3146103da5780636352211e14610403576101b7565b806323b872dd1461030b5780632e49d78b1461033457806332cb6b0c1461035d576101b7565b8063095ea7b311610195578063095ea7b314610261578063161548621461028a57806318160ddd146102b5578063200d2ed2146102e0576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612c6c565b6106b7565b6040516101f0919061307d565b60405180910390f35b34801561020557600080fd5b5061020e610799565b60405161021b91906130d7565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612d40565b61082b565b6040516102589190612fed565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612c2c565b6108a7565b005b34801561029657600080fd5b5061029f6109b2565b6040516102ac91906131f9565b60405180910390f35b3480156102c157600080fd5b506102ca6109b7565b6040516102d791906131f9565b60405180910390f35b3480156102ec57600080fd5b506102f56109c5565b6040516103029190613098565b60405180910390f35b34801561031757600080fd5b50610332600480360381019061032d9190612b16565b6109d8565b005b34801561034057600080fd5b5061035b60048036038101906103569190612cc6565b6109e8565b005b34801561036957600080fd5b50610372610ad7565b60405161037f91906131f9565b60405180910390f35b34801561039457600080fd5b506103af60048036038101906103aa9190612b16565b610add565b005b3480156103bd57600080fd5b506103d860048036038101906103d39190612aa9565b610afd565b005b3480156103e657600080fd5b5061040160048036038101906103fc9190612cf3565b610c2f565b005b34801561040f57600080fd5b5061042a60048036038101906104259190612d40565b610cfa565b6040516104379190612fed565b60405180910390f35b34801561044c57600080fd5b50610455610d10565b60405161046291906130d7565b60405180910390f35b34801561047757600080fd5b50610492600480360381019061048d9190612a7c565b610d9e565b60405161049f91906131f9565b60405180910390f35b3480156104b457600080fd5b506104bd610e6e565b005b3480156104cb57600080fd5b506104d4610ef6565b6040516104e191906131f9565b60405180910390f35b3480156104f657600080fd5b506104ff610efc565b60405161050c9190612fed565b60405180910390f35b34801561052157600080fd5b5061053c60048036038101906105379190612d40565b610f26565b005b34801561054a57600080fd5b50610553610fac565b60405161056091906130d7565b60405180910390f35b610583600480360381019061057e9190612d40565b61103e565b005b34801561059157600080fd5b506105ac60048036038101906105a79190612bec565b61122c565b005b3480156105ba57600080fd5b506105d560048036038101906105d09190612b69565b6113a4565b005b3480156105e357600080fd5b506105fe60048036038101906105f99190612d40565b6113f7565b60405161060b91906130d7565b60405180910390f35b34801561062057600080fd5b5061063b60048036038101906106369190612a7c565b611496565b60405161064891906131f9565b60405180910390f35b34801561065d57600080fd5b5061067860048036038101906106739190612ad6565b6114a8565b604051610685919061307d565b60405180910390f35b34801561069a57600080fd5b506106b560048036038101906106b09190612a7c565b61153c565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061078257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610792575061079182611634565b5b9050919050565b6060600280546107a8906134ba565b80601f01602080910402602001604051908101604052809291908181526020018280546107d4906134ba565b80156108215780601f106107f657610100808354040283529160200191610821565b820191906000526020600020905b81548152906001019060200180831161080457829003601f168201915b5050505050905090565b60006108368261169e565b61086c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108b282610cfa565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561091a576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109396116d8565b73ffffffffffffffffffffffffffffffffffffffff161415801561096b5750610969816109646116d8565b6114a8565b155b156109a2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109ad8383836116e0565b505050565b600a81565b600060015460005403905090565b600860149054906101000a900460ff1681565b6109e3838383611792565b505050565b6109f06116d8565b73ffffffffffffffffffffffffffffffffffffffff16610a0e610efc565b73ffffffffffffffffffffffffffffffffffffffff1614610a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5b90613159565b60405180910390fd5b80600860146101000a81548160ff02191690836002811115610a8957610a886135f5565b5b02179055507fafa725e7f44cadb687a7043853fa1a7e7b8f0da74ce87ec546e9420f04da8c1e600860149054906101000a900460ff16604051610acc9190613098565b60405180910390a150565b6107e681565b610af8838383604051806020016040528060008152506113a4565b505050565b610b056116d8565b73ffffffffffffffffffffffffffffffffffffffff16610b23610efc565b73ffffffffffffffffffffffffffffffffffffffff1614610b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7090613159565b60405180910390fd5b600047905060008273ffffffffffffffffffffffffffffffffffffffff1682604051610ba490612fd8565b60006040518083038185875af1925050503d8060008114610be1576040519150601f19603f3d011682016040523d82523d6000602084013e610be6565b606091505b5050905080610c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2190613199565b60405180910390fd5b505050565b610c376116d8565b73ffffffffffffffffffffffffffffffffffffffff16610c55610efc565b73ffffffffffffffffffffffffffffffffffffffff1614610cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca290613159565b60405180910390fd5b818160099190610cbc92919061283d565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf68282604051610cee9291906130b3565b60405180910390a15050565b6000610d0582611c83565b600001519050919050565b60098054610d1d906134ba565b80601f0160208091040260200160405190810160405280929190818152602001828054610d49906134ba565b8015610d965780601f10610d6b57610100808354040283529160200191610d96565b820191906000526020600020905b815481529060010190602001808311610d7957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e06576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610e766116d8565b73ffffffffffffffffffffffffffffffffffffffff16610e94610efc565b73ffffffffffffffffffffffffffffffffffffffff1614610eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee190613159565b60405180910390fd5b610ef46000611eff565b565b600a5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f2e6116d8565b73ffffffffffffffffffffffffffffffffffffffff16610f4c610efc565b73ffffffffffffffffffffffffffffffffffffffff1614610fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9990613159565b60405180910390fd5b80600a8190555050565b606060038054610fbb906134ba565b80601f0160208091040260200160405190810160405280929190818152602001828054610fe7906134ba565b80156110345780601f1061100957610100808354040283529160200191611034565b820191906000526020600020905b81548152906001019060200180831161101757829003601f168201915b5050505050905090565b60016002811115611052576110516135f5565b5b600860149054906101000a900460ff166002811115611074576110736135f5565b5b146110b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ab90613119565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611122576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111990613179565b60405180910390fd5b600a8161112e33611496565b61113891906132b8565b1115611179576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611170906131d9565b60405180910390fd5b6107e6816111856109b7565b61118f91906132b8565b11156111d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c790613139565b60405180910390fd5b6111da3382611fc5565b6111f081600a546111eb919061333f565b611fe3565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe3382604051611221929190613054565b60405180910390a150565b6112346116d8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611299576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006112a66116d8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113536116d8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611398919061307d565b60405180910390a35050565b6113af848484611792565b6113bb84848484612084565b6113f1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606114028261169e565b611438576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611442612212565b9050600081511415611463576040518060200160405280600081525061148e565b8061146d846122a4565b60405160200161147e929190612fb4565b6040516020818303038152906040525b915050919050565b60006114a182612405565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115446116d8565b73ffffffffffffffffffffffffffffffffffffffff16611562610efc565b73ffffffffffffffffffffffffffffffffffffffff16146115b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115af90613159565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161f906130f9565b60405180910390fd5b61163181611eff565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008054821080156116d1575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061179d82611c83565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166117c46116d8565b73ffffffffffffffffffffffffffffffffffffffff1614806117f757506117f682600001516117f16116d8565b6114a8565b5b8061183c57506118056116d8565b73ffffffffffffffffffffffffffffffffffffffff166118248461082b565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611875576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146118de576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611945576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61195285858560016124d5565b61196260008484600001516116e0565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611c1357600054811015611c125782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c7c85858560016124db565b5050505050565b611c8b6128c3565b6000829050600054811015611ec8576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611ec657600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611daa578092505050611efa565b5b600115611ec557818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611ec0578092505050611efa565b611dab565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611fdf8282604051806020016040528060008152506124e1565b5050565b80341015612026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201d906131b9565b60405180910390fd5b80341115612081573373ffffffffffffffffffffffffffffffffffffffff166108fc82346120549190613399565b9081150290604051600060405180830381858888f1935050505015801561207f573d6000803e3d6000fd5b505b50565b60006120a58473ffffffffffffffffffffffffffffffffffffffff166124f3565b15612205578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120ce6116d8565b8786866040518563ffffffff1660e01b81526004016120f09493929190613008565b602060405180830381600087803b15801561210a57600080fd5b505af192505050801561213b57506040513d601f19601f820116820180604052508101906121389190612c99565b60015b6121b5573d806000811461216b576040519150601f19603f3d011682016040523d82523d6000602084013e612170565b606091505b506000815114156121ad576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061220a565b600190505b949350505050565b606060098054612221906134ba565b80601f016020809104026020016040519081016040528092919081815260200182805461224d906134ba565b801561229a5780601f1061226f5761010080835404028352916020019161229a565b820191906000526020600020905b81548152906001019060200180831161227d57829003601f168201915b5050505050905090565b606060008214156122ec576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612400565b600082905060005b6000821461231e5780806123079061351d565b915050600a82612317919061330e565b91506122f4565b60008167ffffffffffffffff81111561233a57612339613682565b5b6040519080825280601f01601f19166020018201604052801561236c5781602001600182028036833780820191505090505b5090505b600085146123f9576001826123859190613399565b9150600a856123949190613566565b60306123a091906132b8565b60f81b8183815181106123b6576123b5613653565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123f2919061330e565b9450612370565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561246d576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b50505050565b50505050565b6124ee8383836001612506565b505050565b600080823b905060008111915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612573576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156125ae576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125bb60008683876124d5565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561282057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48380156127d457506127d26000888488612084565b155b1561280b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612759565b50806000819055505061283660008683876124db565b5050505050565b828054612849906134ba565b90600052602060002090601f01602090048101928261286b57600085556128b2565b82601f1061288457803560ff19168380011785556128b2565b828001600101855582156128b2579182015b828111156128b1578235825591602001919060010190612896565b5b5090506128bf9190612906565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561291f576000816000905550600101612907565b5090565b600061293661293184613239565b613214565b905082815260208101848484011115612952576129516136c0565b5b61295d848285613478565b509392505050565b60008135905061297481613865565b92915050565b6000813590506129898161387c565b92915050565b60008135905061299e81613893565b92915050565b6000813590506129b3816138aa565b92915050565b6000815190506129c8816138aa565b92915050565b600082601f8301126129e3576129e26136b6565b5b81356129f3848260208601612923565b91505092915050565b600081359050612a0b816138c1565b92915050565b60008083601f840112612a2757612a266136b6565b5b8235905067ffffffffffffffff811115612a4457612a436136b1565b5b602083019150836001820283011115612a6057612a5f6136bb565b5b9250929050565b600081359050612a76816138d1565b92915050565b600060208284031215612a9257612a916136ca565b5b6000612aa084828501612965565b91505092915050565b600060208284031215612abf57612abe6136ca565b5b6000612acd8482850161297a565b91505092915050565b60008060408385031215612aed57612aec6136ca565b5b6000612afb85828601612965565b9250506020612b0c85828601612965565b9150509250929050565b600080600060608486031215612b2f57612b2e6136ca565b5b6000612b3d86828701612965565b9350506020612b4e86828701612965565b9250506040612b5f86828701612a67565b9150509250925092565b60008060008060808587031215612b8357612b826136ca565b5b6000612b9187828801612965565b9450506020612ba287828801612965565b9350506040612bb387828801612a67565b925050606085013567ffffffffffffffff811115612bd457612bd36136c5565b5b612be0878288016129ce565b91505092959194509250565b60008060408385031215612c0357612c026136ca565b5b6000612c1185828601612965565b9250506020612c228582860161298f565b9150509250929050565b60008060408385031215612c4357612c426136ca565b5b6000612c5185828601612965565b9250506020612c6285828601612a67565b9150509250929050565b600060208284031215612c8257612c816136ca565b5b6000612c90848285016129a4565b91505092915050565b600060208284031215612caf57612cae6136ca565b5b6000612cbd848285016129b9565b91505092915050565b600060208284031215612cdc57612cdb6136ca565b5b6000612cea848285016129fc565b91505092915050565b60008060208385031215612d0a57612d096136ca565b5b600083013567ffffffffffffffff811115612d2857612d276136c5565b5b612d3485828601612a11565b92509250509250929050565b600060208284031215612d5657612d556136ca565b5b6000612d6484828501612a67565b91505092915050565b612d76816133cd565b82525050565b612d85816133f1565b82525050565b6000612d968261326a565b612da08185613280565b9350612db0818560208601613487565b612db9816136cf565b840191505092915050565b612dcd81613466565b82525050565b6000612ddf838561329c565b9350612dec838584613478565b612df5836136cf565b840190509392505050565b6000612e0b82613275565b612e15818561329c565b9350612e25818560208601613487565b612e2e816136cf565b840191505092915050565b6000612e4482613275565b612e4e81856132ad565b9350612e5e818560208601613487565b80840191505092915050565b6000612e7760268361329c565b9150612e82826136e0565b604082019050919050565b6000612e9a60188361329c565b9150612ea58261372f565b602082019050919050565b6000612ebd60128361329c565b9150612ec882613758565b602082019050919050565b6000612ee060208361329c565b9150612eeb82613781565b602082019050919050565b6000612f0360088361329c565b9150612f0e826137aa565b602082019050919050565b6000612f26600083613291565b9150612f31826137d3565b600082019050919050565b6000612f4960108361329c565b9150612f54826137d6565b602082019050919050565b6000612f6c60168361329c565b9150612f77826137ff565b602082019050919050565b6000612f8f60168361329c565b9150612f9a82613828565b602082019050919050565b612fae8161345c565b82525050565b6000612fc08285612e39565b9150612fcc8284612e39565b91508190509392505050565b6000612fe382612f19565b9150819050919050565b60006020820190506130026000830184612d6d565b92915050565b600060808201905061301d6000830187612d6d565b61302a6020830186612d6d565b6130376040830185612fa5565b81810360608301526130498184612d8b565b905095945050505050565b60006040820190506130696000830185612d6d565b6130766020830184612fa5565b9392505050565b60006020820190506130926000830184612d7c565b92915050565b60006020820190506130ad6000830184612dc4565b92915050565b600060208201905081810360008301526130ce818486612dd3565b90509392505050565b600060208201905081810360008301526130f18184612e00565b905092915050565b6000602082019050818103600083015261311281612e6a565b9050919050565b6000602082019050818103600083015261313281612e8d565b9050919050565b6000602082019050818103600083015261315281612eb0565b9050919050565b6000602082019050818103600083015261317281612ed3565b9050919050565b6000602082019050818103600083015261319281612ef6565b9050919050565b600060208201905081810360008301526131b281612f3c565b9050919050565b600060208201905081810360008301526131d281612f5f565b9050919050565b600060208201905081810360008301526131f281612f82565b9050919050565b600060208201905061320e6000830184612fa5565b92915050565b600061321e61322f565b905061322a82826134ec565b919050565b6000604051905090565b600067ffffffffffffffff82111561325457613253613682565b5b61325d826136cf565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006132c38261345c565b91506132ce8361345c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561330357613302613597565b5b828201905092915050565b60006133198261345c565b91506133248361345c565b925082613334576133336135c6565b5b828204905092915050565b600061334a8261345c565b91506133558361345c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561338e5761338d613597565b5b828202905092915050565b60006133a48261345c565b91506133af8361345c565b9250828210156133c2576133c1613597565b5b828203905092915050565b60006133d88261343c565b9050919050565b60006133ea8261343c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600081905061343782613851565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061347182613429565b9050919050565b82818337600083830152505050565b60005b838110156134a557808201518184015260208101905061348a565b838111156134b4576000848401525b50505050565b600060028204905060018216806134d257607f821691505b602082108114156134e6576134e5613624565b5b50919050565b6134f5826136cf565b810181811067ffffffffffffffff8211171561351457613513613682565b5b80604052505050565b60006135288261345c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561355b5761355a613597565b5b600182019050919050565b60006135718261345c565b915061357c8361345c565b92508261358c5761358b6135c6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f73616c6520686173206e6f742073746172746564207965740000000000000000600082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f454f41206f6e6c79000000000000000000000000000000000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b7f63616e206e6f74206d696e742074686973206d616e7900000000000000000000600082015250565b60038110613862576138616135f5565b5b50565b61386e816133cd565b811461387957600080fd5b50565b613885816133df565b811461389057600080fd5b50565b61389c816133f1565b81146138a757600080fd5b50565b6138b3816133fd565b81146138be57600080fd5b50565b600381106138ce57600080fd5b50565b6138da8161345c565b81146138e557600080fd5b5056fea2646970667358221220fc0733700a8f8f512f80da0c5616a6b387ba597137bde9907b223bd8eb08896564736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000011697066733a2f2f6e6f7472657665616c64000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101b75760003560e01c80636c0360eb116100ec578063a0712d681161008a578063c87b56dd11610064578063c87b56dd146105d7578063dc33e68114610614578063e985e9c514610651578063f2fde38b1461068e576101b7565b8063a0712d6814610569578063a22cb46514610585578063b88d4fde146105ae576101b7565b80637dee5629116100c65780637dee5629146104bf5780638da5cb5b146104ea57806391b7f5ed1461051557806395d89b411461053e576101b7565b80636c0360eb1461044057806370a082311461046b578063715018a6146104a8576101b7565b806323b872dd1161015957806342842e0e1161013357806342842e0e1461038857806351cff8d9146103b157806355f804b3146103da5780636352211e14610403576101b7565b806323b872dd1461030b5780632e49d78b1461033457806332cb6b0c1461035d576101b7565b8063095ea7b311610195578063095ea7b314610261578063161548621461028a57806318160ddd146102b5578063200d2ed2146102e0576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612c6c565b6106b7565b6040516101f0919061307d565b60405180910390f35b34801561020557600080fd5b5061020e610799565b60405161021b91906130d7565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612d40565b61082b565b6040516102589190612fed565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612c2c565b6108a7565b005b34801561029657600080fd5b5061029f6109b2565b6040516102ac91906131f9565b60405180910390f35b3480156102c157600080fd5b506102ca6109b7565b6040516102d791906131f9565b60405180910390f35b3480156102ec57600080fd5b506102f56109c5565b6040516103029190613098565b60405180910390f35b34801561031757600080fd5b50610332600480360381019061032d9190612b16565b6109d8565b005b34801561034057600080fd5b5061035b60048036038101906103569190612cc6565b6109e8565b005b34801561036957600080fd5b50610372610ad7565b60405161037f91906131f9565b60405180910390f35b34801561039457600080fd5b506103af60048036038101906103aa9190612b16565b610add565b005b3480156103bd57600080fd5b506103d860048036038101906103d39190612aa9565b610afd565b005b3480156103e657600080fd5b5061040160048036038101906103fc9190612cf3565b610c2f565b005b34801561040f57600080fd5b5061042a60048036038101906104259190612d40565b610cfa565b6040516104379190612fed565b60405180910390f35b34801561044c57600080fd5b50610455610d10565b60405161046291906130d7565b60405180910390f35b34801561047757600080fd5b50610492600480360381019061048d9190612a7c565b610d9e565b60405161049f91906131f9565b60405180910390f35b3480156104b457600080fd5b506104bd610e6e565b005b3480156104cb57600080fd5b506104d4610ef6565b6040516104e191906131f9565b60405180910390f35b3480156104f657600080fd5b506104ff610efc565b60405161050c9190612fed565b60405180910390f35b34801561052157600080fd5b5061053c60048036038101906105379190612d40565b610f26565b005b34801561054a57600080fd5b50610553610fac565b60405161056091906130d7565b60405180910390f35b610583600480360381019061057e9190612d40565b61103e565b005b34801561059157600080fd5b506105ac60048036038101906105a79190612bec565b61122c565b005b3480156105ba57600080fd5b506105d560048036038101906105d09190612b69565b6113a4565b005b3480156105e357600080fd5b506105fe60048036038101906105f99190612d40565b6113f7565b60405161060b91906130d7565b60405180910390f35b34801561062057600080fd5b5061063b60048036038101906106369190612a7c565b611496565b60405161064891906131f9565b60405180910390f35b34801561065d57600080fd5b5061067860048036038101906106739190612ad6565b6114a8565b604051610685919061307d565b60405180910390f35b34801561069a57600080fd5b506106b560048036038101906106b09190612a7c565b61153c565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061078257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610792575061079182611634565b5b9050919050565b6060600280546107a8906134ba565b80601f01602080910402602001604051908101604052809291908181526020018280546107d4906134ba565b80156108215780601f106107f657610100808354040283529160200191610821565b820191906000526020600020905b81548152906001019060200180831161080457829003601f168201915b5050505050905090565b60006108368261169e565b61086c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108b282610cfa565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561091a576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109396116d8565b73ffffffffffffffffffffffffffffffffffffffff161415801561096b5750610969816109646116d8565b6114a8565b155b156109a2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109ad8383836116e0565b505050565b600a81565b600060015460005403905090565b600860149054906101000a900460ff1681565b6109e3838383611792565b505050565b6109f06116d8565b73ffffffffffffffffffffffffffffffffffffffff16610a0e610efc565b73ffffffffffffffffffffffffffffffffffffffff1614610a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5b90613159565b60405180910390fd5b80600860146101000a81548160ff02191690836002811115610a8957610a886135f5565b5b02179055507fafa725e7f44cadb687a7043853fa1a7e7b8f0da74ce87ec546e9420f04da8c1e600860149054906101000a900460ff16604051610acc9190613098565b60405180910390a150565b6107e681565b610af8838383604051806020016040528060008152506113a4565b505050565b610b056116d8565b73ffffffffffffffffffffffffffffffffffffffff16610b23610efc565b73ffffffffffffffffffffffffffffffffffffffff1614610b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7090613159565b60405180910390fd5b600047905060008273ffffffffffffffffffffffffffffffffffffffff1682604051610ba490612fd8565b60006040518083038185875af1925050503d8060008114610be1576040519150601f19603f3d011682016040523d82523d6000602084013e610be6565b606091505b5050905080610c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2190613199565b60405180910390fd5b505050565b610c376116d8565b73ffffffffffffffffffffffffffffffffffffffff16610c55610efc565b73ffffffffffffffffffffffffffffffffffffffff1614610cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca290613159565b60405180910390fd5b818160099190610cbc92919061283d565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf68282604051610cee9291906130b3565b60405180910390a15050565b6000610d0582611c83565b600001519050919050565b60098054610d1d906134ba565b80601f0160208091040260200160405190810160405280929190818152602001828054610d49906134ba565b8015610d965780601f10610d6b57610100808354040283529160200191610d96565b820191906000526020600020905b815481529060010190602001808311610d7957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e06576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610e766116d8565b73ffffffffffffffffffffffffffffffffffffffff16610e94610efc565b73ffffffffffffffffffffffffffffffffffffffff1614610eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee190613159565b60405180910390fd5b610ef46000611eff565b565b600a5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f2e6116d8565b73ffffffffffffffffffffffffffffffffffffffff16610f4c610efc565b73ffffffffffffffffffffffffffffffffffffffff1614610fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9990613159565b60405180910390fd5b80600a8190555050565b606060038054610fbb906134ba565b80601f0160208091040260200160405190810160405280929190818152602001828054610fe7906134ba565b80156110345780601f1061100957610100808354040283529160200191611034565b820191906000526020600020905b81548152906001019060200180831161101757829003601f168201915b5050505050905090565b60016002811115611052576110516135f5565b5b600860149054906101000a900460ff166002811115611074576110736135f5565b5b146110b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ab90613119565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611122576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111990613179565b60405180910390fd5b600a8161112e33611496565b61113891906132b8565b1115611179576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611170906131d9565b60405180910390fd5b6107e6816111856109b7565b61118f91906132b8565b11156111d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c790613139565b60405180910390fd5b6111da3382611fc5565b6111f081600a546111eb919061333f565b611fe3565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe3382604051611221929190613054565b60405180910390a150565b6112346116d8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611299576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006112a66116d8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113536116d8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611398919061307d565b60405180910390a35050565b6113af848484611792565b6113bb84848484612084565b6113f1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606114028261169e565b611438576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611442612212565b9050600081511415611463576040518060200160405280600081525061148e565b8061146d846122a4565b60405160200161147e929190612fb4565b6040516020818303038152906040525b915050919050565b60006114a182612405565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115446116d8565b73ffffffffffffffffffffffffffffffffffffffff16611562610efc565b73ffffffffffffffffffffffffffffffffffffffff16146115b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115af90613159565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161f906130f9565b60405180910390fd5b61163181611eff565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008054821080156116d1575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061179d82611c83565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166117c46116d8565b73ffffffffffffffffffffffffffffffffffffffff1614806117f757506117f682600001516117f16116d8565b6114a8565b5b8061183c57506118056116d8565b73ffffffffffffffffffffffffffffffffffffffff166118248461082b565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611875576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146118de576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611945576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61195285858560016124d5565b61196260008484600001516116e0565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611c1357600054811015611c125782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c7c85858560016124db565b5050505050565b611c8b6128c3565b6000829050600054811015611ec8576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611ec657600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611daa578092505050611efa565b5b600115611ec557818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611ec0578092505050611efa565b611dab565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611fdf8282604051806020016040528060008152506124e1565b5050565b80341015612026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201d906131b9565b60405180910390fd5b80341115612081573373ffffffffffffffffffffffffffffffffffffffff166108fc82346120549190613399565b9081150290604051600060405180830381858888f1935050505015801561207f573d6000803e3d6000fd5b505b50565b60006120a58473ffffffffffffffffffffffffffffffffffffffff166124f3565b15612205578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120ce6116d8565b8786866040518563ffffffff1660e01b81526004016120f09493929190613008565b602060405180830381600087803b15801561210a57600080fd5b505af192505050801561213b57506040513d601f19601f820116820180604052508101906121389190612c99565b60015b6121b5573d806000811461216b576040519150601f19603f3d011682016040523d82523d6000602084013e612170565b606091505b506000815114156121ad576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061220a565b600190505b949350505050565b606060098054612221906134ba565b80601f016020809104026020016040519081016040528092919081815260200182805461224d906134ba565b801561229a5780601f1061226f5761010080835404028352916020019161229a565b820191906000526020600020905b81548152906001019060200180831161227d57829003601f168201915b5050505050905090565b606060008214156122ec576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612400565b600082905060005b6000821461231e5780806123079061351d565b915050600a82612317919061330e565b91506122f4565b60008167ffffffffffffffff81111561233a57612339613682565b5b6040519080825280601f01601f19166020018201604052801561236c5781602001600182028036833780820191505090505b5090505b600085146123f9576001826123859190613399565b9150600a856123949190613566565b60306123a091906132b8565b60f81b8183815181106123b6576123b5613653565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123f2919061330e565b9450612370565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561246d576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b50505050565b50505050565b6124ee8383836001612506565b505050565b600080823b905060008111915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612573576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156125ae576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125bb60008683876124d5565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561282057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48380156127d457506127d26000888488612084565b155b1561280b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612759565b50806000819055505061283660008683876124db565b5050505050565b828054612849906134ba565b90600052602060002090601f01602090048101928261286b57600085556128b2565b82601f1061288457803560ff19168380011785556128b2565b828001600101855582156128b2579182015b828111156128b1578235825591602001919060010190612896565b5b5090506128bf9190612906565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561291f576000816000905550600101612907565b5090565b600061293661293184613239565b613214565b905082815260208101848484011115612952576129516136c0565b5b61295d848285613478565b509392505050565b60008135905061297481613865565b92915050565b6000813590506129898161387c565b92915050565b60008135905061299e81613893565b92915050565b6000813590506129b3816138aa565b92915050565b6000815190506129c8816138aa565b92915050565b600082601f8301126129e3576129e26136b6565b5b81356129f3848260208601612923565b91505092915050565b600081359050612a0b816138c1565b92915050565b60008083601f840112612a2757612a266136b6565b5b8235905067ffffffffffffffff811115612a4457612a436136b1565b5b602083019150836001820283011115612a6057612a5f6136bb565b5b9250929050565b600081359050612a76816138d1565b92915050565b600060208284031215612a9257612a916136ca565b5b6000612aa084828501612965565b91505092915050565b600060208284031215612abf57612abe6136ca565b5b6000612acd8482850161297a565b91505092915050565b60008060408385031215612aed57612aec6136ca565b5b6000612afb85828601612965565b9250506020612b0c85828601612965565b9150509250929050565b600080600060608486031215612b2f57612b2e6136ca565b5b6000612b3d86828701612965565b9350506020612b4e86828701612965565b9250506040612b5f86828701612a67565b9150509250925092565b60008060008060808587031215612b8357612b826136ca565b5b6000612b9187828801612965565b9450506020612ba287828801612965565b9350506040612bb387828801612a67565b925050606085013567ffffffffffffffff811115612bd457612bd36136c5565b5b612be0878288016129ce565b91505092959194509250565b60008060408385031215612c0357612c026136ca565b5b6000612c1185828601612965565b9250506020612c228582860161298f565b9150509250929050565b60008060408385031215612c4357612c426136ca565b5b6000612c5185828601612965565b9250506020612c6285828601612a67565b9150509250929050565b600060208284031215612c8257612c816136ca565b5b6000612c90848285016129a4565b91505092915050565b600060208284031215612caf57612cae6136ca565b5b6000612cbd848285016129b9565b91505092915050565b600060208284031215612cdc57612cdb6136ca565b5b6000612cea848285016129fc565b91505092915050565b60008060208385031215612d0a57612d096136ca565b5b600083013567ffffffffffffffff811115612d2857612d276136c5565b5b612d3485828601612a11565b92509250509250929050565b600060208284031215612d5657612d556136ca565b5b6000612d6484828501612a67565b91505092915050565b612d76816133cd565b82525050565b612d85816133f1565b82525050565b6000612d968261326a565b612da08185613280565b9350612db0818560208601613487565b612db9816136cf565b840191505092915050565b612dcd81613466565b82525050565b6000612ddf838561329c565b9350612dec838584613478565b612df5836136cf565b840190509392505050565b6000612e0b82613275565b612e15818561329c565b9350612e25818560208601613487565b612e2e816136cf565b840191505092915050565b6000612e4482613275565b612e4e81856132ad565b9350612e5e818560208601613487565b80840191505092915050565b6000612e7760268361329c565b9150612e82826136e0565b604082019050919050565b6000612e9a60188361329c565b9150612ea58261372f565b602082019050919050565b6000612ebd60128361329c565b9150612ec882613758565b602082019050919050565b6000612ee060208361329c565b9150612eeb82613781565b602082019050919050565b6000612f0360088361329c565b9150612f0e826137aa565b602082019050919050565b6000612f26600083613291565b9150612f31826137d3565b600082019050919050565b6000612f4960108361329c565b9150612f54826137d6565b602082019050919050565b6000612f6c60168361329c565b9150612f77826137ff565b602082019050919050565b6000612f8f60168361329c565b9150612f9a82613828565b602082019050919050565b612fae8161345c565b82525050565b6000612fc08285612e39565b9150612fcc8284612e39565b91508190509392505050565b6000612fe382612f19565b9150819050919050565b60006020820190506130026000830184612d6d565b92915050565b600060808201905061301d6000830187612d6d565b61302a6020830186612d6d565b6130376040830185612fa5565b81810360608301526130498184612d8b565b905095945050505050565b60006040820190506130696000830185612d6d565b6130766020830184612fa5565b9392505050565b60006020820190506130926000830184612d7c565b92915050565b60006020820190506130ad6000830184612dc4565b92915050565b600060208201905081810360008301526130ce818486612dd3565b90509392505050565b600060208201905081810360008301526130f18184612e00565b905092915050565b6000602082019050818103600083015261311281612e6a565b9050919050565b6000602082019050818103600083015261313281612e8d565b9050919050565b6000602082019050818103600083015261315281612eb0565b9050919050565b6000602082019050818103600083015261317281612ed3565b9050919050565b6000602082019050818103600083015261319281612ef6565b9050919050565b600060208201905081810360008301526131b281612f3c565b9050919050565b600060208201905081810360008301526131d281612f5f565b9050919050565b600060208201905081810360008301526131f281612f82565b9050919050565b600060208201905061320e6000830184612fa5565b92915050565b600061321e61322f565b905061322a82826134ec565b919050565b6000604051905090565b600067ffffffffffffffff82111561325457613253613682565b5b61325d826136cf565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006132c38261345c565b91506132ce8361345c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561330357613302613597565b5b828201905092915050565b60006133198261345c565b91506133248361345c565b925082613334576133336135c6565b5b828204905092915050565b600061334a8261345c565b91506133558361345c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561338e5761338d613597565b5b828202905092915050565b60006133a48261345c565b91506133af8361345c565b9250828210156133c2576133c1613597565b5b828203905092915050565b60006133d88261343c565b9050919050565b60006133ea8261343c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600081905061343782613851565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061347182613429565b9050919050565b82818337600083830152505050565b60005b838110156134a557808201518184015260208101905061348a565b838111156134b4576000848401525b50505050565b600060028204905060018216806134d257607f821691505b602082108114156134e6576134e5613624565b5b50919050565b6134f5826136cf565b810181811067ffffffffffffffff8211171561351457613513613682565b5b80604052505050565b60006135288261345c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561355b5761355a613597565b5b600182019050919050565b60006135718261345c565b915061357c8361345c565b92508261358c5761358b6135c6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f73616c6520686173206e6f742073746172746564207965740000000000000000600082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f454f41206f6e6c79000000000000000000000000000000000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b7f63616e206e6f74206d696e742074686973206d616e7900000000000000000000600082015250565b60038110613862576138616135f5565b5b50565b61386e816133cd565b811461387957600080fd5b50565b613885816133df565b811461389057600080fd5b50565b61389c816133f1565b81146138a757600080fd5b50565b6138b3816133fd565b81146138be57600080fd5b50565b600381106138ce57600080fd5b50565b6138da8161345c565b81146138e557600080fd5b5056fea2646970667358221220fc0733700a8f8f512f80da0c5616a6b387ba597137bde9907b223bd8eb08896564736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000011697066733a2f2f6e6f7472657665616c64000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initBaseURI (string): ipfs://notreveald

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [2] : 697066733a2f2f6e6f7472657665616c64000000000000000000000000000000


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.