ETH Price: $3,155.03 (+1.13%)
Gas: 2 Gwei

Token

HYPE ALIENS (HYPEALIENS)
 

Overview

Max Total Supply

1,085 HYPEALIENS

Holders

682

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 HYPEALIENS
0x39e89e9bd3edb99795864e0088a5e0b2fbcee0e8
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:
HYPEALIENS

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : HYPEALIENS.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

contract HYPEALIENS is ERC721Enumerable, Ownable, ReentrancyGuard {
    using Strings for uint256;

    address constant team_address = 0x3910eBb641Be493ab1b166149645aCc3564F8dB2;

    uint256 public MAXIMUM_SUPPLY = 10000;

    uint256 public constant MAXIMUM_MINT_WL = 3;
    uint256 public constant MAXIMUM_MINT_RAFFLE = 3;

    uint256 WL_PRICE = 0.15 ether;
    uint256 RAFFLE_PRICE = 0.15 ether;

    uint256 public giftCount;

    bytes32 public merkleRoot;

    string public baseURI;
    string public notRevealedUri;

    bool public isRevealed = false;

    enum WorkflowStatus {
        Before,
        Presale,
        Sale,
        SoldOut,
        Reveal
    }

    WorkflowStatus public workflow;

    mapping(address => uint256) public tokensPerWalletRaffle;
    mapping(address => uint256) public tokensPerWalletWhitelist;

    event WorkflowStatusChange(WorkflowStatus previousStatus, WorkflowStatus newStatus);

    constructor(
        string memory _initBaseURI,
        string memory _initNotRevealedUri
    ) ERC721("HYPE ALIENS", "HYPEALIENS") {
        workflow = WorkflowStatus.Before;
        setBaseURI(_initBaseURI);
        setNotRevealedURI(_initNotRevealedUri);
    }

    function privateSalePrice() public view returns (uint256) {
        return WL_PRICE;
    }

    function getPrice() public view returns (uint256) {
        return RAFFLE_PRICE;
    }

    function getSaleStatus() public view returns (WorkflowStatus) {
        return workflow;
    }

    function hasWhitelist(bytes32[] calldata _merkleProof) public view returns (bool) {
      bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
      return MerkleProof.verify(_merkleProof, merkleRoot, leaf);
    }

    function presaleMint(uint256 ammount, bytes32[] calldata _merkleProof) external payable nonReentrant
    {
        uint256 supply = totalSupply();
        uint256 price = privateSalePrice();

        require(workflow == WorkflowStatus.Presale, "HYPE ALIENS: Presale is not started yet!");

        require(tokensPerWalletWhitelist[msg.sender] + ammount <= MAXIMUM_MINT_WL, string(abi.encodePacked("HYPE ALIENS: Presale mint is ", MAXIMUM_MINT_WL.toString(), " token only.")));

        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), "HYPE ALIENS: You are not whitelisted");

        require(msg.value >= price * ammount, "HYPE ALIENS: Not enough ETH sent");

        tokensPerWalletWhitelist[msg.sender] += ammount;
        for (uint256 i = 1; i <= ammount; i++) {
            _safeMint(msg.sender, supply + i);
        }
    }

    function raffleMint(uint256 ammount) public payable nonReentrant {
        uint256 supply = totalSupply();
        uint256 price = getPrice();

        require(workflow != WorkflowStatus.SoldOut, "HYPE ALIENS: SOLD OUT!");
        require(workflow == WorkflowStatus.Sale, "HYPE ALIENS: Raffle is not started yet");
        require(msg.value >= price * ammount, "HYPE ALIENS: Not enough ETH sent");
        require(ammount <= MAXIMUM_MINT_RAFFLE, string(abi.encodePacked("HYPE ALIENS: You can only mint up to ", MAXIMUM_MINT_RAFFLE.toString(), " token at once!")));
        require(tokensPerWalletRaffle[msg.sender] + ammount <= MAXIMUM_MINT_RAFFLE, string(abi.encodePacked("HYPE ALIENS: You cant mint more than ", MAXIMUM_MINT_RAFFLE.toString(), " tokens!")));
        require(supply + ammount <= MAXIMUM_SUPPLY, "HYPE ALIENS: Mint too large!");

        tokensPerWalletRaffle[msg.sender] += ammount;

        if (supply + ammount == MAXIMUM_SUPPLY) {
            workflow = WorkflowStatus.SoldOut;
        }

        for (uint256 i = 1; i <= ammount; i++) {
            _safeMint(msg.sender, supply + i);
        }
    }

    function gift(uint256 _mintAmount) public onlyOwner {
        uint256 supply = totalSupply();
        require(supply + _mintAmount <= MAXIMUM_SUPPLY, "The presale is not endend yet!");
        require(_mintAmount > 0, "need to mint at least 1 NFT");
        require(giftCount + _mintAmount <= MAXIMUM_SUPPLY, "max NFT limit exceeded");
        uint256 initial = 1;
        uint256 condition = _mintAmount;
        giftCount += _mintAmount;
        for (uint256 i = initial; i <= condition; i++) {
            _safeMint(msg.sender, supply + i);
        }
    }

    function restart() external onlyOwner {
        workflow = WorkflowStatus.Before;
    }

    function setUpPresale() external onlyOwner {
        workflow = WorkflowStatus.Presale;
    }

    function setUpSale() external onlyOwner {
        require(workflow == WorkflowStatus.Presale, "HYPE ALIENS: Unauthorized Transaction");
        workflow = WorkflowStatus.Sale;
        emit WorkflowStatusChange(WorkflowStatus.Presale, WorkflowStatus.Sale);
    }

    function setMerkleRoot(bytes32 root) public onlyOwner {
        merkleRoot = root;
    }

    function reveal() public onlyOwner {
        isRevealed = true;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

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

    function updateWLPrice(uint256 _newPrice) public onlyOwner {
        WL_PRICE = _newPrice;
    }

    function updateRafflePrice(uint256 _newPrice) public onlyOwner {
        RAFFLE_PRICE = _newPrice;
    }

    function updateSupply(uint256 _newSupply) public onlyOwner {
        MAXIMUM_SUPPLY = _newSupply;
    }

    function withdraw() public onlyOwner {
      uint256 balance = address(this).balance;
      payable(team_address).transfer(balance);
    }

    function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) {
        if (isRevealed == false) {
            return notRevealedUri;
        }

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

}

File 2 of 15 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

File 3 of 15 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 5 of 15 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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

File 6 of 15 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

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

pragma solidity ^0.8.0;

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

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, 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 8 of 15 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 9 of 15 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"enum HYPEALIENS.WorkflowStatus","name":"previousStatus","type":"uint8"},{"indexed":false,"internalType":"enum HYPEALIENS.WorkflowStatus","name":"newStatus","type":"uint8"}],"name":"WorkflowStatusChange","type":"event"},{"inputs":[],"name":"MAXIMUM_MINT_RAFFLE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAXIMUM_MINT_WL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAXIMUM_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSaleStatus","outputs":[{"internalType":"enum HYPEALIENS.WorkflowStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"giftCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"hasWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"ammount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"privateSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"ammount","type":"uint256"}],"name":"raffleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"restart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setUpPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setUpSale","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":"","type":"address"}],"name":"tokensPerWalletRaffle","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"tokensPerWalletWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"updateRafflePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"updateSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"updateWLPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"workflow","outputs":[{"internalType":"enum HYPEALIENS.WorkflowStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"}]

6080604052612710600c55670214e8348c4f0000600d55670214e8348c4f0000600e556000601360006101000a81548160ff0219169083151502179055503480156200004a57600080fd5b50604051620062033803806200620383398181016040528101906200007091906200050c565b6040518060400160405280600b81526020017f4859504520414c49454e530000000000000000000000000000000000000000008152506040518060400160405280600a81526020017f48595045414c49454e53000000000000000000000000000000000000000000008152508160009080519060200190620000f4929190620003de565b5080600190805190602001906200010d929190620003de565b50505062000130620001246200019060201b60201c565b6200019860201b60201c565b6001600b819055506000601360016101000a81548160ff02191690836004811115620001615762000160620006ec565b5b021790555062000177826200025e60201b60201c565b62000188816200030960201b60201c565b5050620007c7565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200026e6200019060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000294620003b460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002ed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002e490620005b8565b60405180910390fd5b806011908051906020019062000305929190620003de565b5050565b620003196200019060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200033f620003b460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000398576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200038f90620005b8565b60405180910390fd5b8060129080519060200190620003b0929190620003de565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003ec9062000680565b90600052602060002090601f0160209004810192826200041057600085556200045c565b82601f106200042b57805160ff19168380011785556200045c565b828001600101855582156200045c579182015b828111156200045b5782518255916020019190600101906200043e565b5b5090506200046b91906200046f565b5090565b5b808211156200048a57600081600090555060010162000470565b5090565b6000620004a56200049f8462000603565b620005da565b905082815260208101848484011115620004c457620004c36200077e565b5b620004d18482856200064a565b509392505050565b600082601f830112620004f157620004f062000779565b5b8151620005038482602086016200048e565b91505092915050565b6000806040838503121562000526576200052562000788565b5b600083015167ffffffffffffffff81111562000547576200054662000783565b5b6200055585828601620004d9565b925050602083015167ffffffffffffffff81111562000579576200057862000783565b5b6200058785828601620004d9565b9150509250929050565b6000620005a060208362000639565b9150620005ad826200079e565b602082019050919050565b60006020820190508181036000830152620005d38162000591565b9050919050565b6000620005e6620005f9565b9050620005f48282620006b6565b919050565b6000604051905090565b600067ffffffffffffffff8211156200062157620006206200074a565b5b6200062c826200078d565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200066a5780820151818401526020810190506200064d565b838111156200067a576000848401525b50505050565b600060028204905060018216806200069957607f821691505b60208210811415620006b057620006af6200071b565b5b50919050565b620006c1826200078d565b810181811067ffffffffffffffff82111715620006e357620006e26200074a565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b615a2c80620007d76000396000f3fe6080604052600436106102935760003560e01c80636940bec11161015a578063a3344125116100c1578063e549fe771161007a578063e549fe77146109b0578063e985e9c5146109d9578063ed70037414610a16578063f2c4ce1e14610a41578063f2fde38b14610a6a578063f560d41514610a9357610293565b8063a3344125146108c3578063a475b5dd146108ee578063b298247e14610905578063b88d4fde1461092e578063c87b56dd14610957578063e3e1e8ef1461099457610293565b80638c3c4b34116101135780638c3c4b34146107c35780638da5cb5b146107ee57806395d89b411461081957806395ee0a1a1461084457806398d5fdca1461086f578063a22cb4651461089a57610293565b80636940bec1146106b55780636bd08049146106f25780636c0360eb1461071b57806370a0823114610746578063715018a6146107835780637cb647591461079a57610293565b80632a6d210d116101fe57806342842e0e116101b757806342842e0e146105935780634f6ccce7146105bc57806354214f69146105f957806355f804b3146106245780635afbacae1461064d5780636352211e1461067857610293565b80632a6d210d146104905780632eb4a7ab146104ac5780632f745c59146104d75780633ccfd60b146105145780633d0c49241461052b578063422129531461055657610293565b806318160ddd1161025057806318160ddd146103a85780631ef3755d146103d35780631f2898c3146103ea578063202648ef1461040157806323b872dd1461043e578063273ca8d51461046757610293565b806301ffc9a71461029857806306fdde03146102d5578063081812fc14610300578063081c8c441461033d578063095ea7b31461036857806315c316fc14610391575b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba9190613efe565b610abe565b6040516102cc9190614777565b60405180910390f35b3480156102e157600080fd5b506102ea610b38565b6040516102f791906147f1565b60405180910390f35b34801561030c57600080fd5b5061032760048036038101906103229190613fa1565b610bca565b6040516103349190614710565b60405180910390f35b34801561034957600080fd5b50610352610c4f565b60405161035f91906147f1565b60405180910390f35b34801561037457600080fd5b5061038f600480360381019061038a9190613e44565b610cdd565b005b34801561039d57600080fd5b506103a6610df5565b005b3480156103b457600080fd5b506103bd610e9e565b6040516103ca9190614b93565b60405180910390f35b3480156103df57600080fd5b506103e8610eab565b005b3480156103f657600080fd5b506103ff610f54565b005b34801561040d57600080fd5b5061042860048036038101906104239190613cc1565b6110ae565b6040516104359190614b93565b60405180910390f35b34801561044a57600080fd5b5061046560048036038101906104609190613d2e565b6110c6565b005b34801561047357600080fd5b5061048e60048036038101906104899190613fa1565b611126565b005b6104aa60048036038101906104a59190613fa1565b6111ac565b005b3480156104b857600080fd5b506104c16115a2565b6040516104ce9190614792565b60405180910390f35b3480156104e357600080fd5b506104fe60048036038101906104f99190613e44565b6115a8565b60405161050b9190614b93565b60405180910390f35b34801561052057600080fd5b5061052961164d565b005b34801561053757600080fd5b5061054061172c565b60405161054d9190614b93565b60405180910390f35b34801561056257600080fd5b5061057d60048036038101906105789190613cc1565b611732565b60405161058a9190614b93565b60405180910390f35b34801561059f57600080fd5b506105ba60048036038101906105b59190613d2e565b61174a565b005b3480156105c857600080fd5b506105e360048036038101906105de9190613fa1565b61176a565b6040516105f09190614b93565b60405180910390f35b34801561060557600080fd5b5061060e6117db565b60405161061b9190614777565b60405180910390f35b34801561063057600080fd5b5061064b60048036038101906106469190613f58565b6117ee565b005b34801561065957600080fd5b50610662611884565b60405161066f9190614b93565b60405180910390f35b34801561068457600080fd5b5061069f600480360381019061069a9190613fa1565b611889565b6040516106ac9190614710565b60405180910390f35b3480156106c157600080fd5b506106dc60048036038101906106d79190613e84565b61193b565b6040516106e99190614777565b60405180910390f35b3480156106fe57600080fd5b5061071960048036038101906107149190613fa1565b6119be565b005b34801561072757600080fd5b50610730611a44565b60405161073d91906147f1565b60405180910390f35b34801561075257600080fd5b5061076d60048036038101906107689190613cc1565b611ad2565b60405161077a9190614b93565b60405180910390f35b34801561078f57600080fd5b50610798611b8a565b005b3480156107a657600080fd5b506107c160048036038101906107bc9190613ed1565b611c12565b005b3480156107cf57600080fd5b506107d8611c98565b6040516107e591906147ad565b60405180910390f35b3480156107fa57600080fd5b50610803611caf565b6040516108109190614710565b60405180910390f35b34801561082557600080fd5b5061082e611cd9565b60405161083b91906147f1565b60405180910390f35b34801561085057600080fd5b50610859611d6b565b6040516108669190614b93565b60405180910390f35b34801561087b57600080fd5b50610884611d70565b6040516108919190614b93565b60405180910390f35b3480156108a657600080fd5b506108c160048036038101906108bc9190613e04565b611d7a565b005b3480156108cf57600080fd5b506108d8611d90565b6040516108e591906147ad565b60405180910390f35b3480156108fa57600080fd5b50610903611da3565b005b34801561091157600080fd5b5061092c60048036038101906109279190613fa1565b611e3c565b005b34801561093a57600080fd5b5061095560048036038101906109509190613d81565b612009565b005b34801561096357600080fd5b5061097e60048036038101906109799190613fa1565b61206b565b60405161098b91906147f1565b60405180910390f35b6109ae60048036038101906109a99190613fce565b6121fc565b005b3480156109bc57600080fd5b506109d760048036038101906109d29190613fa1565b612535565b005b3480156109e557600080fd5b50610a0060048036038101906109fb9190613cee565b6125bb565b604051610a0d9190614777565b60405180910390f35b348015610a2257600080fd5b50610a2b61264f565b604051610a389190614b93565b60405180910390f35b348015610a4d57600080fd5b50610a686004803603810190610a639190613f58565b612655565b005b348015610a7657600080fd5b50610a916004803603810190610a8c9190613cc1565b6126eb565b005b348015610a9f57600080fd5b50610aa86127e3565b604051610ab59190614b93565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b315750610b30826127ed565b5b9050919050565b606060008054610b4790614e72565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7390614e72565b8015610bc05780601f10610b9557610100808354040283529160200191610bc0565b820191906000526020600020905b815481529060010190602001808311610ba357829003601f168201915b5050505050905090565b6000610bd5826128cf565b610c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0b906149f3565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60128054610c5c90614e72565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8890614e72565b8015610cd55780601f10610caa57610100808354040283529160200191610cd5565b820191906000526020600020905b815481529060010190602001808311610cb857829003601f168201915b505050505081565b6000610ce882611889565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5090614a73565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d7861293b565b73ffffffffffffffffffffffffffffffffffffffff161480610da75750610da681610da161293b565b6125bb565b5b610de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddd90614913565b60405180910390fd5b610df08383612943565b505050565b610dfd61293b565b73ffffffffffffffffffffffffffffffffffffffff16610e1b611caf565b73ffffffffffffffffffffffffffffffffffffffff1614610e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6890614a13565b60405180910390fd5b6001601360016101000a81548160ff02191690836004811115610e9757610e96614fdb565b5b0217905550565b6000600880549050905090565b610eb361293b565b73ffffffffffffffffffffffffffffffffffffffff16610ed1611caf565b73ffffffffffffffffffffffffffffffffffffffff1614610f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1e90614a13565b60405180910390fd5b6000601360016101000a81548160ff02191690836004811115610f4d57610f4c614fdb565b5b0217905550565b610f5c61293b565b73ffffffffffffffffffffffffffffffffffffffff16610f7a611caf565b73ffffffffffffffffffffffffffffffffffffffff1614610fd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc790614a13565b60405180910390fd5b60016004811115610fe457610fe3614fdb565b5b601360019054906101000a900460ff16600481111561100657611005614fdb565b5b14611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d90614b73565b60405180910390fd5b6002601360016101000a81548160ff0219169083600481111561106c5761106b614fdb565b5b02179055507f0a97a4ee45751e2abf3e4fc8946939630b11b371ea8ae39ccdc3056e98f5cc3f600160026040516110a49291906147c8565b60405180910390a1565b60146020528060005260406000206000915090505481565b6110d76110d161293b565b826129fc565b611116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110d90614ab3565b60405180910390fd5b611121838383612ada565b505050565b61112e61293b565b73ffffffffffffffffffffffffffffffffffffffff1661114c611caf565b73ffffffffffffffffffffffffffffffffffffffff16146111a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119990614a13565b60405180910390fd5b80600e8190555050565b6002600b5414156111f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e990614af3565b60405180910390fd5b6002600b819055506000611204610e9e565b90506000611210611d70565b90506003600481111561122657611225614fdb565b5b601360019054906101000a900460ff16600481111561124857611247614fdb565b5b1415611289576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128090614b33565b60405180910390fd5b6002600481111561129d5761129c614fdb565b5b601360019054906101000a900460ff1660048111156112bf576112be614fdb565b5b146112ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f690614a33565b60405180910390fd5b828161130b9190614cff565b34101561134d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134490614a93565b60405180910390fd5b600383111561135c6003612d36565b60405160200161136c91906146b6565b604051602081830303815290604052906113bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b391906147f1565b60405180910390fd5b50600383601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461140a9190614c78565b11156114166003612d36565b6040516020016114269190614689565b60405160208183030381529060405290611476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146d91906147f1565b60405180910390fd5b50600c5483836114869190614c78565b11156114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be90614933565b60405180910390fd5b82601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115169190614c78565b92505081905550600c54838361152c9190614c78565b141561155e576003601360016101000a81548160ff0219169083600481111561155857611557614fdb565b5b02179055505b6000600190505b8381116115945761158133828561157c9190614c78565b612e97565b808061158c90614ed5565b915050611565565b5050506001600b8190555050565b60105481565b60006115b383611ad2565b82106115f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115eb90614833565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61165561293b565b73ffffffffffffffffffffffffffffffffffffffff16611673611caf565b73ffffffffffffffffffffffffffffffffffffffff16146116c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c090614a13565b60405180910390fd5b6000479050733910ebb641be493ab1b166149645acc3564f8db273ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611728573d6000803e3d6000fd5b5050565b600c5481565b60156020528060005260406000206000915090505481565b61176583838360405180602001604052806000815250612009565b505050565b6000611774610e9e565b82106117b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ac90614ad3565b60405180910390fd5b600882815481106117c9576117c8615068565b5b90600052602060002001549050919050565b601360009054906101000a900460ff1681565b6117f661293b565b73ffffffffffffffffffffffffffffffffffffffff16611814611caf565b73ffffffffffffffffffffffffffffffffffffffff161461186a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186190614a13565b60405180910390fd5b8060119080519060200190611880929190613a6a565b5050565b600381565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611932576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192990614973565b60405180910390fd5b80915050919050565b6000803360405160200161194f9190614613565b6040516020818303038152906040528051906020012090506119b5848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060105483612eb5565b91505092915050565b6119c661293b565b73ffffffffffffffffffffffffffffffffffffffff166119e4611caf565b73ffffffffffffffffffffffffffffffffffffffff1614611a3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3190614a13565b60405180910390fd5b80600c8190555050565b60118054611a5190614e72565b80601f0160208091040260200160405190810160405280929190818152602001828054611a7d90614e72565b8015611aca5780601f10611a9f57610100808354040283529160200191611aca565b820191906000526020600020905b815481529060010190602001808311611aad57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3a90614953565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611b9261293b565b73ffffffffffffffffffffffffffffffffffffffff16611bb0611caf565b73ffffffffffffffffffffffffffffffffffffffff1614611c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfd90614a13565b60405180910390fd5b611c106000612ecc565b565b611c1a61293b565b73ffffffffffffffffffffffffffffffffffffffff16611c38611caf565b73ffffffffffffffffffffffffffffffffffffffff1614611c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8590614a13565b60405180910390fd5b8060108190555050565b6000601360019054906101000a900460ff16905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611ce890614e72565b80601f0160208091040260200160405190810160405280929190818152602001828054611d1490614e72565b8015611d615780601f10611d3657610100808354040283529160200191611d61565b820191906000526020600020905b815481529060010190602001808311611d4457829003601f168201915b5050505050905090565b600381565b6000600e54905090565b611d8c611d8561293b565b8383612f92565b5050565b601360019054906101000a900460ff1681565b611dab61293b565b73ffffffffffffffffffffffffffffffffffffffff16611dc9611caf565b73ffffffffffffffffffffffffffffffffffffffff1614611e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1690614a13565b60405180910390fd5b6001601360006101000a81548160ff021916908315150217905550565b611e4461293b565b73ffffffffffffffffffffffffffffffffffffffff16611e62611caf565b73ffffffffffffffffffffffffffffffffffffffff1614611eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eaf90614a13565b60405180910390fd5b6000611ec2610e9e565b9050600c548282611ed39190614c78565b1115611f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0b906149b3565b60405180910390fd5b60008211611f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4e90614b53565b60405180910390fd5b600c5482600f54611f689190614c78565b1115611fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa090614993565b60405180910390fd5b600060019050600083905083600f6000828254611fc69190614c78565b9250508190555060008290505b81811161200257611fef338286611fea9190614c78565b612e97565b8080611ffa90614ed5565b915050611fd3565b5050505050565b61201a61201461293b565b836129fc565b612059576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205090614ab3565b60405180910390fd5b612065848484846130ff565b50505050565b606060001515601360009054906101000a900460ff161515141561211b576012805461209690614e72565b80601f01602080910402602001604051908101604052809291908181526020018280546120c290614e72565b801561210f5780601f106120e45761010080835404028352916020019161210f565b820191906000526020600020905b8154815290600101906020018083116120f257829003601f168201915b505050505090506121f7565b60006011805461212a90614e72565b80601f016020809104026020016040519081016040528092919081815260200182805461215690614e72565b80156121a35780601f10612178576101008083540402835291602001916121a3565b820191906000526020600020905b81548152906001019060200180831161218657829003601f168201915b5050505050905060008151116121c857604051806020016040528060008152506121f3565b806121d284612d36565b6040516020016121e392919061465a565b6040516020818303038152906040525b9150505b919050565b6002600b541415612242576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223990614af3565b60405180910390fd5b6002600b819055506000612254610e9e565b905060006122606127e3565b90506001600481111561227657612275614fdb565b5b601360019054906101000a900460ff16600481111561229857612297614fdb565b5b146122d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cf90614813565b60405180910390fd5b600385601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123259190614c78565b11156123316003612d36565b60405160200161234191906146e3565b60405160208183030381529060405290612391576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238891906147f1565b60405180910390fd5b506000336040516020016123a59190614613565b60405160208183030381529060405280519060200120905061240b858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060105483612eb5565b61244a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244190614b13565b60405180910390fd5b85826124569190614cff565b341015612498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248f90614a93565b60405180910390fd5b85601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124e79190614c78565b925050819055506000600190505b8681116125245761251133828661250c9190614c78565b612e97565b808061251c90614ed5565b9150506124f5565b505050506001600b81905550505050565b61253d61293b565b73ffffffffffffffffffffffffffffffffffffffff1661255b611caf565b73ffffffffffffffffffffffffffffffffffffffff16146125b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a890614a13565b60405180910390fd5b80600d8190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f5481565b61265d61293b565b73ffffffffffffffffffffffffffffffffffffffff1661267b611caf565b73ffffffffffffffffffffffffffffffffffffffff16146126d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c890614a13565b60405180910390fd5b80601290805190602001906126e7929190613a6a565b5050565b6126f361293b565b73ffffffffffffffffffffffffffffffffffffffff16612711611caf565b73ffffffffffffffffffffffffffffffffffffffff1614612767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275e90614a13565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156127d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ce90614873565b60405180910390fd5b6127e081612ecc565b50565b6000600d54905090565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806128b857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806128c857506128c78261315b565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166129b683611889565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612a07826128cf565b612a46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3d906148f3565b60405180910390fd5b6000612a5183611889565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612ac057508373ffffffffffffffffffffffffffffffffffffffff16612aa884610bca565b73ffffffffffffffffffffffffffffffffffffffff16145b80612ad15750612ad081856125bb565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612afa82611889565b73ffffffffffffffffffffffffffffffffffffffff1614612b50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4790614a53565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb7906148b3565b60405180910390fd5b612bcb8383836131c5565b612bd6600082612943565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c269190614d59565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c7d9190614c78565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60606000821415612d7e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e92565b600082905060005b60008214612db0578080612d9990614ed5565b915050600a82612da99190614cce565b9150612d86565b60008167ffffffffffffffff811115612dcc57612dcb615097565b5b6040519080825280601f01601f191660200182016040528015612dfe5781602001600182028036833780820191505090505b5090505b60008514612e8b57600182612e179190614d59565b9150600a85612e269190614f4c565b6030612e329190614c78565b60f81b818381518110612e4857612e47615068565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e849190614cce565b9450612e02565b8093505050505b919050565b612eb18282604051806020016040528060008152506132d9565b5050565b600082612ec28584613334565b1490509392505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff8906148d3565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516130f29190614777565b60405180910390a3505050565b61310a848484612ada565b613116848484846133e7565b613155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314c90614853565b60405180910390fd5b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6131d083838361357e565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156132135761320e81613583565b613252565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146132515761325083826135cc565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132955761329081613739565b6132d4565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146132d3576132d2828261380a565b5b5b505050565b6132e38383613889565b6132f060008484846133e7565b61332f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332690614853565b60405180910390fd5b505050565b60008082905060005b84518110156133dc57600085828151811061335b5761335a615068565b5b6020026020010151905080831161339c57828160405160200161337f92919061462e565b6040516020818303038152906040528051906020012092506133c8565b80836040516020016133af92919061462e565b6040516020818303038152906040528051906020012092505b5080806133d490614ed5565b91505061333d565b508091505092915050565b60006134088473ffffffffffffffffffffffffffffffffffffffff16613a57565b15613571578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261343161293b565b8786866040518563ffffffff1660e01b8152600401613453949392919061472b565b602060405180830381600087803b15801561346d57600080fd5b505af192505050801561349e57506040513d601f19601f8201168201806040525081019061349b9190613f2b565b60015b613521573d80600081146134ce576040519150601f19603f3d011682016040523d82523d6000602084013e6134d3565b606091505b50600081511415613519576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161351090614853565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613576565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016135d984611ad2565b6135e39190614d59565b90506000600760008481526020019081526020016000205490508181146136c8576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061374d9190614d59565b905060006009600084815260200190815260200160002054905060006008838154811061377d5761377c615068565b5b90600052602060002001549050806008838154811061379f5761379e615068565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806137ee576137ed615039565b5b6001900381819060005260206000200160009055905550505050565b600061381583611ad2565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156138f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138f0906149d3565b60405180910390fd5b613902816128cf565b15613942576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161393990614893565b60405180910390fd5b61394e600083836131c5565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461399e9190614c78565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613a7690614e72565b90600052602060002090601f016020900481019282613a985760008555613adf565b82601f10613ab157805160ff1916838001178555613adf565b82800160010185558215613adf579182015b82811115613ade578251825591602001919060010190613ac3565b5b509050613aec9190613af0565b5090565b5b80821115613b09576000816000905550600101613af1565b5090565b6000613b20613b1b84614bd3565b614bae565b905082815260208101848484011115613b3c57613b3b6150d5565b5b613b47848285614e30565b509392505050565b6000613b62613b5d84614c04565b614bae565b905082815260208101848484011115613b7e57613b7d6150d5565b5b613b89848285614e30565b509392505050565b600081359050613ba081615983565b92915050565b60008083601f840112613bbc57613bbb6150cb565b5b8235905067ffffffffffffffff811115613bd957613bd86150c6565b5b602083019150836020820283011115613bf557613bf46150d0565b5b9250929050565b600081359050613c0b8161599a565b92915050565b600081359050613c20816159b1565b92915050565b600081359050613c35816159c8565b92915050565b600081519050613c4a816159c8565b92915050565b600082601f830112613c6557613c646150cb565b5b8135613c75848260208601613b0d565b91505092915050565b600082601f830112613c9357613c926150cb565b5b8135613ca3848260208601613b4f565b91505092915050565b600081359050613cbb816159df565b92915050565b600060208284031215613cd757613cd66150df565b5b6000613ce584828501613b91565b91505092915050565b60008060408385031215613d0557613d046150df565b5b6000613d1385828601613b91565b9250506020613d2485828601613b91565b9150509250929050565b600080600060608486031215613d4757613d466150df565b5b6000613d5586828701613b91565b9350506020613d6686828701613b91565b9250506040613d7786828701613cac565b9150509250925092565b60008060008060808587031215613d9b57613d9a6150df565b5b6000613da987828801613b91565b9450506020613dba87828801613b91565b9350506040613dcb87828801613cac565b925050606085013567ffffffffffffffff811115613dec57613deb6150da565b5b613df887828801613c50565b91505092959194509250565b60008060408385031215613e1b57613e1a6150df565b5b6000613e2985828601613b91565b9250506020613e3a85828601613bfc565b9150509250929050565b60008060408385031215613e5b57613e5a6150df565b5b6000613e6985828601613b91565b9250506020613e7a85828601613cac565b9150509250929050565b60008060208385031215613e9b57613e9a6150df565b5b600083013567ffffffffffffffff811115613eb957613eb86150da565b5b613ec585828601613ba6565b92509250509250929050565b600060208284031215613ee757613ee66150df565b5b6000613ef584828501613c11565b91505092915050565b600060208284031215613f1457613f136150df565b5b6000613f2284828501613c26565b91505092915050565b600060208284031215613f4157613f406150df565b5b6000613f4f84828501613c3b565b91505092915050565b600060208284031215613f6e57613f6d6150df565b5b600082013567ffffffffffffffff811115613f8c57613f8b6150da565b5b613f9884828501613c7e565b91505092915050565b600060208284031215613fb757613fb66150df565b5b6000613fc584828501613cac565b91505092915050565b600080600060408486031215613fe757613fe66150df565b5b6000613ff586828701613cac565b935050602084013567ffffffffffffffff811115614016576140156150da565b5b61402286828701613ba6565b92509250509250925092565b61403781614d8d565b82525050565b61404e61404982614d8d565b614f1e565b82525050565b61405d81614d9f565b82525050565b61406c81614dab565b82525050565b61408361407e82614dab565b614f30565b82525050565b600061409482614c35565b61409e8185614c4b565b93506140ae818560208601614e3f565b6140b7816150e4565b840191505092915050565b6140cb81614e1e565b82525050565b60006140dc82614c40565b6140e68185614c5c565b93506140f6818560208601614e3f565b6140ff816150e4565b840191505092915050565b600061411582614c40565b61411f8185614c6d565b935061412f818560208601614e3f565b80840191505092915050565b6000614148602583614c6d565b915061415382615102565b602582019050919050565b600061416b602883614c5c565b915061417682615151565b604082019050919050565b600061418e602b83614c5c565b9150614199826151a0565b604082019050919050565b60006141b1603283614c5c565b91506141bc826151ef565b604082019050919050565b60006141d4602683614c5c565b91506141df8261523e565b604082019050919050565b60006141f7601c83614c5c565b91506142028261528d565b602082019050919050565b600061421a600f83614c6d565b9150614225826152b6565b600f82019050919050565b600061423d600c83614c6d565b9150614248826152df565b600c82019050919050565b6000614260602483614c5c565b915061426b82615308565b604082019050919050565b6000614283601983614c5c565b915061428e82615357565b602082019050919050565b60006142a6602c83614c5c565b91506142b182615380565b604082019050919050565b60006142c9603883614c5c565b91506142d4826153cf565b604082019050919050565b60006142ec601c83614c5c565b91506142f78261541e565b602082019050919050565b600061430f602a83614c5c565b915061431a82615447565b604082019050919050565b6000614332602983614c5c565b915061433d82615496565b604082019050919050565b6000614355602583614c6d565b9150614360826154e5565b602582019050919050565b6000614378601683614c5c565b915061438382615534565b602082019050919050565b600061439b601e83614c5c565b91506143a68261555d565b602082019050919050565b60006143be602083614c5c565b91506143c982615586565b602082019050919050565b60006143e1602c83614c5c565b91506143ec826155af565b604082019050919050565b6000614404600583614c6d565b915061440f826155fe565b600582019050919050565b6000614427602083614c5c565b915061443282615627565b602082019050919050565b600061444a602683614c5c565b915061445582615650565b604082019050919050565b600061446d601d83614c6d565b91506144788261569f565b601d82019050919050565b6000614490602983614c5c565b915061449b826156c8565b604082019050919050565b60006144b3602183614c5c565b91506144be82615717565b604082019050919050565b60006144d6602083614c5c565b91506144e182615766565b602082019050919050565b60006144f9600883614c6d565b91506145048261578f565b600882019050919050565b600061451c603183614c5c565b9150614527826157b8565b604082019050919050565b600061453f602c83614c5c565b915061454a82615807565b604082019050919050565b6000614562601f83614c5c565b915061456d82615856565b602082019050919050565b6000614585602483614c5c565b91506145908261587f565b604082019050919050565b60006145a8601683614c5c565b91506145b3826158ce565b602082019050919050565b60006145cb601b83614c5c565b91506145d6826158f7565b602082019050919050565b60006145ee602583614c5c565b91506145f982615920565b604082019050919050565b61460d81614e14565b82525050565b600061461f828461403d565b60148201915081905092915050565b600061463a8285614072565b60208201915061464a8284614072565b6020820191508190509392505050565b6000614666828561410a565b9150614672828461410a565b915061467d826143f7565b91508190509392505050565b60006146948261413b565b91506146a0828461410a565b91506146ab826144ec565b915081905092915050565b60006146c182614348565b91506146cd828461410a565b91506146d88261420d565b915081905092915050565b60006146ee82614460565b91506146fa828461410a565b915061470582614230565b915081905092915050565b6000602082019050614725600083018461402e565b92915050565b6000608082019050614740600083018761402e565b61474d602083018661402e565b61475a6040830185614604565b818103606083015261476c8184614089565b905095945050505050565b600060208201905061478c6000830184614054565b92915050565b60006020820190506147a76000830184614063565b92915050565b60006020820190506147c260008301846140c2565b92915050565b60006040820190506147dd60008301856140c2565b6147ea60208301846140c2565b9392505050565b6000602082019050818103600083015261480b81846140d1565b905092915050565b6000602082019050818103600083015261482c8161415e565b9050919050565b6000602082019050818103600083015261484c81614181565b9050919050565b6000602082019050818103600083015261486c816141a4565b9050919050565b6000602082019050818103600083015261488c816141c7565b9050919050565b600060208201905081810360008301526148ac816141ea565b9050919050565b600060208201905081810360008301526148cc81614253565b9050919050565b600060208201905081810360008301526148ec81614276565b9050919050565b6000602082019050818103600083015261490c81614299565b9050919050565b6000602082019050818103600083015261492c816142bc565b9050919050565b6000602082019050818103600083015261494c816142df565b9050919050565b6000602082019050818103600083015261496c81614302565b9050919050565b6000602082019050818103600083015261498c81614325565b9050919050565b600060208201905081810360008301526149ac8161436b565b9050919050565b600060208201905081810360008301526149cc8161438e565b9050919050565b600060208201905081810360008301526149ec816143b1565b9050919050565b60006020820190508181036000830152614a0c816143d4565b9050919050565b60006020820190508181036000830152614a2c8161441a565b9050919050565b60006020820190508181036000830152614a4c8161443d565b9050919050565b60006020820190508181036000830152614a6c81614483565b9050919050565b60006020820190508181036000830152614a8c816144a6565b9050919050565b60006020820190508181036000830152614aac816144c9565b9050919050565b60006020820190508181036000830152614acc8161450f565b9050919050565b60006020820190508181036000830152614aec81614532565b9050919050565b60006020820190508181036000830152614b0c81614555565b9050919050565b60006020820190508181036000830152614b2c81614578565b9050919050565b60006020820190508181036000830152614b4c8161459b565b9050919050565b60006020820190508181036000830152614b6c816145be565b9050919050565b60006020820190508181036000830152614b8c816145e1565b9050919050565b6000602082019050614ba86000830184614604565b92915050565b6000614bb8614bc9565b9050614bc48282614ea4565b919050565b6000604051905090565b600067ffffffffffffffff821115614bee57614bed615097565b5b614bf7826150e4565b9050602081019050919050565b600067ffffffffffffffff821115614c1f57614c1e615097565b5b614c28826150e4565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614c8382614e14565b9150614c8e83614e14565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614cc357614cc2614f7d565b5b828201905092915050565b6000614cd982614e14565b9150614ce483614e14565b925082614cf457614cf3614fac565b5b828204905092915050565b6000614d0a82614e14565b9150614d1583614e14565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614d4e57614d4d614f7d565b5b828202905092915050565b6000614d6482614e14565b9150614d6f83614e14565b925082821015614d8257614d81614f7d565b5b828203905092915050565b6000614d9882614df4565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050614def8261596f565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000614e2982614de1565b9050919050565b82818337600083830152505050565b60005b83811015614e5d578082015181840152602081019050614e42565b83811115614e6c576000848401525b50505050565b60006002820490506001821680614e8a57607f821691505b60208210811415614e9e57614e9d61500a565b5b50919050565b614ead826150e4565b810181811067ffffffffffffffff82111715614ecc57614ecb615097565b5b80604052505050565b6000614ee082614e14565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614f1357614f12614f7d565b5b600182019050919050565b6000614f2982614f3a565b9050919050565b6000819050919050565b6000614f45826150f5565b9050919050565b6000614f5782614e14565b9150614f6283614e14565b925082614f7257614f71614fac565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4859504520414c49454e533a20596f752063616e74206d696e74206d6f72652060008201527f7468616e20000000000000000000000000000000000000000000000000000000602082015250565b7f4859504520414c49454e533a2050726573616c65206973206e6f74207374617260008201527f7465642079657421000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f20746f6b656e206174206f6e6365210000000000000000000000000000000000600082015250565b7f20746f6b656e206f6e6c792e0000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4859504520414c49454e533a204d696e7420746f6f206c617267652100000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4859504520414c49454e533a20596f752063616e206f6e6c79206d696e74207560008201527f7020746f20000000000000000000000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f5468652070726573616c65206973206e6f7420656e64656e6420796574210000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4859504520414c49454e533a20526166666c65206973206e6f7420737461727460008201527f6564207965740000000000000000000000000000000000000000000000000000602082015250565b7f4859504520414c49454e533a2050726573616c65206d696e7420697320000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4859504520414c49454e533a204e6f7420656e6f756768204554482073656e74600082015250565b7f20746f6b656e7321000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4859504520414c49454e533a20596f7520617265206e6f742077686974656c6960008201527f7374656400000000000000000000000000000000000000000000000000000000602082015250565b7f4859504520414c49454e533a20534f4c44204f55542100000000000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b7f4859504520414c49454e533a20556e617574686f72697a6564205472616e736160008201527f6374696f6e000000000000000000000000000000000000000000000000000000602082015250565b600581106159805761597f614fdb565b5b50565b61598c81614d8d565b811461599757600080fd5b50565b6159a381614d9f565b81146159ae57600080fd5b50565b6159ba81614dab565b81146159c557600080fd5b50565b6159d181614db5565b81146159dc57600080fd5b50565b6159e881614e14565b81146159f357600080fd5b5056fea26469706673582212208e60aaa64435f9f222d33184f485c4d6bf78c65db9797c83e5d2d8d39bb2e54c64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5a454d4d3364557a33545a57784456626165476e57653356784d41566b74503834654b64444567444343427a00000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5a454d4d3364557a33545a57784456626165476e57653356784d41566b74503834654b64444567444343427a0000000000000000000000

Deployed Bytecode

0x6080604052600436106102935760003560e01c80636940bec11161015a578063a3344125116100c1578063e549fe771161007a578063e549fe77146109b0578063e985e9c5146109d9578063ed70037414610a16578063f2c4ce1e14610a41578063f2fde38b14610a6a578063f560d41514610a9357610293565b8063a3344125146108c3578063a475b5dd146108ee578063b298247e14610905578063b88d4fde1461092e578063c87b56dd14610957578063e3e1e8ef1461099457610293565b80638c3c4b34116101135780638c3c4b34146107c35780638da5cb5b146107ee57806395d89b411461081957806395ee0a1a1461084457806398d5fdca1461086f578063a22cb4651461089a57610293565b80636940bec1146106b55780636bd08049146106f25780636c0360eb1461071b57806370a0823114610746578063715018a6146107835780637cb647591461079a57610293565b80632a6d210d116101fe57806342842e0e116101b757806342842e0e146105935780634f6ccce7146105bc57806354214f69146105f957806355f804b3146106245780635afbacae1461064d5780636352211e1461067857610293565b80632a6d210d146104905780632eb4a7ab146104ac5780632f745c59146104d75780633ccfd60b146105145780633d0c49241461052b578063422129531461055657610293565b806318160ddd1161025057806318160ddd146103a85780631ef3755d146103d35780631f2898c3146103ea578063202648ef1461040157806323b872dd1461043e578063273ca8d51461046757610293565b806301ffc9a71461029857806306fdde03146102d5578063081812fc14610300578063081c8c441461033d578063095ea7b31461036857806315c316fc14610391575b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba9190613efe565b610abe565b6040516102cc9190614777565b60405180910390f35b3480156102e157600080fd5b506102ea610b38565b6040516102f791906147f1565b60405180910390f35b34801561030c57600080fd5b5061032760048036038101906103229190613fa1565b610bca565b6040516103349190614710565b60405180910390f35b34801561034957600080fd5b50610352610c4f565b60405161035f91906147f1565b60405180910390f35b34801561037457600080fd5b5061038f600480360381019061038a9190613e44565b610cdd565b005b34801561039d57600080fd5b506103a6610df5565b005b3480156103b457600080fd5b506103bd610e9e565b6040516103ca9190614b93565b60405180910390f35b3480156103df57600080fd5b506103e8610eab565b005b3480156103f657600080fd5b506103ff610f54565b005b34801561040d57600080fd5b5061042860048036038101906104239190613cc1565b6110ae565b6040516104359190614b93565b60405180910390f35b34801561044a57600080fd5b5061046560048036038101906104609190613d2e565b6110c6565b005b34801561047357600080fd5b5061048e60048036038101906104899190613fa1565b611126565b005b6104aa60048036038101906104a59190613fa1565b6111ac565b005b3480156104b857600080fd5b506104c16115a2565b6040516104ce9190614792565b60405180910390f35b3480156104e357600080fd5b506104fe60048036038101906104f99190613e44565b6115a8565b60405161050b9190614b93565b60405180910390f35b34801561052057600080fd5b5061052961164d565b005b34801561053757600080fd5b5061054061172c565b60405161054d9190614b93565b60405180910390f35b34801561056257600080fd5b5061057d60048036038101906105789190613cc1565b611732565b60405161058a9190614b93565b60405180910390f35b34801561059f57600080fd5b506105ba60048036038101906105b59190613d2e565b61174a565b005b3480156105c857600080fd5b506105e360048036038101906105de9190613fa1565b61176a565b6040516105f09190614b93565b60405180910390f35b34801561060557600080fd5b5061060e6117db565b60405161061b9190614777565b60405180910390f35b34801561063057600080fd5b5061064b60048036038101906106469190613f58565b6117ee565b005b34801561065957600080fd5b50610662611884565b60405161066f9190614b93565b60405180910390f35b34801561068457600080fd5b5061069f600480360381019061069a9190613fa1565b611889565b6040516106ac9190614710565b60405180910390f35b3480156106c157600080fd5b506106dc60048036038101906106d79190613e84565b61193b565b6040516106e99190614777565b60405180910390f35b3480156106fe57600080fd5b5061071960048036038101906107149190613fa1565b6119be565b005b34801561072757600080fd5b50610730611a44565b60405161073d91906147f1565b60405180910390f35b34801561075257600080fd5b5061076d60048036038101906107689190613cc1565b611ad2565b60405161077a9190614b93565b60405180910390f35b34801561078f57600080fd5b50610798611b8a565b005b3480156107a657600080fd5b506107c160048036038101906107bc9190613ed1565b611c12565b005b3480156107cf57600080fd5b506107d8611c98565b6040516107e591906147ad565b60405180910390f35b3480156107fa57600080fd5b50610803611caf565b6040516108109190614710565b60405180910390f35b34801561082557600080fd5b5061082e611cd9565b60405161083b91906147f1565b60405180910390f35b34801561085057600080fd5b50610859611d6b565b6040516108669190614b93565b60405180910390f35b34801561087b57600080fd5b50610884611d70565b6040516108919190614b93565b60405180910390f35b3480156108a657600080fd5b506108c160048036038101906108bc9190613e04565b611d7a565b005b3480156108cf57600080fd5b506108d8611d90565b6040516108e591906147ad565b60405180910390f35b3480156108fa57600080fd5b50610903611da3565b005b34801561091157600080fd5b5061092c60048036038101906109279190613fa1565b611e3c565b005b34801561093a57600080fd5b5061095560048036038101906109509190613d81565b612009565b005b34801561096357600080fd5b5061097e60048036038101906109799190613fa1565b61206b565b60405161098b91906147f1565b60405180910390f35b6109ae60048036038101906109a99190613fce565b6121fc565b005b3480156109bc57600080fd5b506109d760048036038101906109d29190613fa1565b612535565b005b3480156109e557600080fd5b50610a0060048036038101906109fb9190613cee565b6125bb565b604051610a0d9190614777565b60405180910390f35b348015610a2257600080fd5b50610a2b61264f565b604051610a389190614b93565b60405180910390f35b348015610a4d57600080fd5b50610a686004803603810190610a639190613f58565b612655565b005b348015610a7657600080fd5b50610a916004803603810190610a8c9190613cc1565b6126eb565b005b348015610a9f57600080fd5b50610aa86127e3565b604051610ab59190614b93565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b315750610b30826127ed565b5b9050919050565b606060008054610b4790614e72565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7390614e72565b8015610bc05780601f10610b9557610100808354040283529160200191610bc0565b820191906000526020600020905b815481529060010190602001808311610ba357829003601f168201915b5050505050905090565b6000610bd5826128cf565b610c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0b906149f3565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60128054610c5c90614e72565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8890614e72565b8015610cd55780601f10610caa57610100808354040283529160200191610cd5565b820191906000526020600020905b815481529060010190602001808311610cb857829003601f168201915b505050505081565b6000610ce882611889565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5090614a73565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d7861293b565b73ffffffffffffffffffffffffffffffffffffffff161480610da75750610da681610da161293b565b6125bb565b5b610de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddd90614913565b60405180910390fd5b610df08383612943565b505050565b610dfd61293b565b73ffffffffffffffffffffffffffffffffffffffff16610e1b611caf565b73ffffffffffffffffffffffffffffffffffffffff1614610e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6890614a13565b60405180910390fd5b6001601360016101000a81548160ff02191690836004811115610e9757610e96614fdb565b5b0217905550565b6000600880549050905090565b610eb361293b565b73ffffffffffffffffffffffffffffffffffffffff16610ed1611caf565b73ffffffffffffffffffffffffffffffffffffffff1614610f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1e90614a13565b60405180910390fd5b6000601360016101000a81548160ff02191690836004811115610f4d57610f4c614fdb565b5b0217905550565b610f5c61293b565b73ffffffffffffffffffffffffffffffffffffffff16610f7a611caf565b73ffffffffffffffffffffffffffffffffffffffff1614610fd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc790614a13565b60405180910390fd5b60016004811115610fe457610fe3614fdb565b5b601360019054906101000a900460ff16600481111561100657611005614fdb565b5b14611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d90614b73565b60405180910390fd5b6002601360016101000a81548160ff0219169083600481111561106c5761106b614fdb565b5b02179055507f0a97a4ee45751e2abf3e4fc8946939630b11b371ea8ae39ccdc3056e98f5cc3f600160026040516110a49291906147c8565b60405180910390a1565b60146020528060005260406000206000915090505481565b6110d76110d161293b565b826129fc565b611116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110d90614ab3565b60405180910390fd5b611121838383612ada565b505050565b61112e61293b565b73ffffffffffffffffffffffffffffffffffffffff1661114c611caf565b73ffffffffffffffffffffffffffffffffffffffff16146111a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119990614a13565b60405180910390fd5b80600e8190555050565b6002600b5414156111f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e990614af3565b60405180910390fd5b6002600b819055506000611204610e9e565b90506000611210611d70565b90506003600481111561122657611225614fdb565b5b601360019054906101000a900460ff16600481111561124857611247614fdb565b5b1415611289576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128090614b33565b60405180910390fd5b6002600481111561129d5761129c614fdb565b5b601360019054906101000a900460ff1660048111156112bf576112be614fdb565b5b146112ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f690614a33565b60405180910390fd5b828161130b9190614cff565b34101561134d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134490614a93565b60405180910390fd5b600383111561135c6003612d36565b60405160200161136c91906146b6565b604051602081830303815290604052906113bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b391906147f1565b60405180910390fd5b50600383601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461140a9190614c78565b11156114166003612d36565b6040516020016114269190614689565b60405160208183030381529060405290611476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146d91906147f1565b60405180910390fd5b50600c5483836114869190614c78565b11156114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be90614933565b60405180910390fd5b82601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115169190614c78565b92505081905550600c54838361152c9190614c78565b141561155e576003601360016101000a81548160ff0219169083600481111561155857611557614fdb565b5b02179055505b6000600190505b8381116115945761158133828561157c9190614c78565b612e97565b808061158c90614ed5565b915050611565565b5050506001600b8190555050565b60105481565b60006115b383611ad2565b82106115f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115eb90614833565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61165561293b565b73ffffffffffffffffffffffffffffffffffffffff16611673611caf565b73ffffffffffffffffffffffffffffffffffffffff16146116c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c090614a13565b60405180910390fd5b6000479050733910ebb641be493ab1b166149645acc3564f8db273ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611728573d6000803e3d6000fd5b5050565b600c5481565b60156020528060005260406000206000915090505481565b61176583838360405180602001604052806000815250612009565b505050565b6000611774610e9e565b82106117b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ac90614ad3565b60405180910390fd5b600882815481106117c9576117c8615068565b5b90600052602060002001549050919050565b601360009054906101000a900460ff1681565b6117f661293b565b73ffffffffffffffffffffffffffffffffffffffff16611814611caf565b73ffffffffffffffffffffffffffffffffffffffff161461186a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186190614a13565b60405180910390fd5b8060119080519060200190611880929190613a6a565b5050565b600381565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611932576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192990614973565b60405180910390fd5b80915050919050565b6000803360405160200161194f9190614613565b6040516020818303038152906040528051906020012090506119b5848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060105483612eb5565b91505092915050565b6119c661293b565b73ffffffffffffffffffffffffffffffffffffffff166119e4611caf565b73ffffffffffffffffffffffffffffffffffffffff1614611a3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3190614a13565b60405180910390fd5b80600c8190555050565b60118054611a5190614e72565b80601f0160208091040260200160405190810160405280929190818152602001828054611a7d90614e72565b8015611aca5780601f10611a9f57610100808354040283529160200191611aca565b820191906000526020600020905b815481529060010190602001808311611aad57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3a90614953565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611b9261293b565b73ffffffffffffffffffffffffffffffffffffffff16611bb0611caf565b73ffffffffffffffffffffffffffffffffffffffff1614611c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfd90614a13565b60405180910390fd5b611c106000612ecc565b565b611c1a61293b565b73ffffffffffffffffffffffffffffffffffffffff16611c38611caf565b73ffffffffffffffffffffffffffffffffffffffff1614611c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8590614a13565b60405180910390fd5b8060108190555050565b6000601360019054906101000a900460ff16905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611ce890614e72565b80601f0160208091040260200160405190810160405280929190818152602001828054611d1490614e72565b8015611d615780601f10611d3657610100808354040283529160200191611d61565b820191906000526020600020905b815481529060010190602001808311611d4457829003601f168201915b5050505050905090565b600381565b6000600e54905090565b611d8c611d8561293b565b8383612f92565b5050565b601360019054906101000a900460ff1681565b611dab61293b565b73ffffffffffffffffffffffffffffffffffffffff16611dc9611caf565b73ffffffffffffffffffffffffffffffffffffffff1614611e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1690614a13565b60405180910390fd5b6001601360006101000a81548160ff021916908315150217905550565b611e4461293b565b73ffffffffffffffffffffffffffffffffffffffff16611e62611caf565b73ffffffffffffffffffffffffffffffffffffffff1614611eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eaf90614a13565b60405180910390fd5b6000611ec2610e9e565b9050600c548282611ed39190614c78565b1115611f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0b906149b3565b60405180910390fd5b60008211611f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4e90614b53565b60405180910390fd5b600c5482600f54611f689190614c78565b1115611fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa090614993565b60405180910390fd5b600060019050600083905083600f6000828254611fc69190614c78565b9250508190555060008290505b81811161200257611fef338286611fea9190614c78565b612e97565b8080611ffa90614ed5565b915050611fd3565b5050505050565b61201a61201461293b565b836129fc565b612059576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205090614ab3565b60405180910390fd5b612065848484846130ff565b50505050565b606060001515601360009054906101000a900460ff161515141561211b576012805461209690614e72565b80601f01602080910402602001604051908101604052809291908181526020018280546120c290614e72565b801561210f5780601f106120e45761010080835404028352916020019161210f565b820191906000526020600020905b8154815290600101906020018083116120f257829003601f168201915b505050505090506121f7565b60006011805461212a90614e72565b80601f016020809104026020016040519081016040528092919081815260200182805461215690614e72565b80156121a35780601f10612178576101008083540402835291602001916121a3565b820191906000526020600020905b81548152906001019060200180831161218657829003601f168201915b5050505050905060008151116121c857604051806020016040528060008152506121f3565b806121d284612d36565b6040516020016121e392919061465a565b6040516020818303038152906040525b9150505b919050565b6002600b541415612242576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223990614af3565b60405180910390fd5b6002600b819055506000612254610e9e565b905060006122606127e3565b90506001600481111561227657612275614fdb565b5b601360019054906101000a900460ff16600481111561229857612297614fdb565b5b146122d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cf90614813565b60405180910390fd5b600385601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123259190614c78565b11156123316003612d36565b60405160200161234191906146e3565b60405160208183030381529060405290612391576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238891906147f1565b60405180910390fd5b506000336040516020016123a59190614613565b60405160208183030381529060405280519060200120905061240b858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060105483612eb5565b61244a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244190614b13565b60405180910390fd5b85826124569190614cff565b341015612498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248f90614a93565b60405180910390fd5b85601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124e79190614c78565b925050819055506000600190505b8681116125245761251133828661250c9190614c78565b612e97565b808061251c90614ed5565b9150506124f5565b505050506001600b81905550505050565b61253d61293b565b73ffffffffffffffffffffffffffffffffffffffff1661255b611caf565b73ffffffffffffffffffffffffffffffffffffffff16146125b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a890614a13565b60405180910390fd5b80600d8190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f5481565b61265d61293b565b73ffffffffffffffffffffffffffffffffffffffff1661267b611caf565b73ffffffffffffffffffffffffffffffffffffffff16146126d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c890614a13565b60405180910390fd5b80601290805190602001906126e7929190613a6a565b5050565b6126f361293b565b73ffffffffffffffffffffffffffffffffffffffff16612711611caf565b73ffffffffffffffffffffffffffffffffffffffff1614612767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275e90614a13565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156127d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ce90614873565b60405180910390fd5b6127e081612ecc565b50565b6000600d54905090565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806128b857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806128c857506128c78261315b565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166129b683611889565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612a07826128cf565b612a46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3d906148f3565b60405180910390fd5b6000612a5183611889565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612ac057508373ffffffffffffffffffffffffffffffffffffffff16612aa884610bca565b73ffffffffffffffffffffffffffffffffffffffff16145b80612ad15750612ad081856125bb565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612afa82611889565b73ffffffffffffffffffffffffffffffffffffffff1614612b50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4790614a53565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb7906148b3565b60405180910390fd5b612bcb8383836131c5565b612bd6600082612943565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c269190614d59565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c7d9190614c78565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60606000821415612d7e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e92565b600082905060005b60008214612db0578080612d9990614ed5565b915050600a82612da99190614cce565b9150612d86565b60008167ffffffffffffffff811115612dcc57612dcb615097565b5b6040519080825280601f01601f191660200182016040528015612dfe5781602001600182028036833780820191505090505b5090505b60008514612e8b57600182612e179190614d59565b9150600a85612e269190614f4c565b6030612e329190614c78565b60f81b818381518110612e4857612e47615068565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e849190614cce565b9450612e02565b8093505050505b919050565b612eb18282604051806020016040528060008152506132d9565b5050565b600082612ec28584613334565b1490509392505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff8906148d3565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516130f29190614777565b60405180910390a3505050565b61310a848484612ada565b613116848484846133e7565b613155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314c90614853565b60405180910390fd5b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6131d083838361357e565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156132135761320e81613583565b613252565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146132515761325083826135cc565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132955761329081613739565b6132d4565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146132d3576132d2828261380a565b5b5b505050565b6132e38383613889565b6132f060008484846133e7565b61332f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332690614853565b60405180910390fd5b505050565b60008082905060005b84518110156133dc57600085828151811061335b5761335a615068565b5b6020026020010151905080831161339c57828160405160200161337f92919061462e565b6040516020818303038152906040528051906020012092506133c8565b80836040516020016133af92919061462e565b6040516020818303038152906040528051906020012092505b5080806133d490614ed5565b91505061333d565b508091505092915050565b60006134088473ffffffffffffffffffffffffffffffffffffffff16613a57565b15613571578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261343161293b565b8786866040518563ffffffff1660e01b8152600401613453949392919061472b565b602060405180830381600087803b15801561346d57600080fd5b505af192505050801561349e57506040513d601f19601f8201168201806040525081019061349b9190613f2b565b60015b613521573d80600081146134ce576040519150601f19603f3d011682016040523d82523d6000602084013e6134d3565b606091505b50600081511415613519576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161351090614853565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613576565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016135d984611ad2565b6135e39190614d59565b90506000600760008481526020019081526020016000205490508181146136c8576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061374d9190614d59565b905060006009600084815260200190815260200160002054905060006008838154811061377d5761377c615068565b5b90600052602060002001549050806008838154811061379f5761379e615068565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806137ee576137ed615039565b5b6001900381819060005260206000200160009055905550505050565b600061381583611ad2565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156138f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138f0906149d3565b60405180910390fd5b613902816128cf565b15613942576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161393990614893565b60405180910390fd5b61394e600083836131c5565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461399e9190614c78565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613a7690614e72565b90600052602060002090601f016020900481019282613a985760008555613adf565b82601f10613ab157805160ff1916838001178555613adf565b82800160010185558215613adf579182015b82811115613ade578251825591602001919060010190613ac3565b5b509050613aec9190613af0565b5090565b5b80821115613b09576000816000905550600101613af1565b5090565b6000613b20613b1b84614bd3565b614bae565b905082815260208101848484011115613b3c57613b3b6150d5565b5b613b47848285614e30565b509392505050565b6000613b62613b5d84614c04565b614bae565b905082815260208101848484011115613b7e57613b7d6150d5565b5b613b89848285614e30565b509392505050565b600081359050613ba081615983565b92915050565b60008083601f840112613bbc57613bbb6150cb565b5b8235905067ffffffffffffffff811115613bd957613bd86150c6565b5b602083019150836020820283011115613bf557613bf46150d0565b5b9250929050565b600081359050613c0b8161599a565b92915050565b600081359050613c20816159b1565b92915050565b600081359050613c35816159c8565b92915050565b600081519050613c4a816159c8565b92915050565b600082601f830112613c6557613c646150cb565b5b8135613c75848260208601613b0d565b91505092915050565b600082601f830112613c9357613c926150cb565b5b8135613ca3848260208601613b4f565b91505092915050565b600081359050613cbb816159df565b92915050565b600060208284031215613cd757613cd66150df565b5b6000613ce584828501613b91565b91505092915050565b60008060408385031215613d0557613d046150df565b5b6000613d1385828601613b91565b9250506020613d2485828601613b91565b9150509250929050565b600080600060608486031215613d4757613d466150df565b5b6000613d5586828701613b91565b9350506020613d6686828701613b91565b9250506040613d7786828701613cac565b9150509250925092565b60008060008060808587031215613d9b57613d9a6150df565b5b6000613da987828801613b91565b9450506020613dba87828801613b91565b9350506040613dcb87828801613cac565b925050606085013567ffffffffffffffff811115613dec57613deb6150da565b5b613df887828801613c50565b91505092959194509250565b60008060408385031215613e1b57613e1a6150df565b5b6000613e2985828601613b91565b9250506020613e3a85828601613bfc565b9150509250929050565b60008060408385031215613e5b57613e5a6150df565b5b6000613e6985828601613b91565b9250506020613e7a85828601613cac565b9150509250929050565b60008060208385031215613e9b57613e9a6150df565b5b600083013567ffffffffffffffff811115613eb957613eb86150da565b5b613ec585828601613ba6565b92509250509250929050565b600060208284031215613ee757613ee66150df565b5b6000613ef584828501613c11565b91505092915050565b600060208284031215613f1457613f136150df565b5b6000613f2284828501613c26565b91505092915050565b600060208284031215613f4157613f406150df565b5b6000613f4f84828501613c3b565b91505092915050565b600060208284031215613f6e57613f6d6150df565b5b600082013567ffffffffffffffff811115613f8c57613f8b6150da565b5b613f9884828501613c7e565b91505092915050565b600060208284031215613fb757613fb66150df565b5b6000613fc584828501613cac565b91505092915050565b600080600060408486031215613fe757613fe66150df565b5b6000613ff586828701613cac565b935050602084013567ffffffffffffffff811115614016576140156150da565b5b61402286828701613ba6565b92509250509250925092565b61403781614d8d565b82525050565b61404e61404982614d8d565b614f1e565b82525050565b61405d81614d9f565b82525050565b61406c81614dab565b82525050565b61408361407e82614dab565b614f30565b82525050565b600061409482614c35565b61409e8185614c4b565b93506140ae818560208601614e3f565b6140b7816150e4565b840191505092915050565b6140cb81614e1e565b82525050565b60006140dc82614c40565b6140e68185614c5c565b93506140f6818560208601614e3f565b6140ff816150e4565b840191505092915050565b600061411582614c40565b61411f8185614c6d565b935061412f818560208601614e3f565b80840191505092915050565b6000614148602583614c6d565b915061415382615102565b602582019050919050565b600061416b602883614c5c565b915061417682615151565b604082019050919050565b600061418e602b83614c5c565b9150614199826151a0565b604082019050919050565b60006141b1603283614c5c565b91506141bc826151ef565b604082019050919050565b60006141d4602683614c5c565b91506141df8261523e565b604082019050919050565b60006141f7601c83614c5c565b91506142028261528d565b602082019050919050565b600061421a600f83614c6d565b9150614225826152b6565b600f82019050919050565b600061423d600c83614c6d565b9150614248826152df565b600c82019050919050565b6000614260602483614c5c565b915061426b82615308565b604082019050919050565b6000614283601983614c5c565b915061428e82615357565b602082019050919050565b60006142a6602c83614c5c565b91506142b182615380565b604082019050919050565b60006142c9603883614c5c565b91506142d4826153cf565b604082019050919050565b60006142ec601c83614c5c565b91506142f78261541e565b602082019050919050565b600061430f602a83614c5c565b915061431a82615447565b604082019050919050565b6000614332602983614c5c565b915061433d82615496565b604082019050919050565b6000614355602583614c6d565b9150614360826154e5565b602582019050919050565b6000614378601683614c5c565b915061438382615534565b602082019050919050565b600061439b601e83614c5c565b91506143a68261555d565b602082019050919050565b60006143be602083614c5c565b91506143c982615586565b602082019050919050565b60006143e1602c83614c5c565b91506143ec826155af565b604082019050919050565b6000614404600583614c6d565b915061440f826155fe565b600582019050919050565b6000614427602083614c5c565b915061443282615627565b602082019050919050565b600061444a602683614c5c565b915061445582615650565b604082019050919050565b600061446d601d83614c6d565b91506144788261569f565b601d82019050919050565b6000614490602983614c5c565b915061449b826156c8565b604082019050919050565b60006144b3602183614c5c565b91506144be82615717565b604082019050919050565b60006144d6602083614c5c565b91506144e182615766565b602082019050919050565b60006144f9600883614c6d565b91506145048261578f565b600882019050919050565b600061451c603183614c5c565b9150614527826157b8565b604082019050919050565b600061453f602c83614c5c565b915061454a82615807565b604082019050919050565b6000614562601f83614c5c565b915061456d82615856565b602082019050919050565b6000614585602483614c5c565b91506145908261587f565b604082019050919050565b60006145a8601683614c5c565b91506145b3826158ce565b602082019050919050565b60006145cb601b83614c5c565b91506145d6826158f7565b602082019050919050565b60006145ee602583614c5c565b91506145f982615920565b604082019050919050565b61460d81614e14565b82525050565b600061461f828461403d565b60148201915081905092915050565b600061463a8285614072565b60208201915061464a8284614072565b6020820191508190509392505050565b6000614666828561410a565b9150614672828461410a565b915061467d826143f7565b91508190509392505050565b60006146948261413b565b91506146a0828461410a565b91506146ab826144ec565b915081905092915050565b60006146c182614348565b91506146cd828461410a565b91506146d88261420d565b915081905092915050565b60006146ee82614460565b91506146fa828461410a565b915061470582614230565b915081905092915050565b6000602082019050614725600083018461402e565b92915050565b6000608082019050614740600083018761402e565b61474d602083018661402e565b61475a6040830185614604565b818103606083015261476c8184614089565b905095945050505050565b600060208201905061478c6000830184614054565b92915050565b60006020820190506147a76000830184614063565b92915050565b60006020820190506147c260008301846140c2565b92915050565b60006040820190506147dd60008301856140c2565b6147ea60208301846140c2565b9392505050565b6000602082019050818103600083015261480b81846140d1565b905092915050565b6000602082019050818103600083015261482c8161415e565b9050919050565b6000602082019050818103600083015261484c81614181565b9050919050565b6000602082019050818103600083015261486c816141a4565b9050919050565b6000602082019050818103600083015261488c816141c7565b9050919050565b600060208201905081810360008301526148ac816141ea565b9050919050565b600060208201905081810360008301526148cc81614253565b9050919050565b600060208201905081810360008301526148ec81614276565b9050919050565b6000602082019050818103600083015261490c81614299565b9050919050565b6000602082019050818103600083015261492c816142bc565b9050919050565b6000602082019050818103600083015261494c816142df565b9050919050565b6000602082019050818103600083015261496c81614302565b9050919050565b6000602082019050818103600083015261498c81614325565b9050919050565b600060208201905081810360008301526149ac8161436b565b9050919050565b600060208201905081810360008301526149cc8161438e565b9050919050565b600060208201905081810360008301526149ec816143b1565b9050919050565b60006020820190508181036000830152614a0c816143d4565b9050919050565b60006020820190508181036000830152614a2c8161441a565b9050919050565b60006020820190508181036000830152614a4c8161443d565b9050919050565b60006020820190508181036000830152614a6c81614483565b9050919050565b60006020820190508181036000830152614a8c816144a6565b9050919050565b60006020820190508181036000830152614aac816144c9565b9050919050565b60006020820190508181036000830152614acc8161450f565b9050919050565b60006020820190508181036000830152614aec81614532565b9050919050565b60006020820190508181036000830152614b0c81614555565b9050919050565b60006020820190508181036000830152614b2c81614578565b9050919050565b60006020820190508181036000830152614b4c8161459b565b9050919050565b60006020820190508181036000830152614b6c816145be565b9050919050565b60006020820190508181036000830152614b8c816145e1565b9050919050565b6000602082019050614ba86000830184614604565b92915050565b6000614bb8614bc9565b9050614bc48282614ea4565b919050565b6000604051905090565b600067ffffffffffffffff821115614bee57614bed615097565b5b614bf7826150e4565b9050602081019050919050565b600067ffffffffffffffff821115614c1f57614c1e615097565b5b614c28826150e4565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614c8382614e14565b9150614c8e83614e14565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614cc357614cc2614f7d565b5b828201905092915050565b6000614cd982614e14565b9150614ce483614e14565b925082614cf457614cf3614fac565b5b828204905092915050565b6000614d0a82614e14565b9150614d1583614e14565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614d4e57614d4d614f7d565b5b828202905092915050565b6000614d6482614e14565b9150614d6f83614e14565b925082821015614d8257614d81614f7d565b5b828203905092915050565b6000614d9882614df4565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050614def8261596f565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000614e2982614de1565b9050919050565b82818337600083830152505050565b60005b83811015614e5d578082015181840152602081019050614e42565b83811115614e6c576000848401525b50505050565b60006002820490506001821680614e8a57607f821691505b60208210811415614e9e57614e9d61500a565b5b50919050565b614ead826150e4565b810181811067ffffffffffffffff82111715614ecc57614ecb615097565b5b80604052505050565b6000614ee082614e14565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614f1357614f12614f7d565b5b600182019050919050565b6000614f2982614f3a565b9050919050565b6000819050919050565b6000614f45826150f5565b9050919050565b6000614f5782614e14565b9150614f6283614e14565b925082614f7257614f71614fac565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4859504520414c49454e533a20596f752063616e74206d696e74206d6f72652060008201527f7468616e20000000000000000000000000000000000000000000000000000000602082015250565b7f4859504520414c49454e533a2050726573616c65206973206e6f74207374617260008201527f7465642079657421000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f20746f6b656e206174206f6e6365210000000000000000000000000000000000600082015250565b7f20746f6b656e206f6e6c792e0000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4859504520414c49454e533a204d696e7420746f6f206c617267652100000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4859504520414c49454e533a20596f752063616e206f6e6c79206d696e74207560008201527f7020746f20000000000000000000000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f5468652070726573616c65206973206e6f7420656e64656e6420796574210000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4859504520414c49454e533a20526166666c65206973206e6f7420737461727460008201527f6564207965740000000000000000000000000000000000000000000000000000602082015250565b7f4859504520414c49454e533a2050726573616c65206d696e7420697320000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4859504520414c49454e533a204e6f7420656e6f756768204554482073656e74600082015250565b7f20746f6b656e7321000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4859504520414c49454e533a20596f7520617265206e6f742077686974656c6960008201527f7374656400000000000000000000000000000000000000000000000000000000602082015250565b7f4859504520414c49454e533a20534f4c44204f55542100000000000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b7f4859504520414c49454e533a20556e617574686f72697a6564205472616e736160008201527f6374696f6e000000000000000000000000000000000000000000000000000000602082015250565b600581106159805761597f614fdb565b5b50565b61598c81614d8d565b811461599757600080fd5b50565b6159a381614d9f565b81146159ae57600080fd5b50565b6159ba81614dab565b81146159c557600080fd5b50565b6159d181614db5565b81146159dc57600080fd5b50565b6159e881614e14565b81146159f357600080fd5b5056fea26469706673582212208e60aaa64435f9f222d33184f485c4d6bf78c65db9797c83e5d2d8d39bb2e54c64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5a454d4d3364557a33545a57784456626165476e57653356784d41566b74503834654b64444567444343427a00000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5a454d4d3364557a33545a57784456626165476e57653356784d41566b74503834654b64444567444343427a0000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmZEMM3dUz3TZWxDVbaeGnWe3VxMAVktP84eKdDEgDCCBz
Arg [1] : _initNotRevealedUri (string): ipfs://QmZEMM3dUz3TZWxDVbaeGnWe3VxMAVktP84eKdDEgDCCBz

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [3] : 697066733a2f2f516d5a454d4d3364557a33545a57784456626165476e576533
Arg [4] : 56784d41566b74503834654b64444567444343427a0000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [6] : 697066733a2f2f516d5a454d4d3364557a33545a57784456626165476e576533
Arg [7] : 56784d41566b74503834654b64444567444343427a0000000000000000000000


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.