ETH Price: $3,106.73 (+1.24%)
Gas: 6 Gwei

Token

Epic Wizard Union (EWU)
 

Overview

Max Total Supply

1,052 EWU

Holders

408

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
felonbusk.eth
Balance
4 EWU
0xc446569e98466813d4a49cead6d9377215f6e244
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:
EpicWizardUnion

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : EpicWizardUnion.sol
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";

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

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

    bool private _paused;

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

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

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

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

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

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

/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
abstract contract Ownable {
  address public owner;

   /**
    * @dev The Ownable constructor sets the original `owner` of the contract to the sender
    * account.
    */
  constructor() {
    owner = msg.sender;
  }

   /**
    * @dev Throws if called by any account other than the owner.
    */
  modifier onlyOwner() {
    require(msg.sender == owner);
    _;
  }
}

abstract contract WizardMinting is ERC721Enumerable {
  function _mintWizards(address owner, uint256 startingIndex, uint16 number) internal {
    for (uint i = 0; i < number; i++) {
      _safeMint(owner, startingIndex + i);
    }
  }
}

abstract contract WizardSelling is WizardMinting, Ownable, Pausable {
  uint256 constant maxWizards = 10778;
  uint constant sellableWizardStartingIndex = 62;
  uint constant giveawayWizardStartingIndex = 12;
  uint constant specialWizardStartingIndex  = 1;
  uint16 constant maxWizardsToBuyAtOnce = 77;
  // 0.07 Ether fixed price for single wizard
  uint constant singleWizardPrice = 50000000 gwei;

  uint256 public nextWizardForSale;
  uint public nextWizardToGiveaway;
  uint public nextSpecialWizard;

  constructor() {
    nextWizardForSale = sellableWizardStartingIndex;
    nextWizardToGiveaway = giveawayWizardStartingIndex;
    nextSpecialWizard    = specialWizardStartingIndex;
  }

  function buyWizards(uint16 wizardsToBuy)
    public
    payable
    whenNotPaused
  {
    require(wizardsToBuy > 0, "Cannot buy 0 wizards");
    require(leftForSale() >= wizardsToBuy, "Not enough wizards left on sale");
    require(wizardsToBuy <= maxWizardsToBuyAtOnce, "Cannot buy that many wizards at once");
    require(msg.value >= singleWizardPrice * wizardsToBuy, "Insufficient funds sent.");
    _mintWizards(msg.sender, nextWizardForSale, wizardsToBuy);

    nextWizardForSale += wizardsToBuy;
  }

  function leftForSale() public view returns(uint256) {
    return maxWizards - nextWizardForSale;
  }

  function leftForGiveaway() public view returns(uint) {
    return sellableWizardStartingIndex - nextWizardToGiveaway;
  }

  function leftSpecial() public view returns(uint) {
    return giveawayWizardStartingIndex - nextSpecialWizard;
  }

  function giveawayWizard(address to) public onlyOwner {
    require(leftForGiveaway() >= 1);
    _mintWizards(to, nextWizardToGiveaway++, 1);
  }

  function mintSpecialWizard(address to) public onlyOwner {
    require(leftSpecial() >= 1);
    _mintWizards(to, nextSpecialWizard++, 1);
  }

  function startSale() public onlyOwner whenPaused {
    _unpause();
  }

  function pauseSale() public onlyOwner whenNotPaused {
    _pause();
  }
}

contract EpicWizardUnion is WizardSelling {
  string _provenanceHash;
  string baseURI_;

  constructor() ERC721("Epic Wizard Union", "EWU") {
    _pause();
    setBaseURI("https://shielded-eyrie-24836.herokuapp.com");
  }

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

  function setProvenanceHash(string memory provenanceHash)
    public
    onlyOwner
  {
    _provenanceHash = provenanceHash;
  }

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

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

  function isApprovedOrOwner(address target, uint256 tokenId)
    public
    view
    returns (bool) {
    return _isApprovedOrOwner(target, tokenId);
  }

  function exists(uint256 tokenId) public view returns (bool) {
    return _exists(tokenId);
  }

  function tokensInWallet(address wallet) public view returns (uint256[] memory) {
    uint256[] memory tokens = new uint256[](balanceOf(wallet));

    for (uint i = 0; i < tokens.length; i++) {
      tokens[i] = tokenOfOwnerByIndex(wallet, i);
    }

    return tokens;
  }

  function burn(uint256 tokenId) public virtual {
     require(_isApprovedOrOwner(_msgSender(), tokenId), "CryptoWizards: caller is not owner nor approved");
     _burn(tokenId);
 }
}

File 2 of 12 : ERC721.sol
// SPDX-License-Identifier: MIT

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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 3 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT

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 4 of 12 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

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 5 of 12 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

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 6 of 12 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 7 of 12 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

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 8 of 12 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

File 9 of 12 : Context.sol
// SPDX-License-Identifier: MIT

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 10 of 12 : Strings.sol
// SPDX-License-Identifier: MIT

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 11 of 12 : ERC165.sol
// SPDX-License-Identifier: MIT

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 12 of 12 : IERC165.sol
// SPDX-License-Identifier: MIT

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
{
  "remappings": [],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "evmVersion": "berlin",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"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":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"wizardsToBuy","type":"uint16"}],"name":"buyWizards","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"giveawayWizard","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isApprovedOrOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"leftForGiveaway","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"leftForSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"leftSpecial","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mintSpecialWizard","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextSpecialWizard","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextWizardForSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextWizardToGiveaway","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"tokensInWallet","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280601181526020017f457069632057697a61726420556e696f6e0000000000000000000000000000008152506040518060400160405280600381526020017f4557550000000000000000000000000000000000000000000000000000000000815250816000908051906020019062000096929190620002b3565b508060019080519060200190620000af929190620002b3565b50505033600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600a60146101000a81548160ff021916908315150217905550603e600b81905550600c80819055506001600d81905550620001356200016560201b60201c565b6200015f6040518060600160405280602a815260200162004968602a91396200021d60201b60201c565b620004ad565b620001756200029460201b60201c565b15620001b8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001af90620003b8565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25862000204620002ab60201b60201c565b6040516200021391906200039b565b60405180910390a1565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146200027857600080fd5b80600f908051906020019062000290929190620002b3565b5050565b6000600a60149054906101000a900460ff16905090565b600033905090565b828054620002c1906200041f565b90600052602060002090601f016020900481019282620002e5576000855562000331565b82601f106200030057805160ff191683800117855562000331565b8280016001018555821562000331579182015b828111156200033057825182559160200191906001019062000313565b5b50905062000340919062000344565b5090565b5b808211156200035f57600081600090555060010162000345565b5090565b6200036e81620003eb565b82525050565b600062000383601083620003da565b9150620003908262000484565b602082019050919050565b6000602082019050620003b2600083018462000363565b92915050565b60006020820190508181036000830152620003d38162000374565b9050919050565b600082825260208201905092915050565b6000620003f882620003ff565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600060028204905060018216806200043857607f821691505b602082108114156200044f576200044e62000455565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6144ab80620004bd6000396000f3fe60806040526004361061020f5760003560e01c806361c5c93511610118578063b66a0e5d116100a0578063d165d2e31161006f578063d165d2e3146107a2578063d1e6a64f146107be578063d4b4d91b146107e9578063d554332214610812578063e985e9c51461083d5761020f565b8063b66a0e5d146106fa578063b88d4fde14610711578063c87b56dd1461073a578063cdbb0992146107775761020f565b80638257146f116100e75780638257146f146106255780638da5cb5b1461065057806395d89b411461067b5780639ed9c3a8146106a6578063a22cb465146106d15761020f565b806361c5c935146105455780636352211e1461058257806370a08231146105bf57806379f6f15d146105fc5761020f565b806342842e0e1161019b5780634f6ccce71161016a5780634f6ccce71461047257806355367ba9146104af57806355f804b3146104c65780635c975abb146104ef5780635d7954a41461051a5761020f565b806342842e0e146103a657806342966c68146103cf578063430c2081146103f85780634f558e79146104355761020f565b806310969523116101e257806310969523146102e257806318160ddd1461030b57806323b872dd146103365780632f745c591461035f5780633ccfd60b1461039c5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612fc5565b61087a565b60405161024891906135e9565b60405180910390f35b34801561025d57600080fd5b506102666108f4565b6040516102739190613604565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190613095565b610986565b6040516102b09190613560565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612f85565b610a0b565b005b3480156102ee57600080fd5b506103096004803603810190610304919061301f565b610b23565b005b34801561031757600080fd5b50610320610b97565b60405161032d9190613906565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190612e6f565b610ba4565b005b34801561036b57600080fd5b5061038660048036038101906103819190612f85565b610c04565b6040516103939190613906565b60405180910390f35b6103a4610ca9565b005b3480156103b257600080fd5b506103cd60048036038101906103c89190612e6f565b610d52565b005b3480156103db57600080fd5b506103f660048036038101906103f19190613095565b610d72565b005b34801561040457600080fd5b5061041f600480360381019061041a9190612f85565b610dce565b60405161042c91906135e9565b60405180910390f35b34801561044157600080fd5b5061045c60048036038101906104579190613095565b610de2565b60405161046991906135e9565b60405180910390f35b34801561047e57600080fd5b5061049960048036038101906104949190613095565b610df4565b6040516104a69190613906565b60405180910390f35b3480156104bb57600080fd5b506104c4610e65565b005b3480156104d257600080fd5b506104ed60048036038101906104e8919061301f565b610f11565b005b3480156104fb57600080fd5b50610504610f85565b60405161051191906135e9565b60405180910390f35b34801561052657600080fd5b5061052f610f9c565b60405161053c9190613906565b60405180910390f35b34801561055157600080fd5b5061056c60048036038101906105679190612e02565b610fa2565b60405161057991906135c7565b60405180910390f35b34801561058e57600080fd5b506105a960048036038101906105a49190613095565b61104b565b6040516105b69190613560565b60405180910390f35b3480156105cb57600080fd5b506105e660048036038101906105e19190612e02565b6110fd565b6040516105f39190613906565b60405180910390f35b34801561060857600080fd5b50610623600480360381019061061e9190612e02565b6111b5565b005b34801561063157600080fd5b5061063a611249565b6040516106479190613906565b60405180910390f35b34801561065c57600080fd5b5061066561125f565b6040516106729190613560565b60405180910390f35b34801561068757600080fd5b50610690611285565b60405161069d9190613604565b60405180910390f35b3480156106b257600080fd5b506106bb611317565b6040516106c89190613906565b60405180910390f35b3480156106dd57600080fd5b506106f860048036038101906106f39190612f45565b61131d565b005b34801561070657600080fd5b5061070f61149e565b005b34801561071d57600080fd5b5061073860048036038101906107339190612ec2565b611549565b005b34801561074657600080fd5b50610761600480360381019061075c9190613095565b6115ab565b60405161076e9190613604565b60405180910390f35b34801561078357600080fd5b5061078c611652565b6040516107999190613906565b60405180910390f35b6107bc60048036038101906107b79190613068565b611658565b005b3480156107ca57600080fd5b506107d3611807565b6040516107e09190613906565b60405180910390f35b3480156107f557600080fd5b50610810600480360381019061080b9190612e02565b61181e565b005b34801561081e57600080fd5b506108276118b2565b6040516108349190613906565b60405180910390f35b34801561084957600080fd5b50610864600480360381019061085f9190612e2f565b6118c8565b60405161087191906135e9565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ed57506108ec8261195c565b5b9050919050565b60606000805461090390613bfd565b80601f016020809104026020016040519081016040528092919081815260200182805461092f90613bfd565b801561097c5780601f106109515761010080835404028352916020019161097c565b820191906000526020600020905b81548152906001019060200180831161095f57829003601f168201915b5050505050905090565b600061099182611a3e565b6109d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c7906137e6565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a168261104b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7e90613866565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aa6611aaa565b73ffffffffffffffffffffffffffffffffffffffff161480610ad55750610ad481610acf611aaa565b6118c8565b5b610b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0b90613746565b60405180910390fd5b610b1e8383611ab2565b505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b7d57600080fd5b80600e9080519060200190610b93929190612c01565b5050565b6000600880549050905090565b610bb5610baf611aaa565b82611b6b565b610bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610beb906138a6565b60405180910390fd5b610bff838383611c49565b505050565b6000610c0f836110fd565b8210610c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4790613646565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d0357600080fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d4e573d6000803e3d6000fd5b5050565b610d6d83838360405180602001604052806000815250611549565b505050565b610d83610d7d611aaa565b82611b6b565b610dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db9906136a6565b60405180910390fd5b610dcb81611ea5565b50565b6000610dda8383611b6b565b905092915050565b6000610ded82611a3e565b9050919050565b6000610dfe610b97565b8210610e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e36906138c6565b60405180910390fd5b60088281548110610e5357610e52613d96565b5b90600052602060002001549050919050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ebf57600080fd5b610ec7610f85565b15610f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efe90613726565b60405180910390fd5b610f0f611fb6565b565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f6b57600080fd5b80600f9080519060200190610f81929190612c01565b5050565b6000600a60149054906101000a900460ff16905090565b600c5481565b60606000610faf836110fd565b67ffffffffffffffff811115610fc857610fc7613dc5565b5b604051908082528060200260200182016040528015610ff65781602001602082028036833780820191505090505b50905060005b81518110156110415761100f8482610c04565b82828151811061102257611021613d96565b5b602002602001018181525050808061103990613c60565b915050610ffc565b5080915050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110eb90613786565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561116e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116590613766565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461120f57600080fd5b60016112196118b2565b101561122457600080fd5b61124681600d600081548092919061123b90613c60565b919050556001612059565b50565b6000600c54603e61125a9190613b05565b905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606001805461129490613bfd565b80601f01602080910402602001604051908101604052809291908181526020018280546112c090613bfd565b801561130d5780601f106112e25761010080835404028352916020019161130d565b820191906000526020600020905b8154815290600101906020018083116112f057829003601f168201915b5050505050905090565b600b5481565b611325611aaa565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611393576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138a906136e6565b60405180910390fd5b80600560006113a0611aaa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661144d611aaa565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161149291906135e9565b60405180910390a35050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114f857600080fd5b611500610f85565b61153f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153690613626565b60405180910390fd5b611547612096565b565b61155a611554611aaa565b83611b6b565b611599576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611590906138a6565b60405180910390fd5b6115a584848484612138565b50505050565b60606115b682611a3e565b6115f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ec90613826565b60405180910390fd5b60006115ff612194565b9050600081511161161f576040518060200160405280600081525061164a565b8061162984612226565b60405160200161163a92919061353c565b6040516020818303038152906040525b915050919050565b600d5481565b611660610f85565b156116a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169790613726565b60405180910390fd5b60008161ffff16116116e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116de906138e6565b60405180910390fd5b8061ffff166116f4611807565b1015611735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172c90613886565b60405180910390fd5b604d61ffff168161ffff161115611781576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177890613846565b60405180910390fd5b8061ffff1666b1a2bc2ec500006117989190613aab565b3410156117da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d1906137a6565b60405180910390fd5b6117e733600b5483612059565b8061ffff16600b60008282546117fd9190613a24565b9250508190555050565b6000600b54612a1a6118199190613b05565b905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461187857600080fd5b6001611882611249565b101561188d57600080fd5b6118af81600c60008154809291906118a490613c60565b919050556001612059565b50565b6000600d54600c6118c39190613b05565b905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a2757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a375750611a3682612387565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b258361104b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b7682611a3e565b611bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bac90613706565b60405180910390fd5b6000611bc08361104b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c2f57508373ffffffffffffffffffffffffffffffffffffffff16611c1784610986565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c405750611c3f81856118c8565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c698261104b565b73ffffffffffffffffffffffffffffffffffffffff1614611cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb690613806565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d26906136c6565b60405180910390fd5b611d3a8383836123f1565b611d45600082611ab2565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d959190613b05565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dec9190613a24565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000611eb08261104b565b9050611ebe816000846123f1565b611ec9600083611ab2565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f199190613b05565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b611fbe610f85565b15611ffe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff590613726565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612042611aaa565b60405161204f9190613560565b60405180910390a1565b60005b8161ffff168110156120905761207d8482856120789190613a24565b612505565b808061208890613c60565b91505061205c565b50505050565b61209e610f85565b6120dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d490613626565b60405180910390fd5b6000600a60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612121611aaa565b60405161212e9190613560565b60405180910390a1565b612143848484611c49565b61214f84848484612523565b61218e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218590613666565b60405180910390fd5b50505050565b6060600f80546121a390613bfd565b80601f01602080910402602001604051908101604052809291908181526020018280546121cf90613bfd565b801561221c5780601f106121f15761010080835404028352916020019161221c565b820191906000526020600020905b8154815290600101906020018083116121ff57829003601f168201915b5050505050905090565b6060600082141561226e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612382565b600082905060005b600082146122a057808061228990613c60565b915050600a826122999190613a7a565b9150612276565b60008167ffffffffffffffff8111156122bc576122bb613dc5565b5b6040519080825280601f01601f1916602001820160405280156122ee5781602001600182028036833780820191505090505b5090505b6000851461237b576001826123079190613b05565b9150600a856123169190613ca9565b60306123229190613a24565b60f81b81838151811061233857612337613d96565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123749190613a7a565b94506122f2565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6123fc8383836126ba565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561243f5761243a816126bf565b61247e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461247d5761247c8382612708565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124c1576124bc81612875565b612500565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146124ff576124fe8282612946565b5b5b505050565b61251f8282604051806020016040528060008152506129c5565b5050565b60006125448473ffffffffffffffffffffffffffffffffffffffff16612a20565b156126ad578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261256d611aaa565b8786866040518563ffffffff1660e01b815260040161258f949392919061357b565b602060405180830381600087803b1580156125a957600080fd5b505af19250505080156125da57506040513d601f19601f820116820180604052508101906125d79190612ff2565b60015b61265d573d806000811461260a576040519150601f19603f3d011682016040523d82523d6000602084013e61260f565b606091505b50600081511415612655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264c90613666565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126b2565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612715846110fd565b61271f9190613b05565b9050600060076000848152602001908152602001600020549050818114612804576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506128899190613b05565b90506000600960008481526020019081526020016000205490506000600883815481106128b9576128b8613d96565b5b9060005260206000200154905080600883815481106128db576128da613d96565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061292a57612929613d67565b5b6001900381819060005260206000200160009055905550505050565b6000612951836110fd565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6129cf8383612a33565b6129dc6000848484612523565b612a1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1290613666565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9a906137c6565b60405180910390fd5b612aac81611a3e565b15612aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae390613686565b60405180910390fd5b612af8600083836123f1565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b489190613a24565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612c0d90613bfd565b90600052602060002090601f016020900481019282612c2f5760008555612c76565b82601f10612c4857805160ff1916838001178555612c76565b82800160010185558215612c76579182015b82811115612c75578251825591602001919060010190612c5a565b5b509050612c839190612c87565b5090565b5b80821115612ca0576000816000905550600101612c88565b5090565b6000612cb7612cb284613946565b613921565b905082815260208101848484011115612cd357612cd2613df9565b5b612cde848285613bbb565b509392505050565b6000612cf9612cf484613977565b613921565b905082815260208101848484011115612d1557612d14613df9565b5b612d20848285613bbb565b509392505050565b600081359050612d3781614402565b92915050565b600081359050612d4c81614419565b92915050565b600081359050612d6181614430565b92915050565b600081519050612d7681614430565b92915050565b600082601f830112612d9157612d90613df4565b5b8135612da1848260208601612ca4565b91505092915050565b600082601f830112612dbf57612dbe613df4565b5b8135612dcf848260208601612ce6565b91505092915050565b600081359050612de781614447565b92915050565b600081359050612dfc8161445e565b92915050565b600060208284031215612e1857612e17613e03565b5b6000612e2684828501612d28565b91505092915050565b60008060408385031215612e4657612e45613e03565b5b6000612e5485828601612d28565b9250506020612e6585828601612d28565b9150509250929050565b600080600060608486031215612e8857612e87613e03565b5b6000612e9686828701612d28565b9350506020612ea786828701612d28565b9250506040612eb886828701612ded565b9150509250925092565b60008060008060808587031215612edc57612edb613e03565b5b6000612eea87828801612d28565b9450506020612efb87828801612d28565b9350506040612f0c87828801612ded565b925050606085013567ffffffffffffffff811115612f2d57612f2c613dfe565b5b612f3987828801612d7c565b91505092959194509250565b60008060408385031215612f5c57612f5b613e03565b5b6000612f6a85828601612d28565b9250506020612f7b85828601612d3d565b9150509250929050565b60008060408385031215612f9c57612f9b613e03565b5b6000612faa85828601612d28565b9250506020612fbb85828601612ded565b9150509250929050565b600060208284031215612fdb57612fda613e03565b5b6000612fe984828501612d52565b91505092915050565b60006020828403121561300857613007613e03565b5b600061301684828501612d67565b91505092915050565b60006020828403121561303557613034613e03565b5b600082013567ffffffffffffffff81111561305357613052613dfe565b5b61305f84828501612daa565b91505092915050565b60006020828403121561307e5761307d613e03565b5b600061308c84828501612dd8565b91505092915050565b6000602082840312156130ab576130aa613e03565b5b60006130b984828501612ded565b91505092915050565b60006130ce838361351e565b60208301905092915050565b6130e381613b39565b82525050565b60006130f4826139b8565b6130fe81856139e6565b9350613109836139a8565b8060005b8381101561313a57815161312188826130c2565b975061312c836139d9565b92505060018101905061310d565b5085935050505092915050565b61315081613b4b565b82525050565b6000613161826139c3565b61316b81856139f7565b935061317b818560208601613bca565b61318481613e08565b840191505092915050565b600061319a826139ce565b6131a48185613a08565b93506131b4818560208601613bca565b6131bd81613e08565b840191505092915050565b60006131d3826139ce565b6131dd8185613a19565b93506131ed818560208601613bca565b80840191505092915050565b6000613206601483613a08565b915061321182613e19565b602082019050919050565b6000613229602b83613a08565b915061323482613e42565b604082019050919050565b600061324c603283613a08565b915061325782613e91565b604082019050919050565b600061326f601c83613a08565b915061327a82613ee0565b602082019050919050565b6000613292602f83613a08565b915061329d82613f09565b604082019050919050565b60006132b5602483613a08565b91506132c082613f58565b604082019050919050565b60006132d8601983613a08565b91506132e382613fa7565b602082019050919050565b60006132fb602c83613a08565b915061330682613fd0565b604082019050919050565b600061331e601083613a08565b91506133298261401f565b602082019050919050565b6000613341603883613a08565b915061334c82614048565b604082019050919050565b6000613364602a83613a08565b915061336f82614097565b604082019050919050565b6000613387602983613a08565b9150613392826140e6565b604082019050919050565b60006133aa601883613a08565b91506133b582614135565b602082019050919050565b60006133cd602083613a08565b91506133d88261415e565b602082019050919050565b60006133f0602c83613a08565b91506133fb82614187565b604082019050919050565b6000613413602983613a08565b915061341e826141d6565b604082019050919050565b6000613436602f83613a08565b915061344182614225565b604082019050919050565b6000613459602483613a08565b915061346482614274565b604082019050919050565b600061347c602183613a08565b9150613487826142c3565b604082019050919050565b600061349f601f83613a08565b91506134aa82614312565b602082019050919050565b60006134c2603183613a08565b91506134cd8261433b565b604082019050919050565b60006134e5602c83613a08565b91506134f08261438a565b604082019050919050565b6000613508601483613a08565b9150613513826143d9565b602082019050919050565b61352781613bb1565b82525050565b61353681613bb1565b82525050565b600061354882856131c8565b915061355482846131c8565b91508190509392505050565b600060208201905061357560008301846130da565b92915050565b600060808201905061359060008301876130da565b61359d60208301866130da565b6135aa604083018561352d565b81810360608301526135bc8184613156565b905095945050505050565b600060208201905081810360008301526135e181846130e9565b905092915050565b60006020820190506135fe6000830184613147565b92915050565b6000602082019050818103600083015261361e818461318f565b905092915050565b6000602082019050818103600083015261363f816131f9565b9050919050565b6000602082019050818103600083015261365f8161321c565b9050919050565b6000602082019050818103600083015261367f8161323f565b9050919050565b6000602082019050818103600083015261369f81613262565b9050919050565b600060208201905081810360008301526136bf81613285565b9050919050565b600060208201905081810360008301526136df816132a8565b9050919050565b600060208201905081810360008301526136ff816132cb565b9050919050565b6000602082019050818103600083015261371f816132ee565b9050919050565b6000602082019050818103600083015261373f81613311565b9050919050565b6000602082019050818103600083015261375f81613334565b9050919050565b6000602082019050818103600083015261377f81613357565b9050919050565b6000602082019050818103600083015261379f8161337a565b9050919050565b600060208201905081810360008301526137bf8161339d565b9050919050565b600060208201905081810360008301526137df816133c0565b9050919050565b600060208201905081810360008301526137ff816133e3565b9050919050565b6000602082019050818103600083015261381f81613406565b9050919050565b6000602082019050818103600083015261383f81613429565b9050919050565b6000602082019050818103600083015261385f8161344c565b9050919050565b6000602082019050818103600083015261387f8161346f565b9050919050565b6000602082019050818103600083015261389f81613492565b9050919050565b600060208201905081810360008301526138bf816134b5565b9050919050565b600060208201905081810360008301526138df816134d8565b9050919050565b600060208201905081810360008301526138ff816134fb565b9050919050565b600060208201905061391b600083018461352d565b92915050565b600061392b61393c565b90506139378282613c2f565b919050565b6000604051905090565b600067ffffffffffffffff82111561396157613960613dc5565b5b61396a82613e08565b9050602081019050919050565b600067ffffffffffffffff82111561399257613991613dc5565b5b61399b82613e08565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a2f82613bb1565b9150613a3a83613bb1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a6f57613a6e613cda565b5b828201905092915050565b6000613a8582613bb1565b9150613a9083613bb1565b925082613aa057613a9f613d09565b5b828204905092915050565b6000613ab682613bb1565b9150613ac183613bb1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613afa57613af9613cda565b5b828202905092915050565b6000613b1082613bb1565b9150613b1b83613bb1565b925082821015613b2e57613b2d613cda565b5b828203905092915050565b6000613b4482613b91565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613be8578082015181840152602081019050613bcd565b83811115613bf7576000848401525b50505050565b60006002820490506001821680613c1557607f821691505b60208210811415613c2957613c28613d38565b5b50919050565b613c3882613e08565b810181811067ffffffffffffffff82111715613c5757613c56613dc5565b5b80604052505050565b6000613c6b82613bb1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c9e57613c9d613cda565b5b600182019050919050565b6000613cb482613bb1565b9150613cbf83613bb1565b925082613ccf57613cce613d09565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f43727970746f57697a617264733a2063616c6c6572206973206e6f74206f776e60008201527f6572206e6f7220617070726f7665640000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732073656e742e0000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f43616e6e6f74206275792074686174206d616e792077697a617264732061742060008201527f6f6e636500000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682077697a61726473206c656674206f6e2073616c6500600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f43616e6e6f742062757920302077697a61726473000000000000000000000000600082015250565b61440b81613b39565b811461441657600080fd5b50565b61442281613b4b565b811461442d57600080fd5b50565b61443981613b57565b811461444457600080fd5b50565b61445081613b83565b811461445b57600080fd5b50565b61446781613bb1565b811461447257600080fd5b5056fea264697066735822122069edad65456ccc89c2bb8a4512fa358e26426080bc5eb4ced9a8ea4f4c18e66f64736f6c6343000806003368747470733a2f2f736869656c6465642d65797269652d32343833362e6865726f6b756170702e636f6d

Deployed Bytecode

0x60806040526004361061020f5760003560e01c806361c5c93511610118578063b66a0e5d116100a0578063d165d2e31161006f578063d165d2e3146107a2578063d1e6a64f146107be578063d4b4d91b146107e9578063d554332214610812578063e985e9c51461083d5761020f565b8063b66a0e5d146106fa578063b88d4fde14610711578063c87b56dd1461073a578063cdbb0992146107775761020f565b80638257146f116100e75780638257146f146106255780638da5cb5b1461065057806395d89b411461067b5780639ed9c3a8146106a6578063a22cb465146106d15761020f565b806361c5c935146105455780636352211e1461058257806370a08231146105bf57806379f6f15d146105fc5761020f565b806342842e0e1161019b5780634f6ccce71161016a5780634f6ccce71461047257806355367ba9146104af57806355f804b3146104c65780635c975abb146104ef5780635d7954a41461051a5761020f565b806342842e0e146103a657806342966c68146103cf578063430c2081146103f85780634f558e79146104355761020f565b806310969523116101e257806310969523146102e257806318160ddd1461030b57806323b872dd146103365780632f745c591461035f5780633ccfd60b1461039c5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612fc5565b61087a565b60405161024891906135e9565b60405180910390f35b34801561025d57600080fd5b506102666108f4565b6040516102739190613604565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190613095565b610986565b6040516102b09190613560565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612f85565b610a0b565b005b3480156102ee57600080fd5b506103096004803603810190610304919061301f565b610b23565b005b34801561031757600080fd5b50610320610b97565b60405161032d9190613906565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190612e6f565b610ba4565b005b34801561036b57600080fd5b5061038660048036038101906103819190612f85565b610c04565b6040516103939190613906565b60405180910390f35b6103a4610ca9565b005b3480156103b257600080fd5b506103cd60048036038101906103c89190612e6f565b610d52565b005b3480156103db57600080fd5b506103f660048036038101906103f19190613095565b610d72565b005b34801561040457600080fd5b5061041f600480360381019061041a9190612f85565b610dce565b60405161042c91906135e9565b60405180910390f35b34801561044157600080fd5b5061045c60048036038101906104579190613095565b610de2565b60405161046991906135e9565b60405180910390f35b34801561047e57600080fd5b5061049960048036038101906104949190613095565b610df4565b6040516104a69190613906565b60405180910390f35b3480156104bb57600080fd5b506104c4610e65565b005b3480156104d257600080fd5b506104ed60048036038101906104e8919061301f565b610f11565b005b3480156104fb57600080fd5b50610504610f85565b60405161051191906135e9565b60405180910390f35b34801561052657600080fd5b5061052f610f9c565b60405161053c9190613906565b60405180910390f35b34801561055157600080fd5b5061056c60048036038101906105679190612e02565b610fa2565b60405161057991906135c7565b60405180910390f35b34801561058e57600080fd5b506105a960048036038101906105a49190613095565b61104b565b6040516105b69190613560565b60405180910390f35b3480156105cb57600080fd5b506105e660048036038101906105e19190612e02565b6110fd565b6040516105f39190613906565b60405180910390f35b34801561060857600080fd5b50610623600480360381019061061e9190612e02565b6111b5565b005b34801561063157600080fd5b5061063a611249565b6040516106479190613906565b60405180910390f35b34801561065c57600080fd5b5061066561125f565b6040516106729190613560565b60405180910390f35b34801561068757600080fd5b50610690611285565b60405161069d9190613604565b60405180910390f35b3480156106b257600080fd5b506106bb611317565b6040516106c89190613906565b60405180910390f35b3480156106dd57600080fd5b506106f860048036038101906106f39190612f45565b61131d565b005b34801561070657600080fd5b5061070f61149e565b005b34801561071d57600080fd5b5061073860048036038101906107339190612ec2565b611549565b005b34801561074657600080fd5b50610761600480360381019061075c9190613095565b6115ab565b60405161076e9190613604565b60405180910390f35b34801561078357600080fd5b5061078c611652565b6040516107999190613906565b60405180910390f35b6107bc60048036038101906107b79190613068565b611658565b005b3480156107ca57600080fd5b506107d3611807565b6040516107e09190613906565b60405180910390f35b3480156107f557600080fd5b50610810600480360381019061080b9190612e02565b61181e565b005b34801561081e57600080fd5b506108276118b2565b6040516108349190613906565b60405180910390f35b34801561084957600080fd5b50610864600480360381019061085f9190612e2f565b6118c8565b60405161087191906135e9565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ed57506108ec8261195c565b5b9050919050565b60606000805461090390613bfd565b80601f016020809104026020016040519081016040528092919081815260200182805461092f90613bfd565b801561097c5780601f106109515761010080835404028352916020019161097c565b820191906000526020600020905b81548152906001019060200180831161095f57829003601f168201915b5050505050905090565b600061099182611a3e565b6109d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c7906137e6565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a168261104b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7e90613866565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aa6611aaa565b73ffffffffffffffffffffffffffffffffffffffff161480610ad55750610ad481610acf611aaa565b6118c8565b5b610b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0b90613746565b60405180910390fd5b610b1e8383611ab2565b505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b7d57600080fd5b80600e9080519060200190610b93929190612c01565b5050565b6000600880549050905090565b610bb5610baf611aaa565b82611b6b565b610bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610beb906138a6565b60405180910390fd5b610bff838383611c49565b505050565b6000610c0f836110fd565b8210610c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4790613646565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d0357600080fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d4e573d6000803e3d6000fd5b5050565b610d6d83838360405180602001604052806000815250611549565b505050565b610d83610d7d611aaa565b82611b6b565b610dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db9906136a6565b60405180910390fd5b610dcb81611ea5565b50565b6000610dda8383611b6b565b905092915050565b6000610ded82611a3e565b9050919050565b6000610dfe610b97565b8210610e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e36906138c6565b60405180910390fd5b60088281548110610e5357610e52613d96565b5b90600052602060002001549050919050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ebf57600080fd5b610ec7610f85565b15610f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efe90613726565b60405180910390fd5b610f0f611fb6565b565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f6b57600080fd5b80600f9080519060200190610f81929190612c01565b5050565b6000600a60149054906101000a900460ff16905090565b600c5481565b60606000610faf836110fd565b67ffffffffffffffff811115610fc857610fc7613dc5565b5b604051908082528060200260200182016040528015610ff65781602001602082028036833780820191505090505b50905060005b81518110156110415761100f8482610c04565b82828151811061102257611021613d96565b5b602002602001018181525050808061103990613c60565b915050610ffc565b5080915050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110eb90613786565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561116e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116590613766565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461120f57600080fd5b60016112196118b2565b101561122457600080fd5b61124681600d600081548092919061123b90613c60565b919050556001612059565b50565b6000600c54603e61125a9190613b05565b905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606001805461129490613bfd565b80601f01602080910402602001604051908101604052809291908181526020018280546112c090613bfd565b801561130d5780601f106112e25761010080835404028352916020019161130d565b820191906000526020600020905b8154815290600101906020018083116112f057829003601f168201915b5050505050905090565b600b5481565b611325611aaa565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611393576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138a906136e6565b60405180910390fd5b80600560006113a0611aaa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661144d611aaa565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161149291906135e9565b60405180910390a35050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114f857600080fd5b611500610f85565b61153f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153690613626565b60405180910390fd5b611547612096565b565b61155a611554611aaa565b83611b6b565b611599576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611590906138a6565b60405180910390fd5b6115a584848484612138565b50505050565b60606115b682611a3e565b6115f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ec90613826565b60405180910390fd5b60006115ff612194565b9050600081511161161f576040518060200160405280600081525061164a565b8061162984612226565b60405160200161163a92919061353c565b6040516020818303038152906040525b915050919050565b600d5481565b611660610f85565b156116a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169790613726565b60405180910390fd5b60008161ffff16116116e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116de906138e6565b60405180910390fd5b8061ffff166116f4611807565b1015611735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172c90613886565b60405180910390fd5b604d61ffff168161ffff161115611781576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177890613846565b60405180910390fd5b8061ffff1666b1a2bc2ec500006117989190613aab565b3410156117da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d1906137a6565b60405180910390fd5b6117e733600b5483612059565b8061ffff16600b60008282546117fd9190613a24565b9250508190555050565b6000600b54612a1a6118199190613b05565b905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461187857600080fd5b6001611882611249565b101561188d57600080fd5b6118af81600c60008154809291906118a490613c60565b919050556001612059565b50565b6000600d54600c6118c39190613b05565b905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a2757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a375750611a3682612387565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b258361104b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b7682611a3e565b611bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bac90613706565b60405180910390fd5b6000611bc08361104b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c2f57508373ffffffffffffffffffffffffffffffffffffffff16611c1784610986565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c405750611c3f81856118c8565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c698261104b565b73ffffffffffffffffffffffffffffffffffffffff1614611cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb690613806565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d26906136c6565b60405180910390fd5b611d3a8383836123f1565b611d45600082611ab2565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d959190613b05565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dec9190613a24565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000611eb08261104b565b9050611ebe816000846123f1565b611ec9600083611ab2565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f199190613b05565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b611fbe610f85565b15611ffe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff590613726565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612042611aaa565b60405161204f9190613560565b60405180910390a1565b60005b8161ffff168110156120905761207d8482856120789190613a24565b612505565b808061208890613c60565b91505061205c565b50505050565b61209e610f85565b6120dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d490613626565b60405180910390fd5b6000600a60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612121611aaa565b60405161212e9190613560565b60405180910390a1565b612143848484611c49565b61214f84848484612523565b61218e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218590613666565b60405180910390fd5b50505050565b6060600f80546121a390613bfd565b80601f01602080910402602001604051908101604052809291908181526020018280546121cf90613bfd565b801561221c5780601f106121f15761010080835404028352916020019161221c565b820191906000526020600020905b8154815290600101906020018083116121ff57829003601f168201915b5050505050905090565b6060600082141561226e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612382565b600082905060005b600082146122a057808061228990613c60565b915050600a826122999190613a7a565b9150612276565b60008167ffffffffffffffff8111156122bc576122bb613dc5565b5b6040519080825280601f01601f1916602001820160405280156122ee5781602001600182028036833780820191505090505b5090505b6000851461237b576001826123079190613b05565b9150600a856123169190613ca9565b60306123229190613a24565b60f81b81838151811061233857612337613d96565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123749190613a7a565b94506122f2565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6123fc8383836126ba565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561243f5761243a816126bf565b61247e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461247d5761247c8382612708565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124c1576124bc81612875565b612500565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146124ff576124fe8282612946565b5b5b505050565b61251f8282604051806020016040528060008152506129c5565b5050565b60006125448473ffffffffffffffffffffffffffffffffffffffff16612a20565b156126ad578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261256d611aaa565b8786866040518563ffffffff1660e01b815260040161258f949392919061357b565b602060405180830381600087803b1580156125a957600080fd5b505af19250505080156125da57506040513d601f19601f820116820180604052508101906125d79190612ff2565b60015b61265d573d806000811461260a576040519150601f19603f3d011682016040523d82523d6000602084013e61260f565b606091505b50600081511415612655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264c90613666565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126b2565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612715846110fd565b61271f9190613b05565b9050600060076000848152602001908152602001600020549050818114612804576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506128899190613b05565b90506000600960008481526020019081526020016000205490506000600883815481106128b9576128b8613d96565b5b9060005260206000200154905080600883815481106128db576128da613d96565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061292a57612929613d67565b5b6001900381819060005260206000200160009055905550505050565b6000612951836110fd565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6129cf8383612a33565b6129dc6000848484612523565b612a1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1290613666565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9a906137c6565b60405180910390fd5b612aac81611a3e565b15612aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae390613686565b60405180910390fd5b612af8600083836123f1565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b489190613a24565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612c0d90613bfd565b90600052602060002090601f016020900481019282612c2f5760008555612c76565b82601f10612c4857805160ff1916838001178555612c76565b82800160010185558215612c76579182015b82811115612c75578251825591602001919060010190612c5a565b5b509050612c839190612c87565b5090565b5b80821115612ca0576000816000905550600101612c88565b5090565b6000612cb7612cb284613946565b613921565b905082815260208101848484011115612cd357612cd2613df9565b5b612cde848285613bbb565b509392505050565b6000612cf9612cf484613977565b613921565b905082815260208101848484011115612d1557612d14613df9565b5b612d20848285613bbb565b509392505050565b600081359050612d3781614402565b92915050565b600081359050612d4c81614419565b92915050565b600081359050612d6181614430565b92915050565b600081519050612d7681614430565b92915050565b600082601f830112612d9157612d90613df4565b5b8135612da1848260208601612ca4565b91505092915050565b600082601f830112612dbf57612dbe613df4565b5b8135612dcf848260208601612ce6565b91505092915050565b600081359050612de781614447565b92915050565b600081359050612dfc8161445e565b92915050565b600060208284031215612e1857612e17613e03565b5b6000612e2684828501612d28565b91505092915050565b60008060408385031215612e4657612e45613e03565b5b6000612e5485828601612d28565b9250506020612e6585828601612d28565b9150509250929050565b600080600060608486031215612e8857612e87613e03565b5b6000612e9686828701612d28565b9350506020612ea786828701612d28565b9250506040612eb886828701612ded565b9150509250925092565b60008060008060808587031215612edc57612edb613e03565b5b6000612eea87828801612d28565b9450506020612efb87828801612d28565b9350506040612f0c87828801612ded565b925050606085013567ffffffffffffffff811115612f2d57612f2c613dfe565b5b612f3987828801612d7c565b91505092959194509250565b60008060408385031215612f5c57612f5b613e03565b5b6000612f6a85828601612d28565b9250506020612f7b85828601612d3d565b9150509250929050565b60008060408385031215612f9c57612f9b613e03565b5b6000612faa85828601612d28565b9250506020612fbb85828601612ded565b9150509250929050565b600060208284031215612fdb57612fda613e03565b5b6000612fe984828501612d52565b91505092915050565b60006020828403121561300857613007613e03565b5b600061301684828501612d67565b91505092915050565b60006020828403121561303557613034613e03565b5b600082013567ffffffffffffffff81111561305357613052613dfe565b5b61305f84828501612daa565b91505092915050565b60006020828403121561307e5761307d613e03565b5b600061308c84828501612dd8565b91505092915050565b6000602082840312156130ab576130aa613e03565b5b60006130b984828501612ded565b91505092915050565b60006130ce838361351e565b60208301905092915050565b6130e381613b39565b82525050565b60006130f4826139b8565b6130fe81856139e6565b9350613109836139a8565b8060005b8381101561313a57815161312188826130c2565b975061312c836139d9565b92505060018101905061310d565b5085935050505092915050565b61315081613b4b565b82525050565b6000613161826139c3565b61316b81856139f7565b935061317b818560208601613bca565b61318481613e08565b840191505092915050565b600061319a826139ce565b6131a48185613a08565b93506131b4818560208601613bca565b6131bd81613e08565b840191505092915050565b60006131d3826139ce565b6131dd8185613a19565b93506131ed818560208601613bca565b80840191505092915050565b6000613206601483613a08565b915061321182613e19565b602082019050919050565b6000613229602b83613a08565b915061323482613e42565b604082019050919050565b600061324c603283613a08565b915061325782613e91565b604082019050919050565b600061326f601c83613a08565b915061327a82613ee0565b602082019050919050565b6000613292602f83613a08565b915061329d82613f09565b604082019050919050565b60006132b5602483613a08565b91506132c082613f58565b604082019050919050565b60006132d8601983613a08565b91506132e382613fa7565b602082019050919050565b60006132fb602c83613a08565b915061330682613fd0565b604082019050919050565b600061331e601083613a08565b91506133298261401f565b602082019050919050565b6000613341603883613a08565b915061334c82614048565b604082019050919050565b6000613364602a83613a08565b915061336f82614097565b604082019050919050565b6000613387602983613a08565b9150613392826140e6565b604082019050919050565b60006133aa601883613a08565b91506133b582614135565b602082019050919050565b60006133cd602083613a08565b91506133d88261415e565b602082019050919050565b60006133f0602c83613a08565b91506133fb82614187565b604082019050919050565b6000613413602983613a08565b915061341e826141d6565b604082019050919050565b6000613436602f83613a08565b915061344182614225565b604082019050919050565b6000613459602483613a08565b915061346482614274565b604082019050919050565b600061347c602183613a08565b9150613487826142c3565b604082019050919050565b600061349f601f83613a08565b91506134aa82614312565b602082019050919050565b60006134c2603183613a08565b91506134cd8261433b565b604082019050919050565b60006134e5602c83613a08565b91506134f08261438a565b604082019050919050565b6000613508601483613a08565b9150613513826143d9565b602082019050919050565b61352781613bb1565b82525050565b61353681613bb1565b82525050565b600061354882856131c8565b915061355482846131c8565b91508190509392505050565b600060208201905061357560008301846130da565b92915050565b600060808201905061359060008301876130da565b61359d60208301866130da565b6135aa604083018561352d565b81810360608301526135bc8184613156565b905095945050505050565b600060208201905081810360008301526135e181846130e9565b905092915050565b60006020820190506135fe6000830184613147565b92915050565b6000602082019050818103600083015261361e818461318f565b905092915050565b6000602082019050818103600083015261363f816131f9565b9050919050565b6000602082019050818103600083015261365f8161321c565b9050919050565b6000602082019050818103600083015261367f8161323f565b9050919050565b6000602082019050818103600083015261369f81613262565b9050919050565b600060208201905081810360008301526136bf81613285565b9050919050565b600060208201905081810360008301526136df816132a8565b9050919050565b600060208201905081810360008301526136ff816132cb565b9050919050565b6000602082019050818103600083015261371f816132ee565b9050919050565b6000602082019050818103600083015261373f81613311565b9050919050565b6000602082019050818103600083015261375f81613334565b9050919050565b6000602082019050818103600083015261377f81613357565b9050919050565b6000602082019050818103600083015261379f8161337a565b9050919050565b600060208201905081810360008301526137bf8161339d565b9050919050565b600060208201905081810360008301526137df816133c0565b9050919050565b600060208201905081810360008301526137ff816133e3565b9050919050565b6000602082019050818103600083015261381f81613406565b9050919050565b6000602082019050818103600083015261383f81613429565b9050919050565b6000602082019050818103600083015261385f8161344c565b9050919050565b6000602082019050818103600083015261387f8161346f565b9050919050565b6000602082019050818103600083015261389f81613492565b9050919050565b600060208201905081810360008301526138bf816134b5565b9050919050565b600060208201905081810360008301526138df816134d8565b9050919050565b600060208201905081810360008301526138ff816134fb565b9050919050565b600060208201905061391b600083018461352d565b92915050565b600061392b61393c565b90506139378282613c2f565b919050565b6000604051905090565b600067ffffffffffffffff82111561396157613960613dc5565b5b61396a82613e08565b9050602081019050919050565b600067ffffffffffffffff82111561399257613991613dc5565b5b61399b82613e08565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a2f82613bb1565b9150613a3a83613bb1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a6f57613a6e613cda565b5b828201905092915050565b6000613a8582613bb1565b9150613a9083613bb1565b925082613aa057613a9f613d09565b5b828204905092915050565b6000613ab682613bb1565b9150613ac183613bb1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613afa57613af9613cda565b5b828202905092915050565b6000613b1082613bb1565b9150613b1b83613bb1565b925082821015613b2e57613b2d613cda565b5b828203905092915050565b6000613b4482613b91565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613be8578082015181840152602081019050613bcd565b83811115613bf7576000848401525b50505050565b60006002820490506001821680613c1557607f821691505b60208210811415613c2957613c28613d38565b5b50919050565b613c3882613e08565b810181811067ffffffffffffffff82111715613c5757613c56613dc5565b5b80604052505050565b6000613c6b82613bb1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c9e57613c9d613cda565b5b600182019050919050565b6000613cb482613bb1565b9150613cbf83613bb1565b925082613ccf57613cce613d09565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f43727970746f57697a617264733a2063616c6c6572206973206e6f74206f776e60008201527f6572206e6f7220617070726f7665640000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732073656e742e0000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f43616e6e6f74206275792074686174206d616e792077697a617264732061742060008201527f6f6e636500000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682077697a61726473206c656674206f6e2073616c6500600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f43616e6e6f742062757920302077697a61726473000000000000000000000000600082015250565b61440b81613b39565b811461441657600080fd5b50565b61442281613b4b565b811461442d57600080fd5b50565b61443981613b57565b811461444457600080fd5b50565b61445081613b83565b811461445b57600080fd5b50565b61446781613bb1565b811461447257600080fd5b5056fea264697066735822122069edad65456ccc89c2bb8a4512fa358e26426080bc5eb4ced9a8ea4f4c18e66f64736f6c63430008060033

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.