ETH Price: $2,964.10 (+2.19%)
Gas: 1 Gwei

Token

Royal Society Chips (RoyalSocietyChips)
 

Overview

Max Total Supply

10,000 RoyalSocietyChips

Holders

1,194

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 RoyalSocietyChips
0x712F66f263ec41F7cC3606AB103fAf6015834f65
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Royal Society of Players is an unmatched collection of hand-made NFTs offering unique perks, prizes, and privileges across the metaverse and real world. Our companion drop, Royal Society Chips, combines exquisite art with high-utility opportunities for engagement, entertainmen...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
RoyalSocietyChips

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

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

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

pragma solidity ^0.8.0;

abstract contract RoyalSociety {
    function walletOfOwner(address owner)
        external
        view
        virtual
        returns (uint256[] memory tokenIds);

    function balanceOf(address owner)
        external
        view
        virtual
        returns (uint256 balance);
}

contract RoyalSocietyChips is ERC721Enumerable, Ownable {
    RoyalSociety public royalSociety;

    uint256 private _dropTime = 1630713600; // Date and time (GMT): Friday, September 3, 2021 8:00:00 PM EST (https://www.epochconverter.com/)
    uint256 private _dropDuration = 604800; // 604800 is one week.
    uint256 private _maxSupply = 10000; // Used for a few checks
    uint256 private _maxPerTx = 31; // Prevents gas limit errors. One higher than necessary for gt/lt checks.
    uint256 private _lastOwnerSweep;

    string private _baseTokenURI;
    mapping(uint256 => bool) internal cardRedeemed;

    constructor(string memory baseURI, address royalSocietyAddress)
        ERC721("Royal Society Chips", "RoyalSocietyChips")
    {
        setBaseURI(baseURI);
        royalSociety = RoyalSociety(royalSocietyAddress);
    }

    modifier dropIsOpen() {
        require(block.timestamp >= _dropTime, "Drop is not yet open.");
        require(block.timestamp < _dropTime + _dropDuration, "Drop has ended.");
        _;
    }

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

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

    function setDropTime(uint256 time) public onlyOwner {
        _dropTime = time;
    }

    function getDropTime() public view returns (uint256) {
        return _dropTime;
    }

    function setDropDuration(uint256 time) public onlyOwner {
        _dropDuration = time;
    }

    function getDropDuration() public view returns (uint256) {
        return _dropDuration;
    }

    function isDropOpen() public view returns (bool) {
        return (block.timestamp >= _dropTime &&
            block.timestamp < _dropTime + _dropDuration);
    }

    // Returns true if a card ID has been used to redeem a chip.
    function isCardRedeemed(uint256 _cardId) public view returns (bool) {
        return cardRedeemed[_cardId];
    }

    // Gets total chips that remain unredeemed for front end use.
    function getTotalLeftUnredeemed() public view returns (uint256) {
        return _maxSupply - totalSupply();
    }

    // Returns an integer with the total amount of unredeemed card IDs at an address.
    function getUnredeemedAmount(address player) public view returns (uint256) {
        uint256[] memory cardIds = royalSociety.walletOfOwner(player);
        uint256 totalUnredeemed;
        for (uint256 i; i < cardIds.length; i++) {
            if (cardRedeemed[cardIds[i]] == false) {
                totalUnredeemed += 1;
            }
        }
        return totalUnredeemed;
    }

    // Returns list with the unredeemed card IDs at an address.
    function getUnredeemedCards(address player)
        public
        view
        returns (uint256[] memory)
    {
        uint256[] memory cardIds = royalSociety.walletOfOwner(player);
        uint256 unredeemedAmount = getUnredeemedAmount(player);
        uint256[] memory cardIdsUnredeemed = new uint256[](unredeemedAmount);

        uint256 cardsAdded;
        uint256 cardId;
        for (uint256 i; i < cardIds.length; i++) {
            cardId = cardIds[i];
            if (cardRedeemed[cardId] == false) {
                cardIdsUnredeemed[cardsAdded] = cardId;
                cardsAdded += 1;
            }
        }
        return cardIdsUnredeemed;
    }

    // Allows players to claim the chip IDs that match unredeemed cards in their wallet.
    function claim(uint256 _count) public payable dropIsOpen {
        require(
            _maxPerTx > _count,
            "This amount is over the max per transaction limit in place to prevent gas limit issues."
        );
        uint256[] memory cardIdsUnredeemed = getUnredeemedCards(msg.sender);
        require(
            cardIdsUnredeemed.length >= _count,
            "Not enough unredeemed cards in this wallet for this amount."
        );

        uint256 cardId;
        for (uint256 i; i < _count; i++) {
            cardId = cardIdsUnredeemed[i];
            _safeMint(msg.sender, cardId);
            cardRedeemed[cardId] = true;
        }
    }

    // Gets the next unredeemed token that was left unredeemed during the drop.
    function getNextUnredeemed() internal view returns (uint256 tokenId) {
        uint256 i = _lastOwnerSweep;
        for (i; i < _maxSupply; i++) {
            if (cardRedeemed[i] == false) {
                return i;
            }
        }
        revert("All tokens already redeemed");
    }

    // Allows owner to claim unredeemed chips after the drop period
    function claimUnredeemed(uint256 _count) public payable onlyOwner {
        uint256 totalLeft = _maxSupply - totalSupply();
        require(
            block.timestamp > _dropTime + _dropDuration,
            "The drop has not yet ended."
        );
        require(
            totalLeft >= _count,
            "This amount is more than remain unclaimed."
        );

        uint256 sweepID;
        for (uint256 i; i < _count; i++) {
            sweepID = getNextUnredeemed();

            _safeMint(msg.sender, sweepID);
            cardRedeemed[sweepID] = true;
            _lastOwnerSweep = sweepID;
        }
    }

    // Returns list of all token IDs at an address.
    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            return new uint256[](0);
        }

        uint256[] memory tokensId = new uint256[](tokenCount);
        for (uint256 i; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

    function withdrawAll() public payable onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }
}

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.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 13 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 4 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT

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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 5 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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

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

File 6 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 8 of 13 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @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 9 of 13 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 10 of 13 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 11 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 12 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 13 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"address","name":"royalSocietyAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"claimUnredeemed","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDropDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDropTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalLeftUnredeemed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"player","type":"address"}],"name":"getUnredeemedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"player","type":"address"}],"name":"getUnredeemedCards","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cardId","type":"uint256"}],"name":"isCardRedeemed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isDropOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"royalSociety","outputs":[{"internalType":"contract RoyalSociety","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"setDropDuration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"setDropTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052636132b700600c5562093a80600d55612710600e55601f600f553480156200002b57600080fd5b506040516200502e3803806200502e833981810160405281019062000051919062000447565b6040518060400160405280601381526020017f526f79616c20536f6369657479204368697073000000000000000000000000008152506040518060400160405280601181526020017f526f79616c536f636965747943686970730000000000000000000000000000008152508160009080519060200190620000d59291906200030e565b508060019080519060200190620000ee9291906200030e565b50505062000111620001056200016b60201b60201c565b6200017360201b60201c565b62000122826200023960201b60201c565b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505062000695565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002496200016b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200026f620002e460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002c8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002bf90620004e3565b60405180910390fd5b8060119080519060200190620002e09291906200030e565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200031c90620005e7565b90600052602060002090601f0160209004810192826200034057600085556200038c565b82601f106200035b57805160ff19168380011785556200038c565b828001600101855582156200038c579182015b828111156200038b5782518255916020019190600101906200036e565b5b5090506200039b91906200039f565b5090565b5b80821115620003ba576000816000905550600101620003a0565b5090565b6000620003d5620003cf8462000539565b62000505565b905082815260208101848484011115620003ee57600080fd5b620003fb848285620005b1565b509392505050565b60008151905062000414816200067b565b92915050565b600082601f8301126200042c57600080fd5b81516200043e848260208601620003be565b91505092915050565b600080604083850312156200045b57600080fd5b600083015167ffffffffffffffff8111156200047657600080fd5b62000484858286016200041a565b9250506020620004978582860162000403565b9150509250929050565b6000620004b06020836200056c565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006020820190508181036000830152620004fe81620004a1565b9050919050565b6000604051905081810181811067ffffffffffffffff821117156200052f576200052e6200064c565b5b8060405250919050565b600067ffffffffffffffff8211156200055757620005566200064c565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b60006200058a8262000591565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015620005d1578082015181840152602081019050620005b4565b83811115620005e1576000848401525b50505050565b600060028204905060018216806200060057607f821691505b602082108114156200061757620006166200061d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000686816200057d565b81146200069257600080fd5b50565b61498980620006a56000396000f3fe6080604052600436106101f95760003560e01c8063715018a61161010d578063b88d4fde116100a0578063d7adad581161006f578063d7adad581461072e578063d92895791461076b578063e985e9c514610796578063f2fde38b146107d3578063f597ad08146107fc576101f9565b8063b88d4fde1461066f578063c87b56dd14610698578063cdd756f9146106d5578063d2d6585c14610712576101f9565b80638da5cb5b116100dc5780638da5cb5b146105c757806395d89b41146105f25780639a47d2211461061d578063a22cb46514610646576101f9565b8063715018a6146105505780637f0785db1461056757806383bf9d5814610592578063853828b6146105bd576101f9565b8063379607f51161019057806355f804b31161015f57806355f804b3146104475780635b74bb49146104705780635efb6032146104995780636352211e146104d657806370a0823114610513576101f9565b8063379607f51461038857806342842e0e146103a4578063438b6300146103cd5780634f6ccce71461040a576101f9565b806318160ddd116101cc57806318160ddd146102cc57806323b872dd146102f757806325f106d7146103205780632f745c591461034b576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190613564565b610827565b604051610232919061411d565b60405180910390f35b34801561024757600080fd5b506102506108a1565b60405161025d9190614153565b60405180910390f35b34801561027257600080fd5b5061028d600480360381019061028891906135f7565b610933565b60405161029a9190614094565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c591906134e7565b6109b8565b005b3480156102d857600080fd5b506102e1610ad0565b6040516102ee9190614495565b60405180910390f35b34801561030357600080fd5b5061031e600480360381019061031991906133e1565b610add565b005b34801561032c57600080fd5b50610335610b3d565b6040516103429190614495565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d91906134e7565b610b47565b60405161037f9190614495565b60405180910390f35b6103a2600480360381019061039d91906135f7565b610bec565b005b3480156103b057600080fd5b506103cb60048036038101906103c691906133e1565b610db5565b005b3480156103d957600080fd5b506103f460048036038101906103ef919061337c565b610dd5565b60405161040191906140fb565b60405180910390f35b34801561041657600080fd5b50610431600480360381019061042c91906135f7565b610f51565b60405161043e9190614495565b60405180910390f35b34801561045357600080fd5b5061046e600480360381019061046991906135b6565b610fe8565b005b34801561047c57600080fd5b50610497600480360381019061049291906135f7565b61107e565b005b3480156104a557600080fd5b506104c060048036038101906104bb91906135f7565b611104565b6040516104cd919061411d565b60405180910390f35b3480156104e257600080fd5b506104fd60048036038101906104f891906135f7565b61112e565b60405161050a9190614094565b60405180910390f35b34801561051f57600080fd5b5061053a6004803603810190610535919061337c565b6111e0565b6040516105479190614495565b60405180910390f35b34801561055c57600080fd5b50610565611298565b005b34801561057357600080fd5b5061057c611320565b6040516105899190614495565b60405180910390f35b34801561059e57600080fd5b506105a761133c565b6040516105b49190614495565b60405180910390f35b6105c5611346565b005b3480156105d357600080fd5b506105dc611402565b6040516105e99190614094565b60405180910390f35b3480156105fe57600080fd5b5061060761142c565b6040516106149190614153565b60405180910390f35b34801561062957600080fd5b50610644600480360381019061063f91906135f7565b6114be565b005b34801561065257600080fd5b5061066d600480360381019061066891906134ab565b611544565b005b34801561067b57600080fd5b5061069660048036038101906106919190613430565b6116c5565b005b3480156106a457600080fd5b506106bf60048036038101906106ba91906135f7565b611727565b6040516106cc9190614153565b60405180910390f35b3480156106e157600080fd5b506106fc60048036038101906106f7919061337c565b6117ce565b6040516107099190614495565b60405180910390f35b61072c600480360381019061072791906135f7565b61192b565b005b34801561073a57600080fd5b506107556004803603810190610750919061337c565b611ac0565b60405161076291906140fb565b60405180910390f35b34801561077757600080fd5b50610780611cec565b60405161078d9190614138565b60405180910390f35b3480156107a257600080fd5b506107bd60048036038101906107b891906133a5565b611d12565b6040516107ca919061411d565b60405180910390f35b3480156107df57600080fd5b506107fa60048036038101906107f5919061337c565b611da6565b005b34801561080857600080fd5b50610811611e9e565b60405161081e919061411d565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089a575061089982611ec5565b5b9050919050565b6060600080546108b09061477e565b80601f01602080910402602001604051908101604052809291908181526020018280546108dc9061477e565b80156109295780601f106108fe57610100808354040283529160200191610929565b820191906000526020600020905b81548152906001019060200180831161090c57829003601f168201915b5050505050905090565b600061093e82611fa7565b61097d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097490614375565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109c38261112e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2b906143f5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a53612013565b73ffffffffffffffffffffffffffffffffffffffff161480610a825750610a8181610a7c612013565b611d12565b5b610ac1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab8906142b5565b60405180910390fd5b610acb838361201b565b505050565b6000600880549050905090565b610aee610ae8612013565b826120d4565b610b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2490614435565b60405180910390fd5b610b388383836121b2565b505050565b6000600c54905090565b6000610b52836111e0565b8210610b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8a90614175565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600c54421015610c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2890614335565b60405180910390fd5b600d54600c54610c4191906145e9565b4210610c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7990614475565b60405180910390fd5b80600f5411610cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbd906141b5565b60405180910390fd5b6000610cd133611ac0565b90508181511015610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e90614215565b60405180910390fd5b6000805b83811015610daf57828181518110610d5c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519150610d70338361240e565b60016012600084815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610da7906147b0565b915050610d1b565b50505050565b610dd0838383604051806020016040528060008152506116c5565b505050565b60606000610de2836111e0565b90506000811415610e6557600067ffffffffffffffff811115610e2e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610e5c5781602001602082028036833780820191505090505b50915050610f4c565b60008167ffffffffffffffff811115610ea7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610ed55781602001602082028036833780820191505090505b50905060005b82811015610f4557610eed8582610b47565b828281518110610f26577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610f3d906147b0565b915050610edb565b5080925050505b919050565b6000610f5b610ad0565b8210610f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9390614455565b60405180910390fd5b60088281548110610fd6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610ff0612013565b73ffffffffffffffffffffffffffffffffffffffff1661100e611402565b73ffffffffffffffffffffffffffffffffffffffff1614611064576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105b90614395565b60405180910390fd5b806011908051906020019061107a9291906130f5565b5050565b611086612013565b73ffffffffffffffffffffffffffffffffffffffff166110a4611402565b73ffffffffffffffffffffffffffffffffffffffff16146110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f190614395565b60405180910390fd5b80600d8190555050565b60006012600083815260200190815260200160002060009054906101000a900460ff169050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ce906142f5565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611251576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611248906142d5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112a0612013565b73ffffffffffffffffffffffffffffffffffffffff166112be611402565b73ffffffffffffffffffffffffffffffffffffffff1614611314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130b90614395565b60405180910390fd5b61131e600061242c565b565b600061132a610ad0565b600e546113379190614670565b905090565b6000600d54905090565b61134e612013565b73ffffffffffffffffffffffffffffffffffffffff1661136c611402565b73ffffffffffffffffffffffffffffffffffffffff16146113c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b990614395565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061140057600080fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461143b9061477e565b80601f01602080910402602001604051908101604052809291908181526020018280546114679061477e565b80156114b45780601f10611489576101008083540402835291602001916114b4565b820191906000526020600020905b81548152906001019060200180831161149757829003601f168201915b5050505050905090565b6114c6612013565b73ffffffffffffffffffffffffffffffffffffffff166114e4611402565b73ffffffffffffffffffffffffffffffffffffffff161461153a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153190614395565b60405180910390fd5b80600c8190555050565b61154c612013565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b190614275565b60405180910390fd5b80600560006115c7612013565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611674612013565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116b9919061411d565b60405180910390a35050565b6116d66116d0612013565b836120d4565b611715576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170c90614435565b60405180910390fd5b611721848484846124f2565b50505050565b606061173282611fa7565b611771576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611768906143d5565b60405180910390fd5b600061177b61254e565b9050600081511161179b57604051806020016040528060008152506117c6565b806117a5846125e0565b6040516020016117b6929190614070565b6040516020818303038152906040525b915050919050565b600080600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663438b6300846040518263ffffffff1660e01b815260040161182c9190614094565b60006040518083038186803b15801561184457600080fd5b505afa158015611858573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906118819190613523565b90506000805b82518110156119205760001515601260008584815181106118d1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060009054906101000a900460ff161515141561190d5760018261190a91906145e9565b91505b8080611918906147b0565b915050611887565b508092505050919050565b611933612013565b73ffffffffffffffffffffffffffffffffffffffff16611951611402565b73ffffffffffffffffffffffffffffffffffffffff16146119a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199e90614395565b60405180910390fd5b60006119b1610ad0565b600e546119be9190614670565b9050600d54600c546119d091906145e9565b4211611a11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0890614315565b60405180910390fd5b81811015611a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4b90614415565b60405180910390fd5b6000805b83811015611aba57611a6861278d565b9150611a74338361240e565b60016012600084815260200190815260200160002060006101000a81548160ff021916908315150217905550816010819055508080611ab2906147b0565b915050611a58565b50505050565b60606000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663438b6300846040518263ffffffff1660e01b8152600401611b1f9190614094565b60006040518083038186803b158015611b3757600080fd5b505afa158015611b4b573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611b749190613523565b90506000611b81846117ce565b905060008167ffffffffffffffff811115611bc5577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611bf35781602001602082028036833780820191505090505b50905060008060005b8551811015611cde57858181518110611c3e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519150600015156012600084815260200190815260200160002060009054906101000a900460ff1615151415611ccb5781848481518110611caf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050600183611cc891906145e9565b92505b8080611cd6906147b0565b915050611bfc565b508295505050505050919050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611dae612013565b73ffffffffffffffffffffffffffffffffffffffff16611dcc611402565b73ffffffffffffffffffffffffffffffffffffffff1614611e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1990614395565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e89906141d5565b60405180910390fd5b611e9b8161242c565b50565b6000600c544210158015611ec05750600d54600c54611ebd91906145e9565b42105b905090565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f9057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611fa05750611f9f82612827565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661208e8361112e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006120df82611fa7565b61211e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211590614295565b60405180910390fd5b60006121298361112e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061219857508373ffffffffffffffffffffffffffffffffffffffff1661218084610933565b73ffffffffffffffffffffffffffffffffffffffff16145b806121a957506121a88185611d12565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166121d28261112e565b73ffffffffffffffffffffffffffffffffffffffff1614612228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221f906143b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612298576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228f90614255565b60405180910390fd5b6122a3838383612891565b6122ae60008261201b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122fe9190614670565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461235591906145e9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6124288282604051806020016040528060008152506129a5565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124fd8484846121b2565b61250984848484612a00565b612548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253f90614195565b60405180910390fd5b50505050565b60606011805461255d9061477e565b80601f01602080910402602001604051908101604052809291908181526020018280546125899061477e565b80156125d65780601f106125ab576101008083540402835291602001916125d6565b820191906000526020600020905b8154815290600101906020018083116125b957829003601f168201915b5050505050905090565b60606000821415612628576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612788565b600082905060005b6000821461265a578080612643906147b0565b915050600a82612653919061463f565b9150612630565b60008167ffffffffffffffff81111561269c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156126ce5781602001600182028036833780820191505090505b5090505b60008514612781576001826126e79190614670565b9150600a856126f691906147f9565b603061270291906145e9565b60f81b81838151811061273e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561277a919061463f565b94506126d2565b8093505050505b919050565b60008060105490505b600e548110156127e957600015156012600083815260200190815260200160002060009054906101000a900460ff16151514156127d65780915050612824565b80806127e1906147b0565b915050612796565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281b90614235565b60405180910390fd5b90565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61289c838383612b97565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128df576128da81612b9c565b61291e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461291d5761291c8382612be5565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129615761295c81612d52565b6129a0565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461299f5761299e8282612e95565b5b5b505050565b6129af8383612f14565b6129bc6000848484612a00565b6129fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f290614195565b60405180910390fd5b505050565b6000612a218473ffffffffffffffffffffffffffffffffffffffff166130e2565b15612b8a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a4a612013565b8786866040518563ffffffff1660e01b8152600401612a6c94939291906140af565b602060405180830381600087803b158015612a8657600080fd5b505af1925050508015612ab757506040513d601f19601f82011682018060405250810190612ab4919061358d565b60015b612b3a573d8060008114612ae7576040519150601f19603f3d011682016040523d82523d6000602084013e612aec565b606091505b50600081511415612b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2990614195565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b8f565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612bf2846111e0565b612bfc9190614670565b9050600060076000848152602001908152602001600020549050818114612ce1576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612d669190614670565b9050600060096000848152602001908152602001600020549050600060088381548110612dbc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612e04577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612e79577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612ea0836111e0565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7b90614355565b60405180910390fd5b612f8d81611fa7565b15612fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fc4906141f5565b60405180910390fd5b612fd960008383612891565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461302991906145e9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546131019061477e565b90600052602060002090601f016020900481019282613123576000855561316a565b82601f1061313c57805160ff191683800117855561316a565b8280016001018555821561316a579182015b8281111561316957825182559160200191906001019061314e565b5b509050613177919061317b565b5090565b5b8082111561319457600081600090555060010161317c565b5090565b60006131ab6131a6846144e1565b6144b0565b905080838252602082019050828560208602820111156131ca57600080fd5b60005b858110156131fa57816131e08882613367565b8452602084019350602083019250506001810190506131cd565b5050509392505050565b60006132176132128461450d565b6144b0565b90508281526020810184848401111561322f57600080fd5b61323a84828561473c565b509392505050565b60006132556132508461453d565b6144b0565b90508281526020810184848401111561326d57600080fd5b61327884828561473c565b509392505050565b60008135905061328f816148f7565b92915050565b600082601f8301126132a657600080fd5b81516132b6848260208601613198565b91505092915050565b6000813590506132ce8161490e565b92915050565b6000813590506132e381614925565b92915050565b6000815190506132f881614925565b92915050565b600082601f83011261330f57600080fd5b813561331f848260208601613204565b91505092915050565b600082601f83011261333957600080fd5b8135613349848260208601613242565b91505092915050565b6000813590506133618161493c565b92915050565b6000815190506133768161493c565b92915050565b60006020828403121561338e57600080fd5b600061339c84828501613280565b91505092915050565b600080604083850312156133b857600080fd5b60006133c685828601613280565b92505060206133d785828601613280565b9150509250929050565b6000806000606084860312156133f657600080fd5b600061340486828701613280565b935050602061341586828701613280565b925050604061342686828701613352565b9150509250925092565b6000806000806080858703121561344657600080fd5b600061345487828801613280565b945050602061346587828801613280565b935050604061347687828801613352565b925050606085013567ffffffffffffffff81111561349357600080fd5b61349f878288016132fe565b91505092959194509250565b600080604083850312156134be57600080fd5b60006134cc85828601613280565b92505060206134dd858286016132bf565b9150509250929050565b600080604083850312156134fa57600080fd5b600061350885828601613280565b925050602061351985828601613352565b9150509250929050565b60006020828403121561353557600080fd5b600082015167ffffffffffffffff81111561354f57600080fd5b61355b84828501613295565b91505092915050565b60006020828403121561357657600080fd5b6000613584848285016132d4565b91505092915050565b60006020828403121561359f57600080fd5b60006135ad848285016132e9565b91505092915050565b6000602082840312156135c857600080fd5b600082013567ffffffffffffffff8111156135e257600080fd5b6135ee84828501613328565b91505092915050565b60006020828403121561360957600080fd5b600061361784828501613352565b91505092915050565b600061362c8383614052565b60208301905092915050565b613641816146a4565b82525050565b60006136528261457d565b61365c81856145ab565b93506136678361456d565b8060005b8381101561369857815161367f8882613620565b975061368a8361459e565b92505060018101905061366b565b5085935050505092915050565b6136ae816146b6565b82525050565b60006136bf82614588565b6136c981856145bc565b93506136d981856020860161474b565b6136e2816148e6565b840191505092915050565b6136f681614718565b82525050565b600061370782614593565b61371181856145cd565b935061372181856020860161474b565b61372a816148e6565b840191505092915050565b600061374082614593565b61374a81856145de565b935061375a81856020860161474b565b80840191505092915050565b6000613773602b836145cd565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006137d96032836145cd565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061383f6057836145cd565b91507f5468697320616d6f756e74206973206f76657220746865206d6178207065722060008301527f7472616e73616374696f6e206c696d697420696e20706c61636520746f20707260208301527f6576656e7420676173206c696d6974206973737565732e0000000000000000006040830152606082019050919050565b60006138cb6026836145cd565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613931601c836145cd565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613971603b836145cd565b91507f4e6f7420656e6f75676820756e72656465656d656420636172647320696e207460008301527f6869732077616c6c657420666f72207468697320616d6f756e742e00000000006020830152604082019050919050565b60006139d7601b836145cd565b91507f416c6c20746f6b656e7320616c72656164792072656465656d656400000000006000830152602082019050919050565b6000613a176024836145cd565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a7d6019836145cd565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613abd602c836145cd565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613b236038836145cd565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613b89602a836145cd565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613bef6029836145cd565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c55601b836145cd565b91507f5468652064726f7020686173206e6f742079657420656e6465642e00000000006000830152602082019050919050565b6000613c956015836145cd565b91507f44726f70206973206e6f7420796574206f70656e2e00000000000000000000006000830152602082019050919050565b6000613cd56020836145cd565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613d15602c836145cd565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613d7b6020836145cd565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613dbb6029836145cd565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e21602f836145cd565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613e876021836145cd565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613eed602a836145cd565b91507f5468697320616d6f756e74206973206d6f7265207468616e2072656d61696e2060008301527f756e636c61696d65642e000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f536031836145cd565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613fb9602c836145cd565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b600061401f600f836145cd565b91507f44726f702068617320656e6465642e00000000000000000000000000000000006000830152602082019050919050565b61405b8161470e565b82525050565b61406a8161470e565b82525050565b600061407c8285613735565b91506140888284613735565b91508190509392505050565b60006020820190506140a96000830184613638565b92915050565b60006080820190506140c46000830187613638565b6140d16020830186613638565b6140de6040830185614061565b81810360608301526140f081846136b4565b905095945050505050565b600060208201905081810360008301526141158184613647565b905092915050565b600060208201905061413260008301846136a5565b92915050565b600060208201905061414d60008301846136ed565b92915050565b6000602082019050818103600083015261416d81846136fc565b905092915050565b6000602082019050818103600083015261418e81613766565b9050919050565b600060208201905081810360008301526141ae816137cc565b9050919050565b600060208201905081810360008301526141ce81613832565b9050919050565b600060208201905081810360008301526141ee816138be565b9050919050565b6000602082019050818103600083015261420e81613924565b9050919050565b6000602082019050818103600083015261422e81613964565b9050919050565b6000602082019050818103600083015261424e816139ca565b9050919050565b6000602082019050818103600083015261426e81613a0a565b9050919050565b6000602082019050818103600083015261428e81613a70565b9050919050565b600060208201905081810360008301526142ae81613ab0565b9050919050565b600060208201905081810360008301526142ce81613b16565b9050919050565b600060208201905081810360008301526142ee81613b7c565b9050919050565b6000602082019050818103600083015261430e81613be2565b9050919050565b6000602082019050818103600083015261432e81613c48565b9050919050565b6000602082019050818103600083015261434e81613c88565b9050919050565b6000602082019050818103600083015261436e81613cc8565b9050919050565b6000602082019050818103600083015261438e81613d08565b9050919050565b600060208201905081810360008301526143ae81613d6e565b9050919050565b600060208201905081810360008301526143ce81613dae565b9050919050565b600060208201905081810360008301526143ee81613e14565b9050919050565b6000602082019050818103600083015261440e81613e7a565b9050919050565b6000602082019050818103600083015261442e81613ee0565b9050919050565b6000602082019050818103600083015261444e81613f46565b9050919050565b6000602082019050818103600083015261446e81613fac565b9050919050565b6000602082019050818103600083015261448e81614012565b9050919050565b60006020820190506144aa6000830184614061565b92915050565b6000604051905081810181811067ffffffffffffffff821117156144d7576144d66148b7565b5b8060405250919050565b600067ffffffffffffffff8211156144fc576144fb6148b7565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614528576145276148b7565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614558576145576148b7565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006145f48261470e565b91506145ff8361470e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146345761463361482a565b5b828201905092915050565b600061464a8261470e565b91506146558361470e565b92508261466557614664614859565b5b828204905092915050565b600061467b8261470e565b91506146868361470e565b9250828210156146995761469861482a565b5b828203905092915050565b60006146af826146ee565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006147238261472a565b9050919050565b6000614735826146ee565b9050919050565b82818337600083830152505050565b60005b8381101561476957808201518184015260208101905061474e565b83811115614778576000848401525b50505050565b6000600282049050600182168061479657607f821691505b602082108114156147aa576147a9614888565b5b50919050565b60006147bb8261470e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147ee576147ed61482a565b5b600182019050919050565b60006148048261470e565b915061480f8361470e565b92508261481f5761481e614859565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b614900816146a4565b811461490b57600080fd5b50565b614917816146b6565b811461492257600080fd5b50565b61492e816146c2565b811461493957600080fd5b50565b6149458161470e565b811461495057600080fd5b5056fea264697066735822122015a5caf1b64bc56817c44d5fa330c4261dbfafb896ffee644b5cd128d26ded7f64736f6c634300080000330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000b159f1a0920a7f1d336397a52d92da94b12798380000000000000000000000000000000000000000000000000000000000000037687474703a2f2f7777772e726f79616c736f63696574796f66706c61796572732e696f2f6170692f6d657461646174612f63686970732f000000000000000000

Deployed Bytecode

0x6080604052600436106101f95760003560e01c8063715018a61161010d578063b88d4fde116100a0578063d7adad581161006f578063d7adad581461072e578063d92895791461076b578063e985e9c514610796578063f2fde38b146107d3578063f597ad08146107fc576101f9565b8063b88d4fde1461066f578063c87b56dd14610698578063cdd756f9146106d5578063d2d6585c14610712576101f9565b80638da5cb5b116100dc5780638da5cb5b146105c757806395d89b41146105f25780639a47d2211461061d578063a22cb46514610646576101f9565b8063715018a6146105505780637f0785db1461056757806383bf9d5814610592578063853828b6146105bd576101f9565b8063379607f51161019057806355f804b31161015f57806355f804b3146104475780635b74bb49146104705780635efb6032146104995780636352211e146104d657806370a0823114610513576101f9565b8063379607f51461038857806342842e0e146103a4578063438b6300146103cd5780634f6ccce71461040a576101f9565b806318160ddd116101cc57806318160ddd146102cc57806323b872dd146102f757806325f106d7146103205780632f745c591461034b576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190613564565b610827565b604051610232919061411d565b60405180910390f35b34801561024757600080fd5b506102506108a1565b60405161025d9190614153565b60405180910390f35b34801561027257600080fd5b5061028d600480360381019061028891906135f7565b610933565b60405161029a9190614094565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c591906134e7565b6109b8565b005b3480156102d857600080fd5b506102e1610ad0565b6040516102ee9190614495565b60405180910390f35b34801561030357600080fd5b5061031e600480360381019061031991906133e1565b610add565b005b34801561032c57600080fd5b50610335610b3d565b6040516103429190614495565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d91906134e7565b610b47565b60405161037f9190614495565b60405180910390f35b6103a2600480360381019061039d91906135f7565b610bec565b005b3480156103b057600080fd5b506103cb60048036038101906103c691906133e1565b610db5565b005b3480156103d957600080fd5b506103f460048036038101906103ef919061337c565b610dd5565b60405161040191906140fb565b60405180910390f35b34801561041657600080fd5b50610431600480360381019061042c91906135f7565b610f51565b60405161043e9190614495565b60405180910390f35b34801561045357600080fd5b5061046e600480360381019061046991906135b6565b610fe8565b005b34801561047c57600080fd5b50610497600480360381019061049291906135f7565b61107e565b005b3480156104a557600080fd5b506104c060048036038101906104bb91906135f7565b611104565b6040516104cd919061411d565b60405180910390f35b3480156104e257600080fd5b506104fd60048036038101906104f891906135f7565b61112e565b60405161050a9190614094565b60405180910390f35b34801561051f57600080fd5b5061053a6004803603810190610535919061337c565b6111e0565b6040516105479190614495565b60405180910390f35b34801561055c57600080fd5b50610565611298565b005b34801561057357600080fd5b5061057c611320565b6040516105899190614495565b60405180910390f35b34801561059e57600080fd5b506105a761133c565b6040516105b49190614495565b60405180910390f35b6105c5611346565b005b3480156105d357600080fd5b506105dc611402565b6040516105e99190614094565b60405180910390f35b3480156105fe57600080fd5b5061060761142c565b6040516106149190614153565b60405180910390f35b34801561062957600080fd5b50610644600480360381019061063f91906135f7565b6114be565b005b34801561065257600080fd5b5061066d600480360381019061066891906134ab565b611544565b005b34801561067b57600080fd5b5061069660048036038101906106919190613430565b6116c5565b005b3480156106a457600080fd5b506106bf60048036038101906106ba91906135f7565b611727565b6040516106cc9190614153565b60405180910390f35b3480156106e157600080fd5b506106fc60048036038101906106f7919061337c565b6117ce565b6040516107099190614495565b60405180910390f35b61072c600480360381019061072791906135f7565b61192b565b005b34801561073a57600080fd5b506107556004803603810190610750919061337c565b611ac0565b60405161076291906140fb565b60405180910390f35b34801561077757600080fd5b50610780611cec565b60405161078d9190614138565b60405180910390f35b3480156107a257600080fd5b506107bd60048036038101906107b891906133a5565b611d12565b6040516107ca919061411d565b60405180910390f35b3480156107df57600080fd5b506107fa60048036038101906107f5919061337c565b611da6565b005b34801561080857600080fd5b50610811611e9e565b60405161081e919061411d565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089a575061089982611ec5565b5b9050919050565b6060600080546108b09061477e565b80601f01602080910402602001604051908101604052809291908181526020018280546108dc9061477e565b80156109295780601f106108fe57610100808354040283529160200191610929565b820191906000526020600020905b81548152906001019060200180831161090c57829003601f168201915b5050505050905090565b600061093e82611fa7565b61097d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097490614375565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109c38261112e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2b906143f5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a53612013565b73ffffffffffffffffffffffffffffffffffffffff161480610a825750610a8181610a7c612013565b611d12565b5b610ac1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab8906142b5565b60405180910390fd5b610acb838361201b565b505050565b6000600880549050905090565b610aee610ae8612013565b826120d4565b610b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2490614435565b60405180910390fd5b610b388383836121b2565b505050565b6000600c54905090565b6000610b52836111e0565b8210610b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8a90614175565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600c54421015610c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2890614335565b60405180910390fd5b600d54600c54610c4191906145e9565b4210610c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7990614475565b60405180910390fd5b80600f5411610cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbd906141b5565b60405180910390fd5b6000610cd133611ac0565b90508181511015610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e90614215565b60405180910390fd5b6000805b83811015610daf57828181518110610d5c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519150610d70338361240e565b60016012600084815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610da7906147b0565b915050610d1b565b50505050565b610dd0838383604051806020016040528060008152506116c5565b505050565b60606000610de2836111e0565b90506000811415610e6557600067ffffffffffffffff811115610e2e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610e5c5781602001602082028036833780820191505090505b50915050610f4c565b60008167ffffffffffffffff811115610ea7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610ed55781602001602082028036833780820191505090505b50905060005b82811015610f4557610eed8582610b47565b828281518110610f26577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610f3d906147b0565b915050610edb565b5080925050505b919050565b6000610f5b610ad0565b8210610f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9390614455565b60405180910390fd5b60088281548110610fd6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610ff0612013565b73ffffffffffffffffffffffffffffffffffffffff1661100e611402565b73ffffffffffffffffffffffffffffffffffffffff1614611064576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105b90614395565b60405180910390fd5b806011908051906020019061107a9291906130f5565b5050565b611086612013565b73ffffffffffffffffffffffffffffffffffffffff166110a4611402565b73ffffffffffffffffffffffffffffffffffffffff16146110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f190614395565b60405180910390fd5b80600d8190555050565b60006012600083815260200190815260200160002060009054906101000a900460ff169050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ce906142f5565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611251576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611248906142d5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112a0612013565b73ffffffffffffffffffffffffffffffffffffffff166112be611402565b73ffffffffffffffffffffffffffffffffffffffff1614611314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130b90614395565b60405180910390fd5b61131e600061242c565b565b600061132a610ad0565b600e546113379190614670565b905090565b6000600d54905090565b61134e612013565b73ffffffffffffffffffffffffffffffffffffffff1661136c611402565b73ffffffffffffffffffffffffffffffffffffffff16146113c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b990614395565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061140057600080fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461143b9061477e565b80601f01602080910402602001604051908101604052809291908181526020018280546114679061477e565b80156114b45780601f10611489576101008083540402835291602001916114b4565b820191906000526020600020905b81548152906001019060200180831161149757829003601f168201915b5050505050905090565b6114c6612013565b73ffffffffffffffffffffffffffffffffffffffff166114e4611402565b73ffffffffffffffffffffffffffffffffffffffff161461153a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153190614395565b60405180910390fd5b80600c8190555050565b61154c612013565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b190614275565b60405180910390fd5b80600560006115c7612013565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611674612013565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116b9919061411d565b60405180910390a35050565b6116d66116d0612013565b836120d4565b611715576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170c90614435565b60405180910390fd5b611721848484846124f2565b50505050565b606061173282611fa7565b611771576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611768906143d5565b60405180910390fd5b600061177b61254e565b9050600081511161179b57604051806020016040528060008152506117c6565b806117a5846125e0565b6040516020016117b6929190614070565b6040516020818303038152906040525b915050919050565b600080600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663438b6300846040518263ffffffff1660e01b815260040161182c9190614094565b60006040518083038186803b15801561184457600080fd5b505afa158015611858573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906118819190613523565b90506000805b82518110156119205760001515601260008584815181106118d1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060009054906101000a900460ff161515141561190d5760018261190a91906145e9565b91505b8080611918906147b0565b915050611887565b508092505050919050565b611933612013565b73ffffffffffffffffffffffffffffffffffffffff16611951611402565b73ffffffffffffffffffffffffffffffffffffffff16146119a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199e90614395565b60405180910390fd5b60006119b1610ad0565b600e546119be9190614670565b9050600d54600c546119d091906145e9565b4211611a11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0890614315565b60405180910390fd5b81811015611a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4b90614415565b60405180910390fd5b6000805b83811015611aba57611a6861278d565b9150611a74338361240e565b60016012600084815260200190815260200160002060006101000a81548160ff021916908315150217905550816010819055508080611ab2906147b0565b915050611a58565b50505050565b60606000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663438b6300846040518263ffffffff1660e01b8152600401611b1f9190614094565b60006040518083038186803b158015611b3757600080fd5b505afa158015611b4b573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611b749190613523565b90506000611b81846117ce565b905060008167ffffffffffffffff811115611bc5577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611bf35781602001602082028036833780820191505090505b50905060008060005b8551811015611cde57858181518110611c3e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519150600015156012600084815260200190815260200160002060009054906101000a900460ff1615151415611ccb5781848481518110611caf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050600183611cc891906145e9565b92505b8080611cd6906147b0565b915050611bfc565b508295505050505050919050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611dae612013565b73ffffffffffffffffffffffffffffffffffffffff16611dcc611402565b73ffffffffffffffffffffffffffffffffffffffff1614611e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1990614395565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e89906141d5565b60405180910390fd5b611e9b8161242c565b50565b6000600c544210158015611ec05750600d54600c54611ebd91906145e9565b42105b905090565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f9057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611fa05750611f9f82612827565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661208e8361112e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006120df82611fa7565b61211e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211590614295565b60405180910390fd5b60006121298361112e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061219857508373ffffffffffffffffffffffffffffffffffffffff1661218084610933565b73ffffffffffffffffffffffffffffffffffffffff16145b806121a957506121a88185611d12565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166121d28261112e565b73ffffffffffffffffffffffffffffffffffffffff1614612228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221f906143b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612298576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228f90614255565b60405180910390fd5b6122a3838383612891565b6122ae60008261201b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122fe9190614670565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461235591906145e9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6124288282604051806020016040528060008152506129a5565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124fd8484846121b2565b61250984848484612a00565b612548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253f90614195565b60405180910390fd5b50505050565b60606011805461255d9061477e565b80601f01602080910402602001604051908101604052809291908181526020018280546125899061477e565b80156125d65780601f106125ab576101008083540402835291602001916125d6565b820191906000526020600020905b8154815290600101906020018083116125b957829003601f168201915b5050505050905090565b60606000821415612628576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612788565b600082905060005b6000821461265a578080612643906147b0565b915050600a82612653919061463f565b9150612630565b60008167ffffffffffffffff81111561269c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156126ce5781602001600182028036833780820191505090505b5090505b60008514612781576001826126e79190614670565b9150600a856126f691906147f9565b603061270291906145e9565b60f81b81838151811061273e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561277a919061463f565b94506126d2565b8093505050505b919050565b60008060105490505b600e548110156127e957600015156012600083815260200190815260200160002060009054906101000a900460ff16151514156127d65780915050612824565b80806127e1906147b0565b915050612796565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281b90614235565b60405180910390fd5b90565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61289c838383612b97565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128df576128da81612b9c565b61291e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461291d5761291c8382612be5565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129615761295c81612d52565b6129a0565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461299f5761299e8282612e95565b5b5b505050565b6129af8383612f14565b6129bc6000848484612a00565b6129fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f290614195565b60405180910390fd5b505050565b6000612a218473ffffffffffffffffffffffffffffffffffffffff166130e2565b15612b8a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a4a612013565b8786866040518563ffffffff1660e01b8152600401612a6c94939291906140af565b602060405180830381600087803b158015612a8657600080fd5b505af1925050508015612ab757506040513d601f19601f82011682018060405250810190612ab4919061358d565b60015b612b3a573d8060008114612ae7576040519150601f19603f3d011682016040523d82523d6000602084013e612aec565b606091505b50600081511415612b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2990614195565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b8f565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612bf2846111e0565b612bfc9190614670565b9050600060076000848152602001908152602001600020549050818114612ce1576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612d669190614670565b9050600060096000848152602001908152602001600020549050600060088381548110612dbc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612e04577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612e79577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612ea0836111e0565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7b90614355565b60405180910390fd5b612f8d81611fa7565b15612fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fc4906141f5565b60405180910390fd5b612fd960008383612891565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461302991906145e9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546131019061477e565b90600052602060002090601f016020900481019282613123576000855561316a565b82601f1061313c57805160ff191683800117855561316a565b8280016001018555821561316a579182015b8281111561316957825182559160200191906001019061314e565b5b509050613177919061317b565b5090565b5b8082111561319457600081600090555060010161317c565b5090565b60006131ab6131a6846144e1565b6144b0565b905080838252602082019050828560208602820111156131ca57600080fd5b60005b858110156131fa57816131e08882613367565b8452602084019350602083019250506001810190506131cd565b5050509392505050565b60006132176132128461450d565b6144b0565b90508281526020810184848401111561322f57600080fd5b61323a84828561473c565b509392505050565b60006132556132508461453d565b6144b0565b90508281526020810184848401111561326d57600080fd5b61327884828561473c565b509392505050565b60008135905061328f816148f7565b92915050565b600082601f8301126132a657600080fd5b81516132b6848260208601613198565b91505092915050565b6000813590506132ce8161490e565b92915050565b6000813590506132e381614925565b92915050565b6000815190506132f881614925565b92915050565b600082601f83011261330f57600080fd5b813561331f848260208601613204565b91505092915050565b600082601f83011261333957600080fd5b8135613349848260208601613242565b91505092915050565b6000813590506133618161493c565b92915050565b6000815190506133768161493c565b92915050565b60006020828403121561338e57600080fd5b600061339c84828501613280565b91505092915050565b600080604083850312156133b857600080fd5b60006133c685828601613280565b92505060206133d785828601613280565b9150509250929050565b6000806000606084860312156133f657600080fd5b600061340486828701613280565b935050602061341586828701613280565b925050604061342686828701613352565b9150509250925092565b6000806000806080858703121561344657600080fd5b600061345487828801613280565b945050602061346587828801613280565b935050604061347687828801613352565b925050606085013567ffffffffffffffff81111561349357600080fd5b61349f878288016132fe565b91505092959194509250565b600080604083850312156134be57600080fd5b60006134cc85828601613280565b92505060206134dd858286016132bf565b9150509250929050565b600080604083850312156134fa57600080fd5b600061350885828601613280565b925050602061351985828601613352565b9150509250929050565b60006020828403121561353557600080fd5b600082015167ffffffffffffffff81111561354f57600080fd5b61355b84828501613295565b91505092915050565b60006020828403121561357657600080fd5b6000613584848285016132d4565b91505092915050565b60006020828403121561359f57600080fd5b60006135ad848285016132e9565b91505092915050565b6000602082840312156135c857600080fd5b600082013567ffffffffffffffff8111156135e257600080fd5b6135ee84828501613328565b91505092915050565b60006020828403121561360957600080fd5b600061361784828501613352565b91505092915050565b600061362c8383614052565b60208301905092915050565b613641816146a4565b82525050565b60006136528261457d565b61365c81856145ab565b93506136678361456d565b8060005b8381101561369857815161367f8882613620565b975061368a8361459e565b92505060018101905061366b565b5085935050505092915050565b6136ae816146b6565b82525050565b60006136bf82614588565b6136c981856145bc565b93506136d981856020860161474b565b6136e2816148e6565b840191505092915050565b6136f681614718565b82525050565b600061370782614593565b61371181856145cd565b935061372181856020860161474b565b61372a816148e6565b840191505092915050565b600061374082614593565b61374a81856145de565b935061375a81856020860161474b565b80840191505092915050565b6000613773602b836145cd565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006137d96032836145cd565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061383f6057836145cd565b91507f5468697320616d6f756e74206973206f76657220746865206d6178207065722060008301527f7472616e73616374696f6e206c696d697420696e20706c61636520746f20707260208301527f6576656e7420676173206c696d6974206973737565732e0000000000000000006040830152606082019050919050565b60006138cb6026836145cd565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613931601c836145cd565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613971603b836145cd565b91507f4e6f7420656e6f75676820756e72656465656d656420636172647320696e207460008301527f6869732077616c6c657420666f72207468697320616d6f756e742e00000000006020830152604082019050919050565b60006139d7601b836145cd565b91507f416c6c20746f6b656e7320616c72656164792072656465656d656400000000006000830152602082019050919050565b6000613a176024836145cd565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a7d6019836145cd565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613abd602c836145cd565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613b236038836145cd565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613b89602a836145cd565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613bef6029836145cd565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c55601b836145cd565b91507f5468652064726f7020686173206e6f742079657420656e6465642e00000000006000830152602082019050919050565b6000613c956015836145cd565b91507f44726f70206973206e6f7420796574206f70656e2e00000000000000000000006000830152602082019050919050565b6000613cd56020836145cd565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613d15602c836145cd565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613d7b6020836145cd565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613dbb6029836145cd565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e21602f836145cd565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613e876021836145cd565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613eed602a836145cd565b91507f5468697320616d6f756e74206973206d6f7265207468616e2072656d61696e2060008301527f756e636c61696d65642e000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f536031836145cd565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613fb9602c836145cd565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b600061401f600f836145cd565b91507f44726f702068617320656e6465642e00000000000000000000000000000000006000830152602082019050919050565b61405b8161470e565b82525050565b61406a8161470e565b82525050565b600061407c8285613735565b91506140888284613735565b91508190509392505050565b60006020820190506140a96000830184613638565b92915050565b60006080820190506140c46000830187613638565b6140d16020830186613638565b6140de6040830185614061565b81810360608301526140f081846136b4565b905095945050505050565b600060208201905081810360008301526141158184613647565b905092915050565b600060208201905061413260008301846136a5565b92915050565b600060208201905061414d60008301846136ed565b92915050565b6000602082019050818103600083015261416d81846136fc565b905092915050565b6000602082019050818103600083015261418e81613766565b9050919050565b600060208201905081810360008301526141ae816137cc565b9050919050565b600060208201905081810360008301526141ce81613832565b9050919050565b600060208201905081810360008301526141ee816138be565b9050919050565b6000602082019050818103600083015261420e81613924565b9050919050565b6000602082019050818103600083015261422e81613964565b9050919050565b6000602082019050818103600083015261424e816139ca565b9050919050565b6000602082019050818103600083015261426e81613a0a565b9050919050565b6000602082019050818103600083015261428e81613a70565b9050919050565b600060208201905081810360008301526142ae81613ab0565b9050919050565b600060208201905081810360008301526142ce81613b16565b9050919050565b600060208201905081810360008301526142ee81613b7c565b9050919050565b6000602082019050818103600083015261430e81613be2565b9050919050565b6000602082019050818103600083015261432e81613c48565b9050919050565b6000602082019050818103600083015261434e81613c88565b9050919050565b6000602082019050818103600083015261436e81613cc8565b9050919050565b6000602082019050818103600083015261438e81613d08565b9050919050565b600060208201905081810360008301526143ae81613d6e565b9050919050565b600060208201905081810360008301526143ce81613dae565b9050919050565b600060208201905081810360008301526143ee81613e14565b9050919050565b6000602082019050818103600083015261440e81613e7a565b9050919050565b6000602082019050818103600083015261442e81613ee0565b9050919050565b6000602082019050818103600083015261444e81613f46565b9050919050565b6000602082019050818103600083015261446e81613fac565b9050919050565b6000602082019050818103600083015261448e81614012565b9050919050565b60006020820190506144aa6000830184614061565b92915050565b6000604051905081810181811067ffffffffffffffff821117156144d7576144d66148b7565b5b8060405250919050565b600067ffffffffffffffff8211156144fc576144fb6148b7565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614528576145276148b7565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614558576145576148b7565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006145f48261470e565b91506145ff8361470e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146345761463361482a565b5b828201905092915050565b600061464a8261470e565b91506146558361470e565b92508261466557614664614859565b5b828204905092915050565b600061467b8261470e565b91506146868361470e565b9250828210156146995761469861482a565b5b828203905092915050565b60006146af826146ee565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006147238261472a565b9050919050565b6000614735826146ee565b9050919050565b82818337600083830152505050565b60005b8381101561476957808201518184015260208101905061474e565b83811115614778576000848401525b50505050565b6000600282049050600182168061479657607f821691505b602082108114156147aa576147a9614888565b5b50919050565b60006147bb8261470e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147ee576147ed61482a565b5b600182019050919050565b60006148048261470e565b915061480f8361470e565b92508261481f5761481e614859565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b614900816146a4565b811461490b57600080fd5b50565b614917816146b6565b811461492257600080fd5b50565b61492e816146c2565b811461493957600080fd5b50565b6149458161470e565b811461495057600080fd5b5056fea264697066735822122015a5caf1b64bc56817c44d5fa330c4261dbfafb896ffee644b5cd128d26ded7f64736f6c63430008000033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000b159f1a0920a7f1d336397a52d92da94b12798380000000000000000000000000000000000000000000000000000000000000037687474703a2f2f7777772e726f79616c736f63696574796f66706c61796572732e696f2f6170692f6d657461646174612f63686970732f000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): http://www.royalsocietyofplayers.io/api/metadata/chips/
Arg [1] : royalSocietyAddress (address): 0xB159F1a0920A7f1D336397A52D92da94b1279838

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 000000000000000000000000b159f1a0920a7f1d336397a52d92da94b1279838
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000037
Arg [3] : 687474703a2f2f7777772e726f79616c736f63696574796f66706c6179657273
Arg [4] : 2e696f2f6170692f6d657461646174612f63686970732f000000000000000000


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.