ETH Price: $2,687.02 (-4.94%)

Token

Fantasy Islands Villa (FI)
 

Overview

Max Total Supply

0 FI

Holders

53

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 FI
0x02Bf6C27F51af365DBbD5A7FDc544883B95e6af9
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Fantasy Islands is the ultra-luxury Island community in the metaverse. There are only 100 Fantasy Islands, and each FI100 Membership Card represents a Fantasy Islands Villa experience NFT and land parcel NFT in The Sandbox metaverse, along with 4 additional bonus asset NFTs. All Sandbox assets will be delivered to holders of the FI100 Membership Card at a later date.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DestNFT

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 24 : DestNFT.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165Checker.sol";
import "./interfaces/IDestNFT.sol";
import "./interfaces/IRandomGenerator.sol";
import "./libraries/String.sol";
import "./libraries/ERC721Snapshot.sol";
import './interfaces/IERC2981Royalties.sol';

contract DestNFT is ERC721,
ERC721URIStorage,
ERC721Snapshot,
IERC2981Royalties,
IDestNFT,
Pausable,
Ownable,
ReentrancyGuard {
    using Strings for uint256;
    using ERC165Checker for address;

    /// @dev royalties
    uint24 royaltyFeesInBips;
    address royaltyAddress;

    /// @dev baseURI
    string internal baseURI;

    /// @dev token id tracker
    uint256 public tokenIdTracker;

    IRandomGenerator public immutable randomGenerator;

    string[] public metadataHashList;

    event MetaHashListInitialized(string[] values);

    event MetadataHashClaimed(address indexed _claimer, string metadataHash);

    event PermanentURI(string _value, uint256 indexed _id);

    constructor(
        string memory name_,
        string memory symbol_,
        string memory baseURI_,
        string[] memory metahashes,
        address randomGenerator_,
        address owner
    ) ERC721(name_, symbol_) Ownable() ReentrancyGuard() {
        require(randomGenerator_.supportsInterface(type(IRandomGenerator).interfaceId), "Random generator is invalid");
        baseURI = baseURI_;
        metadataHashList = metahashes;
        randomGenerator = IRandomGenerator(randomGenerator_);
        transferOwnership(owner);
        emit MetaHashListInitialized(metahashes);
    }

    function updateMetadataHashList(string[] memory metahashes) external override onlyOwner {
        metadataHashList = metahashes;
        emit MetaHashListInitialized(metahashes);
    }

    function setRoyalty(address royaltyReceiver_, uint24 royaltyFeesInBips_) external override onlyOwner {
        require(royaltyReceiver_ != address(0), 'zero receiver address');
        require(royaltyFeesInBips_ <= 10000, 'ERC2981Royalties: Too high');
        royaltyAddress = royaltyReceiver_;
        royaltyFeesInBips = royaltyFeesInBips_;
    }

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

    function randomMint(address to) external override onlyOwner nonReentrant {
        require(metadataHashList.length > 0, "All tokens have been claimed");

        randomGenerator.askRandomness(to);
    }

    /**
     * @dev Pausable check
     * Requirements:
     * - the contract must not be paused for redeemers
     * - allow transfers for owner if paused
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal override(ERC721, ERC721Snapshot) {
        super._beforeTokenTransfer(from, to, tokenId);
        require(msg.sender == owner() || !paused(), "ERC721Pausable: token transfer while paused");
    }

    function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) {
        super._burn(tokenId);
    }

    function tokenURI(uint256 tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory) {
        return super.tokenURI(tokenId);
    }

    function paused() public view override(IDestNFT, Pausable) returns (bool) {
        return super.paused();
    }

    function pause() public override onlyOwner {
        super._pause();
    }

    function unpause() public override onlyOwner {
        super._unpause();
    }

    function snapshotId() public view override returns (uint256) {
        return super._getCurrentSnapshotId();
    }

    function snapshot() public override onlyOwner returns (uint256) {
        return super._snapshot();
    }

    function calculateRoyalty(uint256 _salePrice) view public returns (uint256) {
        return (_salePrice / 10000) * royaltyFeesInBips;
    }

    /// @dev Get token royalties
    /// @param _salePrice calculated royalty
    function royaltyInfo(
        uint256 /* _tokenId */,
        uint256 _salePrice
    ) external view virtual override returns (address, uint256)
    {
        return (royaltyAddress, calculateRoyalty(_salePrice));
    }

    /// @inheritdoc	ERC165
    function supportsInterface(bytes4 interfaceId) public view virtual override (ERC721, IERC165) returns (bool)
    {
        return
        interfaceId == type(IERC2981Royalties).interfaceId ||
        super.supportsInterface(interfaceId);
    }

    /**
     * @notice Callback called from RandomGenerator upon random number generation
     * @param randomness random number generated
     * @param recipient token recipient
     */
    function randomMintCallback(
        uint256 randomness,
        address recipient
    ) external override {
        require(msg.sender == address(randomGenerator), "Only random generator");

        uint256 len = metadataHashList.length;
        uint256 rand = randomness % len;
        string memory metadataSelected = metadataHashList[rand];
        string memory last = metadataHashList[len - 1];

        metadataHashList.pop();

        if (rand < metadataHashList.length) {
            metadataHashList[rand] = last;
        }

        _safeMint(recipient, tokenIdTracker);
        _setTokenURI(tokenIdTracker, metadataSelected);
        tokenIdTracker += 1;

        emit MetadataHashClaimed(recipient, metadataSelected);
    }
}

File 2 of 24 : 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 24 : Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

    bool private _paused;

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

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

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

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

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

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

File 4 of 24 : ERC721URIStorage.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

File 5 of 24 : ERC721Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "../../../security/Pausable.sol";

/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721Pausable is ERC721, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        require(!paused(), "ERC721Pausable: token transfer while paused");
    }
}

File 6 of 24 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 7 of 24 : 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 8 of 24 : ERC165Checker.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Library used to query support of an interface declared via {IERC165}.
 *
 * Note that these functions return the actual result of the query: they do not
 * `revert` if an interface is not supported. It is up to the caller to decide
 * what to do in these cases.
 */
library ERC165Checker {
    // As per the EIP-165 spec, no interface should ever match 0xffffffff
    bytes4 private constant _INTERFACE_ID_INVALID = 0xffffffff;

    /**
     * @dev Returns true if `account` supports the {IERC165} interface,
     */
    function supportsERC165(address account) internal view returns (bool) {
        // Any contract that implements ERC165 must explicitly indicate support of
        // InterfaceId_ERC165 and explicitly indicate non-support of InterfaceId_Invalid
        return
            _supportsERC165Interface(account, type(IERC165).interfaceId) &&
            !_supportsERC165Interface(account, _INTERFACE_ID_INVALID);
    }

    /**
     * @dev Returns true if `account` supports the interface defined by
     * `interfaceId`. Support for {IERC165} itself is queried automatically.
     *
     * See {IERC165-supportsInterface}.
     */
    function supportsInterface(address account, bytes4 interfaceId) internal view returns (bool) {
        // query support of both ERC165 as per the spec and support of _interfaceId
        return supportsERC165(account) && _supportsERC165Interface(account, interfaceId);
    }

    /**
     * @dev Returns a boolean array where each value corresponds to the
     * interfaces passed in and whether they're supported or not. This allows
     * you to batch check interfaces for a contract where your expectation
     * is that some interfaces may not be supported.
     *
     * See {IERC165-supportsInterface}.
     *
     * _Available since v3.4._
     */
    function getSupportedInterfaces(address account, bytes4[] memory interfaceIds)
        internal
        view
        returns (bool[] memory)
    {
        // an array of booleans corresponding to interfaceIds and whether they're supported or not
        bool[] memory interfaceIdsSupported = new bool[](interfaceIds.length);

        // query support of ERC165 itself
        if (supportsERC165(account)) {
            // query support of each interface in interfaceIds
            for (uint256 i = 0; i < interfaceIds.length; i++) {
                interfaceIdsSupported[i] = _supportsERC165Interface(account, interfaceIds[i]);
            }
        }

        return interfaceIdsSupported;
    }

    /**
     * @dev Returns true if `account` supports all the interfaces defined in
     * `interfaceIds`. Support for {IERC165} itself is queried automatically.
     *
     * Batch-querying can lead to gas savings by skipping repeated checks for
     * {IERC165} support.
     *
     * See {IERC165-supportsInterface}.
     */
    function supportsAllInterfaces(address account, bytes4[] memory interfaceIds) internal view returns (bool) {
        // query support of ERC165 itself
        if (!supportsERC165(account)) {
            return false;
        }

        // query support of each interface in _interfaceIds
        for (uint256 i = 0; i < interfaceIds.length; i++) {
            if (!_supportsERC165Interface(account, interfaceIds[i])) {
                return false;
            }
        }

        // all interfaces supported
        return true;
    }

    /**
     * @notice Query if a contract implements an interface, does not check ERC165 support
     * @param account The address of the contract to query for support of an interface
     * @param interfaceId The interface identifier, as specified in ERC-165
     * @return true if the contract at account indicates support of the interface with
     * identifier interfaceId, false otherwise
     * @dev Assumes that account contains a contract that supports ERC165, otherwise
     * the behavior of this method is undefined. This precondition can be checked
     * with {supportsERC165}.
     * Interface identification is specified in ERC-165.
     */
    function _supportsERC165Interface(address account, bytes4 interfaceId) private view returns (bool) {
        bytes memory encodedParams = abi.encodeWithSelector(IERC165.supportsInterface.selector, interfaceId);
        (bool success, bytes memory result) = account.staticcall{gas: 30000}(encodedParams);
        if (result.length < 32) return false;
        return success && abi.decode(result, (bool));
    }
}

File 9 of 24 : IDestNFT.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";

interface IDestNFT is IERC721 {

    function randomMint(address to) external;

    function randomMintCallback(uint256 randomness, address recipient) external;

    function pause() external;

    function unpause() external;

    function paused() external view returns (bool);

    function snapshotId() external view returns (uint256);

    function snapshot() external returns (uint256);

    function setRoyalty(address royaltyReceiver_, uint24 royaltyFeesInBips_) external;

    function updateMetadataHashList(string[] memory metahashes) external;
}

File 10 of 24 : IRandomGenerator.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

interface IRandomGenerator {

    function askRandomness(address recipient) external;
}

File 11 of 24 : String.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

library String {
    function toString(bytes32 data) internal pure returns (string memory) {
        return string(abi.encodePacked("0x", toHex16(bytes16(data)), toHex16(bytes16(data << 128))));
    }

    function toHex16(bytes16 data) internal pure returns (bytes32 result) {
        result = bytes32(data) & 0xFFFFFFFFFFFFFFFF000000000000000000000000000000000000000000000000 |
            (bytes32(data) & 0x0000000000000000FFFFFFFFFFFFFFFF00000000000000000000000000000000) >> 64;
        result = result & 0xFFFFFFFF000000000000000000000000FFFFFFFF000000000000000000000000 |
            (result & 0x00000000FFFFFFFF000000000000000000000000FFFFFFFF0000000000000000) >> 32;
        result = result & 0xFFFF000000000000FFFF000000000000FFFF000000000000FFFF000000000000 |
            (result & 0x0000FFFF000000000000FFFF000000000000FFFF000000000000FFFF00000000) >> 16;
        result = result & 0xFF000000FF000000FF000000FF000000FF000000FF000000FF000000FF000000 |
            (result & 0x00FF000000FF000000FF000000FF000000FF000000FF000000FF000000FF0000) >> 8;
        result = (result & 0xF000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000) >> 4 |
            (result & 0x0F000F000F000F000F000F000F000F000F000F000F000F000F000F000F000F00) >> 8;
        result = bytes32(
            0x3030303030303030303030303030303030303030303030303030303030303030 +
            uint256(result) +
            (uint256(result) + 0x0606060606060606060606060606060606060606060606060606060606060606 >> 4 &
            0x0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F0F) * 7);
    }
}

File 12 of 24 : ERC721Snapshot.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/extensions/ERC20Snapshot.sol)

pragma solidity ^0.8.4;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/Arrays.sol";
import "@openzeppelin/contracts/utils/Counters.sol";

abstract contract ERC721Snapshot is ERC721 {
    using Arrays for uint256[];
    using Counters for Counters.Counter;

    // Snapshotted values have arrays of ids and the value corresponding to that id. These could be an array of a
    // Snapshot struct, but that would impede usage of functions that work on an array.
    struct SnapshotsBalances {
        uint256[] ids;
        uint256[] values;
    }

    struct SnapshotsOwners {
        uint256[] ids;
        address[] addresses;
    }

    mapping(address => SnapshotsBalances) private _accountBalanceSnapshots;
    mapping(uint256 => SnapshotsOwners) private _accountOwnersSnapshots;

    // Snapshot ids increase monotonically, with the first value being 1. An id of 0 is invalid.
    Counters.Counter private _currentSnapshotId;

    /**
     * @dev Emitted by {_snapshot} when a snapshot identified by `id` is created.
     */
    event Snapshot(uint256 id);

    /**
     * @dev Creates a new snapshot and returns its snapshot id.
     *
     * Emits a {Snapshot} event that contains the same id.
     *
     * {_snapshot} is `internal` and you have to decide how to expose it externally. Its usage may be restricted to a
     * set of accounts, for example using {AccessControl}, or it may be open to the public.
     *
     * [WARNING]
     * ====
     * While an open way of calling {_snapshot} is required for certain trust minimization mechanisms such as forking,
     * you must consider that it can potentially be used by attackers in two ways.
     *
     * First, it can be used to increase the cost of retrieval of values from snapshots, although it will grow
     * logarithmically thus rendering this attack ineffective in the long term. Second, it can be used to target
     * specific accounts and increase the cost of ERC20 transfers for them, in the ways specified in the Gas Costs
     * section above.
     *
     * We haven't measured the actual numbers; if this is something you're interested in please reach out to us.
     * ====
     */
    function _snapshot() internal virtual returns (uint256) {
        _currentSnapshotId.increment();

        uint256 currentId = _getCurrentSnapshotId();
        emit Snapshot(currentId);
        return currentId;
    }

    /**
     * @dev Get the current snapshotId
     */
    function _getCurrentSnapshotId() internal view virtual returns (uint256) {
        return _currentSnapshotId.current();
    }

    /**
     * @dev Retrieves the balance of `account` at the time `snapshotId` was created.
     */
    function balanceOfAt(address account, uint256 snapshotId) public view virtual returns (uint256) {
        (bool snapshotted, uint256 value) = _valueAt(snapshotId, _accountBalanceSnapshots[account]);

        return snapshotted ? value : balanceOf(account);
    }

    function ownerOfAt(uint256 tokenId, uint256 snapshotId) public view virtual returns (address) {
        (bool snapshotted, address addr) = _ownerAt(snapshotId, _accountOwnersSnapshots[tokenId]);

        return snapshotted ? addr : address(0);
    }

    // Update balance and/or total supply snapshots before the values are modified. This is implemented
    // in the _beforeTokenTransfer hook, which is executed for _mint, _burn, and _transfer operations.
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            // mint
            _updateAccountSnapshot(to, tokenId, 1);
        } else if (to == address(0)) {
            // burn
            _updateAccountSnapshot(from, tokenId, -1);
        } else {
            // transfer
            _updateAccountSnapshot(from, tokenId, -1);
            _updateAccountSnapshot(to, tokenId, 1);
        }
    }

    function _valueAt(uint256 snapshotId, SnapshotsBalances storage snapshots) private view returns (bool, uint256) {
        require(snapshotId > 0, "ERC721Snapshot: id is 0");
        require(snapshotId <= _getCurrentSnapshotId(), "ERC721Snapshot: nonexistent id");

        uint256 index = snapshots.ids.findUpperBound(snapshotId);

        if (index == snapshots.ids.length) {
            return (false, 0);
        } else {
            return (true, snapshots.values[index]);
        }
    }

    function _ownerAt(uint256 snapshotId, SnapshotsOwners storage snapshots) private view returns (bool, address) {
        require(snapshotId > 0, "ERC721Snapshot: id is 0");
        require(snapshotId <= _getCurrentSnapshotId(), "ERC721Snapshot: nonexistent id");

        uint256 index = snapshots.ids.findUpperBound(snapshotId);

        if (index == snapshots.ids.length) {
            return (false, address(0));
        } else {
            return (true, snapshots.addresses[index]);
        }
    }

    function _updateAccountSnapshot(address account, uint256 tokenId, int8 amount) private {
        _updateSnapshotBalance(_accountBalanceSnapshots[account], uint256(int256(super.balanceOf(account)) + amount));
        _updateSnapshotOwner(_accountOwnersSnapshots[tokenId], amount > 0 ? account : address(0));
    }

    function _updateSnapshotBalance(SnapshotsBalances storage snapshots, uint256 currentValue) private {
        uint256 currentId = _getCurrentSnapshotId();
        if (_lastSnapshotId(snapshots.ids) < currentId) {
            snapshots.ids.push(currentId);
            snapshots.values.push(currentValue);
        } else if ( snapshots.values.length > 0 ) {
            snapshots.values[ snapshots.values.length - 1 ] = currentValue;
        }
    }

    function _updateSnapshotOwner(SnapshotsOwners storage snapshots, address currentOwner) private {
        uint256 currentId = _getCurrentSnapshotId();
        uint256 lastId = _lastSnapshotId(snapshots.ids);
        if (lastId < currentId) {
            snapshots.ids.push(currentId);
            snapshots.addresses.push(currentOwner);
        } else if ( snapshots.addresses.length > 0 ) {
            snapshots.addresses[ snapshots.addresses.length - 1 ] = currentOwner;
        }
    }

    function _lastSnapshotId(uint256[] storage ids) private view returns (uint256) {
        if (ids.length == 0) {
            return 0;
        } else {
            return ids[ids.length - 1];
        }
    }
}

File 13 of 24 : IERC2981Royalties.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

/// @title IERC2981Royalties
/// @dev Interface for the ERC2981 - Token Royalty standard
interface IERC2981Royalties {
    /// @notice Called with the sale price to determine how much royalty
    //          is owed and to whom.
    /// @param _tokenId - the NFT asset queried for royalty information
    /// @param _value - the sale price of the NFT asset specified by _tokenId
    /// @return _receiver - address of who should be sent the royalty payment
    /// @return _royaltyAmount - the royalty payment amount for value sale price
    function royaltyInfo(uint256 _tokenId, uint256 _value)
    external
    view
    returns (address _receiver, uint256 _royaltyAmount);
}

File 14 of 24 : 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 15 of 24 : 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 16 of 24 : 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 17 of 24 : 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 18 of 24 : 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 19 of 24 : 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 20 of 24 : 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 21 of 24 : 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 22 of 24 : Arrays.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./math/Math.sol";

/**
 * @dev Collection of functions related to array types.
 */
library Arrays {
    /**
     * @dev Searches a sorted `array` and returns the first index that contains
     * a value greater or equal to `element`. If no such index exists (i.e. all
     * values in the array are strictly less than `element`), the array length is
     * returned. Time complexity O(log n).
     *
     * `array` is expected to be sorted in ascending order, and to contain no
     * repeated elements.
     */
    function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) {
        if (array.length == 0) {
            return 0;
        }

        uint256 low = 0;
        uint256 high = array.length;

        while (low < high) {
            uint256 mid = Math.average(low, high);

            // Note that mid will always be strictly less than high (i.e. it will be a valid array index)
            // because Math.average rounds down (it does integer division with truncation).
            if (array[mid] > element) {
                high = mid;
            } else {
                low = mid + 1;
            }
        }

        // At this point `low` is the exclusive upper bound. We will return the inclusive upper bound.
        if (low > 0 && array[low - 1] == element) {
            return low - 1;
        } else {
            return low;
        }
    }
}

File 23 of 24 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 24 of 24 : Math.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a / b + (a % b == 0 ? 0 : 1);
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"string[]","name":"metahashes","type":"string[]"},{"internalType":"address","name":"randomGenerator_","type":"address"},{"internalType":"address","name":"owner","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":false,"internalType":"string[]","name":"values","type":"string[]"}],"name":"MetaHashListInitialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_claimer","type":"address"},{"indexed":false,"internalType":"string","name":"metadataHash","type":"string"}],"name":"MetadataHashClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_value","type":"string"},{"indexed":true,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"PermanentURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Snapshot","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"snapshotId","type":"uint256"}],"name":"balanceOfAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"calculateRoyalty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"","type":"uint256"}],"name":"metadataHashList","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"snapshotId","type":"uint256"}],"name":"ownerOfAt","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"randomGenerator","outputs":[{"internalType":"contract IRandomGenerator","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"randomMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"randomness","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"randomMintCallback","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"address","name":"royaltyReceiver_","type":"address"},{"internalType":"uint24","name":"royaltyFeesInBips_","type":"uint24"}],"name":"setRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"snapshot","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"snapshotId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenIdTracker","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string[]","name":"metahashes","type":"string[]"}],"name":"updateMetadataHashList","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040523480156200001157600080fd5b50604051620037a7380380620037a78339810160408190526200003491620006d6565b8551869086906200004d9060009060208501906200040d565b508051620000639060019060208401906200040d565b5050600a805460ff19169055506200007b3362000188565b6001600b55620000a86001600160a01b038316639258011960e01b620001e2602090811b6200125917901c565b620000fa5760405162461bcd60e51b815260206004820152601b60248201527f52616e646f6d2067656e657261746f7220697320696e76616c6964000000000060448201526064015b60405180910390fd5b83516200010f90600d9060208701906200040d565b5082516200012590600f9060208601906200049c565b506001600160601b0319606083901b1660805262000143816200020c565b7f447fee62dc024eb994ac5a72c6ee8f1919a3f3f1d86725c2b234d51ec5780f0783604051620001749190620007cc565b60405180910390a150505050505062000902565b600a80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000620001ef83620002e3565b80156200020357506200020383836200031b565b90505b92915050565b600a546001600160a01b036101009091041633146200026e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620000f1565b6001600160a01b038116620002d55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401620000f1565b620002e08162000188565b50565b6000620002f8826301ffc9a760e01b6200031b565b801562000206575062000314826001600160e01b03196200031b565b1592915050565b604080516001600160e01b0319831660248083019190915282518083039091018152604490910182526020810180516001600160e01b03166301ffc9a760e01b179052905160009190829081906001600160a01b038716906175309062000384908690620007ae565b6000604051808303818686fa925050503d8060008114620003c2576040519150601f19603f3d011682016040523d82523d6000602084013e620003c7565b606091505b5091509150602081511015620003e4576000935050505062000206565b81801562000403575080806020019051810190620004039190620006ad565b9695505050505050565b8280546200041b90620008af565b90600052602060002090601f0160209004810192826200043f57600085556200048a565b82601f106200045a57805160ff19168380011785556200048a565b828001600101855582156200048a579182015b828111156200048a5782518255916020019190600101906200046d565b5062000498929150620004fc565b5090565b828054828255906000526020600020908101928215620004ee579160200282015b82811115620004ee5782518051620004dd9184916020909101906200040d565b5091602001919060010190620004bd565b506200049892915062000513565b5b80821115620004985760008155600101620004fd565b80821115620004985760006200052a828262000534565b5060010162000513565b5080546200054290620008af565b6000825580601f1062000553575050565b601f016020900490600052602060002090810190620002e09190620004fc565b80516001600160a01b03811681146200058b57600080fd5b919050565b600082601f830112620005a1578081fd5b815160206001600160401b0380831115620005c057620005c0620008ec565b8260051b620005d183820162000849565b8481528381019087850183890186018a1015620005ec578788fd5b8793505b868410156200062e5780518581111562000608578889fd5b620006188b88838d01016200063b565b84525060019390930192918501918501620005f0565b5098975050505050505050565b600082601f8301126200064c578081fd5b81516001600160401b03811115620006685762000668620008ec565b6200067d601f8201601f191660200162000849565b81815284602083860101111562000692578283fd5b620006a58260208301602087016200087c565b949350505050565b600060208284031215620006bf578081fd5b81518015158114620006cf578182fd5b9392505050565b60008060008060008060c08789031215620006ef578182fd5b86516001600160401b038082111562000706578384fd5b620007148a838b016200063b565b975060208901519150808211156200072a578384fd5b620007388a838b016200063b565b965060408901519150808211156200074e578384fd5b6200075c8a838b016200063b565b9550606089015191508082111562000772578384fd5b506200078189828a0162000590565b935050620007926080880162000573565b9150620007a260a0880162000573565b90509295509295509295565b60008251620007c28184602087016200087c565b9190910192915050565b6000602080830181845280855180835260408601915060408160051b8701019250838701855b828110156200083c57878503603f19018452815180518087526200081c818989018a85016200087c565b601f01601f191695909501860194509285019290850190600101620007f2565b5092979650505050505050565b604051601f8201601f191681016001600160401b0381118282101715620008745762000874620008ec565b604052919050565b60005b83811015620008995781810151838201526020016200087f565b83811115620008a9576000848401525b50505050565b600181811c90821680620008c457607f821691505b60208210811415620008e657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160601c612e786200092f6000396000818161042b01528181610b4a0152610f7f0152612e786000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c8063715018a61161010f578063a22cb465116100a2578063db1f6dff11610071578063db1f6dff14610413578063dcbad90d14610426578063e985e9c51461044d578063f2fde38b1461048957600080fd5b8063a22cb465146103c7578063a2e69613146103da578063b88d4fde146103ed578063c87b56dd1461040057600080fd5b80638da5cb5b116100de5780638da5cb5b1461038e57806395d89b41146103a45780639711715a146103ac57806397e96e86146103b457600080fd5b8063715018a6146103585780638456cb5914610360578063861b91e1146103685780638c8d9e0b1461037b57600080fd5b80633056210b116101875780635ab37a0e116101565780635ab37a0e146103175780635c975abb1461032a5780636352211e1461033257806370a082311461034557600080fd5b80633056210b146102d65780633f4ba83a146102e957806342842e0e146102f15780634ee2cd7e1461030457600080fd5b8063095ea7b3116101c3578063095ea7b31461027457806323b872dd146102895780632a55205a1461029c5780632ddc79b7146102ce57600080fd5b806301ffc9a7146101f557806302bf3d561461021d57806306fdde0314610234578063081812fc14610249575b600080fd5b6102086102033660046129e9565b61049c565b60405190151581526020015b60405180910390f35b610226600e5481565b604051908152602001610214565b61023c6104c7565b6040516102149190612b87565b61025c610257366004612a21565b610559565b6040516001600160a01b039091168152602001610214565b6102876102823660046128e2565b6105e6565b005b6102876102973660046127c6565b6106fc565b6102af6102aa366004612a5b565b61072d565b604080516001600160a01b039093168352602083019190915201610214565b61022661075a565b61025c6102e4366004612a5b565b610769565b6102876107a1565b6102876102ff3660046127c6565b6107db565b6102266103123660046128e2565b6107f6565b6102876103253660046128b0565b610834565b610208610943565b61025c610340366004612a21565b610951565b61022661035336600461277a565b6109c8565b610287610a4f565b610287610a89565b61028761037636600461290b565b610ac1565b610287610389366004612a39565b610b3f565b600a5461010090046001600160a01b031661025c565b61023c610e3f565b610226610e4e565b6102876103c236600461277a565b610e89565b6102876103d536600461287a565b610fe3565b6102266103e8366004612a21565b6110a8565b6102876103fb366004612801565b6110c9565b61023c61040e366004612a21565b611101565b61023c610421366004612a21565b61110c565b61025c7f000000000000000000000000000000000000000000000000000000000000000081565b61020861045b366004612794565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61028761049736600461277a565b6111b8565b60006001600160e01b0319821663152a902d60e11b14806104c157506104c18261127c565b92915050565b6060600080546104d690612d72565b80601f016020809104026020016040519081016040528092919081815260200182805461050290612d72565b801561054f5780601f106105245761010080835404028352916020019161054f565b820191906000526020600020905b81548152906001019060200180831161053257829003601f168201915b5050505050905090565b6000610564826112cc565b6105ca5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105f182610951565b9050806001600160a01b0316836001600160a01b0316141561065f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105c1565b336001600160a01b038216148061067b575061067b813361045b565b6106ed5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105c1565b6106f783836112e9565b505050565b6107063382611357565b6107225760405162461bcd60e51b81526004016105c190612c21565b6106f7838383611441565b600c546000908190630100000090046001600160a01b031661074e846110a8565b915091505b9250929050565b60006107646115ec565b905090565b6000828152600860205260408120819081906107869085906115f7565b9150915081610796576000610798565b805b95945050505050565b600a546001600160a01b036101009091041633146107d15760405162461bcd60e51b81526004016105c190612bec565b6107d9611706565b565b6106f7838383604051806020016040528060008152506110c9565b6001600160a01b03821660009081526007602052604081208190819061081d90859061179b565b91509150816107965761082f856109c8565b610798565b600a546001600160a01b036101009091041633146108645760405162461bcd60e51b81526004016105c190612bec565b6001600160a01b0382166108b25760405162461bcd60e51b81526020600482015260156024820152747a65726f207265636569766572206164647265737360581b60448201526064016105c1565b6127108162ffffff1611156109095760405162461bcd60e51b815260206004820152601a60248201527f45524332393831526f79616c746965733a20546f6f206869676800000000000060448201526064016105c1565b600c80546001600160b81b03191663010000006001600160a01b03949094169390930262ffffff19169290921762ffffff91909116179055565b6000610764600a5460ff1690565b6000818152600260205260408120546001600160a01b0316806104c15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105c1565b60006001600160a01b038216610a335760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105c1565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03610100909104163314610a7f5760405162461bcd60e51b81526004016105c190612bec565b6107d9600061189e565b600a546001600160a01b03610100909104163314610ab95760405162461bcd60e51b81526004016105c190612bec565b6107d96118f8565b600a546001600160a01b03610100909104163314610af15760405162461bcd60e51b81526004016105c190612bec565b8051610b0490600f9060208401906125a3565b507f447fee62dc024eb994ac5a72c6ee8f1919a3f3f1d86725c2b234d51ec5780f0781604051610b349190612b26565b60405180910390a150565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610baf5760405162461bcd60e51b815260206004820152601560248201527427b7363c903930b73237b69033b2b732b930ba37b960591b60448201526064016105c1565b600f546000610bbe8285612dc8565b90506000600f8281548110610be357634e487b7160e01b600052603260045260246000fd5b906000526020600020018054610bf890612d72565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2490612d72565b8015610c715780601f10610c4657610100808354040283529160200191610c71565b820191906000526020600020905b815481529060010190602001808311610c5457829003601f168201915b505050505090506000600f600185610c899190612d2f565b81548110610ca757634e487b7160e01b600052603260045260246000fd5b906000526020600020018054610cbc90612d72565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce890612d72565b8015610d355780601f10610d0a57610100808354040283529160200191610d35565b820191906000526020600020905b815481529060010190602001808311610d1857829003601f168201915b50505050509050600f805480610d5b57634e487b7160e01b600052603160045260246000fd5b600190038181906000526020600020016000610d779190612600565b9055600f54831015610dc45780600f8481548110610da557634e487b7160e01b600052603260045260246000fd5b906000526020600020019080519060200190610dc292919061263a565b505b610dd085600e54611975565b610ddc600e5483611993565b6001600e6000828254610def9190612ce4565b92505081905550846001600160a01b03167f0ef000434f19fb5d96bc8ca46dee174e5f0adecf0aa90106ce70d65195ef540383604051610e2f9190612b87565b60405180910390a2505050505050565b6060600180546104d690612d72565b600a546000906001600160a01b03610100909104163314610e815760405162461bcd60e51b81526004016105c190612bec565b610764611a1e565b600a546001600160a01b03610100909104163314610eb95760405162461bcd60e51b81526004016105c190612bec565b6002600b541415610f0c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105c1565b6002600b55600f54610f605760405162461bcd60e51b815260206004820152601c60248201527f416c6c20746f6b656e732068617665206265656e20636c61696d65640000000060448201526064016105c1565b604051639258011960e01b81526001600160a01b0382811660048301527f00000000000000000000000000000000000000000000000000000000000000001690639258011990602401600060405180830381600087803b158015610fc357600080fd5b505af1158015610fd7573d6000803e3d6000fd5b50506001600b55505050565b6001600160a01b03821633141561103c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105c1565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c5460009062ffffff166110bf61271084612cfc565b6104c19190612d10565b6110d33383611357565b6110ef5760405162461bcd60e51b81526004016105c190612c21565b6110fb84848484611a78565b50505050565b60606104c182611aab565b600f818154811061111c57600080fd5b90600052602060002001600091509050805461113790612d72565b80601f016020809104026020016040519081016040528092919081815260200182805461116390612d72565b80156111b05780601f10611185576101008083540402835291602001916111b0565b820191906000526020600020905b81548152906001019060200180831161119357829003601f168201915b505050505081565b600a546001600160a01b036101009091041633146111e85760405162461bcd60e51b81526004016105c190612bec565b6001600160a01b03811661124d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105c1565b6112568161189e565b50565b600061126483611c0d565b801561127557506112758383611c40565b9392505050565b60006001600160e01b031982166380ac58cd60e01b14806112ad57506001600160e01b03198216635b5e139f60e01b145b806104c157506301ffc9a760e01b6001600160e01b03198316146104c1565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061131e82610951565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611362826112cc565b6113c35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105c1565b60006113ce83610951565b9050806001600160a01b0316846001600160a01b031614806114095750836001600160a01b03166113fe84610559565b6001600160a01b0316145b8061143957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661145482610951565b6001600160a01b0316146114bc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105c1565b6001600160a01b03821661151e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105c1565b611529838383611d29565b6115346000826112e9565b6001600160a01b038316600090815260036020526040812080546001929061155d908490612d2f565b90915550506001600160a01b038216600090815260036020526040812080546001929061158b908490612ce4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061076460095490565b600080600084116116445760405162461bcd60e51b81526020600482015260176024820152760455243373231536e617073686f743a206964206973203604c1b60448201526064016105c1565b61164c6115ec565b84111561169b5760405162461bcd60e51b815260206004820152601e60248201527f455243373231536e617073686f743a206e6f6e6578697374656e74206964000060448201526064016105c1565b60006116a78486611dc9565b84549091508114156116c0576000809250925050610753565b60018460010182815481106116e557634e487b7160e01b600052603260045260246000fd5b6000918252602090912001549093506001600160a01b031691506107539050565b61170e610943565b6117515760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016105c1565b600a805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600080600084116117e85760405162461bcd60e51b81526020600482015260176024820152760455243373231536e617073686f743a206964206973203604c1b60448201526064016105c1565b6117f06115ec565b84111561183f5760405162461bcd60e51b815260206004820152601e60248201527f455243373231536e617073686f743a206e6f6e6578697374656e74206964000060448201526064016105c1565b600061184b8486611dc9565b8454909150811415611864576000809250925050610753565b600184600101828154811061188957634e487b7160e01b600052603260045260246000fd5b90600052602060002001549250925050610753565b600a80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611900610943565b156119405760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016105c1565b600a805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861177e3390565b61198f828260405180602001604052806000815250611ea8565b5050565b61199c826112cc565b6119ff5760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b60648201526084016105c1565b600082815260066020908152604090912082516106f79284019061263a565b6000611a2e600980546001019055565b6000611a386115ec565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb6781604051611a6b91815260200190565b60405180910390a1919050565b611a83848484611441565b611a8f84848484611edb565b6110fb5760405162461bcd60e51b81526004016105c190612b9a565b6060611ab6826112cc565b611b1c5760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b60648201526084016105c1565b60008281526006602052604081208054611b3590612d72565b80601f0160208091040260200160405190810160405280929190818152602001828054611b6190612d72565b8015611bae5780601f10611b8357610100808354040283529160200191611bae565b820191906000526020600020905b815481529060010190602001808311611b9157829003601f168201915b505050505090506000611bbf611fe8565b9050805160001415611bd2575092915050565b815115611c04578082604051602001611bec929190612ac4565b60405160208183030381529060405292505050919050565b61143984611ff7565b6000611c20826301ffc9a760e01b611c40565b80156104c15750611c39826001600160e01b0319611c40565b1592915050565b604080516001600160e01b0319831660248083019190915282518083039091018152604490910182526020810180516001600160e01b03166301ffc9a760e01b179052905160009190829081906001600160a01b0387169061753090611ca7908690612aa8565b6000604051808303818686fa925050503d8060008114611ce3576040519150601f19603f3d011682016040523d82523d6000602084013e611ce8565b606091505b5091509150602081511015611d0357600093505050506104c1565b818015611d1f575080806020019051810190611d1f91906129cd565b9695505050505050565b611d348383836120c1565b600a5461010090046001600160a01b03166001600160a01b0316336001600160a01b03161480611d695750611d67610943565b155b6106f75760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b60648201526084016105c1565b8154600090611dda575060006104c1565b82546000905b80821015611e44576000611df4838361210f565b905084868281548110611e1757634e487b7160e01b600052603260045260246000fd5b90600052602060002001541115611e3057809150611e3e565b611e3b816001612ce4565b92505b50611de0565b600082118015611e8757508385611e5c600185612d2f565b81548110611e7a57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154145b15611ea057611e97600183612d2f565b925050506104c1565b5090506104c1565b611eb2838361212a565b611ebf6000848484611edb565b6106f75760405162461bcd60e51b81526004016105c190612b9a565b60006001600160a01b0384163b15611fdd57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f1f903390899088908890600401612af3565b602060405180830381600087803b158015611f3957600080fd5b505af1925050508015611f69575060408051601f3d908101601f19168201909252611f6691810190612a05565b60015b611fc3573d808015611f97576040519150601f19603f3d011682016040523d82523d6000602084013e611f9c565b606091505b508051611fbb5760405162461bcd60e51b81526004016105c190612b9a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611439565b506001949350505050565b6060600d80546104d690612d72565b6060612002826112cc565b6120665760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105c1565b6000612070611fe8565b905060008151116120905760405180602001604052806000815250611275565b8061209a84612269565b6040516020016120ab929190612ac4565b6040516020818303038152906040529392505050565b6001600160a01b0383166120db576106f782826001612383565b6001600160a01b0382166120f6576106f78382600019612383565b6121038382600019612383565b6106f782826001612383565b600061211e6002848418612cfc565b61127590848416612ce4565b6001600160a01b0382166121805760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105c1565b612189816112cc565b156121d65760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105c1565b6121e260008383611d29565b6001600160a01b038216600090815260036020526040812080546001929061220b908490612ce4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60608161228d5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156122b757806122a181612dad565b91506122b09050600a83612cfc565b9150612291565b60008167ffffffffffffffff8111156122e057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561230a576020820181803683370190505b5090505b84156114395761231f600183612d2f565b915061232c600a86612dc8565b612337906030612ce4565b60f81b81838151811061235a57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061237c600a86612cfc565b945061230e565b6001600160a01b03831660009081526007602052604081206123ba9183900b6123ab866109c8565b6123b59190612ca3565b6123e1565b60008281526008602052604081206106f79183810b136123db576000612476565b84612476565b60006123eb6115ec565b9050806123f78461254d565b101561242b578254600180820185556000858152602080822090930193909355938401805494850181558252902090910155565b6001830154156106f75760018084018054849261244791612d2f565b8154811061246557634e487b7160e01b600052603260045260246000fd5b600091825260209091200155505050565b60006124806115ec565b9050600061248d8461254d565b9050818110156124df5783546001808201865560008681526020808220909301859055818701805492830181558152919091200180546001600160a01b0319166001600160a01b0385161790556110fb565b6001840154156110fb576001808501805485926124fb91612d2f565b8154811061251957634e487b7160e01b600052603260045260246000fd5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555050505050565b805460009061255e57506000919050565b8154829061256e90600190612d2f565b8154811061258c57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b919050565b8280548282559060005260206000209081019282156125f0579160200282015b828111156125f057825180516125e091849160209091019061263a565b50916020019190600101906125c3565b506125fc9291506126ba565b5090565b50805461260c90612d72565b6000825580601f1061261c575050565b601f01602090049060005260206000209081019061125691906126d7565b82805461264690612d72565b90600052602060002090601f01602090048101928261266857600085556126ae565b82601f1061268157805160ff19168380011785556126ae565b828001600101855582156126ae579182015b828111156126ae578251825591602001919060010190612693565b506125fc9291506126d7565b808211156125fc5760006126ce8282612600565b506001016126ba565b5b808211156125fc57600081556001016126d8565b600067ffffffffffffffff83111561270657612706612e08565b612719601f8401601f1916602001612c72565b905082815283838301111561272d57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461259e57600080fd5b600082601f83011261276b578081fd5b611275838335602085016126ec565b60006020828403121561278b578081fd5b61127582612744565b600080604083850312156127a6578081fd5b6127af83612744565b91506127bd60208401612744565b90509250929050565b6000806000606084860312156127da578081fd5b6127e384612744565b92506127f160208501612744565b9150604084013590509250925092565b60008060008060808587031215612816578081fd5b61281f85612744565b935061282d60208601612744565b925060408501359150606085013567ffffffffffffffff81111561284f578182fd5b8501601f8101871361285f578182fd5b61286e878235602084016126ec565b91505092959194509250565b6000806040838503121561288c578182fd5b61289583612744565b915060208301356128a581612e1e565b809150509250929050565b600080604083850312156128c2578182fd5b6128cb83612744565b9150602083013562ffffff811681146128a5578182fd5b600080604083850312156128f4578182fd5b6128fd83612744565b946020939093013593505050565b6000602080838503121561291d578182fd5b823567ffffffffffffffff80821115612934578384fd5b818501915085601f830112612947578384fd5b81358181111561295957612959612e08565b8060051b612968858201612c72565b8281528581019085870183870188018b1015612982578889fd5b8893505b848410156129bf5780358681111561299c57898afd5b6129aa8c8a838b010161275b565b84525060019390930192918701918701612986565b509998505050505050505050565b6000602082840312156129de578081fd5b815161127581612e1e565b6000602082840312156129fa578081fd5b813561127581612e2c565b600060208284031215612a16578081fd5b815161127581612e2c565b600060208284031215612a32578081fd5b5035919050565b60008060408385031215612a4b578182fd5b823591506127bd60208401612744565b60008060408385031215612a6d578182fd5b50508035926020909101359150565b60008151808452612a94816020860160208601612d46565b601f01601f19169290920160200192915050565b60008251612aba818460208701612d46565b9190910192915050565b60008351612ad6818460208801612d46565b835190830190612aea818360208801612d46565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d1f90830184612a7c565b6000602080830181845280855180835260408601915060408160051b8701019250838701855b82811015612b7a57603f19888603018452612b68858351612a7c565b94509285019290850190600101612b4c565b5092979650505050505050565b6020815260006112756020830184612a7c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612c9b57612c9b612e08565b604052919050565b600080821280156001600160ff1b0384900385131615612cc557612cc5612ddc565b600160ff1b8390038412811615612cde57612cde612ddc565b50500190565b60008219821115612cf757612cf7612ddc565b500190565b600082612d0b57612d0b612df2565b500490565b6000816000190483118215151615612d2a57612d2a612ddc565b500290565b600082821015612d4157612d41612ddc565b500390565b60005b83811015612d61578181015183820152602001612d49565b838111156110fb5750506000910152565b600181811c90821680612d8657607f821691505b60208210811415612da757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612dc157612dc1612ddc565b5060010190565b600082612dd757612dd7612df2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b801515811461125657600080fd5b6001600160e01b03198116811461125657600080fdfea26469706673582212208b4d91f3bfe70a0bb0d482a7b4c70aed11a5a6e39acef718909a51e3c22ed85764736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001800000000000000000000000006d018edaf3fc14103833bc5f94f89618e99bf476000000000000000000000000bf4673c329ec5041058e728e4812f9f346c2aba0000000000000000000000000000000000000000000000000000000000000001546616e746173792049736c616e64732056696c6c610000000000000000000000000000000000000000000000000000000000000000000000000000000000000246490000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007697066733a2f2f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000000ce00000000000000000000000000000000000000000000000000000000000000d400000000000000000000000000000000000000000000000000000000000000da00000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000e600000000000000000000000000000000000000000000000000000000000000ec00000000000000000000000000000000000000000000000000000000000000f200000000000000000000000000000000000000000000000000000000000000f800000000000000000000000000000000000000000000000000000000000000fe0000000000000000000000000000000000000000000000000000000000000104000000000000000000000000000000000000000000000000000000000000010a00000000000000000000000000000000000000000000000000000000000001100000000000000000000000000000000000000000000000000000000000000116000000000000000000000000000000000000000000000000000000000000011c00000000000000000000000000000000000000000000000000000000000001220000000000000000000000000000000000000000000000000000000000000128000000000000000000000000000000000000000000000000000000000000012e0000000000000000000000000000000000000000000000000000000000000134000000000000000000000000000000000000000000000000000000000000013a00000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000146000000000000000000000000000000000000000000000000000000000000014c00000000000000000000000000000000000000000000000000000000000001520000000000000000000000000000000000000000000000000000000000000158000000000000000000000000000000000000000000000000000000000000015e0000000000000000000000000000000000000000000000000000000000000164000000000000000000000000000000000000000000000000000000000000016a00000000000000000000000000000000000000000000000000000000000001700000000000000000000000000000000000000000000000000000000000000176000000000000000000000000000000000000000000000000000000000000017c00000000000000000000000000000000000000000000000000000000000001820000000000000000000000000000000000000000000000000000000000000188000000000000000000000000000000000000000000000000000000000000018e0000000000000000000000000000000000000000000000000000000000000194000000000000000000000000000000000000000000000000000000000000019a00000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001a600000000000000000000000000000000000000000000000000000000000001ac00000000000000000000000000000000000000000000000000000000000001b200000000000000000000000000000000000000000000000000000000000001b800000000000000000000000000000000000000000000000000000000000001be00000000000000000000000000000000000000000000000000000000000001c400000000000000000000000000000000000000000000000000000000000001ca00000000000000000000000000000000000000000000000000000000000001d000000000000000000000000000000000000000000000000000000000000001d600000000000000000000000000000000000000000000000000000000000001dc00000000000000000000000000000000000000000000000000000000000001e200000000000000000000000000000000000000000000000000000000000001e800000000000000000000000000000000000000000000000000000000000001ee00000000000000000000000000000000000000000000000000000000000001f400000000000000000000000000000000000000000000000000000000000001fa00000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000206000000000000000000000000000000000000000000000000000000000000020c00000000000000000000000000000000000000000000000000000000000002120000000000000000000000000000000000000000000000000000000000000218000000000000000000000000000000000000000000000000000000000000021e0000000000000000000000000000000000000000000000000000000000000224000000000000000000000000000000000000000000000000000000000000022a00000000000000000000000000000000000000000000000000000000000002300000000000000000000000000000000000000000000000000000000000000236000000000000000000000000000000000000000000000000000000000000023c00000000000000000000000000000000000000000000000000000000000002420000000000000000000000000000000000000000000000000000000000000248000000000000000000000000000000000000000000000000000000000000024e0000000000000000000000000000000000000000000000000000000000000254000000000000000000000000000000000000000000000000000000000000025a00000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000266000000000000000000000000000000000000000000000000000000000000026c00000000000000000000000000000000000000000000000000000000000002720000000000000000000000000000000000000000000000000000000000000278000000000000000000000000000000000000000000000000000000000000027e0000000000000000000000000000000000000000000000000000000000000284000000000000000000000000000000000000000000000000000000000000028a00000000000000000000000000000000000000000000000000000000000002900000000000000000000000000000000000000000000000000000000000000296000000000000000000000000000000000000000000000000000000000000029c00000000000000000000000000000000000000000000000000000000000002a200000000000000000000000000000000000000000000000000000000000002a800000000000000000000000000000000000000000000000000000000000002ae00000000000000000000000000000000000000000000000000000000000002b400000000000000000000000000000000000000000000000000000000000002ba00000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000002c600000000000000000000000000000000000000000000000000000000000002cc00000000000000000000000000000000000000000000000000000000000002d200000000000000000000000000000000000000000000000000000000000002d800000000000000000000000000000000000000000000000000000000000002de00000000000000000000000000000000000000000000000000000000000002e400000000000000000000000000000000000000000000000000000000000002ea00000000000000000000000000000000000000000000000000000000000002f000000000000000000000000000000000000000000000000000000000000002f600000000000000000000000000000000000000000000000000000000000002fc00000000000000000000000000000000000000000000000000000000000003020000000000000000000000000000000000000000000000000000000000000308000000000000000000000000000000000000000000000000000000000000030e0000000000000000000000000000000000000000000000000000000000000314000000000000000000000000000000000000000000000000000000000000031a0000000000000000000000000000000000000000000000000000000000000002e516d53644e554764646e7459626e584675317368574777666d6b32446e327a4753394e6a6f437141455033675a68000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d564d3154323645646d39666f57655434503554657132644866666b5857434271687359784a64544555466b33000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d546b367855703950516e46333879736b4868455377664e5a6e6f353365486b426a6732644a4e6f346e375679000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5538346635394839734b337437664574756d4548475447784d70526e6e61614b614273517138366b55426579000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5864384347776a654a586a35794e6f6b523771526579746865765350683474395265636b4c34573264765368000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5a7737586a345a6b6e616d35503642666e7641334b38356f544e6b32616f57485a7748564d754c43695a6d6f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d50426b3451704239667541574e394e4d7a79543553435763563239627733354d627036457853714e324d4159000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d4e67416738375735416b6f665159447959654d686b694a745a6b53557473437536476838397569385957724c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5a6d5a4e5271773751544b6f686979685044374a72475a534a474c7846526e6e33796a3550394d6e385a6a76000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5968463750324b7241346d6f4b64534e65594b5748696a74327675316a76484e4231794d3242483644456232000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d577857324576344653716b445369654e75636367356b615a4c43313775696753397541347568475344794434000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d6470537675364352595666753647733748794176596e6142705734717444453859563434455a6635694e5447000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5334525035674376615153706657376d5354545161736b645633564a5350765a534d6f646e4e417a6a6e6734000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d66594d7241615a764d4b74583870366f785a774861587772544746786b34414456703976515a504c4e59584c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d6531506354486f323371386d7575776e7a614b4c47615a58417943335167714b67485564795736416f335a69000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d53736b324a7a376f4b316d67675a7554663152776e4334696e413665367871416b324a68464c39546a634b61000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5a7633646f4171766f5059455845793878766b616d343578535973325a7837735037457465724831595a7753000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d534b66453265397145764c4c6d7a795150727447674c36514670635639463638795a4a42424c4a5661504d47000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d56753558706d3177684a6f4c374231375441686334626570627472436d63574a5a6474333778325562434876000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d6167316757637663614c677335764e3558397461346e5265795a356b7a51776e413158463761317769414138000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d536b4a727944434a6b4d6a627876615464614d5169683871585a665051597243506870475165705147554137000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d56396b7950517043685563666256484e4231796b336d65387a6a4e6b76487655447770653357554b796f3232000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d4e6369424a4847636933354d7065664846514e646973666b666638375453725056594d4d326d485256337376000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d6142674832354569586b5a6871596467393445756242797939776e6842424344467152654745374b35784d76000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5a466a686a33673356625064376d577675676f564a7842744447657177574b5671626a4e35415636414c7a73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d51706757464d595550416933767258794a6e41387152734b62316943624b52613664626967375a7170674c52000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d65455334624a4c3164506f41583652726371616463445358527938456a5544653953636d6341394b6a627455000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d614a43684156776b31587846444c74793556646a6d5a526a6d6147587039555969425334665434774254375a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d573677555a325167436456776a6a72707a4e345238614d683372715a6d36445456324750516f663934317947000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d53534547334a44564b6574536b6f5069647269384b4554686e38336262765042537378626d7a697966677067000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d517451366f51726e594e5a3362444e416a7578736f4a316166554b655857616a754178733776636753745945000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d593865756b586658504465674c4d4c6f5365475366624a73627246625757664156573464524d736a68485437000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d55744e786932617531795a4d46436e4266735831455651656b4832326f58487035487350647479716a464235000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d54745a714b38315073676872484178433251674166414b47314d6e3842353464397a4258716e4879516b446e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d55447268755a4d486436586a463263385841705074373635414d543931335a326433326662793648336e4278000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d4e734d346e557a447a585744586b7456356b70375a5a4b654c573371764c6e4c4b646b7841736b6362396763000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d524b32634538596d69746f6138747665346f5966316948644b4b696451484248517466696e6a69733241776f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d585459634d5345546353524a715864346557767a62546f7355354e655852765558523438716375587374484e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d574371633834767868734c68777076687072315570443853563379424538424e644266765734313575736d33000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5466677a41576d5a3852456952446f76356a4a506670734e784e6776376542644e4d51464557395547526145000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d504271504b735850437a7a31544264556876584e657a4c65725632695a584534775968484d536675346b7a76000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5867717174527477546845324d654b56614c50787331784a484b6f5943594267477a464544623378524d707a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5a4d4e67614e394a45576948545a544d6a554c4169424a626f756a4e38594d50457371743966676257485055000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d6462746b62543968314a6a36356469707447486142436267364a774c6d4851564a5144474c4e78754b616679000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d563169317838455a7a76387061527a71424561416b673639434c454d644e7435415a484a6e6e32355a335946000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5350574b626f343256706e6f4246435a77473752317443685768367371537332655667387436357255433478000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d53376b67476437586678727756547378477a595169516d3254537544534d3135677871423471463546634343000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d57646654595969713144656f61663241697764565256537237526377687564795177654c37705a7155556831000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5677436f71796d3854595362357471766a5969416e564739687132424e7453355a6f48535745315952625942000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d636a554145586a334c4c4c315a4a75416f6b5a4568424e6a6175526a62654e3456617036357959755a394e35000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d52655044326f73313276776d633659446a6b526b6a51705750476a6168384865324166797073334463584734000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d574c4e66735a746a716b35614b6e6d70356f61693464367753726232686b7a7048417a4e72694333596e6277000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d4e67566267657670615a78424b4d3878334b423731463947366758475946393534416b314554374b77657957000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5a46454462756f6669626e575a397562726f44597162614a6b31334d37554a615339336f32526b66724d5973000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d65396d7064647943787a32484a4a394c4861774e714a537167437348765967464d5a3558334e484e63664569000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5867665a63486e65486b457332625253506b3476597832674141774e6b68446f6272555639444648546d6b59000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5836565366455934796e514162374b476d715141423174437243716f6f41503353733734474171336f53374b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d614c414a6633615262694a346e7777313771663968644d35626d476f3756434278525a31623875736d597264000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d53677833435545543257453141424d70534641747a7369453353736370706534386b51685670735346544751000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d6163664d74415252326d453635417048786f57557267563761677975373869635a5953636531367238785978000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d6262336850464d6e3639736e5744685737664d464e596262635963554a51683853397853475a734a6d737442000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d65594432734d586962675232796369556164364c324e657a71746d726a6f614d6a70415a52774a6d47746b42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d59696f353766484c727355414275414763754c5442487468326b364e75394b6177526367364258486d756666000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d516159593154737273486f70533665534c7272437374506b59584d35357479516e6e35474b35564b31614363000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d556f4b4878655174436d724c597a4262744b5a42593754636d646a3338444e6e6a7248445753506261344a39000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d576157644e526165644b726a4558786867675873435643537653366e6466436f724554325550336768334845000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5168716f33584472737a5239666a4e66585275707143626765646263476a386f354b4663534d70393646314c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d635a6675654d4b527051676b325959695347614c337179694a515045546a3933536764586166326e4665544b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d6443644e7a42454543485168327653316f534d4c44593470615553437a3355733579627a7a6e36484c664776000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d6369505955376f725147446d777365723569776d50794e7a743948725270476a5177764733324e6254536271000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d663365436a54447a6964487a3445366a71635a525a6536593644386843435054533531396e6d566467435467000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d55544271626847504245374477624b5352323571434b485235656a66477768714639707974644e3145684374000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d516975346e584144666467574c75783151636e6a53546e4a784a343539566e763747514e7562777a66417661000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d537441313745444a75637367746e504a4d75346842536d416a38364b38566e46343641354b4b57693538645a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d6256634c6d39484e59734d546a6248795342383150346a594e355137474b66443576383162414d6a73467368000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d53427059635557655934583765536938455659764e553572776974375063636b4a586557746a435a45484239000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d54466b4d547378324a356654644d7a5747765966544d3755537742397745337a5731444d706f435351526d58000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5765795362394239793276414370416b34634637534570595878753273633171724375484d447a6131564b6b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d6644453641464768414c57634e71356e5a443750744664354a3758764366756954736354477a726736664541000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d596578534a6277396f4b6b637146756b3346445379314c394b6b3268427645546b4e334c5a44454839593345000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5058456134596235727a6a324c706d744645783158316a34714d78437266534550546f393832755563766639000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d62466f63423736647959544c3578577053656d69567a694d6761333367597162724748454e786a5338337057000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d59644c39394a433662666e784b594e58666763416655676b6f3852425355637742685168446943454878366f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5045565746696a7266387657463145504b7637467a46326f795832354c594a4475434a4b4e6a444742634c6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d665574794261366a5a36625337674d366f32444c715274776f685a7350486f586155486f63576a55426d314b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5043515a6f4356706b665a57504d524d4c4a7572544b684c74794b73514d317732315957744b48665461696e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d586a6e6f42674b3462656b75556451333438637743766a4a586e796e63416b59576a706d525955765578375a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5767326776527873644446794a336a5253744a4b4144797a6d74426b7a4d704779314e594c4c73764b323673000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d534261344a67665757557a35514b73626a6e7a4b706646447a72476264576476586a43783577534a77487355000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d54323334376e36694e39745969413277324c59455a66424459705963716f76364d577055516b535257543459000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5156764267485a4d434d685a623178416b544438326d364b6d696b71755666343578626d716b356b54684a50000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d504c70686f756864765738685354313342756b773542386879547532586d6341333958527277735063336f51000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d553474653567756f504b635054585248484e36677669414d757a70777745474d6d48526f61414e727367736e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5146526534774e6a3654664350526f544b386d616f7a74356942737271374e3275637742737a50726b484347000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5844754d437155574d3843466f364541716463347167644a346a706d59786b6b6e3851777033705566527764000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d514852755975457943787252556859394c7a6b7064334b6d3142504b6b373578556a6a636f34704a74675357000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5a6e6a387155555747745631456f32796245316d595a75633651706744506553684e7953596a763474364141000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d52616b6733616e4b3972587862326b4137564b7253726a48434877523270386f544d7973416a37346e547144000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5143683579396d7a5a3374783453615439653471755675766150564738667876426265586d714b5253483575000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d6373736438524b3764424663327150565661713957414b4137586a4e394e725a615447413331596448326e45000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101f05760003560e01c8063715018a61161010f578063a22cb465116100a2578063db1f6dff11610071578063db1f6dff14610413578063dcbad90d14610426578063e985e9c51461044d578063f2fde38b1461048957600080fd5b8063a22cb465146103c7578063a2e69613146103da578063b88d4fde146103ed578063c87b56dd1461040057600080fd5b80638da5cb5b116100de5780638da5cb5b1461038e57806395d89b41146103a45780639711715a146103ac57806397e96e86146103b457600080fd5b8063715018a6146103585780638456cb5914610360578063861b91e1146103685780638c8d9e0b1461037b57600080fd5b80633056210b116101875780635ab37a0e116101565780635ab37a0e146103175780635c975abb1461032a5780636352211e1461033257806370a082311461034557600080fd5b80633056210b146102d65780633f4ba83a146102e957806342842e0e146102f15780634ee2cd7e1461030457600080fd5b8063095ea7b3116101c3578063095ea7b31461027457806323b872dd146102895780632a55205a1461029c5780632ddc79b7146102ce57600080fd5b806301ffc9a7146101f557806302bf3d561461021d57806306fdde0314610234578063081812fc14610249575b600080fd5b6102086102033660046129e9565b61049c565b60405190151581526020015b60405180910390f35b610226600e5481565b604051908152602001610214565b61023c6104c7565b6040516102149190612b87565b61025c610257366004612a21565b610559565b6040516001600160a01b039091168152602001610214565b6102876102823660046128e2565b6105e6565b005b6102876102973660046127c6565b6106fc565b6102af6102aa366004612a5b565b61072d565b604080516001600160a01b039093168352602083019190915201610214565b61022661075a565b61025c6102e4366004612a5b565b610769565b6102876107a1565b6102876102ff3660046127c6565b6107db565b6102266103123660046128e2565b6107f6565b6102876103253660046128b0565b610834565b610208610943565b61025c610340366004612a21565b610951565b61022661035336600461277a565b6109c8565b610287610a4f565b610287610a89565b61028761037636600461290b565b610ac1565b610287610389366004612a39565b610b3f565b600a5461010090046001600160a01b031661025c565b61023c610e3f565b610226610e4e565b6102876103c236600461277a565b610e89565b6102876103d536600461287a565b610fe3565b6102266103e8366004612a21565b6110a8565b6102876103fb366004612801565b6110c9565b61023c61040e366004612a21565b611101565b61023c610421366004612a21565b61110c565b61025c7f0000000000000000000000006d018edaf3fc14103833bc5f94f89618e99bf47681565b61020861045b366004612794565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61028761049736600461277a565b6111b8565b60006001600160e01b0319821663152a902d60e11b14806104c157506104c18261127c565b92915050565b6060600080546104d690612d72565b80601f016020809104026020016040519081016040528092919081815260200182805461050290612d72565b801561054f5780601f106105245761010080835404028352916020019161054f565b820191906000526020600020905b81548152906001019060200180831161053257829003601f168201915b5050505050905090565b6000610564826112cc565b6105ca5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105f182610951565b9050806001600160a01b0316836001600160a01b0316141561065f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105c1565b336001600160a01b038216148061067b575061067b813361045b565b6106ed5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105c1565b6106f783836112e9565b505050565b6107063382611357565b6107225760405162461bcd60e51b81526004016105c190612c21565b6106f7838383611441565b600c546000908190630100000090046001600160a01b031661074e846110a8565b915091505b9250929050565b60006107646115ec565b905090565b6000828152600860205260408120819081906107869085906115f7565b9150915081610796576000610798565b805b95945050505050565b600a546001600160a01b036101009091041633146107d15760405162461bcd60e51b81526004016105c190612bec565b6107d9611706565b565b6106f7838383604051806020016040528060008152506110c9565b6001600160a01b03821660009081526007602052604081208190819061081d90859061179b565b91509150816107965761082f856109c8565b610798565b600a546001600160a01b036101009091041633146108645760405162461bcd60e51b81526004016105c190612bec565b6001600160a01b0382166108b25760405162461bcd60e51b81526020600482015260156024820152747a65726f207265636569766572206164647265737360581b60448201526064016105c1565b6127108162ffffff1611156109095760405162461bcd60e51b815260206004820152601a60248201527f45524332393831526f79616c746965733a20546f6f206869676800000000000060448201526064016105c1565b600c80546001600160b81b03191663010000006001600160a01b03949094169390930262ffffff19169290921762ffffff91909116179055565b6000610764600a5460ff1690565b6000818152600260205260408120546001600160a01b0316806104c15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105c1565b60006001600160a01b038216610a335760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105c1565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03610100909104163314610a7f5760405162461bcd60e51b81526004016105c190612bec565b6107d9600061189e565b600a546001600160a01b03610100909104163314610ab95760405162461bcd60e51b81526004016105c190612bec565b6107d96118f8565b600a546001600160a01b03610100909104163314610af15760405162461bcd60e51b81526004016105c190612bec565b8051610b0490600f9060208401906125a3565b507f447fee62dc024eb994ac5a72c6ee8f1919a3f3f1d86725c2b234d51ec5780f0781604051610b349190612b26565b60405180910390a150565b336001600160a01b037f0000000000000000000000006d018edaf3fc14103833bc5f94f89618e99bf4761614610baf5760405162461bcd60e51b815260206004820152601560248201527427b7363c903930b73237b69033b2b732b930ba37b960591b60448201526064016105c1565b600f546000610bbe8285612dc8565b90506000600f8281548110610be357634e487b7160e01b600052603260045260246000fd5b906000526020600020018054610bf890612d72565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2490612d72565b8015610c715780601f10610c4657610100808354040283529160200191610c71565b820191906000526020600020905b815481529060010190602001808311610c5457829003601f168201915b505050505090506000600f600185610c899190612d2f565b81548110610ca757634e487b7160e01b600052603260045260246000fd5b906000526020600020018054610cbc90612d72565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce890612d72565b8015610d355780601f10610d0a57610100808354040283529160200191610d35565b820191906000526020600020905b815481529060010190602001808311610d1857829003601f168201915b50505050509050600f805480610d5b57634e487b7160e01b600052603160045260246000fd5b600190038181906000526020600020016000610d779190612600565b9055600f54831015610dc45780600f8481548110610da557634e487b7160e01b600052603260045260246000fd5b906000526020600020019080519060200190610dc292919061263a565b505b610dd085600e54611975565b610ddc600e5483611993565b6001600e6000828254610def9190612ce4565b92505081905550846001600160a01b03167f0ef000434f19fb5d96bc8ca46dee174e5f0adecf0aa90106ce70d65195ef540383604051610e2f9190612b87565b60405180910390a2505050505050565b6060600180546104d690612d72565b600a546000906001600160a01b03610100909104163314610e815760405162461bcd60e51b81526004016105c190612bec565b610764611a1e565b600a546001600160a01b03610100909104163314610eb95760405162461bcd60e51b81526004016105c190612bec565b6002600b541415610f0c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105c1565b6002600b55600f54610f605760405162461bcd60e51b815260206004820152601c60248201527f416c6c20746f6b656e732068617665206265656e20636c61696d65640000000060448201526064016105c1565b604051639258011960e01b81526001600160a01b0382811660048301527f0000000000000000000000006d018edaf3fc14103833bc5f94f89618e99bf4761690639258011990602401600060405180830381600087803b158015610fc357600080fd5b505af1158015610fd7573d6000803e3d6000fd5b50506001600b55505050565b6001600160a01b03821633141561103c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105c1565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c5460009062ffffff166110bf61271084612cfc565b6104c19190612d10565b6110d33383611357565b6110ef5760405162461bcd60e51b81526004016105c190612c21565b6110fb84848484611a78565b50505050565b60606104c182611aab565b600f818154811061111c57600080fd5b90600052602060002001600091509050805461113790612d72565b80601f016020809104026020016040519081016040528092919081815260200182805461116390612d72565b80156111b05780601f10611185576101008083540402835291602001916111b0565b820191906000526020600020905b81548152906001019060200180831161119357829003601f168201915b505050505081565b600a546001600160a01b036101009091041633146111e85760405162461bcd60e51b81526004016105c190612bec565b6001600160a01b03811661124d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105c1565b6112568161189e565b50565b600061126483611c0d565b801561127557506112758383611c40565b9392505050565b60006001600160e01b031982166380ac58cd60e01b14806112ad57506001600160e01b03198216635b5e139f60e01b145b806104c157506301ffc9a760e01b6001600160e01b03198316146104c1565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061131e82610951565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611362826112cc565b6113c35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105c1565b60006113ce83610951565b9050806001600160a01b0316846001600160a01b031614806114095750836001600160a01b03166113fe84610559565b6001600160a01b0316145b8061143957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661145482610951565b6001600160a01b0316146114bc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105c1565b6001600160a01b03821661151e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105c1565b611529838383611d29565b6115346000826112e9565b6001600160a01b038316600090815260036020526040812080546001929061155d908490612d2f565b90915550506001600160a01b038216600090815260036020526040812080546001929061158b908490612ce4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061076460095490565b600080600084116116445760405162461bcd60e51b81526020600482015260176024820152760455243373231536e617073686f743a206964206973203604c1b60448201526064016105c1565b61164c6115ec565b84111561169b5760405162461bcd60e51b815260206004820152601e60248201527f455243373231536e617073686f743a206e6f6e6578697374656e74206964000060448201526064016105c1565b60006116a78486611dc9565b84549091508114156116c0576000809250925050610753565b60018460010182815481106116e557634e487b7160e01b600052603260045260246000fd5b6000918252602090912001549093506001600160a01b031691506107539050565b61170e610943565b6117515760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016105c1565b600a805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600080600084116117e85760405162461bcd60e51b81526020600482015260176024820152760455243373231536e617073686f743a206964206973203604c1b60448201526064016105c1565b6117f06115ec565b84111561183f5760405162461bcd60e51b815260206004820152601e60248201527f455243373231536e617073686f743a206e6f6e6578697374656e74206964000060448201526064016105c1565b600061184b8486611dc9565b8454909150811415611864576000809250925050610753565b600184600101828154811061188957634e487b7160e01b600052603260045260246000fd5b90600052602060002001549250925050610753565b600a80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611900610943565b156119405760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016105c1565b600a805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861177e3390565b61198f828260405180602001604052806000815250611ea8565b5050565b61199c826112cc565b6119ff5760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b60648201526084016105c1565b600082815260066020908152604090912082516106f79284019061263a565b6000611a2e600980546001019055565b6000611a386115ec565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb6781604051611a6b91815260200190565b60405180910390a1919050565b611a83848484611441565b611a8f84848484611edb565b6110fb5760405162461bcd60e51b81526004016105c190612b9a565b6060611ab6826112cc565b611b1c5760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b60648201526084016105c1565b60008281526006602052604081208054611b3590612d72565b80601f0160208091040260200160405190810160405280929190818152602001828054611b6190612d72565b8015611bae5780601f10611b8357610100808354040283529160200191611bae565b820191906000526020600020905b815481529060010190602001808311611b9157829003601f168201915b505050505090506000611bbf611fe8565b9050805160001415611bd2575092915050565b815115611c04578082604051602001611bec929190612ac4565b60405160208183030381529060405292505050919050565b61143984611ff7565b6000611c20826301ffc9a760e01b611c40565b80156104c15750611c39826001600160e01b0319611c40565b1592915050565b604080516001600160e01b0319831660248083019190915282518083039091018152604490910182526020810180516001600160e01b03166301ffc9a760e01b179052905160009190829081906001600160a01b0387169061753090611ca7908690612aa8565b6000604051808303818686fa925050503d8060008114611ce3576040519150601f19603f3d011682016040523d82523d6000602084013e611ce8565b606091505b5091509150602081511015611d0357600093505050506104c1565b818015611d1f575080806020019051810190611d1f91906129cd565b9695505050505050565b611d348383836120c1565b600a5461010090046001600160a01b03166001600160a01b0316336001600160a01b03161480611d695750611d67610943565b155b6106f75760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b60648201526084016105c1565b8154600090611dda575060006104c1565b82546000905b80821015611e44576000611df4838361210f565b905084868281548110611e1757634e487b7160e01b600052603260045260246000fd5b90600052602060002001541115611e3057809150611e3e565b611e3b816001612ce4565b92505b50611de0565b600082118015611e8757508385611e5c600185612d2f565b81548110611e7a57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154145b15611ea057611e97600183612d2f565b925050506104c1565b5090506104c1565b611eb2838361212a565b611ebf6000848484611edb565b6106f75760405162461bcd60e51b81526004016105c190612b9a565b60006001600160a01b0384163b15611fdd57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f1f903390899088908890600401612af3565b602060405180830381600087803b158015611f3957600080fd5b505af1925050508015611f69575060408051601f3d908101601f19168201909252611f6691810190612a05565b60015b611fc3573d808015611f97576040519150601f19603f3d011682016040523d82523d6000602084013e611f9c565b606091505b508051611fbb5760405162461bcd60e51b81526004016105c190612b9a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611439565b506001949350505050565b6060600d80546104d690612d72565b6060612002826112cc565b6120665760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105c1565b6000612070611fe8565b905060008151116120905760405180602001604052806000815250611275565b8061209a84612269565b6040516020016120ab929190612ac4565b6040516020818303038152906040529392505050565b6001600160a01b0383166120db576106f782826001612383565b6001600160a01b0382166120f6576106f78382600019612383565b6121038382600019612383565b6106f782826001612383565b600061211e6002848418612cfc565b61127590848416612ce4565b6001600160a01b0382166121805760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105c1565b612189816112cc565b156121d65760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105c1565b6121e260008383611d29565b6001600160a01b038216600090815260036020526040812080546001929061220b908490612ce4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60608161228d5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156122b757806122a181612dad565b91506122b09050600a83612cfc565b9150612291565b60008167ffffffffffffffff8111156122e057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561230a576020820181803683370190505b5090505b84156114395761231f600183612d2f565b915061232c600a86612dc8565b612337906030612ce4565b60f81b81838151811061235a57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061237c600a86612cfc565b945061230e565b6001600160a01b03831660009081526007602052604081206123ba9183900b6123ab866109c8565b6123b59190612ca3565b6123e1565b60008281526008602052604081206106f79183810b136123db576000612476565b84612476565b60006123eb6115ec565b9050806123f78461254d565b101561242b578254600180820185556000858152602080822090930193909355938401805494850181558252902090910155565b6001830154156106f75760018084018054849261244791612d2f565b8154811061246557634e487b7160e01b600052603260045260246000fd5b600091825260209091200155505050565b60006124806115ec565b9050600061248d8461254d565b9050818110156124df5783546001808201865560008681526020808220909301859055818701805492830181558152919091200180546001600160a01b0319166001600160a01b0385161790556110fb565b6001840154156110fb576001808501805485926124fb91612d2f565b8154811061251957634e487b7160e01b600052603260045260246000fd5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555050505050565b805460009061255e57506000919050565b8154829061256e90600190612d2f565b8154811061258c57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b919050565b8280548282559060005260206000209081019282156125f0579160200282015b828111156125f057825180516125e091849160209091019061263a565b50916020019190600101906125c3565b506125fc9291506126ba565b5090565b50805461260c90612d72565b6000825580601f1061261c575050565b601f01602090049060005260206000209081019061125691906126d7565b82805461264690612d72565b90600052602060002090601f01602090048101928261266857600085556126ae565b82601f1061268157805160ff19168380011785556126ae565b828001600101855582156126ae579182015b828111156126ae578251825591602001919060010190612693565b506125fc9291506126d7565b808211156125fc5760006126ce8282612600565b506001016126ba565b5b808211156125fc57600081556001016126d8565b600067ffffffffffffffff83111561270657612706612e08565b612719601f8401601f1916602001612c72565b905082815283838301111561272d57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461259e57600080fd5b600082601f83011261276b578081fd5b611275838335602085016126ec565b60006020828403121561278b578081fd5b61127582612744565b600080604083850312156127a6578081fd5b6127af83612744565b91506127bd60208401612744565b90509250929050565b6000806000606084860312156127da578081fd5b6127e384612744565b92506127f160208501612744565b9150604084013590509250925092565b60008060008060808587031215612816578081fd5b61281f85612744565b935061282d60208601612744565b925060408501359150606085013567ffffffffffffffff81111561284f578182fd5b8501601f8101871361285f578182fd5b61286e878235602084016126ec565b91505092959194509250565b6000806040838503121561288c578182fd5b61289583612744565b915060208301356128a581612e1e565b809150509250929050565b600080604083850312156128c2578182fd5b6128cb83612744565b9150602083013562ffffff811681146128a5578182fd5b600080604083850312156128f4578182fd5b6128fd83612744565b946020939093013593505050565b6000602080838503121561291d578182fd5b823567ffffffffffffffff80821115612934578384fd5b818501915085601f830112612947578384fd5b81358181111561295957612959612e08565b8060051b612968858201612c72565b8281528581019085870183870188018b1015612982578889fd5b8893505b848410156129bf5780358681111561299c57898afd5b6129aa8c8a838b010161275b565b84525060019390930192918701918701612986565b509998505050505050505050565b6000602082840312156129de578081fd5b815161127581612e1e565b6000602082840312156129fa578081fd5b813561127581612e2c565b600060208284031215612a16578081fd5b815161127581612e2c565b600060208284031215612a32578081fd5b5035919050565b60008060408385031215612a4b578182fd5b823591506127bd60208401612744565b60008060408385031215612a6d578182fd5b50508035926020909101359150565b60008151808452612a94816020860160208601612d46565b601f01601f19169290920160200192915050565b60008251612aba818460208701612d46565b9190910192915050565b60008351612ad6818460208801612d46565b835190830190612aea818360208801612d46565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d1f90830184612a7c565b6000602080830181845280855180835260408601915060408160051b8701019250838701855b82811015612b7a57603f19888603018452612b68858351612a7c565b94509285019290850190600101612b4c565b5092979650505050505050565b6020815260006112756020830184612a7c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612c9b57612c9b612e08565b604052919050565b600080821280156001600160ff1b0384900385131615612cc557612cc5612ddc565b600160ff1b8390038412811615612cde57612cde612ddc565b50500190565b60008219821115612cf757612cf7612ddc565b500190565b600082612d0b57612d0b612df2565b500490565b6000816000190483118215151615612d2a57612d2a612ddc565b500290565b600082821015612d4157612d41612ddc565b500390565b60005b83811015612d61578181015183820152602001612d49565b838111156110fb5750506000910152565b600181811c90821680612d8657607f821691505b60208210811415612da757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612dc157612dc1612ddc565b5060010190565b600082612dd757612dd7612df2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b801515811461125657600080fd5b6001600160e01b03198116811461125657600080fdfea26469706673582212208b4d91f3bfe70a0bb0d482a7b4c70aed11a5a6e39acef718909a51e3c22ed85764736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001800000000000000000000000006d018edaf3fc14103833bc5f94f89618e99bf476000000000000000000000000bf4673c329ec5041058e728e4812f9f346c2aba0000000000000000000000000000000000000000000000000000000000000001546616e746173792049736c616e64732056696c6c610000000000000000000000000000000000000000000000000000000000000000000000000000000000000246490000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007697066733a2f2f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000000ce00000000000000000000000000000000000000000000000000000000000000d400000000000000000000000000000000000000000000000000000000000000da00000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000e600000000000000000000000000000000000000000000000000000000000000ec00000000000000000000000000000000000000000000000000000000000000f200000000000000000000000000000000000000000000000000000000000000f800000000000000000000000000000000000000000000000000000000000000fe0000000000000000000000000000000000000000000000000000000000000104000000000000000000000000000000000000000000000000000000000000010a00000000000000000000000000000000000000000000000000000000000001100000000000000000000000000000000000000000000000000000000000000116000000000000000000000000000000000000000000000000000000000000011c00000000000000000000000000000000000000000000000000000000000001220000000000000000000000000000000000000000000000000000000000000128000000000000000000000000000000000000000000000000000000000000012e0000000000000000000000000000000000000000000000000000000000000134000000000000000000000000000000000000000000000000000000000000013a00000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000146000000000000000000000000000000000000000000000000000000000000014c00000000000000000000000000000000000000000000000000000000000001520000000000000000000000000000000000000000000000000000000000000158000000000000000000000000000000000000000000000000000000000000015e0000000000000000000000000000000000000000000000000000000000000164000000000000000000000000000000000000000000000000000000000000016a00000000000000000000000000000000000000000000000000000000000001700000000000000000000000000000000000000000000000000000000000000176000000000000000000000000000000000000000000000000000000000000017c00000000000000000000000000000000000000000000000000000000000001820000000000000000000000000000000000000000000000000000000000000188000000000000000000000000000000000000000000000000000000000000018e0000000000000000000000000000000000000000000000000000000000000194000000000000000000000000000000000000000000000000000000000000019a00000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001a600000000000000000000000000000000000000000000000000000000000001ac00000000000000000000000000000000000000000000000000000000000001b200000000000000000000000000000000000000000000000000000000000001b800000000000000000000000000000000000000000000000000000000000001be00000000000000000000000000000000000000000000000000000000000001c400000000000000000000000000000000000000000000000000000000000001ca00000000000000000000000000000000000000000000000000000000000001d000000000000000000000000000000000000000000000000000000000000001d600000000000000000000000000000000000000000000000000000000000001dc00000000000000000000000000000000000000000000000000000000000001e200000000000000000000000000000000000000000000000000000000000001e800000000000000000000000000000000000000000000000000000000000001ee00000000000000000000000000000000000000000000000000000000000001f400000000000000000000000000000000000000000000000000000000000001fa00000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000206000000000000000000000000000000000000000000000000000000000000020c00000000000000000000000000000000000000000000000000000000000002120000000000000000000000000000000000000000000000000000000000000218000000000000000000000000000000000000000000000000000000000000021e0000000000000000000000000000000000000000000000000000000000000224000000000000000000000000000000000000000000000000000000000000022a00000000000000000000000000000000000000000000000000000000000002300000000000000000000000000000000000000000000000000000000000000236000000000000000000000000000000000000000000000000000000000000023c00000000000000000000000000000000000000000000000000000000000002420000000000000000000000000000000000000000000000000000000000000248000000000000000000000000000000000000000000000000000000000000024e0000000000000000000000000000000000000000000000000000000000000254000000000000000000000000000000000000000000000000000000000000025a00000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000266000000000000000000000000000000000000000000000000000000000000026c00000000000000000000000000000000000000000000000000000000000002720000000000000000000000000000000000000000000000000000000000000278000000000000000000000000000000000000000000000000000000000000027e0000000000000000000000000000000000000000000000000000000000000284000000000000000000000000000000000000000000000000000000000000028a00000000000000000000000000000000000000000000000000000000000002900000000000000000000000000000000000000000000000000000000000000296000000000000000000000000000000000000000000000000000000000000029c00000000000000000000000000000000000000000000000000000000000002a200000000000000000000000000000000000000000000000000000000000002a800000000000000000000000000000000000000000000000000000000000002ae00000000000000000000000000000000000000000000000000000000000002b400000000000000000000000000000000000000000000000000000000000002ba00000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000002c600000000000000000000000000000000000000000000000000000000000002cc00000000000000000000000000000000000000000000000000000000000002d200000000000000000000000000000000000000000000000000000000000002d800000000000000000000000000000000000000000000000000000000000002de00000000000000000000000000000000000000000000000000000000000002e400000000000000000000000000000000000000000000000000000000000002ea00000000000000000000000000000000000000000000000000000000000002f000000000000000000000000000000000000000000000000000000000000002f600000000000000000000000000000000000000000000000000000000000002fc00000000000000000000000000000000000000000000000000000000000003020000000000000000000000000000000000000000000000000000000000000308000000000000000000000000000000000000000000000000000000000000030e0000000000000000000000000000000000000000000000000000000000000314000000000000000000000000000000000000000000000000000000000000031a0000000000000000000000000000000000000000000000000000000000000002e516d53644e554764646e7459626e584675317368574777666d6b32446e327a4753394e6a6f437141455033675a68000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d564d3154323645646d39666f57655434503554657132644866666b5857434271687359784a64544555466b33000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d546b367855703950516e46333879736b4868455377664e5a6e6f353365486b426a6732644a4e6f346e375679000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5538346635394839734b337437664574756d4548475447784d70526e6e61614b614273517138366b55426579000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5864384347776a654a586a35794e6f6b523771526579746865765350683474395265636b4c34573264765368000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5a7737586a345a6b6e616d35503642666e7641334b38356f544e6b32616f57485a7748564d754c43695a6d6f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d50426b3451704239667541574e394e4d7a79543553435763563239627733354d627036457853714e324d4159000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d4e67416738375735416b6f665159447959654d686b694a745a6b53557473437536476838397569385957724c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5a6d5a4e5271773751544b6f686979685044374a72475a534a474c7846526e6e33796a3550394d6e385a6a76000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5968463750324b7241346d6f4b64534e65594b5748696a74327675316a76484e4231794d3242483644456232000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d577857324576344653716b445369654e75636367356b615a4c43313775696753397541347568475344794434000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d6470537675364352595666753647733748794176596e6142705734717444453859563434455a6635694e5447000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5334525035674376615153706657376d5354545161736b645633564a5350765a534d6f646e4e417a6a6e6734000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d66594d7241615a764d4b74583870366f785a774861587772544746786b34414456703976515a504c4e59584c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d6531506354486f323371386d7575776e7a614b4c47615a58417943335167714b67485564795736416f335a69000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d53736b324a7a376f4b316d67675a7554663152776e4334696e413665367871416b324a68464c39546a634b61000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5a7633646f4171766f5059455845793878766b616d343578535973325a7837735037457465724831595a7753000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d534b66453265397145764c4c6d7a795150727447674c36514670635639463638795a4a42424c4a5661504d47000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d56753558706d3177684a6f4c374231375441686334626570627472436d63574a5a6474333778325562434876000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d6167316757637663614c677335764e3558397461346e5265795a356b7a51776e413158463761317769414138000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d536b4a727944434a6b4d6a627876615464614d5169683871585a665051597243506870475165705147554137000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d56396b7950517043685563666256484e4231796b336d65387a6a4e6b76487655447770653357554b796f3232000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d4e6369424a4847636933354d7065664846514e646973666b666638375453725056594d4d326d485256337376000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d6142674832354569586b5a6871596467393445756242797939776e6842424344467152654745374b35784d76000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5a466a686a33673356625064376d577675676f564a7842744447657177574b5671626a4e35415636414c7a73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d51706757464d595550416933767258794a6e41387152734b62316943624b52613664626967375a7170674c52000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d65455334624a4c3164506f41583652726371616463445358527938456a5544653953636d6341394b6a627455000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d614a43684156776b31587846444c74793556646a6d5a526a6d6147587039555969425334665434774254375a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d573677555a325167436456776a6a72707a4e345238614d683372715a6d36445456324750516f663934317947000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d53534547334a44564b6574536b6f5069647269384b4554686e38336262765042537378626d7a697966677067000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d517451366f51726e594e5a3362444e416a7578736f4a316166554b655857616a754178733776636753745945000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d593865756b586658504465674c4d4c6f5365475366624a73627246625757664156573464524d736a68485437000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d55744e786932617531795a4d46436e4266735831455651656b4832326f58487035487350647479716a464235000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d54745a714b38315073676872484178433251674166414b47314d6e3842353464397a4258716e4879516b446e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d55447268755a4d486436586a463263385841705074373635414d543931335a326433326662793648336e4278000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d4e734d346e557a447a585744586b7456356b70375a5a4b654c573371764c6e4c4b646b7841736b6362396763000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d524b32634538596d69746f6138747665346f5966316948644b4b696451484248517466696e6a69733241776f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d585459634d5345546353524a715864346557767a62546f7355354e655852765558523438716375587374484e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d574371633834767868734c68777076687072315570443853563379424538424e644266765734313575736d33000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5466677a41576d5a3852456952446f76356a4a506670734e784e6776376542644e4d51464557395547526145000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d504271504b735850437a7a31544264556876584e657a4c65725632695a584534775968484d536675346b7a76000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5867717174527477546845324d654b56614c50787331784a484b6f5943594267477a464544623378524d707a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5a4d4e67614e394a45576948545a544d6a554c4169424a626f756a4e38594d50457371743966676257485055000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d6462746b62543968314a6a36356469707447486142436267364a774c6d4851564a5144474c4e78754b616679000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d563169317838455a7a76387061527a71424561416b673639434c454d644e7435415a484a6e6e32355a335946000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5350574b626f343256706e6f4246435a77473752317443685768367371537332655667387436357255433478000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d53376b67476437586678727756547378477a595169516d3254537544534d3135677871423471463546634343000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d57646654595969713144656f61663241697764565256537237526377687564795177654c37705a7155556831000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5677436f71796d3854595362357471766a5969416e564739687132424e7453355a6f48535745315952625942000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d636a554145586a334c4c4c315a4a75416f6b5a4568424e6a6175526a62654e3456617036357959755a394e35000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d52655044326f73313276776d633659446a6b526b6a51705750476a6168384865324166797073334463584734000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d574c4e66735a746a716b35614b6e6d70356f61693464367753726232686b7a7048417a4e72694333596e6277000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d4e67566267657670615a78424b4d3878334b423731463947366758475946393534416b314554374b77657957000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5a46454462756f6669626e575a397562726f44597162614a6b31334d37554a615339336f32526b66724d5973000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d65396d7064647943787a32484a4a394c4861774e714a537167437348765967464d5a3558334e484e63664569000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5867665a63486e65486b457332625253506b3476597832674141774e6b68446f6272555639444648546d6b59000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5836565366455934796e514162374b476d715141423174437243716f6f41503353733734474171336f53374b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d614c414a6633615262694a346e7777313771663968644d35626d476f3756434278525a31623875736d597264000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d53677833435545543257453141424d70534641747a7369453353736370706534386b51685670735346544751000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d6163664d74415252326d453635417048786f57557267563761677975373869635a5953636531367238785978000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d6262336850464d6e3639736e5744685737664d464e596262635963554a51683853397853475a734a6d737442000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d65594432734d586962675232796369556164364c324e657a71746d726a6f614d6a70415a52774a6d47746b42000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d59696f353766484c727355414275414763754c5442487468326b364e75394b6177526367364258486d756666000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d516159593154737273486f70533665534c7272437374506b59584d35357479516e6e35474b35564b31614363000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d556f4b4878655174436d724c597a4262744b5a42593754636d646a3338444e6e6a7248445753506261344a39000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d576157644e526165644b726a4558786867675873435643537653366e6466436f724554325550336768334845000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5168716f33584472737a5239666a4e66585275707143626765646263476a386f354b4663534d70393646314c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d635a6675654d4b527051676b325959695347614c337179694a515045546a3933536764586166326e4665544b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d6443644e7a42454543485168327653316f534d4c44593470615553437a3355733579627a7a6e36484c664776000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d6369505955376f725147446d777365723569776d50794e7a743948725270476a5177764733324e6254536271000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d663365436a54447a6964487a3445366a71635a525a6536593644386843435054533531396e6d566467435467000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d55544271626847504245374477624b5352323571434b485235656a66477768714639707974644e3145684374000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d516975346e584144666467574c75783151636e6a53546e4a784a343539566e763747514e7562777a66417661000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d537441313745444a75637367746e504a4d75346842536d416a38364b38566e46343641354b4b57693538645a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d6256634c6d39484e59734d546a6248795342383150346a594e355137474b66443576383162414d6a73467368000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d53427059635557655934583765536938455659764e553572776974375063636b4a586557746a435a45484239000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d54466b4d547378324a356654644d7a5747765966544d3755537742397745337a5731444d706f435351526d58000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5765795362394239793276414370416b34634637534570595878753273633171724375484d447a6131564b6b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d6644453641464768414c57634e71356e5a443750744664354a3758764366756954736354477a726736664541000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d596578534a6277396f4b6b637146756b3346445379314c394b6b3268427645546b4e334c5a44454839593345000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5058456134596235727a6a324c706d744645783158316a34714d78437266534550546f393832755563766639000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d62466f63423736647959544c3578577053656d69567a694d6761333367597162724748454e786a5338337057000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d59644c39394a433662666e784b594e58666763416655676b6f3852425355637742685168446943454878366f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5045565746696a7266387657463145504b7637467a46326f795832354c594a4475434a4b4e6a444742634c6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d665574794261366a5a36625337674d366f32444c715274776f685a7350486f586155486f63576a55426d314b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5043515a6f4356706b665a57504d524d4c4a7572544b684c74794b73514d317732315957744b48665461696e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d586a6e6f42674b3462656b75556451333438637743766a4a586e796e63416b59576a706d525955765578375a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5767326776527873644446794a336a5253744a4b4144797a6d74426b7a4d704779314e594c4c73764b323673000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d534261344a67665757557a35514b73626a6e7a4b706646447a72476264576476586a43783577534a77487355000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d54323334376e36694e39745969413277324c59455a66424459705963716f76364d577055516b535257543459000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5156764267485a4d434d685a623178416b544438326d364b6d696b71755666343578626d716b356b54684a50000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d504c70686f756864765738685354313342756b773542386879547532586d6341333958527277735063336f51000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d553474653567756f504b635054585248484e36677669414d757a70777745474d6d48526f61414e727367736e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5146526534774e6a3654664350526f544b386d616f7a74356942737271374e3275637742737a50726b484347000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5844754d437155574d3843466f364541716463347167644a346a706d59786b6b6e3851777033705566527764000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d514852755975457943787252556859394c7a6b7064334b6d3142504b6b373578556a6a636f34704a74675357000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5a6e6a387155555747745631456f32796245316d595a75633651706744506553684e7953596a763474364141000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d52616b6733616e4b3972587862326b4137564b7253726a48434877523270386f544d7973416a37346e547144000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5143683579396d7a5a3374783453615439653471755675766150564738667876426265586d714b5253483575000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d6373736438524b3764424663327150565661713957414b4137586a4e394e725a615447413331596448326e45000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Fantasy Islands Villa
Arg [1] : symbol_ (string): FI
Arg [2] : baseURI_ (string): ipfs://
Arg [3] : metahashes (string[]): QmSdNUGddntYbnXFu1shWGwfmk2Dn2zGS9NjoCqAEP3gZh,QmVM1T26Edm9foWeT4P5Teq2dHffkXWCBqhsYxJdTEUFk3,QmTk6xUp9PQnF38yskHhESwfNZno53eHkBjg2dJNo4n7Vy,QmU84f59H9sK3t7fEtumEHGTGxMpRnnaaKaBsQq86kUBey,QmXd8CGwjeJXj5yNokR7qReythevSPh4t9ReckL4W2dvSh,QmZw7Xj4Zknam5P6BfnvA3K85oTNk2aoWHZwHVMuLCiZmo,QmPBk4QpB9fuAWN9NMzyT5SCWcV29bw35Mbp6ExSqN2MAY,QmNgAg87W5AkofQYDyYeMhkiJtZkSUtsCu6Gh89ui8YWrL,QmZmZNRqw7QTKohiyhPD7JrGZSJGLxFRnn3yj5P9Mn8Zjv,QmYhF7P2KrA4moKdSNeYKWHijt2vu1jvHNB1yM2BH6DEb2,QmWxW2Ev4FSqkDSieNuccg5kaZLC17uigS9uA4uhGSDyD4,QmdpSvu6CRYVfu6Gs7HyAvYnaBpW4qtDE8YV44EZf5iNTG,QmS4RP5gCvaQSpfW7mSTTQaskdV3VJSPvZSModnNAzjng4,QmfYMrAaZvMKtX8p6oxZwHaXwrTGFxk4ADVp9vQZPLNYXL,Qme1PcTHo23q8muuwnzaKLGaZXAyC3QgqKgHUdyW6Ao3Zi,QmSsk2Jz7oK1mggZuTf1RwnC4inA6e6xqAk2JhFL9TjcKa,QmZv3doAqvoPYEXEy8xvkam45xSYs2Zx7sP7EterH1YZwS,QmSKfE2e9qEvLLmzyQPrtGgL6QFpcV9F68yZJBBLJVaPMG,QmVu5Xpm1whJoL7B17TAhc4bepbtrCmcWJZdt37x2UbCHv,Qmag1gWcvcaLgs5vN5X9ta4nReyZ5kzQwnA1XF7a1wiAA8,QmSkJryDCJkMjbxvaTdaMQih8qXZfPQYrCPhpGQepQGUA7,QmV9kyPQpChUcfbVHNB1yk3me8zjNkvHvUDwpe3WUKyo22,QmNciBJHGci35MpefHFQNdisfkff87TSrPVYMM2mHRV3sv,QmaBgH25EiXkZhqYdg94EubByy9wnhBBCDFqReGE7K5xMv,QmZFjhj3g3VbPd7mWvugoVJxBtDGeqwWKVqbjN5AV6ALzs,QmQpgWFMYUPAi3vrXyJnA8qRsKb1iCbKRa6dbig7ZqpgLR,QmeES4bJL1dPoAX6RrcqadcDSXRy8EjUDe9ScmcA9KjbtU,QmaJChAVwk1XxFDLty5VdjmZRjmaGXp9UYiBS4fT4wBT7Z,QmW6wUZ2QgCdVwjjrpzN4R8aMh3rqZm6DTV2GPQof941yG,QmSSEG3JDVKetSkoPidri8KEThn83bbvPBSsxbmziyfgpg,QmQtQ6oQrnYNZ3bDNAjuxsoJ1afUKeXWajuAxs7vcgStYE,QmY8eukXfXPDegLMLoSeGSfbJsbrFbWWfAVW4dRMsjhHT7,QmUtNxi2au1yZMFCnBfsX1EVQekH22oXHp5HsPdtyqjFB5,QmTtZqK81PsghrHAxC2QgAfAKG1Mn8B54d9zBXqnHyQkDn,QmUDrhuZMHd6XjF2c8XApPt765AMT913Z2d32fby6H3nBx,QmNsM4nUzDzXWDXktV5kp7ZZKeLW3qvLnLKdkxAskcb9gc,QmRK2cE8Ymitoa8tve4oYf1iHdKKidQHBHQtfinjis2Awo,QmXTYcMSETcSRJqXd4eWvzbTosU5NeXRvUXR48qcuXstHN,QmWCqc84vxhsLhwpvhpr1UpD8SV3yBE8BNdBfvW415usm3,QmTfgzAWmZ8REiRDov5jJPfpsNxNgv7eBdNMQFEW9UGRaE,QmPBqPKsXPCzz1TBdUhvXNezLerV2iZXE4wYhHMSfu4kzv,QmXgqqtRtwThE2MeKVaLPxs1xJHKoYCYBgGzFEDb3xRMpz,QmZMNgaN9JEWiHTZTMjULAiBJboujN8YMPEsqt9fgbWHPU,QmdbtkbT9h1Jj65diptGHaBCbg6JwLmHQVJQDGLNxuKafy,QmV1i1x8EZzv8paRzqBEaAkg69CLEMdNt5AZHJnn25Z3YF,QmSPWKbo42VpnoBFCZwG7R1tChWh6sqSs2eVg8t65rUC4x,QmS7kgGd7XfxrwVTsxGzYQiQm2TSuDSM15gxqB4qF5FcCC,QmWdfTYYiq1Deoaf2AiwdVRVSr7RcwhudyQweL7pZqUUh1,QmVwCoqym8TYSb5tqvjYiAnVG9hq2BNtS5ZoHSWE1YRbYB,QmcjUAEXj3LLL1ZJuAokZEhBNjauRjbeN4Vap65yYuZ9N5,QmRePD2os12vwmc6YDjkRkjQpWPGjah8He2Afyps3DcXG4,QmWLNfsZtjqk5aKnmp5oai4d6wSrb2hkzpHAzNriC3Ynbw,QmNgVbgevpaZxBKM8x3KB71F9G6gXGYF954Ak1ET7KweyW,QmZFEDbuofibnWZ9ubroDYqbaJk13M7UJaS93o2RkfrMYs,Qme9mpddyCxz2HJJ9LHawNqJSqgCsHvYgFMZ5X3NHNcfEi,QmXgfZcHneHkEs2bRSPk4vYx2gAAwNkhDobrUV9DFHTmkY,QmX6VSfEY4ynQAb7KGmqQAB1tCrCqooAP3Ss74GAq3oS7K,QmaLAJf3aRbiJ4nww17qf9hdM5bmGo7VCBxRZ1b8usmYrd,QmSgx3CUET2WE1ABMpSFAtzsiE3Sscppe48kQhVpsSFTGQ,QmacfMtARR2mE65ApHxoWUrgV7agyu78icZYSce16r8xYx,Qmbb3hPFMn69snWDhW7fMFNYbbcYcUJQh8S9xSGZsJmstB,QmeYD2sMXibgR2yciUad6L2NezqtmrjoaMjpAZRwJmGtkB,QmYio57fHLrsUABuAGcuLTBHth2k6Nu9KawRcg6BXHmuff,QmQaYY1TsrsHopS6eSLrrCstPkYXM55tyQnn5GK5VK1aCc,QmUoKHxeQtCmrLYzBbtKZBY7Tcmdj38DNnjrHDWSPba4J9,QmWaWdNRaedKrjEXxhggXsCVCSvS6ndfCorET2UP3gh3HE,QmQhqo3XDrszR9fjNfXRupqCbgedbcGj8o5KFcSMp96F1L,QmcZfueMKRpQgk2YYiSGaL3qyiJQPETj93SgdXaf2nFeTK,QmdCdNzBEECHQh2vS1oSMLDY4paUSCz3Us5ybzzn6HLfGv,QmciPYU7orQGDmwser5iwmPyNzt9HrRpGjQwvG32NbTSbq,Qmf3eCjTDzidHz4E6jqcZRZe6Y6D8hCCPTS519nmVdgCTg,QmUTBqbhGPBE7DwbKSR25qCKHR5ejfGwhqF9pytdN1EhCt,QmQiu4nXADfdgWLux1QcnjSTnJxJ459Vnv7GQNubwzfAva,QmStA17EDJucsgtnPJMu4hBSmAj86K8VnF46A5KKWi58dZ,QmbVcLm9HNYsMTjbHySB81P4jYN5Q7GKfD5v81bAMjsFsh,QmSBpYcUWeY4X7eSi8EVYvNU5rwit7PcckJXeWtjCZEHB9,QmTFkMTsx2J5fTdMzWGvYfTM7USwB9wE3zW1DMpoCSQRmX,QmWeySb9B9y2vACpAk4cF7SEpYXxu2sc1qrCuHMDza1VKk,QmfDE6AFGhALWcNq5nZD7PtFd5J7XvCfuiTscTGzrg6fEA,QmYexSJbw9oKkcqFuk3FDSy1L9Kk2hBvETkN3LZDEH9Y3E,QmPXEa4Yb5rzj2LpmtFEx1X1j4qMxCrfSEPTo982uUcvf9,QmbFocB76dyYTL5xWpSemiVziMga33gYqbrGHENxjS83pW,QmYdL99JC6bfnxKYNXfgcAfUgko8RBSUcwBhQhDiCEHx6o,QmPEVWFijrf8vWF1EPKv7FzF2oyX25LYJDuCJKNjDGBcLn,QmfUtyBa6jZ6bS7gM6o2DLqRtwohZsPHoXaUHocWjUBm1K,QmPCQZoCVpkfZWPMRMLJurTKhLtyKsQM1w21YWtKHfTain,QmXjnoBgK4bekuUdQ348cwCvjJXnyncAkYWjpmRYUvUx7Z,QmWg2gvRxsdDFyJ3jRStJKADyzmtBkzMpGy1NYLLsvK26s,QmSBa4JgfWWUz5QKsbjnzKpfFDzrGbdWdvXjCx5wSJwHsU,QmT2347n6iN9tYiA2w2LYEZfBDYpYcqov6MWpUQkSRWT4Y,QmQVvBgHZMCMhZb1xAkTD82m6KmikquVf45xbmqk5kThJP,QmPLphouhdvW8hST13Bukw5B8hyTu2XmcA39XRrwsPc3oQ,QmU4te5guoPKcPTXRHHN6gviAMuzpwwEGMmHRoaANrsgsn,QmQFRe4wNj6TfCPRoTK8maozt5iBsrq7N2ucwBszPrkHCG,QmXDuMCqUWM8CFo6EAqdc4qgdJ4jpmYxkkn8Qwp3pUfRwd,QmQHRuYuEyCxrRUhY9Lzkpd3Km1BPKk75xUjjco4pJtgSW,QmZnj8qUUWGtV1Eo2ybE1mYZuc6QpgDPeShNySYjv4t6AA,QmRakg3anK9rXxb2kA7VKrSrjHCHwR2p8oTMysAj74nTqD,QmQCh5y9mzZ3tx4SaT9e4quVuvaPVG8fxvBbeXmqKRSH5u,Qmcssd8RK7dBFc2qPVVaq9WAKA7XjN9NrZaTGA31YdH2nE
Arg [4] : randomGenerator_ (address): 0x6D018edAF3fc14103833Bc5f94f89618E99BF476
Arg [5] : owner (address): 0xbf4673c329ec5041058e728e4812F9F346c2aba0

-----Encoded View---------------
413 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [4] : 0000000000000000000000006d018edaf3fc14103833bc5f94f89618e99bf476
Arg [5] : 000000000000000000000000bf4673c329ec5041058e728e4812f9f346c2aba0
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000015
Arg [7] : 46616e746173792049736c616e64732056696c6c610000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [9] : 4649000000000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [11] : 697066733a2f2f00000000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000c80
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000ce0
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000d40
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000da0
Arg [17] : 0000000000000000000000000000000000000000000000000000000000000e00
Arg [18] : 0000000000000000000000000000000000000000000000000000000000000e60
Arg [19] : 0000000000000000000000000000000000000000000000000000000000000ec0
Arg [20] : 0000000000000000000000000000000000000000000000000000000000000f20
Arg [21] : 0000000000000000000000000000000000000000000000000000000000000f80
Arg [22] : 0000000000000000000000000000000000000000000000000000000000000fe0
Arg [23] : 0000000000000000000000000000000000000000000000000000000000001040
Arg [24] : 00000000000000000000000000000000000000000000000000000000000010a0
Arg [25] : 0000000000000000000000000000000000000000000000000000000000001100
Arg [26] : 0000000000000000000000000000000000000000000000000000000000001160
Arg [27] : 00000000000000000000000000000000000000000000000000000000000011c0
Arg [28] : 0000000000000000000000000000000000000000000000000000000000001220
Arg [29] : 0000000000000000000000000000000000000000000000000000000000001280
Arg [30] : 00000000000000000000000000000000000000000000000000000000000012e0
Arg [31] : 0000000000000000000000000000000000000000000000000000000000001340
Arg [32] : 00000000000000000000000000000000000000000000000000000000000013a0
Arg [33] : 0000000000000000000000000000000000000000000000000000000000001400
Arg [34] : 0000000000000000000000000000000000000000000000000000000000001460
Arg [35] : 00000000000000000000000000000000000000000000000000000000000014c0
Arg [36] : 0000000000000000000000000000000000000000000000000000000000001520
Arg [37] : 0000000000000000000000000000000000000000000000000000000000001580
Arg [38] : 00000000000000000000000000000000000000000000000000000000000015e0
Arg [39] : 0000000000000000000000000000000000000000000000000000000000001640
Arg [40] : 00000000000000000000000000000000000000000000000000000000000016a0
Arg [41] : 0000000000000000000000000000000000000000000000000000000000001700
Arg [42] : 0000000000000000000000000000000000000000000000000000000000001760
Arg [43] : 00000000000000000000000000000000000000000000000000000000000017c0
Arg [44] : 0000000000000000000000000000000000000000000000000000000000001820
Arg [45] : 0000000000000000000000000000000000000000000000000000000000001880
Arg [46] : 00000000000000000000000000000000000000000000000000000000000018e0
Arg [47] : 0000000000000000000000000000000000000000000000000000000000001940
Arg [48] : 00000000000000000000000000000000000000000000000000000000000019a0
Arg [49] : 0000000000000000000000000000000000000000000000000000000000001a00
Arg [50] : 0000000000000000000000000000000000000000000000000000000000001a60
Arg [51] : 0000000000000000000000000000000000000000000000000000000000001ac0
Arg [52] : 0000000000000000000000000000000000000000000000000000000000001b20
Arg [53] : 0000000000000000000000000000000000000000000000000000000000001b80
Arg [54] : 0000000000000000000000000000000000000000000000000000000000001be0
Arg [55] : 0000000000000000000000000000000000000000000000000000000000001c40
Arg [56] : 0000000000000000000000000000000000000000000000000000000000001ca0
Arg [57] : 0000000000000000000000000000000000000000000000000000000000001d00
Arg [58] : 0000000000000000000000000000000000000000000000000000000000001d60
Arg [59] : 0000000000000000000000000000000000000000000000000000000000001dc0
Arg [60] : 0000000000000000000000000000000000000000000000000000000000001e20
Arg [61] : 0000000000000000000000000000000000000000000000000000000000001e80
Arg [62] : 0000000000000000000000000000000000000000000000000000000000001ee0
Arg [63] : 0000000000000000000000000000000000000000000000000000000000001f40
Arg [64] : 0000000000000000000000000000000000000000000000000000000000001fa0
Arg [65] : 0000000000000000000000000000000000000000000000000000000000002000
Arg [66] : 0000000000000000000000000000000000000000000000000000000000002060
Arg [67] : 00000000000000000000000000000000000000000000000000000000000020c0
Arg [68] : 0000000000000000000000000000000000000000000000000000000000002120
Arg [69] : 0000000000000000000000000000000000000000000000000000000000002180
Arg [70] : 00000000000000000000000000000000000000000000000000000000000021e0
Arg [71] : 0000000000000000000000000000000000000000000000000000000000002240
Arg [72] : 00000000000000000000000000000000000000000000000000000000000022a0
Arg [73] : 0000000000000000000000000000000000000000000000000000000000002300
Arg [74] : 0000000000000000000000000000000000000000000000000000000000002360
Arg [75] : 00000000000000000000000000000000000000000000000000000000000023c0
Arg [76] : 0000000000000000000000000000000000000000000000000000000000002420
Arg [77] : 0000000000000000000000000000000000000000000000000000000000002480
Arg [78] : 00000000000000000000000000000000000000000000000000000000000024e0
Arg [79] : 0000000000000000000000000000000000000000000000000000000000002540
Arg [80] : 00000000000000000000000000000000000000000000000000000000000025a0
Arg [81] : 0000000000000000000000000000000000000000000000000000000000002600
Arg [82] : 0000000000000000000000000000000000000000000000000000000000002660
Arg [83] : 00000000000000000000000000000000000000000000000000000000000026c0
Arg [84] : 0000000000000000000000000000000000000000000000000000000000002720
Arg [85] : 0000000000000000000000000000000000000000000000000000000000002780
Arg [86] : 00000000000000000000000000000000000000000000000000000000000027e0
Arg [87] : 0000000000000000000000000000000000000000000000000000000000002840
Arg [88] : 00000000000000000000000000000000000000000000000000000000000028a0
Arg [89] : 0000000000000000000000000000000000000000000000000000000000002900
Arg [90] : 0000000000000000000000000000000000000000000000000000000000002960
Arg [91] : 00000000000000000000000000000000000000000000000000000000000029c0
Arg [92] : 0000000000000000000000000000000000000000000000000000000000002a20
Arg [93] : 0000000000000000000000000000000000000000000000000000000000002a80
Arg [94] : 0000000000000000000000000000000000000000000000000000000000002ae0
Arg [95] : 0000000000000000000000000000000000000000000000000000000000002b40
Arg [96] : 0000000000000000000000000000000000000000000000000000000000002ba0
Arg [97] : 0000000000000000000000000000000000000000000000000000000000002c00
Arg [98] : 0000000000000000000000000000000000000000000000000000000000002c60
Arg [99] : 0000000000000000000000000000000000000000000000000000000000002cc0
Arg [100] : 0000000000000000000000000000000000000000000000000000000000002d20
Arg [101] : 0000000000000000000000000000000000000000000000000000000000002d80
Arg [102] : 0000000000000000000000000000000000000000000000000000000000002de0
Arg [103] : 0000000000000000000000000000000000000000000000000000000000002e40
Arg [104] : 0000000000000000000000000000000000000000000000000000000000002ea0
Arg [105] : 0000000000000000000000000000000000000000000000000000000000002f00
Arg [106] : 0000000000000000000000000000000000000000000000000000000000002f60
Arg [107] : 0000000000000000000000000000000000000000000000000000000000002fc0
Arg [108] : 0000000000000000000000000000000000000000000000000000000000003020
Arg [109] : 0000000000000000000000000000000000000000000000000000000000003080
Arg [110] : 00000000000000000000000000000000000000000000000000000000000030e0
Arg [111] : 0000000000000000000000000000000000000000000000000000000000003140
Arg [112] : 00000000000000000000000000000000000000000000000000000000000031a0
Arg [113] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [114] : 516d53644e554764646e7459626e584675317368574777666d6b32446e327a47
Arg [115] : 53394e6a6f437141455033675a68000000000000000000000000000000000000
Arg [116] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [117] : 516d564d3154323645646d39666f57655434503554657132644866666b585743
Arg [118] : 4271687359784a64544555466b33000000000000000000000000000000000000
Arg [119] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [120] : 516d546b367855703950516e46333879736b4868455377664e5a6e6f35336548
Arg [121] : 6b426a6732644a4e6f346e375679000000000000000000000000000000000000
Arg [122] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [123] : 516d5538346635394839734b337437664574756d4548475447784d70526e6e61
Arg [124] : 614b614273517138366b55426579000000000000000000000000000000000000
Arg [125] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [126] : 516d5864384347776a654a586a35794e6f6b5237715265797468657653506834
Arg [127] : 74395265636b4c34573264765368000000000000000000000000000000000000
Arg [128] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [129] : 516d5a7737586a345a6b6e616d35503642666e7641334b38356f544e6b32616f
Arg [130] : 57485a7748564d754c43695a6d6f000000000000000000000000000000000000
Arg [131] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [132] : 516d50426b3451704239667541574e394e4d7a79543553435763563239627733
Arg [133] : 354d627036457853714e324d4159000000000000000000000000000000000000
Arg [134] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [135] : 516d4e67416738375735416b6f665159447959654d686b694a745a6b53557473
Arg [136] : 437536476838397569385957724c000000000000000000000000000000000000
Arg [137] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [138] : 516d5a6d5a4e5271773751544b6f686979685044374a72475a534a474c784652
Arg [139] : 6e6e33796a3550394d6e385a6a76000000000000000000000000000000000000
Arg [140] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [141] : 516d5968463750324b7241346d6f4b64534e65594b5748696a74327675316a76
Arg [142] : 484e4231794d3242483644456232000000000000000000000000000000000000
Arg [143] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [144] : 516d577857324576344653716b445369654e75636367356b615a4c4331377569
Arg [145] : 6753397541347568475344794434000000000000000000000000000000000000
Arg [146] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [147] : 516d6470537675364352595666753647733748794176596e6142705734717444
Arg [148] : 453859563434455a6635694e5447000000000000000000000000000000000000
Arg [149] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [150] : 516d5334525035674376615153706657376d5354545161736b645633564a5350
Arg [151] : 765a534d6f646e4e417a6a6e6734000000000000000000000000000000000000
Arg [152] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [153] : 516d66594d7241615a764d4b74583870366f785a774861587772544746786b34
Arg [154] : 414456703976515a504c4e59584c000000000000000000000000000000000000
Arg [155] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [156] : 516d6531506354486f323371386d7575776e7a614b4c47615a58417943335167
Arg [157] : 714b67485564795736416f335a69000000000000000000000000000000000000
Arg [158] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [159] : 516d53736b324a7a376f4b316d67675a7554663152776e4334696e4136653678
Arg [160] : 71416b324a68464c39546a634b61000000000000000000000000000000000000
Arg [161] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [162] : 516d5a7633646f4171766f5059455845793878766b616d343578535973325a78
Arg [163] : 37735037457465724831595a7753000000000000000000000000000000000000
Arg [164] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [165] : 516d534b66453265397145764c4c6d7a795150727447674c3651467063563946
Arg [166] : 3638795a4a42424c4a5661504d47000000000000000000000000000000000000
Arg [167] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [168] : 516d56753558706d3177684a6f4c374231375441686334626570627472436d63
Arg [169] : 574a5a6474333778325562434876000000000000000000000000000000000000
Arg [170] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [171] : 516d6167316757637663614c677335764e3558397461346e5265795a356b7a51
Arg [172] : 776e413158463761317769414138000000000000000000000000000000000000
Arg [173] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [174] : 516d536b4a727944434a6b4d6a627876615464614d5169683871585a66505159
Arg [175] : 7243506870475165705147554137000000000000000000000000000000000000
Arg [176] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [177] : 516d56396b7950517043685563666256484e4231796b336d65387a6a4e6b7648
Arg [178] : 7655447770653357554b796f3232000000000000000000000000000000000000
Arg [179] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [180] : 516d4e6369424a4847636933354d7065664846514e646973666b666638375453
Arg [181] : 725056594d4d326d485256337376000000000000000000000000000000000000
Arg [182] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [183] : 516d6142674832354569586b5a6871596467393445756242797939776e684242
Arg [184] : 4344467152654745374b35784d76000000000000000000000000000000000000
Arg [185] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [186] : 516d5a466a686a33673356625064376d577675676f564a784274444765717757
Arg [187] : 4b5671626a4e35415636414c7a73000000000000000000000000000000000000
Arg [188] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [189] : 516d51706757464d595550416933767258794a6e41387152734b62316943624b
Arg [190] : 52613664626967375a7170674c52000000000000000000000000000000000000
Arg [191] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [192] : 516d65455334624a4c3164506f41583652726371616463445358527938456a55
Arg [193] : 44653953636d6341394b6a627455000000000000000000000000000000000000
Arg [194] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [195] : 516d614a43684156776b31587846444c74793556646a6d5a526a6d6147587039
Arg [196] : 555969425334665434774254375a000000000000000000000000000000000000
Arg [197] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [198] : 516d573677555a325167436456776a6a72707a4e345238614d683372715a6d36
Arg [199] : 445456324750516f663934317947000000000000000000000000000000000000
Arg [200] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [201] : 516d53534547334a44564b6574536b6f5069647269384b4554686e3833626276
Arg [202] : 5042537378626d7a697966677067000000000000000000000000000000000000
Arg [203] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [204] : 516d517451366f51726e594e5a3362444e416a7578736f4a316166554b655857
Arg [205] : 616a754178733776636753745945000000000000000000000000000000000000
Arg [206] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [207] : 516d593865756b586658504465674c4d4c6f5365475366624a73627246625757
Arg [208] : 664156573464524d736a68485437000000000000000000000000000000000000
Arg [209] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [210] : 516d55744e786932617531795a4d46436e4266735831455651656b4832326f58
Arg [211] : 487035487350647479716a464235000000000000000000000000000000000000
Arg [212] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [213] : 516d54745a714b38315073676872484178433251674166414b47314d6e384235
Arg [214] : 3464397a4258716e4879516b446e000000000000000000000000000000000000
Arg [215] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [216] : 516d55447268755a4d486436586a463263385841705074373635414d54393133
Arg [217] : 5a326433326662793648336e4278000000000000000000000000000000000000
Arg [218] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [219] : 516d4e734d346e557a447a585744586b7456356b70375a5a4b654c573371764c
Arg [220] : 6e4c4b646b7841736b6362396763000000000000000000000000000000000000
Arg [221] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [222] : 516d524b32634538596d69746f6138747665346f5966316948644b4b69645148
Arg [223] : 4248517466696e6a69733241776f000000000000000000000000000000000000
Arg [224] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [225] : 516d585459634d5345546353524a715864346557767a62546f7355354e655852
Arg [226] : 765558523438716375587374484e000000000000000000000000000000000000
Arg [227] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [228] : 516d574371633834767868734c68777076687072315570443853563379424538
Arg [229] : 424e644266765734313575736d33000000000000000000000000000000000000
Arg [230] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [231] : 516d5466677a41576d5a3852456952446f76356a4a506670734e784e67763765
Arg [232] : 42644e4d51464557395547526145000000000000000000000000000000000000
Arg [233] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [234] : 516d504271504b735850437a7a31544264556876584e657a4c65725632695a58
Arg [235] : 4534775968484d536675346b7a76000000000000000000000000000000000000
Arg [236] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [237] : 516d5867717174527477546845324d654b56614c50787331784a484b6f594359
Arg [238] : 4267477a464544623378524d707a000000000000000000000000000000000000
Arg [239] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [240] : 516d5a4d4e67614e394a45576948545a544d6a554c4169424a626f756a4e3859
Arg [241] : 4d50457371743966676257485055000000000000000000000000000000000000
Arg [242] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [243] : 516d6462746b62543968314a6a36356469707447486142436267364a774c6d48
Arg [244] : 51564a5144474c4e78754b616679000000000000000000000000000000000000
Arg [245] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [246] : 516d563169317838455a7a76387061527a71424561416b673639434c454d644e
Arg [247] : 7435415a484a6e6e32355a335946000000000000000000000000000000000000
Arg [248] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [249] : 516d5350574b626f343256706e6f4246435a7747375231744368576836737153
Arg [250] : 7332655667387436357255433478000000000000000000000000000000000000
Arg [251] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [252] : 516d53376b67476437586678727756547378477a595169516d3254537544534d
Arg [253] : 3135677871423471463546634343000000000000000000000000000000000000
Arg [254] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [255] : 516d57646654595969713144656f616632416977645652565372375263776875
Arg [256] : 64795177654c37705a7155556831000000000000000000000000000000000000
Arg [257] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [258] : 516d5677436f71796d3854595362357471766a5969416e564739687132424e74
Arg [259] : 53355a6f48535745315952625942000000000000000000000000000000000000
Arg [260] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [261] : 516d636a554145586a334c4c4c315a4a75416f6b5a4568424e6a6175526a6265
Arg [262] : 4e3456617036357959755a394e35000000000000000000000000000000000000
Arg [263] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [264] : 516d52655044326f73313276776d633659446a6b526b6a51705750476a616838
Arg [265] : 4865324166797073334463584734000000000000000000000000000000000000
Arg [266] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [267] : 516d574c4e66735a746a716b35614b6e6d70356f61693464367753726232686b
Arg [268] : 7a7048417a4e72694333596e6277000000000000000000000000000000000000
Arg [269] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [270] : 516d4e67566267657670615a78424b4d3878334b423731463947366758475946
Arg [271] : 393534416b314554374b77657957000000000000000000000000000000000000
Arg [272] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [273] : 516d5a46454462756f6669626e575a397562726f44597162614a6b31334d3755
Arg [274] : 4a615339336f32526b66724d5973000000000000000000000000000000000000
Arg [275] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [276] : 516d65396d7064647943787a32484a4a394c4861774e714a5371674373487659
Arg [277] : 67464d5a3558334e484e63664569000000000000000000000000000000000000
Arg [278] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [279] : 516d5867665a63486e65486b457332625253506b3476597832674141774e6b68
Arg [280] : 446f6272555639444648546d6b59000000000000000000000000000000000000
Arg [281] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [282] : 516d5836565366455934796e514162374b476d715141423174437243716f6f41
Arg [283] : 503353733734474171336f53374b000000000000000000000000000000000000
Arg [284] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [285] : 516d614c414a6633615262694a346e7777313771663968644d35626d476f3756
Arg [286] : 434278525a31623875736d597264000000000000000000000000000000000000
Arg [287] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [288] : 516d53677833435545543257453141424d70534641747a736945335373637070
Arg [289] : 6534386b51685670735346544751000000000000000000000000000000000000
Arg [290] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [291] : 516d6163664d74415252326d453635417048786f575572675637616779753738
Arg [292] : 69635a5953636531367238785978000000000000000000000000000000000000
Arg [293] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [294] : 516d6262336850464d6e3639736e5744685737664d464e596262635963554a51
Arg [295] : 683853397853475a734a6d737442000000000000000000000000000000000000
Arg [296] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [297] : 516d65594432734d586962675232796369556164364c324e657a71746d726a6f
Arg [298] : 614d6a70415a52774a6d47746b42000000000000000000000000000000000000
Arg [299] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [300] : 516d59696f353766484c727355414275414763754c5442487468326b364e7539
Arg [301] : 4b6177526367364258486d756666000000000000000000000000000000000000
Arg [302] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [303] : 516d516159593154737273486f70533665534c7272437374506b59584d353574
Arg [304] : 79516e6e35474b35564b31614363000000000000000000000000000000000000
Arg [305] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [306] : 516d556f4b4878655174436d724c597a4262744b5a42593754636d646a333844
Arg [307] : 4e6e6a7248445753506261344a39000000000000000000000000000000000000
Arg [308] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [309] : 516d576157644e526165644b726a4558786867675873435643537653366e6466
Arg [310] : 436f724554325550336768334845000000000000000000000000000000000000
Arg [311] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [312] : 516d5168716f33584472737a5239666a4e66585275707143626765646263476a
Arg [313] : 386f354b4663534d70393646314c000000000000000000000000000000000000
Arg [314] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [315] : 516d635a6675654d4b527051676b325959695347614c337179694a515045546a
Arg [316] : 3933536764586166326e4665544b000000000000000000000000000000000000
Arg [317] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [318] : 516d6443644e7a42454543485168327653316f534d4c44593470615553437a33
Arg [319] : 55733579627a7a6e36484c664776000000000000000000000000000000000000
Arg [320] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [321] : 516d6369505955376f725147446d777365723569776d50794e7a743948725270
Arg [322] : 476a5177764733324e6254536271000000000000000000000000000000000000
Arg [323] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [324] : 516d663365436a54447a6964487a3445366a71635a525a653659364438684343
Arg [325] : 5054533531396e6d566467435467000000000000000000000000000000000000
Arg [326] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [327] : 516d55544271626847504245374477624b5352323571434b485235656a664777
Arg [328] : 68714639707974644e3145684374000000000000000000000000000000000000
Arg [329] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [330] : 516d516975346e584144666467574c75783151636e6a53546e4a784a34353956
Arg [331] : 6e763747514e7562777a66417661000000000000000000000000000000000000
Arg [332] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [333] : 516d537441313745444a75637367746e504a4d75346842536d416a38364b3856
Arg [334] : 6e46343641354b4b57693538645a000000000000000000000000000000000000
Arg [335] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [336] : 516d6256634c6d39484e59734d546a6248795342383150346a594e355137474b
Arg [337] : 66443576383162414d6a73467368000000000000000000000000000000000000
Arg [338] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [339] : 516d53427059635557655934583765536938455659764e553572776974375063
Arg [340] : 636b4a586557746a435a45484239000000000000000000000000000000000000
Arg [341] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [342] : 516d54466b4d547378324a356654644d7a5747765966544d3755537742397745
Arg [343] : 337a5731444d706f435351526d58000000000000000000000000000000000000
Arg [344] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [345] : 516d5765795362394239793276414370416b3463463753457059587875327363
Arg [346] : 3171724375484d447a6131564b6b000000000000000000000000000000000000
Arg [347] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [348] : 516d6644453641464768414c57634e71356e5a443750744664354a3758764366
Arg [349] : 756954736354477a726736664541000000000000000000000000000000000000
Arg [350] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [351] : 516d596578534a6277396f4b6b637146756b3346445379314c394b6b32684276
Arg [352] : 45546b4e334c5a44454839593345000000000000000000000000000000000000
Arg [353] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [354] : 516d5058456134596235727a6a324c706d744645783158316a34714d78437266
Arg [355] : 534550546f393832755563766639000000000000000000000000000000000000
Arg [356] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [357] : 516d62466f63423736647959544c3578577053656d69567a694d676133336759
Arg [358] : 7162724748454e786a5338337057000000000000000000000000000000000000
Arg [359] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [360] : 516d59644c39394a433662666e784b594e58666763416655676b6f3852425355
Arg [361] : 637742685168446943454878366f000000000000000000000000000000000000
Arg [362] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [363] : 516d5045565746696a7266387657463145504b7637467a46326f795832354c59
Arg [364] : 4a4475434a4b4e6a444742634c6e000000000000000000000000000000000000
Arg [365] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [366] : 516d665574794261366a5a36625337674d366f32444c715274776f685a735048
Arg [367] : 6f586155486f63576a55426d314b000000000000000000000000000000000000
Arg [368] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [369] : 516d5043515a6f4356706b665a57504d524d4c4a7572544b684c74794b73514d
Arg [370] : 317732315957744b48665461696e000000000000000000000000000000000000
Arg [371] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [372] : 516d586a6e6f42674b3462656b75556451333438637743766a4a586e796e6341
Arg [373] : 6b59576a706d525955765578375a000000000000000000000000000000000000
Arg [374] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [375] : 516d5767326776527873644446794a336a5253744a4b4144797a6d74426b7a4d
Arg [376] : 704779314e594c4c73764b323673000000000000000000000000000000000000
Arg [377] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [378] : 516d534261344a67665757557a35514b73626a6e7a4b706646447a7247626457
Arg [379] : 6476586a43783577534a77487355000000000000000000000000000000000000
Arg [380] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [381] : 516d54323334376e36694e39745969413277324c59455a66424459705963716f
Arg [382] : 76364d577055516b535257543459000000000000000000000000000000000000
Arg [383] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [384] : 516d5156764267485a4d434d685a623178416b544438326d364b6d696b717556
Arg [385] : 66343578626d716b356b54684a50000000000000000000000000000000000000
Arg [386] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [387] : 516d504c70686f756864765738685354313342756b773542386879547532586d
Arg [388] : 6341333958527277735063336f51000000000000000000000000000000000000
Arg [389] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [390] : 516d553474653567756f504b635054585248484e36677669414d757a70777745
Arg [391] : 474d6d48526f61414e727367736e000000000000000000000000000000000000
Arg [392] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [393] : 516d5146526534774e6a3654664350526f544b386d616f7a7435694273727137
Arg [394] : 4e3275637742737a50726b484347000000000000000000000000000000000000
Arg [395] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [396] : 516d5844754d437155574d3843466f364541716463347167644a346a706d5978
Arg [397] : 6b6b6e3851777033705566527764000000000000000000000000000000000000
Arg [398] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [399] : 516d514852755975457943787252556859394c7a6b7064334b6d3142504b6b37
Arg [400] : 3578556a6a636f34704a74675357000000000000000000000000000000000000
Arg [401] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [402] : 516d5a6e6a387155555747745631456f32796245316d595a7563365170674450
Arg [403] : 6553684e7953596a763474364141000000000000000000000000000000000000
Arg [404] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [405] : 516d52616b6733616e4b3972587862326b4137564b7253726a48434877523270
Arg [406] : 386f544d7973416a37346e547144000000000000000000000000000000000000
Arg [407] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [408] : 516d5143683579396d7a5a337478345361543965347175567576615056473866
Arg [409] : 7876426265586d714b5253483575000000000000000000000000000000000000
Arg [410] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [411] : 516d6373736438524b3764424663327150565661713957414b4137586a4e394e
Arg [412] : 725a615447413331596448326e45000000000000000000000000000000000000


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.