ETH Price: $2,527.62 (+0.65%)

Token

Alpha Wolves DAO (ALPHA)
 

Overview

Max Total Supply

370 ALPHA

Holders

105

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
0 ALPHA
0x4f646848a0a99abc33a4ff35f232dc24558b96ae
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:
AlphaWolves

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : AlphaWolves.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
/*  
    Contract by Selema
    Disc: Selema#0880
    Twitter: @ImpurefulArt
*/
contract AlphaWolves is ERC721, ERC721Enumerable, Ownable {
    string public PROVENANCE;
    bool public isPublicSaleActive = false;
    string private _baseURIextended;

    bool public isAllowListActive = false;
    bool public isFreeMintActive = false;
    uint256 public constant MAX_SUPPLY = 1000;
    uint256 public constant MAX_PUBLIC_MINT = 1;
    uint256 public constant PRIVATE_PRICE_PER_TOKEN = 0.33 ether;
    uint256 public constant FREE_TOKEN_PRICE = 0.0 ether;
    uint256 public constant PUBLIC_PRICE_PER_TOKEN = 0.33 ether;
    
    //for the private Sale
    mapping(address => uint8) private _allowList;

    //for the free Mints
    mapping(address => uint8) private _freeList;


    constructor() ERC721("Alpha Wolves DAO", "ALPHA") {
    }

    // Activation Setters

    function activatePublicSale(bool newState) public onlyOwner {
        isPublicSaleActive = newState;
    }

    function activateAllowList(bool newState) public onlyOwner {
        isAllowListActive = newState;
    }

    function activateFreeMint(bool newState) public onlyOwner {
        isFreeMintActive = newState;
    }
    
    // Adding Addresses to private Sale 

    function setAllowList(address[] calldata addresses, uint8 numAllowedToMint) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            _allowList[addresses[i]] = numAllowedToMint;
        }
    }
    // Adding Addresses to free Mint

    function setFreeList(address[] calldata addresses, uint8 numAllowedToMint) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            _freeList[addresses[i]] = numAllowedToMint;
        }
    }

    
    //Check available address FreeList Mints

    function numAvailableToMintForFree(address addr) external view returns (uint8) {
        return _freeList[addr];
    }

    //Check available address AllowList Mints

    function numAvailableToMint(address addr) external view returns (uint8) {
        return _allowList[addr];
    }
    
    // Mint function for Addresses on AllowList

    function mintAllowList(uint8 numberOfTokens) external payable {
        uint256 ts = totalSupply();
        require(isAllowListActive, "Allow list is not active");
        require(numberOfTokens <= _allowList[msg.sender], "Exceeded max available to purchase");
        require(ts + numberOfTokens <= MAX_SUPPLY, "Purchase would exceed max tokens");
        require(PRIVATE_PRICE_PER_TOKEN * numberOfTokens <= msg.value, "Ether value sent is not correct");

        _allowList[msg.sender] -= numberOfTokens;
        for (uint256 i = 0; i < numberOfTokens; i++) {
            _safeMint(msg.sender, ts + i);
        }
    }
    // Free mint function for Addresses on FreeList

    function mintFreeList(uint8 numberOfTokens) external payable {
        uint256 ts = totalSupply();
        require(isFreeMintActive, "Free mint is not active");
        require(numberOfTokens <= _freeList[msg.sender], "Exceeded max available to purchase");
        require(ts + numberOfTokens <= MAX_SUPPLY, "Purchase would exceed max tokens");
        require(FREE_TOKEN_PRICE * numberOfTokens <= msg.value, "This is free");

        _freeList[msg.sender] -= numberOfTokens;
        for (uint256 i = 0; i < numberOfTokens; i++) {
            _safeMint(msg.sender, ts + i);
        }
    }
    

    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }
    

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

    function setBaseURI(string memory baseURI_) external onlyOwner() {
        _baseURIextended = baseURI_;
    }

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

    function setProvenance(string memory provenance) public onlyOwner {
        PROVENANCE = provenance;
    }
    

    function reserve(uint256 n) public onlyOwner {
      uint supply = totalSupply();
      uint i;
      for (i = 0; i < n; i++) {
          _safeMint(msg.sender, supply + i);
      }
    }

  // public Mint function

    function mint(uint numberOfTokens) public payable {
        uint256 ts = totalSupply();
        require(isPublicSaleActive, "Public Sale must be active to mint tokens");
        require(numberOfTokens <= MAX_PUBLIC_MINT, "Exceeded max token purchase");
        require(ts + numberOfTokens <= MAX_SUPPLY, "Purchase would exceed max tokens");
        require(PUBLIC_PRICE_PER_TOKEN * numberOfTokens <= msg.value, "Ether value sent is not correct");

        for (uint256 i = 0; i < numberOfTokens; i++) {
            _safeMint(msg.sender, ts + i);
        }
    }
   // Withdraw function

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

File 2 of 13 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 13 : 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 13 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 5 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (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);

    /**
     * @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 6 of 13 : 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 7 of 13 : 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 8 of 13 : 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 9 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://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 10 of 13 : 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 11 of 13 : 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 12 of 13 : 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 13 of 13 : 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":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_TOKEN_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC_MINT","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":"PRIVATE_PRICE_PER_TOKEN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_PRICE_PER_TOKEN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"activateAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"activateFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"activatePublicSale","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isAllowListActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isFreeMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"numberOfTokens","type":"uint8"}],"name":"mintAllowList","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"numberOfTokens","type":"uint8"}],"name":"mintFreeList","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"numAvailableToMint","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"numAvailableToMintForFree","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":"uint256","name":"n","type":"uint256"}],"name":"reserve","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":"addresses","type":"address[]"},{"internalType":"uint8","name":"numAllowedToMint","type":"uint8"}],"name":"setAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint8","name":"numAllowedToMint","type":"uint8"}],"name":"setFreeList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenance","type":"string"}],"name":"setProvenance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600c60006101000a81548160ff0219169083151502179055506000600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff0219169083151502179055503480156200006257600080fd5b506040518060400160405280601081526020017f416c70686120576f6c7665732044414f000000000000000000000000000000008152506040518060400160405280600581526020017f414c5048410000000000000000000000000000000000000000000000000000008152508160009080519060200190620000e7929190620001f7565b50806001908051906020019062000100929190620001f7565b50505062000123620001176200012960201b60201c565b6200013160201b60201c565b6200030c565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020590620002a7565b90600052602060002090601f01602090048101928262000229576000855562000275565b82601f106200024457805160ff191683800117855562000275565b8280016001018555821562000275579182015b828111156200027457825182559160200191906001019062000257565b5b50905062000284919062000288565b5090565b5b80821115620002a357600081600090555060010162000289565b5090565b60006002820490506001821680620002c057607f821691505b60208210811415620002d757620002d6620002dd565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614ec8806200031c6000396000f3fe6080604052600436106102515760003560e01c806366490a9111610139578063a22cb465116100b6578063ceb1c1311161007a578063ceb1c131146108aa578063ddff5b1c146108d3578063e985e9c5146108ef578063eb30019c1461092c578063f2fde38b14610955578063ffe630b51461097e57610251565b8063a22cb465146107b3578063b47cacc9146107dc578063b88d4fde14610807578063c04a283614610830578063c87b56dd1461086d57610251565b80638295784d116100fd5780638295784d146106fc5780638da5cb5b146107255780638ffc5ff21461075057806395d89b411461076c578063a0712d681461079757610251565b806366490a911461062b57806370a0823114610654578063715018a6146106915780637a5b85c1146106a8578063819b25ba146106d357610251565b80632c67d82f116101d25780634f6ccce7116101965780634f6ccce7146105075780635477bcc91461054457806355f804b31461056f5780636352211e146105985780636373a6b1146105d557806365f130971461060057610251565b80632c67d82f146104345780632f745c591461045f57806332cb6b0c1461049c5780633ccfd60b146104c757806342842e0e146104de57610251565b80631d59592e116102195780631d59592e1461034f5780631e84c4131461037857806323b872dd146103a357806329fc6bae146103cc5780632be058fb146103f757610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb57806318160ddd14610324575b600080fd5b34801561026257600080fd5b5061027d600480360381019061027891906138f1565b6109a7565b60405161028a9190613ee6565b60405180910390f35b34801561029f57600080fd5b506102a86109b9565b6040516102b59190613f01565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190613994565b610a4b565b6040516102f29190613e7f565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190613824565b610ad0565b005b34801561033057600080fd5b50610339610be8565b6040516103469190614263565b60405180910390f35b34801561035b57600080fd5b5061037660048036038101906103719190613864565b610bf5565b005b34801561038457600080fd5b5061038d610d17565b60405161039a9190613ee6565b60405180910390f35b3480156103af57600080fd5b506103ca60048036038101906103c5919061370e565b610d2a565b005b3480156103d857600080fd5b506103e1610d8a565b6040516103ee9190613ee6565b60405180910390f35b34801561040357600080fd5b5061041e600480360381019061041991906136a1565b610d9d565b60405161042b919061427e565b60405180910390f35b34801561044057600080fd5b50610449610df3565b6040516104569190614263565b60405180910390f35b34801561046b57600080fd5b5061048660048036038101906104819190613824565b610dff565b6040516104939190614263565b60405180910390f35b3480156104a857600080fd5b506104b1610ea4565b6040516104be9190614263565b60405180910390f35b3480156104d357600080fd5b506104dc610eaa565b005b3480156104ea57600080fd5b506105056004803603810190610500919061370e565b610f75565b005b34801561051357600080fd5b5061052e60048036038101906105299190613994565b610f95565b60405161053b9190614263565b60405180910390f35b34801561055057600080fd5b50610559611006565b6040516105669190614263565b60405180910390f35b34801561057b57600080fd5b506105966004803603810190610591919061394b565b611012565b005b3480156105a457600080fd5b506105bf60048036038101906105ba9190613994565b6110a8565b6040516105cc9190613e7f565b60405180910390f35b3480156105e157600080fd5b506105ea61115a565b6040516105f79190613f01565b60405180910390f35b34801561060c57600080fd5b506106156111e8565b6040516106229190614263565b60405180910390f35b34801561063757600080fd5b50610652600480360381019061064d91906138c4565b6111ed565b005b34801561066057600080fd5b5061067b600480360381019061067691906136a1565b611286565b6040516106889190614263565b60405180910390f35b34801561069d57600080fd5b506106a661133e565b005b3480156106b457600080fd5b506106bd6113c6565b6040516106ca9190613ee6565b60405180910390f35b3480156106df57600080fd5b506106fa60048036038101906106f59190613994565b6113d9565b005b34801561070857600080fd5b50610723600480360381019061071e9190613864565b611499565b005b34801561073157600080fd5b5061073a6115bb565b6040516107479190613e7f565b60405180910390f35b61076a600480360381019061076591906139c1565b6115e5565b005b34801561077857600080fd5b50610781611828565b60405161078e9190613f01565b60405180910390f35b6107b160048036038101906107ac9190613994565b6118ba565b005b3480156107bf57600080fd5b506107da60048036038101906107d591906137e4565b611a37565b005b3480156107e857600080fd5b506107f1611a4d565b6040516107fe9190614263565b60405180910390f35b34801561081357600080fd5b5061082e60048036038101906108299190613761565b611a52565b005b34801561083c57600080fd5b50610857600480360381019061085291906136a1565b611ab4565b604051610864919061427e565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f9190613994565b611b0a565b6040516108a19190613f01565b60405180910390f35b3480156108b657600080fd5b506108d160048036038101906108cc91906138c4565b611bb1565b005b6108ed60048036038101906108e891906139c1565b611c4a565b005b3480156108fb57600080fd5b50610916600480360381019061091191906136ce565b611e94565b6040516109239190613ee6565b60405180910390f35b34801561093857600080fd5b50610953600480360381019061094e91906138c4565b611f28565b005b34801561096157600080fd5b5061097c600480360381019061097791906136a1565b611fc1565b005b34801561098a57600080fd5b506109a560048036038101906109a0919061394b565b6120b9565b005b60006109b28261214f565b9050919050565b6060600080546109c89061456f565b80601f01602080910402602001604051908101604052809291908181526020018280546109f49061456f565b8015610a415780601f10610a1657610100808354040283529160200191610a41565b820191906000526020600020905b815481529060010190602001808311610a2457829003601f168201915b5050505050905090565b6000610a56826121c9565b610a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8c90614103565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610adb826110a8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4390614163565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b6b612235565b73ffffffffffffffffffffffffffffffffffffffff161480610b9a5750610b9981610b94612235565b611e94565b5b610bd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd090614083565b60405180910390fd5b610be3838361223d565b505050565b6000600880549050905090565b610bfd612235565b73ffffffffffffffffffffffffffffffffffffffff16610c1b6115bb565b73ffffffffffffffffffffffffffffffffffffffff1614610c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6890614123565b60405180910390fd5b60005b83839050811015610d11578160106000868685818110610c9757610c96614708565b5b9050602002016020810190610cac91906136a1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055508080610d09906145d2565b915050610c74565b50505050565b600c60009054906101000a900460ff1681565b610d3b610d35612235565b826122f6565b610d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d71906141e3565b60405180910390fd5b610d858383836123d4565b505050565b600e60009054906101000a900460ff1681565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b670494654067e1000081565b6000610e0a83611286565b8210610e4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4290613f23565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6103e881565b610eb2612235565b73ffffffffffffffffffffffffffffffffffffffff16610ed06115bb565b73ffffffffffffffffffffffffffffffffffffffff1614610f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1d90614123565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f71573d6000803e3d6000fd5b5050565b610f9083838360405180602001604052806000815250611a52565b505050565b6000610f9f610be8565b8210610fe0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd790614203565b60405180910390fd5b60088281548110610ff457610ff3614708565b5b90600052602060002001549050919050565b670494654067e1000081565b61101a612235565b73ffffffffffffffffffffffffffffffffffffffff166110386115bb565b73ffffffffffffffffffffffffffffffffffffffff161461108e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108590614123565b60405180910390fd5b80600d90805190602001906110a492919061344a565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611151576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611148906140c3565b60405180910390fd5b80915050919050565b600b80546111679061456f565b80601f01602080910402602001604051908101604052809291908181526020018280546111939061456f565b80156111e05780601f106111b5576101008083540402835291602001916111e0565b820191906000526020600020905b8154815290600101906020018083116111c357829003601f168201915b505050505081565b600181565b6111f5612235565b73ffffffffffffffffffffffffffffffffffffffff166112136115bb565b73ffffffffffffffffffffffffffffffffffffffff1614611269576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126090614123565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ee906140a3565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611346612235565b73ffffffffffffffffffffffffffffffffffffffff166113646115bb565b73ffffffffffffffffffffffffffffffffffffffff16146113ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b190614123565b60405180910390fd5b6113c4600061263b565b565b600e60019054906101000a900460ff1681565b6113e1612235565b73ffffffffffffffffffffffffffffffffffffffff166113ff6115bb565b73ffffffffffffffffffffffffffffffffffffffff1614611455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144c90614123565b60405180910390fd5b600061145f610be8565b905060005b828110156114945761148133828461147c9190614363565b612701565b808061148c906145d2565b915050611464565b505050565b6114a1612235565b73ffffffffffffffffffffffffffffffffffffffff166114bf6115bb565b73ffffffffffffffffffffffffffffffffffffffff1614611515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150c90614123565b60405180910390fd5b60005b838390508110156115b55781600f600086868581811061153b5761153a614708565b5b905060200201602081019061155091906136a1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff16021790555080806115ad906145d2565b915050611518565b50505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006115ef610be8565b9050600e60019054906101000a900460ff16611640576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163790614023565b60405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff168260ff1611156116d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cc906141c3565b60405180910390fd5b6103e88260ff16826116e79190614363565b1115611728576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171f90613f83565b60405180910390fd5b348260ff16600061173991906143ea565b111561177a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611771906141a3565b60405180910390fd5b81601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff166117d59190614478565b92506101000a81548160ff021916908360ff16021790555060005b8260ff168110156118235761181033828461180b9190614363565b612701565b808061181b906145d2565b9150506117f0565b505050565b6060600180546118379061456f565b80601f01602080910402602001604051908101604052809291908181526020018280546118639061456f565b80156118b05780601f10611885576101008083540402835291602001916118b0565b820191906000526020600020905b81548152906001019060200180831161189357829003601f168201915b5050505050905090565b60006118c4610be8565b9050600c60009054906101000a900460ff16611915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190c90614243565b60405180910390fd5b6001821115611959576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195090614183565b60405180910390fd5b6103e882826119689190614363565b11156119a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a090613f83565b60405180910390fd5b3482670494654067e100006119be91906143ea565b11156119ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f690614043565b60405180910390fd5b60005b82811015611a3257611a1f338284611a1a9190614363565b612701565b8080611a2a906145d2565b915050611a02565b505050565b611a49611a42612235565b838361271f565b5050565b600081565b611a63611a5d612235565b836122f6565b611aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a99906141e3565b60405180910390fd5b611aae8484848461288c565b50505050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6060611b15826121c9565b611b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4b90614143565b60405180910390fd5b6000611b5e6128e8565b90506000815111611b7e5760405180602001604052806000815250611ba9565b80611b888461297a565b604051602001611b99929190613e5b565b6040516020818303038152906040525b915050919050565b611bb9612235565b73ffffffffffffffffffffffffffffffffffffffff16611bd76115bb565b73ffffffffffffffffffffffffffffffffffffffff1614611c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2490614123565b60405180910390fd5b80600e60016101000a81548160ff02191690831515021790555050565b6000611c54610be8565b9050600e60009054906101000a900460ff16611ca5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9c90614223565b60405180910390fd5b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff168260ff161115611d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d31906141c3565b60405180910390fd5b6103e88260ff1682611d4c9190614363565b1115611d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8490613f83565b60405180910390fd5b348260ff16670494654067e10000611da591906143ea565b1115611de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddd90614043565b60405180910390fd5b81600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff16611e419190614478565b92506101000a81548160ff021916908360ff16021790555060005b8260ff16811015611e8f57611e7c338284611e779190614363565b612701565b8080611e87906145d2565b915050611e5c565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f30612235565b73ffffffffffffffffffffffffffffffffffffffff16611f4e6115bb565b73ffffffffffffffffffffffffffffffffffffffff1614611fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9b90614123565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b611fc9612235565b73ffffffffffffffffffffffffffffffffffffffff16611fe76115bb565b73ffffffffffffffffffffffffffffffffffffffff161461203d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203490614123565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a490613f63565b60405180910390fd5b6120b68161263b565b50565b6120c1612235565b73ffffffffffffffffffffffffffffffffffffffff166120df6115bb565b73ffffffffffffffffffffffffffffffffffffffff1614612135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212c90614123565b60405180910390fd5b80600b908051906020019061214b92919061344a565b5050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806121c257506121c182612adb565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166122b0836110a8565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612301826121c9565b612340576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233790614063565b60405180910390fd5b600061234b836110a8565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806123ba57508373ffffffffffffffffffffffffffffffffffffffff166123a284610a4b565b73ffffffffffffffffffffffffffffffffffffffff16145b806123cb57506123ca8185611e94565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166123f4826110a8565b73ffffffffffffffffffffffffffffffffffffffff161461244a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244190613fa3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b190613fe3565b60405180910390fd5b6124c5838383612bbd565b6124d060008261223d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125209190614444565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125779190614363565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612636838383612bcd565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61271b828260405180602001604052806000815250612bd2565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561278e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278590614003565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161287f9190613ee6565b60405180910390a3505050565b6128978484846123d4565b6128a384848484612c2d565b6128e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d990613f43565b60405180910390fd5b50505050565b6060600d80546128f79061456f565b80601f01602080910402602001604051908101604052809291908181526020018280546129239061456f565b80156129705780601f1061294557610100808354040283529160200191612970565b820191906000526020600020905b81548152906001019060200180831161295357829003601f168201915b5050505050905090565b606060008214156129c2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ad6565b600082905060005b600082146129f45780806129dd906145d2565b915050600a826129ed91906143b9565b91506129ca565b60008167ffffffffffffffff811115612a1057612a0f614737565b5b6040519080825280601f01601f191660200182016040528015612a425781602001600182028036833780820191505090505b5090505b60008514612acf57600182612a5b9190614444565b9150600a85612a6a919061461b565b6030612a769190614363565b60f81b818381518110612a8c57612a8b614708565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ac891906143b9565b9450612a46565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612ba657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612bb65750612bb582612dc4565b5b9050919050565b612bc8838383612e2e565b505050565b505050565b612bdc8383612f42565b612be96000848484612c2d565b612c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1f90613f43565b60405180910390fd5b505050565b6000612c4e8473ffffffffffffffffffffffffffffffffffffffff1661311c565b15612db7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c77612235565b8786866040518563ffffffff1660e01b8152600401612c999493929190613e9a565b602060405180830381600087803b158015612cb357600080fd5b505af1925050508015612ce457506040513d601f19601f82011682018060405250810190612ce1919061391e565b60015b612d67573d8060008114612d14576040519150601f19603f3d011682016040523d82523d6000602084013e612d19565b606091505b50600081511415612d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5690613f43565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612dbc565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612e3983838361313f565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e7c57612e7781613144565b612ebb565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612eba57612eb9838261318d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612efe57612ef9816132fa565b612f3d565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612f3c57612f3b82826133cb565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fa9906140e3565b60405180910390fd5b612fbb816121c9565b15612ffb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff290613fc3565b60405180910390fd5b61300760008383612bbd565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130579190614363565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461311860008383612bcd565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161319a84611286565b6131a49190614444565b9050600060076000848152602001908152602001600020549050818114613289576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061330e9190614444565b905060006009600084815260200190815260200160002054905060006008838154811061333e5761333d614708565b5b9060005260206000200154905080600883815481106133605761335f614708565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806133af576133ae6146d9565b5b6001900381819060005260206000200160009055905550505050565b60006133d683611286565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b8280546134569061456f565b90600052602060002090601f01602090048101928261347857600085556134bf565b82601f1061349157805160ff19168380011785556134bf565b828001600101855582156134bf579182015b828111156134be5782518255916020019190600101906134a3565b5b5090506134cc91906134d0565b5090565b5b808211156134e95760008160009055506001016134d1565b5090565b60006135006134fb846142be565b614299565b90508281526020810184848401111561351c5761351b614775565b5b61352784828561452d565b509392505050565b600061354261353d846142ef565b614299565b90508281526020810184848401111561355e5761355d614775565b5b61356984828561452d565b509392505050565b60008135905061358081614e1f565b92915050565b60008083601f84011261359c5761359b61476b565b5b8235905067ffffffffffffffff8111156135b9576135b8614766565b5b6020830191508360208202830111156135d5576135d4614770565b5b9250929050565b6000813590506135eb81614e36565b92915050565b60008135905061360081614e4d565b92915050565b60008151905061361581614e4d565b92915050565b600082601f8301126136305761362f61476b565b5b81356136408482602086016134ed565b91505092915050565b600082601f83011261365e5761365d61476b565b5b813561366e84826020860161352f565b91505092915050565b60008135905061368681614e64565b92915050565b60008135905061369b81614e7b565b92915050565b6000602082840312156136b7576136b661477f565b5b60006136c584828501613571565b91505092915050565b600080604083850312156136e5576136e461477f565b5b60006136f385828601613571565b925050602061370485828601613571565b9150509250929050565b6000806000606084860312156137275761372661477f565b5b600061373586828701613571565b935050602061374686828701613571565b925050604061375786828701613677565b9150509250925092565b6000806000806080858703121561377b5761377a61477f565b5b600061378987828801613571565b945050602061379a87828801613571565b93505060406137ab87828801613677565b925050606085013567ffffffffffffffff8111156137cc576137cb61477a565b5b6137d88782880161361b565b91505092959194509250565b600080604083850312156137fb576137fa61477f565b5b600061380985828601613571565b925050602061381a858286016135dc565b9150509250929050565b6000806040838503121561383b5761383a61477f565b5b600061384985828601613571565b925050602061385a85828601613677565b9150509250929050565b60008060006040848603121561387d5761387c61477f565b5b600084013567ffffffffffffffff81111561389b5761389a61477a565b5b6138a786828701613586565b935093505060206138ba8682870161368c565b9150509250925092565b6000602082840312156138da576138d961477f565b5b60006138e8848285016135dc565b91505092915050565b6000602082840312156139075761390661477f565b5b6000613915848285016135f1565b91505092915050565b6000602082840312156139345761393361477f565b5b600061394284828501613606565b91505092915050565b6000602082840312156139615761396061477f565b5b600082013567ffffffffffffffff81111561397f5761397e61477a565b5b61398b84828501613649565b91505092915050565b6000602082840312156139aa576139a961477f565b5b60006139b884828501613677565b91505092915050565b6000602082840312156139d7576139d661477f565b5b60006139e58482850161368c565b91505092915050565b6139f7816144ac565b82525050565b613a06816144be565b82525050565b6000613a1782614320565b613a218185614336565b9350613a3181856020860161453c565b613a3a81614784565b840191505092915050565b6000613a508261432b565b613a5a8185614347565b9350613a6a81856020860161453c565b613a7381614784565b840191505092915050565b6000613a898261432b565b613a938185614358565b9350613aa381856020860161453c565b80840191505092915050565b6000613abc602b83614347565b9150613ac782614795565b604082019050919050565b6000613adf603283614347565b9150613aea826147e4565b604082019050919050565b6000613b02602683614347565b9150613b0d82614833565b604082019050919050565b6000613b25602083614347565b9150613b3082614882565b602082019050919050565b6000613b48602583614347565b9150613b53826148ab565b604082019050919050565b6000613b6b601c83614347565b9150613b76826148fa565b602082019050919050565b6000613b8e602483614347565b9150613b9982614923565b604082019050919050565b6000613bb1601983614347565b9150613bbc82614972565b602082019050919050565b6000613bd4601783614347565b9150613bdf8261499b565b602082019050919050565b6000613bf7601f83614347565b9150613c02826149c4565b602082019050919050565b6000613c1a602c83614347565b9150613c25826149ed565b604082019050919050565b6000613c3d603883614347565b9150613c4882614a3c565b604082019050919050565b6000613c60602a83614347565b9150613c6b82614a8b565b604082019050919050565b6000613c83602983614347565b9150613c8e82614ada565b604082019050919050565b6000613ca6602083614347565b9150613cb182614b29565b602082019050919050565b6000613cc9602c83614347565b9150613cd482614b52565b604082019050919050565b6000613cec602083614347565b9150613cf782614ba1565b602082019050919050565b6000613d0f602f83614347565b9150613d1a82614bca565b604082019050919050565b6000613d32602183614347565b9150613d3d82614c19565b604082019050919050565b6000613d55601b83614347565b9150613d6082614c68565b602082019050919050565b6000613d78600c83614347565b9150613d8382614c91565b602082019050919050565b6000613d9b602283614347565b9150613da682614cba565b604082019050919050565b6000613dbe603183614347565b9150613dc982614d09565b604082019050919050565b6000613de1602c83614347565b9150613dec82614d58565b604082019050919050565b6000613e04601883614347565b9150613e0f82614da7565b602082019050919050565b6000613e27602983614347565b9150613e3282614dd0565b604082019050919050565b613e4681614516565b82525050565b613e5581614520565b82525050565b6000613e678285613a7e565b9150613e738284613a7e565b91508190509392505050565b6000602082019050613e9460008301846139ee565b92915050565b6000608082019050613eaf60008301876139ee565b613ebc60208301866139ee565b613ec96040830185613e3d565b8181036060830152613edb8184613a0c565b905095945050505050565b6000602082019050613efb60008301846139fd565b92915050565b60006020820190508181036000830152613f1b8184613a45565b905092915050565b60006020820190508181036000830152613f3c81613aaf565b9050919050565b60006020820190508181036000830152613f5c81613ad2565b9050919050565b60006020820190508181036000830152613f7c81613af5565b9050919050565b60006020820190508181036000830152613f9c81613b18565b9050919050565b60006020820190508181036000830152613fbc81613b3b565b9050919050565b60006020820190508181036000830152613fdc81613b5e565b9050919050565b60006020820190508181036000830152613ffc81613b81565b9050919050565b6000602082019050818103600083015261401c81613ba4565b9050919050565b6000602082019050818103600083015261403c81613bc7565b9050919050565b6000602082019050818103600083015261405c81613bea565b9050919050565b6000602082019050818103600083015261407c81613c0d565b9050919050565b6000602082019050818103600083015261409c81613c30565b9050919050565b600060208201905081810360008301526140bc81613c53565b9050919050565b600060208201905081810360008301526140dc81613c76565b9050919050565b600060208201905081810360008301526140fc81613c99565b9050919050565b6000602082019050818103600083015261411c81613cbc565b9050919050565b6000602082019050818103600083015261413c81613cdf565b9050919050565b6000602082019050818103600083015261415c81613d02565b9050919050565b6000602082019050818103600083015261417c81613d25565b9050919050565b6000602082019050818103600083015261419c81613d48565b9050919050565b600060208201905081810360008301526141bc81613d6b565b9050919050565b600060208201905081810360008301526141dc81613d8e565b9050919050565b600060208201905081810360008301526141fc81613db1565b9050919050565b6000602082019050818103600083015261421c81613dd4565b9050919050565b6000602082019050818103600083015261423c81613df7565b9050919050565b6000602082019050818103600083015261425c81613e1a565b9050919050565b60006020820190506142786000830184613e3d565b92915050565b60006020820190506142936000830184613e4c565b92915050565b60006142a36142b4565b90506142af82826145a1565b919050565b6000604051905090565b600067ffffffffffffffff8211156142d9576142d8614737565b5b6142e282614784565b9050602081019050919050565b600067ffffffffffffffff82111561430a57614309614737565b5b61431382614784565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061436e82614516565b915061437983614516565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156143ae576143ad61464c565b5b828201905092915050565b60006143c482614516565b91506143cf83614516565b9250826143df576143de61467b565b5b828204905092915050565b60006143f582614516565b915061440083614516565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156144395761443861464c565b5b828202905092915050565b600061444f82614516565b915061445a83614516565b92508282101561446d5761446c61464c565b5b828203905092915050565b600061448382614520565b915061448e83614520565b9250828210156144a1576144a061464c565b5b828203905092915050565b60006144b7826144f6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561455a57808201518184015260208101905061453f565b83811115614569576000848401525b50505050565b6000600282049050600182168061458757607f821691505b6020821081141561459b5761459a6146aa565b5b50919050565b6145aa82614784565b810181811067ffffffffffffffff821117156145c9576145c8614737565b5b80604052505050565b60006145dd82614516565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146105761460f61464c565b5b600182019050919050565b600061462682614516565b915061463183614516565b9250826146415761464061467b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820746f6b656e73600082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f46726565206d696e74206973206e6f7420616374697665000000000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4578636565646564206d617820746f6b656e2070757263686173650000000000600082015250565b7f5468697320697320667265650000000000000000000000000000000000000000600082015250565b7f4578636565646564206d617820617661696c61626c6520746f2070757263686160008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f416c6c6f77206c697374206973206e6f74206163746976650000000000000000600082015250565b7f5075626c69632053616c65206d7573742062652061637469766520746f206d6960008201527f6e7420746f6b656e730000000000000000000000000000000000000000000000602082015250565b614e28816144ac565b8114614e3357600080fd5b50565b614e3f816144be565b8114614e4a57600080fd5b50565b614e56816144ca565b8114614e6157600080fd5b50565b614e6d81614516565b8114614e7857600080fd5b50565b614e8481614520565b8114614e8f57600080fd5b5056fea26469706673582212205331c1e04b955b45a77247a43816fec755421118f952c54d7c5e36a0a5c46e0864736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102515760003560e01c806366490a9111610139578063a22cb465116100b6578063ceb1c1311161007a578063ceb1c131146108aa578063ddff5b1c146108d3578063e985e9c5146108ef578063eb30019c1461092c578063f2fde38b14610955578063ffe630b51461097e57610251565b8063a22cb465146107b3578063b47cacc9146107dc578063b88d4fde14610807578063c04a283614610830578063c87b56dd1461086d57610251565b80638295784d116100fd5780638295784d146106fc5780638da5cb5b146107255780638ffc5ff21461075057806395d89b411461076c578063a0712d681461079757610251565b806366490a911461062b57806370a0823114610654578063715018a6146106915780637a5b85c1146106a8578063819b25ba146106d357610251565b80632c67d82f116101d25780634f6ccce7116101965780634f6ccce7146105075780635477bcc91461054457806355f804b31461056f5780636352211e146105985780636373a6b1146105d557806365f130971461060057610251565b80632c67d82f146104345780632f745c591461045f57806332cb6b0c1461049c5780633ccfd60b146104c757806342842e0e146104de57610251565b80631d59592e116102195780631d59592e1461034f5780631e84c4131461037857806323b872dd146103a357806329fc6bae146103cc5780632be058fb146103f757610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb57806318160ddd14610324575b600080fd5b34801561026257600080fd5b5061027d600480360381019061027891906138f1565b6109a7565b60405161028a9190613ee6565b60405180910390f35b34801561029f57600080fd5b506102a86109b9565b6040516102b59190613f01565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190613994565b610a4b565b6040516102f29190613e7f565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190613824565b610ad0565b005b34801561033057600080fd5b50610339610be8565b6040516103469190614263565b60405180910390f35b34801561035b57600080fd5b5061037660048036038101906103719190613864565b610bf5565b005b34801561038457600080fd5b5061038d610d17565b60405161039a9190613ee6565b60405180910390f35b3480156103af57600080fd5b506103ca60048036038101906103c5919061370e565b610d2a565b005b3480156103d857600080fd5b506103e1610d8a565b6040516103ee9190613ee6565b60405180910390f35b34801561040357600080fd5b5061041e600480360381019061041991906136a1565b610d9d565b60405161042b919061427e565b60405180910390f35b34801561044057600080fd5b50610449610df3565b6040516104569190614263565b60405180910390f35b34801561046b57600080fd5b5061048660048036038101906104819190613824565b610dff565b6040516104939190614263565b60405180910390f35b3480156104a857600080fd5b506104b1610ea4565b6040516104be9190614263565b60405180910390f35b3480156104d357600080fd5b506104dc610eaa565b005b3480156104ea57600080fd5b506105056004803603810190610500919061370e565b610f75565b005b34801561051357600080fd5b5061052e60048036038101906105299190613994565b610f95565b60405161053b9190614263565b60405180910390f35b34801561055057600080fd5b50610559611006565b6040516105669190614263565b60405180910390f35b34801561057b57600080fd5b506105966004803603810190610591919061394b565b611012565b005b3480156105a457600080fd5b506105bf60048036038101906105ba9190613994565b6110a8565b6040516105cc9190613e7f565b60405180910390f35b3480156105e157600080fd5b506105ea61115a565b6040516105f79190613f01565b60405180910390f35b34801561060c57600080fd5b506106156111e8565b6040516106229190614263565b60405180910390f35b34801561063757600080fd5b50610652600480360381019061064d91906138c4565b6111ed565b005b34801561066057600080fd5b5061067b600480360381019061067691906136a1565b611286565b6040516106889190614263565b60405180910390f35b34801561069d57600080fd5b506106a661133e565b005b3480156106b457600080fd5b506106bd6113c6565b6040516106ca9190613ee6565b60405180910390f35b3480156106df57600080fd5b506106fa60048036038101906106f59190613994565b6113d9565b005b34801561070857600080fd5b50610723600480360381019061071e9190613864565b611499565b005b34801561073157600080fd5b5061073a6115bb565b6040516107479190613e7f565b60405180910390f35b61076a600480360381019061076591906139c1565b6115e5565b005b34801561077857600080fd5b50610781611828565b60405161078e9190613f01565b60405180910390f35b6107b160048036038101906107ac9190613994565b6118ba565b005b3480156107bf57600080fd5b506107da60048036038101906107d591906137e4565b611a37565b005b3480156107e857600080fd5b506107f1611a4d565b6040516107fe9190614263565b60405180910390f35b34801561081357600080fd5b5061082e60048036038101906108299190613761565b611a52565b005b34801561083c57600080fd5b50610857600480360381019061085291906136a1565b611ab4565b604051610864919061427e565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f9190613994565b611b0a565b6040516108a19190613f01565b60405180910390f35b3480156108b657600080fd5b506108d160048036038101906108cc91906138c4565b611bb1565b005b6108ed60048036038101906108e891906139c1565b611c4a565b005b3480156108fb57600080fd5b50610916600480360381019061091191906136ce565b611e94565b6040516109239190613ee6565b60405180910390f35b34801561093857600080fd5b50610953600480360381019061094e91906138c4565b611f28565b005b34801561096157600080fd5b5061097c600480360381019061097791906136a1565b611fc1565b005b34801561098a57600080fd5b506109a560048036038101906109a0919061394b565b6120b9565b005b60006109b28261214f565b9050919050565b6060600080546109c89061456f565b80601f01602080910402602001604051908101604052809291908181526020018280546109f49061456f565b8015610a415780601f10610a1657610100808354040283529160200191610a41565b820191906000526020600020905b815481529060010190602001808311610a2457829003601f168201915b5050505050905090565b6000610a56826121c9565b610a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8c90614103565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610adb826110a8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4390614163565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b6b612235565b73ffffffffffffffffffffffffffffffffffffffff161480610b9a5750610b9981610b94612235565b611e94565b5b610bd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd090614083565b60405180910390fd5b610be3838361223d565b505050565b6000600880549050905090565b610bfd612235565b73ffffffffffffffffffffffffffffffffffffffff16610c1b6115bb565b73ffffffffffffffffffffffffffffffffffffffff1614610c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6890614123565b60405180910390fd5b60005b83839050811015610d11578160106000868685818110610c9757610c96614708565b5b9050602002016020810190610cac91906136a1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055508080610d09906145d2565b915050610c74565b50505050565b600c60009054906101000a900460ff1681565b610d3b610d35612235565b826122f6565b610d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d71906141e3565b60405180910390fd5b610d858383836123d4565b505050565b600e60009054906101000a900460ff1681565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b670494654067e1000081565b6000610e0a83611286565b8210610e4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4290613f23565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6103e881565b610eb2612235565b73ffffffffffffffffffffffffffffffffffffffff16610ed06115bb565b73ffffffffffffffffffffffffffffffffffffffff1614610f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1d90614123565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f71573d6000803e3d6000fd5b5050565b610f9083838360405180602001604052806000815250611a52565b505050565b6000610f9f610be8565b8210610fe0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd790614203565b60405180910390fd5b60088281548110610ff457610ff3614708565b5b90600052602060002001549050919050565b670494654067e1000081565b61101a612235565b73ffffffffffffffffffffffffffffffffffffffff166110386115bb565b73ffffffffffffffffffffffffffffffffffffffff161461108e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108590614123565b60405180910390fd5b80600d90805190602001906110a492919061344a565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611151576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611148906140c3565b60405180910390fd5b80915050919050565b600b80546111679061456f565b80601f01602080910402602001604051908101604052809291908181526020018280546111939061456f565b80156111e05780601f106111b5576101008083540402835291602001916111e0565b820191906000526020600020905b8154815290600101906020018083116111c357829003601f168201915b505050505081565b600181565b6111f5612235565b73ffffffffffffffffffffffffffffffffffffffff166112136115bb565b73ffffffffffffffffffffffffffffffffffffffff1614611269576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126090614123565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ee906140a3565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611346612235565b73ffffffffffffffffffffffffffffffffffffffff166113646115bb565b73ffffffffffffffffffffffffffffffffffffffff16146113ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b190614123565b60405180910390fd5b6113c4600061263b565b565b600e60019054906101000a900460ff1681565b6113e1612235565b73ffffffffffffffffffffffffffffffffffffffff166113ff6115bb565b73ffffffffffffffffffffffffffffffffffffffff1614611455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144c90614123565b60405180910390fd5b600061145f610be8565b905060005b828110156114945761148133828461147c9190614363565b612701565b808061148c906145d2565b915050611464565b505050565b6114a1612235565b73ffffffffffffffffffffffffffffffffffffffff166114bf6115bb565b73ffffffffffffffffffffffffffffffffffffffff1614611515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150c90614123565b60405180910390fd5b60005b838390508110156115b55781600f600086868581811061153b5761153a614708565b5b905060200201602081019061155091906136a1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff16021790555080806115ad906145d2565b915050611518565b50505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006115ef610be8565b9050600e60019054906101000a900460ff16611640576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163790614023565b60405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff168260ff1611156116d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cc906141c3565b60405180910390fd5b6103e88260ff16826116e79190614363565b1115611728576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171f90613f83565b60405180910390fd5b348260ff16600061173991906143ea565b111561177a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611771906141a3565b60405180910390fd5b81601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff166117d59190614478565b92506101000a81548160ff021916908360ff16021790555060005b8260ff168110156118235761181033828461180b9190614363565b612701565b808061181b906145d2565b9150506117f0565b505050565b6060600180546118379061456f565b80601f01602080910402602001604051908101604052809291908181526020018280546118639061456f565b80156118b05780601f10611885576101008083540402835291602001916118b0565b820191906000526020600020905b81548152906001019060200180831161189357829003601f168201915b5050505050905090565b60006118c4610be8565b9050600c60009054906101000a900460ff16611915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190c90614243565b60405180910390fd5b6001821115611959576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195090614183565b60405180910390fd5b6103e882826119689190614363565b11156119a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a090613f83565b60405180910390fd5b3482670494654067e100006119be91906143ea565b11156119ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f690614043565b60405180910390fd5b60005b82811015611a3257611a1f338284611a1a9190614363565b612701565b8080611a2a906145d2565b915050611a02565b505050565b611a49611a42612235565b838361271f565b5050565b600081565b611a63611a5d612235565b836122f6565b611aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a99906141e3565b60405180910390fd5b611aae8484848461288c565b50505050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6060611b15826121c9565b611b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4b90614143565b60405180910390fd5b6000611b5e6128e8565b90506000815111611b7e5760405180602001604052806000815250611ba9565b80611b888461297a565b604051602001611b99929190613e5b565b6040516020818303038152906040525b915050919050565b611bb9612235565b73ffffffffffffffffffffffffffffffffffffffff16611bd76115bb565b73ffffffffffffffffffffffffffffffffffffffff1614611c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2490614123565b60405180910390fd5b80600e60016101000a81548160ff02191690831515021790555050565b6000611c54610be8565b9050600e60009054906101000a900460ff16611ca5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9c90614223565b60405180910390fd5b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff168260ff161115611d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d31906141c3565b60405180910390fd5b6103e88260ff1682611d4c9190614363565b1115611d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8490613f83565b60405180910390fd5b348260ff16670494654067e10000611da591906143ea565b1115611de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddd90614043565b60405180910390fd5b81600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff16611e419190614478565b92506101000a81548160ff021916908360ff16021790555060005b8260ff16811015611e8f57611e7c338284611e779190614363565b612701565b8080611e87906145d2565b915050611e5c565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f30612235565b73ffffffffffffffffffffffffffffffffffffffff16611f4e6115bb565b73ffffffffffffffffffffffffffffffffffffffff1614611fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9b90614123565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b611fc9612235565b73ffffffffffffffffffffffffffffffffffffffff16611fe76115bb565b73ffffffffffffffffffffffffffffffffffffffff161461203d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203490614123565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a490613f63565b60405180910390fd5b6120b68161263b565b50565b6120c1612235565b73ffffffffffffffffffffffffffffffffffffffff166120df6115bb565b73ffffffffffffffffffffffffffffffffffffffff1614612135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212c90614123565b60405180910390fd5b80600b908051906020019061214b92919061344a565b5050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806121c257506121c182612adb565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166122b0836110a8565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612301826121c9565b612340576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233790614063565b60405180910390fd5b600061234b836110a8565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806123ba57508373ffffffffffffffffffffffffffffffffffffffff166123a284610a4b565b73ffffffffffffffffffffffffffffffffffffffff16145b806123cb57506123ca8185611e94565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166123f4826110a8565b73ffffffffffffffffffffffffffffffffffffffff161461244a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244190613fa3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b190613fe3565b60405180910390fd5b6124c5838383612bbd565b6124d060008261223d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125209190614444565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125779190614363565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612636838383612bcd565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61271b828260405180602001604052806000815250612bd2565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561278e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278590614003565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161287f9190613ee6565b60405180910390a3505050565b6128978484846123d4565b6128a384848484612c2d565b6128e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d990613f43565b60405180910390fd5b50505050565b6060600d80546128f79061456f565b80601f01602080910402602001604051908101604052809291908181526020018280546129239061456f565b80156129705780601f1061294557610100808354040283529160200191612970565b820191906000526020600020905b81548152906001019060200180831161295357829003601f168201915b5050505050905090565b606060008214156129c2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ad6565b600082905060005b600082146129f45780806129dd906145d2565b915050600a826129ed91906143b9565b91506129ca565b60008167ffffffffffffffff811115612a1057612a0f614737565b5b6040519080825280601f01601f191660200182016040528015612a425781602001600182028036833780820191505090505b5090505b60008514612acf57600182612a5b9190614444565b9150600a85612a6a919061461b565b6030612a769190614363565b60f81b818381518110612a8c57612a8b614708565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ac891906143b9565b9450612a46565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612ba657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612bb65750612bb582612dc4565b5b9050919050565b612bc8838383612e2e565b505050565b505050565b612bdc8383612f42565b612be96000848484612c2d565b612c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1f90613f43565b60405180910390fd5b505050565b6000612c4e8473ffffffffffffffffffffffffffffffffffffffff1661311c565b15612db7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c77612235565b8786866040518563ffffffff1660e01b8152600401612c999493929190613e9a565b602060405180830381600087803b158015612cb357600080fd5b505af1925050508015612ce457506040513d601f19601f82011682018060405250810190612ce1919061391e565b60015b612d67573d8060008114612d14576040519150601f19603f3d011682016040523d82523d6000602084013e612d19565b606091505b50600081511415612d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5690613f43565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612dbc565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612e3983838361313f565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e7c57612e7781613144565b612ebb565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612eba57612eb9838261318d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612efe57612ef9816132fa565b612f3d565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612f3c57612f3b82826133cb565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fa9906140e3565b60405180910390fd5b612fbb816121c9565b15612ffb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff290613fc3565b60405180910390fd5b61300760008383612bbd565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130579190614363565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461311860008383612bcd565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161319a84611286565b6131a49190614444565b9050600060076000848152602001908152602001600020549050818114613289576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061330e9190614444565b905060006009600084815260200190815260200160002054905060006008838154811061333e5761333d614708565b5b9060005260206000200154905080600883815481106133605761335f614708565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806133af576133ae6146d9565b5b6001900381819060005260206000200160009055905550505050565b60006133d683611286565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b8280546134569061456f565b90600052602060002090601f01602090048101928261347857600085556134bf565b82601f1061349157805160ff19168380011785556134bf565b828001600101855582156134bf579182015b828111156134be5782518255916020019190600101906134a3565b5b5090506134cc91906134d0565b5090565b5b808211156134e95760008160009055506001016134d1565b5090565b60006135006134fb846142be565b614299565b90508281526020810184848401111561351c5761351b614775565b5b61352784828561452d565b509392505050565b600061354261353d846142ef565b614299565b90508281526020810184848401111561355e5761355d614775565b5b61356984828561452d565b509392505050565b60008135905061358081614e1f565b92915050565b60008083601f84011261359c5761359b61476b565b5b8235905067ffffffffffffffff8111156135b9576135b8614766565b5b6020830191508360208202830111156135d5576135d4614770565b5b9250929050565b6000813590506135eb81614e36565b92915050565b60008135905061360081614e4d565b92915050565b60008151905061361581614e4d565b92915050565b600082601f8301126136305761362f61476b565b5b81356136408482602086016134ed565b91505092915050565b600082601f83011261365e5761365d61476b565b5b813561366e84826020860161352f565b91505092915050565b60008135905061368681614e64565b92915050565b60008135905061369b81614e7b565b92915050565b6000602082840312156136b7576136b661477f565b5b60006136c584828501613571565b91505092915050565b600080604083850312156136e5576136e461477f565b5b60006136f385828601613571565b925050602061370485828601613571565b9150509250929050565b6000806000606084860312156137275761372661477f565b5b600061373586828701613571565b935050602061374686828701613571565b925050604061375786828701613677565b9150509250925092565b6000806000806080858703121561377b5761377a61477f565b5b600061378987828801613571565b945050602061379a87828801613571565b93505060406137ab87828801613677565b925050606085013567ffffffffffffffff8111156137cc576137cb61477a565b5b6137d88782880161361b565b91505092959194509250565b600080604083850312156137fb576137fa61477f565b5b600061380985828601613571565b925050602061381a858286016135dc565b9150509250929050565b6000806040838503121561383b5761383a61477f565b5b600061384985828601613571565b925050602061385a85828601613677565b9150509250929050565b60008060006040848603121561387d5761387c61477f565b5b600084013567ffffffffffffffff81111561389b5761389a61477a565b5b6138a786828701613586565b935093505060206138ba8682870161368c565b9150509250925092565b6000602082840312156138da576138d961477f565b5b60006138e8848285016135dc565b91505092915050565b6000602082840312156139075761390661477f565b5b6000613915848285016135f1565b91505092915050565b6000602082840312156139345761393361477f565b5b600061394284828501613606565b91505092915050565b6000602082840312156139615761396061477f565b5b600082013567ffffffffffffffff81111561397f5761397e61477a565b5b61398b84828501613649565b91505092915050565b6000602082840312156139aa576139a961477f565b5b60006139b884828501613677565b91505092915050565b6000602082840312156139d7576139d661477f565b5b60006139e58482850161368c565b91505092915050565b6139f7816144ac565b82525050565b613a06816144be565b82525050565b6000613a1782614320565b613a218185614336565b9350613a3181856020860161453c565b613a3a81614784565b840191505092915050565b6000613a508261432b565b613a5a8185614347565b9350613a6a81856020860161453c565b613a7381614784565b840191505092915050565b6000613a898261432b565b613a938185614358565b9350613aa381856020860161453c565b80840191505092915050565b6000613abc602b83614347565b9150613ac782614795565b604082019050919050565b6000613adf603283614347565b9150613aea826147e4565b604082019050919050565b6000613b02602683614347565b9150613b0d82614833565b604082019050919050565b6000613b25602083614347565b9150613b3082614882565b602082019050919050565b6000613b48602583614347565b9150613b53826148ab565b604082019050919050565b6000613b6b601c83614347565b9150613b76826148fa565b602082019050919050565b6000613b8e602483614347565b9150613b9982614923565b604082019050919050565b6000613bb1601983614347565b9150613bbc82614972565b602082019050919050565b6000613bd4601783614347565b9150613bdf8261499b565b602082019050919050565b6000613bf7601f83614347565b9150613c02826149c4565b602082019050919050565b6000613c1a602c83614347565b9150613c25826149ed565b604082019050919050565b6000613c3d603883614347565b9150613c4882614a3c565b604082019050919050565b6000613c60602a83614347565b9150613c6b82614a8b565b604082019050919050565b6000613c83602983614347565b9150613c8e82614ada565b604082019050919050565b6000613ca6602083614347565b9150613cb182614b29565b602082019050919050565b6000613cc9602c83614347565b9150613cd482614b52565b604082019050919050565b6000613cec602083614347565b9150613cf782614ba1565b602082019050919050565b6000613d0f602f83614347565b9150613d1a82614bca565b604082019050919050565b6000613d32602183614347565b9150613d3d82614c19565b604082019050919050565b6000613d55601b83614347565b9150613d6082614c68565b602082019050919050565b6000613d78600c83614347565b9150613d8382614c91565b602082019050919050565b6000613d9b602283614347565b9150613da682614cba565b604082019050919050565b6000613dbe603183614347565b9150613dc982614d09565b604082019050919050565b6000613de1602c83614347565b9150613dec82614d58565b604082019050919050565b6000613e04601883614347565b9150613e0f82614da7565b602082019050919050565b6000613e27602983614347565b9150613e3282614dd0565b604082019050919050565b613e4681614516565b82525050565b613e5581614520565b82525050565b6000613e678285613a7e565b9150613e738284613a7e565b91508190509392505050565b6000602082019050613e9460008301846139ee565b92915050565b6000608082019050613eaf60008301876139ee565b613ebc60208301866139ee565b613ec96040830185613e3d565b8181036060830152613edb8184613a0c565b905095945050505050565b6000602082019050613efb60008301846139fd565b92915050565b60006020820190508181036000830152613f1b8184613a45565b905092915050565b60006020820190508181036000830152613f3c81613aaf565b9050919050565b60006020820190508181036000830152613f5c81613ad2565b9050919050565b60006020820190508181036000830152613f7c81613af5565b9050919050565b60006020820190508181036000830152613f9c81613b18565b9050919050565b60006020820190508181036000830152613fbc81613b3b565b9050919050565b60006020820190508181036000830152613fdc81613b5e565b9050919050565b60006020820190508181036000830152613ffc81613b81565b9050919050565b6000602082019050818103600083015261401c81613ba4565b9050919050565b6000602082019050818103600083015261403c81613bc7565b9050919050565b6000602082019050818103600083015261405c81613bea565b9050919050565b6000602082019050818103600083015261407c81613c0d565b9050919050565b6000602082019050818103600083015261409c81613c30565b9050919050565b600060208201905081810360008301526140bc81613c53565b9050919050565b600060208201905081810360008301526140dc81613c76565b9050919050565b600060208201905081810360008301526140fc81613c99565b9050919050565b6000602082019050818103600083015261411c81613cbc565b9050919050565b6000602082019050818103600083015261413c81613cdf565b9050919050565b6000602082019050818103600083015261415c81613d02565b9050919050565b6000602082019050818103600083015261417c81613d25565b9050919050565b6000602082019050818103600083015261419c81613d48565b9050919050565b600060208201905081810360008301526141bc81613d6b565b9050919050565b600060208201905081810360008301526141dc81613d8e565b9050919050565b600060208201905081810360008301526141fc81613db1565b9050919050565b6000602082019050818103600083015261421c81613dd4565b9050919050565b6000602082019050818103600083015261423c81613df7565b9050919050565b6000602082019050818103600083015261425c81613e1a565b9050919050565b60006020820190506142786000830184613e3d565b92915050565b60006020820190506142936000830184613e4c565b92915050565b60006142a36142b4565b90506142af82826145a1565b919050565b6000604051905090565b600067ffffffffffffffff8211156142d9576142d8614737565b5b6142e282614784565b9050602081019050919050565b600067ffffffffffffffff82111561430a57614309614737565b5b61431382614784565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061436e82614516565b915061437983614516565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156143ae576143ad61464c565b5b828201905092915050565b60006143c482614516565b91506143cf83614516565b9250826143df576143de61467b565b5b828204905092915050565b60006143f582614516565b915061440083614516565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156144395761443861464c565b5b828202905092915050565b600061444f82614516565b915061445a83614516565b92508282101561446d5761446c61464c565b5b828203905092915050565b600061448382614520565b915061448e83614520565b9250828210156144a1576144a061464c565b5b828203905092915050565b60006144b7826144f6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561455a57808201518184015260208101905061453f565b83811115614569576000848401525b50505050565b6000600282049050600182168061458757607f821691505b6020821081141561459b5761459a6146aa565b5b50919050565b6145aa82614784565b810181811067ffffffffffffffff821117156145c9576145c8614737565b5b80604052505050565b60006145dd82614516565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146105761460f61464c565b5b600182019050919050565b600061462682614516565b915061463183614516565b9250826146415761464061467b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820746f6b656e73600082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f46726565206d696e74206973206e6f7420616374697665000000000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4578636565646564206d617820746f6b656e2070757263686173650000000000600082015250565b7f5468697320697320667265650000000000000000000000000000000000000000600082015250565b7f4578636565646564206d617820617661696c61626c6520746f2070757263686160008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f416c6c6f77206c697374206973206e6f74206163746976650000000000000000600082015250565b7f5075626c69632053616c65206d7573742062652061637469766520746f206d6960008201527f6e7420746f6b656e730000000000000000000000000000000000000000000000602082015250565b614e28816144ac565b8114614e3357600080fd5b50565b614e3f816144be565b8114614e4a57600080fd5b50565b614e56816144ca565b8114614e6157600080fd5b50565b614e6d81614516565b8114614e7857600080fd5b50565b614e8481614520565b8114614e8f57600080fd5b5056fea26469706673582212205331c1e04b955b45a77247a43816fec755421118f952c54d7c5e36a0a5c46e0864736f6c63430008070033

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.