ETH Price: $3,395.67 (-1.18%)
Gas: 2 Gwei

Token

Villagers of XOLO (XOLO)
 

Overview

Max Total Supply

15,056 XOLO

Holders

4,607

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Villagers of XOLO is a generative collection of up to 20,000 Villagers on the Ethereum blockchain and is the first set of the JRNY Club ecosystem.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
XoloNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 9999 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-12
*/

//                                      .....                                     
//                                .:~7JRNYGGP55J7^:.                              
//                             .~J5PPGGP5PPPP55555J?~.....                        
//                           .!YJ5P55PPYYY5555YYYY???~:^~~~!!77777~^.             
//                    .:^~~~?Y??JYJ????????JJYJJ7~^^:::  .      ..^!J5Y!.         
//               :~7?7!^:..?PYJJYJ7777?J?7?77~~~^^:::..   ..         .7GGJ.       
//           .!YY7^.      :?JYJ??77???????7!!~~~~~^^:...   ..         ^GGG:       
//         ~PB?.         .~~!?JYJ?JJ?!~~~~~!^:::.......     .       :?GG5^        
//       .P&&^           .^^^^^~~~~~^::::............       .   .~?PGP?:          
//       :&&&5:          .~:::::^^:.........::.....      .:^7J5PGPJ~.             
//        ^P#&&B57^:.    .:::::::::........::....:^~!?JY5PPP5?!:.                 
//          .~JG#&&&#BBGP5555YYJJJJJ???JJYY5555PPPP5YJ7~^....                     

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

                                                                              

/*
 * @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;
    }
}


/**
 * @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);
    }
}


/**
 * @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);
}



/**
 * @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;
    }
}


/**
 * @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);
    }
}


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/**
 * @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;
}


/**
 * @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);
}


/**
 * @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);
}


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

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

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * The contract is fully ERC621 Enumerable compatible, including cheap on-chain enumeration.
 * The enumeration is optimized by using arrays of uint16 for efficient packing.
 * As limitation, the maximum NFT supply can be max(uint16) tokens.
 *
 * Assumes serials are sequentially minted starting at 1 (e.g. 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721P is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    uint16 private currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    mapping(uint256 => address) private _ownerships;

    // Mapping owner address to tokens
    mapping(address => uint16[]) private _addressTokens;

    // 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;

    constructor(
        string memory name_,
        string memory symbol_
    ) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index > 0 && index <= totalSupply(), "ERC721P: global index out of bounds");
        return index;
    }

    /**
     * @dev not part of standard IERC721Enumerable
     * This function returns all the tokens of a certain owner as an array
     * and is very cheap to use on-chain
     */
    
    function tokensOfOwner(address owner)
    public
    view
    returns (uint16[] memory)
    {
        return _addressTokens[owner];
    }
    

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

    /**
     * @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 ||
        interfaceId == type(IERC721Enumerable).interfaceId ||
        super.supportsInterface(interfaceId);
    }

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

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

        return _ownerships[tokenId];
    }

    /**
     * @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(
            ownerOf(tokenId) != address(0),
            "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 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`)
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _ownerships[tokenId] != address(0);
    }

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), "ERC721P: 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 override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721P: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     * 
     * Doesn't check if the target can receive ERC721's.
     * Requirements:
     *
     * - `to` cannot be the zero address
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity
    ) internal {
        require(to != address(0), "ERC721P: mint to the zero address");

        _beforeTokenTransfers(address(0), to, currentIndex + 1, quantity);

        for (uint256 i = 0; i < quantity; i++) {
            currentIndex++;
            _addressTokens[to].push(currentIndex);
            _ownerships[currentIndex] = to;
            emit Transfer(address(0), to, currentIndex);
        }

        _afterTokenTransfers(address(0), to, currentIndex, quantity);
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, "");
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        require(to != address(0), "ERC721P: mint to the zero address");

        _beforeTokenTransfers(address(0), to, currentIndex + 1, quantity);

        for (uint256 i = 0; i < quantity; i++) {
            currentIndex++;
            _addressTokens[to].push(currentIndex);
            _ownerships[currentIndex] = to;
            emit Transfer(address(0), to, currentIndex);
            require(
                _checkOnERC721Received(address(0), to, currentIndex, _data),
                "ERC721P: transfer to non ERC721Receiver implementer"
            );
        }

        _afterTokenTransfers(address(0), to, currentIndex, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        address prevOwner = ownerOf(tokenId);

        require(
            prevOwner == from,
            "ERC721P: transfer from incorrect owner"
        );

        bool isApprovedOrOwner = (_msgSender() == prevOwner ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwner, _msgSender()));

        require(
            isApprovedOrOwner,
            "ERC721P: transfer caller is not owner nor approved"
        );

        require(to != address(0), "ERC721P: transfer to the zero address");

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Deletes the tokenId from the current owner
        _findAndDelete(from, uint16(tokenId)); 
        // Adds the tokenId to the new owner
        _addressTokens[to].push(uint16(tokenId));
        _ownerships[tokenId] = to;

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Deletes `tokenId` from the `owner` tokens array.
     *
     * Doesn't preserve order of tokens.
     */
    function _findAndDelete(address owner, uint16 tokenId) internal {
        for (uint i=0; i < _addressTokens[owner].length - 1; i++){
            if (_addressTokens[owner][i] == tokenId){
                _addressTokens[owner][i] = _addressTokens[owner][_addressTokens[owner].length - 1];
                _addressTokens[owner].pop();
                return;
            }
        }
        _addressTokens[owner].pop();
    }

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}


interface KeysNFT{
    function redeem(address _to, uint256 _amounts) external;
}

contract XoloNFT is ERC721P, Ownable {

    string private _baseTokenURI;

    string public XOLO_PROVENANCE = "";
    
    uint256 public startingIndexBlock;
    uint256 public startingIndex;
    
    uint256 public maxSupply = 20000;
	uint256 public auctionSupply = 10000;
	
	uint256 public auctionMintCount;
    
    uint256 public saleStart;
    uint256 public claimStart;
    uint256 public revealDate;

    uint256 public decreaseInterval = 300; // in minutes, hits last price after 4h
    uint256 public decreasePerInterval = 40229166666666666;
    uint256 public totalIntervals = 48;
    uint256 public startPrice = 2 ether;
    uint256 public endPrice = 0.069 ether;
    uint256 public maxPurchaseAmt = 10;

    bool public saleIsActive = true;
    bool public claimIsActive = true;

    address public keysAddress;
    address public beneficiaryAddress;

    constructor(
        uint256 _saleStart,
        uint256 _revealDate,
        address _beneficiaryAddress
    ) ERC721P("Villagers of XOLO", "XOLO") {
        saleStart = _saleStart;
        claimStart = saleStart + 86400;
        revealDate = _revealDate;
        beneficiaryAddress = _beneficiaryAddress;
    }
    
    function withdraw() external {
        require(msg.sender == beneficiaryAddress, "Not beneficiary");
        uint balance = address(this).balance;
        payable(beneficiaryAddress).transfer(balance);
    }

    function getCurrentPrice() public view returns(uint256) {
        uint256 passedIntervals = (block.timestamp - saleStart) / decreaseInterval;
        if (passedIntervals >= totalIntervals) {
            return endPrice;
        } else {
            unchecked{
                return startPrice - passedIntervals * decreasePerInterval;
            }
        }
    }
    
    function auctionMint(uint256 _amount) external payable {
        require( block.timestamp > saleStart && saleIsActive, "Auction not active");
        require( msg.sender == tx.origin, "Tm8gcm9ib3Rz");
        require( (auctionMintCount + _amount) <=  auctionSupply, "Minting would exceed max auction supply");
        require( _amount <= maxPurchaseAmt, "Can't mint that many at once");
        
        uint256 currentMintPrice = getCurrentPrice();
        require( (currentMintPrice * _amount) <= msg.value, "ETH value sent is not correct");

        unchecked {
			auctionMintCount += _amount;
        }
		
		_mint(_msgSender(), _amount);
		
		if (startingIndexBlock == 0 && (totalSupply() == maxSupply || block.timestamp > revealDate)) {
            _setStartingIndex();
        } 
    }
    
    function keyMint(uint256 _amount) external {
        require( block.timestamp > claimStart && claimIsActive, "You can't claim yet");

        KeysNFT(keysAddress).redeem(_msgSender(), _amount);
        _mint(_msgSender(), _amount);
		
		if (startingIndexBlock == 0 && (totalSupply() == maxSupply || block.timestamp >= revealDate)) {
            _setStartingIndex();
        } 
    }
	
	function ownerMint(address _to, uint256 _amount) external onlyOwner {
		require( (auctionMintCount + _amount) <=  auctionSupply, "Minting would exceed max auction supply");
		
		unchecked{
			auctionMintCount += _amount;
		}
		
		_mint(_to, _amount);
	}
    
    function _baseURI() internal view override(ERC721P) returns (string memory) {
        return _baseTokenURI;
    }

    function baseURI() public view returns (string memory) {
        return _baseURI();
    }
    
    function _setStartingIndex() internal {
        require(startingIndexBlock == 0, "Starting index is already set");

        startingIndexBlock = block.number - 1;

        startingIndex = uint(blockhash(startingIndexBlock)) % maxSupply;
    }

    function setRevealTimestamp(uint256 _revealTimeStamp) external onlyOwner {
        revealDate = _revealTimeStamp;
    } 

    function setSaleStart(uint256 _saleStartTimestamp) external onlyOwner {
        saleStart = _saleStartTimestamp;
        claimStart = saleStart + 86400;
    }
	
	function setClaimStart(uint256 _claimStartTimestamp) external onlyOwner {
        claimStart = _claimStartTimestamp;
    }
	
	function setDutchDetails(uint256 _decreaseInterval, uint256 _decreasePerInterval, uint256 _totalIntervals, uint256 _startPrice, uint256 _endPrice) external onlyOwner {
		decreaseInterval = _decreaseInterval;
		decreasePerInterval = _decreasePerInterval;
		totalIntervals = _totalIntervals;
		startPrice = _startPrice;
		endPrice = _endPrice;
	}

    function setMaxPurchaseAmt(uint256 _newMaxPurchaseAmt) external onlyOwner {
        maxPurchaseAmt = _newMaxPurchaseAmt;
    }
    
    function setProvenanceHash(string memory provenanceHash) external onlyOwner {
        XOLO_PROVENANCE = provenanceHash;
    }
    
    function setBaseURI(string calldata newBaseTokenURI) external onlyOwner {
        _baseTokenURI = newBaseTokenURI;
    }

    function changeSaleState() external onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function changeClaimState() external onlyOwner {
        claimIsActive = !claimIsActive;
    }

    function setKeysAddress(address _newAddress) external onlyOwner {
        keysAddress = _newAddress;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_saleStart","type":"uint256"},{"internalType":"uint256","name":"_revealDate","type":"uint256"},{"internalType":"address","name":"_beneficiaryAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"XOLO_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"auctionMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"auctionMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"auctionSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beneficiaryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"changeClaimState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"changeSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decreaseInterval","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decreasePerInterval","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"keyMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"keysAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPurchaseAmt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_claimStartTimestamp","type":"uint256"}],"name":"setClaimStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_decreaseInterval","type":"uint256"},{"internalType":"uint256","name":"_decreasePerInterval","type":"uint256"},{"internalType":"uint256","name":"_totalIntervals","type":"uint256"},{"internalType":"uint256","name":"_startPrice","type":"uint256"},{"internalType":"uint256","name":"_endPrice","type":"uint256"}],"name":"setDutchDetails","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"setKeysAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxPurchaseAmt","type":"uint256"}],"name":"setMaxPurchaseAmt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_revealTimeStamp","type":"uint256"}],"name":"setRevealTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saleStartTimestamp","type":"uint256"}],"name":"setSaleStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startingIndexBlock","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":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint16[]","name":"","type":"uint16[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalIntervals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b91600991620001ba565b50614e20600c55612710600d5561012c601255668eec36c4c6d2aa6013556030601455671bc16d674ec8000060155566f5232269808000601655600a6017556018805461ffff19166101011790553480156200007657600080fd5b506040516200351638038062003516833981016040819052620000999162000260565b604080518082018252601181527056696c6c6167657273206f6620584f4c4f60781b602080830191825283518085019094526004845263584f4c4f60e01b908401528151919291620000ee91600191620001ba565b50805162000104906002906020840190620001ba565b505050620001216200011b6200016460201b60201c565b62000168565b600f839055620001358362015180620002a8565b601055601191909155601980546001600160a01b0319166001600160a01b03909216919091179055506200030c565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001c890620002cf565b90600052602060002090601f016020900481019282620001ec576000855562000237565b82601f106200020757805160ff191683800117855562000237565b8280016001018555821562000237579182015b82811115620002375782518255916020019190600101906200021a565b506200024592915062000249565b5090565b5b808211156200024557600081556001016200024a565b6000806000606084860312156200027657600080fd5b83516020850151604086015191945092506001600160a01b03811681146200029d57600080fd5b809150509250925092565b60008219821115620002ca57634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620002e457607f821691505b602082108114156200030657634e487b7160e01b600052602260045260246000fd5b50919050565b6131fa806200031c6000396000f3fe6080604052600436106103605760003560e01c806370a08231116101c6578063c87b56dd116100f7578063e985e9c511610095578063f04d688f1161006f578063f04d688f14610959578063f1a9af891461096f578063f2fde38b14610985578063f5c1fea0146109a557600080fd5b8063e985e9c5146108e1578063eb8d24441461092a578063eb91d37e1461094457600080fd5b8063d5abeb01116100d1578063d5abeb0114610880578063d9c4870e14610896578063dd9c1f23146108b6578063e36d6498146108cb57600080fd5b8063c87b56dd14610834578063cb774d4714610854578063cbfff97f1461086a57600080fd5b8063ab0bcc4111610164578063b868723e1161013e578063b868723e146107d3578063b88d4fde146107e9578063ba060b7d14610809578063c063812c1461081f57600080fd5b8063ab0bcc411461077d578063b0aa1e0414610793578063b4398dd2146107b357600080fd5b80638da5cb5b116101a05780638da5cb5b1461070a57806394f225aa1461072857806395d89b4114610748578063a22cb4651461075d57600080fd5b806370a08231146106a8578063715018a6146106c85780638462151c146106dd57600080fd5b80633a49a18e116102a05780635191e58d1161023e57806355f804b31161021857806355f804b31461063d5780636352211e1461065d57806368002ee21461067d5780636c0360eb1461069357600080fd5b80635191e58d146105f25780635303f68c1461060857806354d782911461062757600080fd5b806342842e0e1161027a57806342842e0e1461057f578063484b973c1461059f5780634d3554c3146105bf5780634f6ccce7146105d257600080fd5b80633a49a18e146105245780633ccfd60b1461054a5780633ece47341461055f57600080fd5b806318160ddd1161030d5780632615bde4116102e75780632615bde4146104af57806326831791146104cf5780632f181f54146104e45780632f745c591461050457600080fd5b806318160ddd146104565780631e08a9e41461047957806323b872dd1461048f57600080fd5b8063081812fc1161033e578063081812fc146103de578063095ea7b314610416578063109695231461043657600080fd5b8063018a2c371461036557806301ffc9a71461038757806306fdde03146103bc575b600080fd5b34801561037157600080fd5b50610385610380366004612dbb565b6109bb565b005b34801561039357600080fd5b506103a76103a2366004612cc6565b610a1f565b60405190151581526020015b60405180910390f35b3480156103c857600080fd5b506103d1610b50565b6040516103b39190612f0c565b3480156103ea57600080fd5b506103fe6103f9366004612dbb565b610be2565b6040516001600160a01b0390911681526020016103b3565b34801561042257600080fd5b50610385610431366004612c9c565b610c88565b34801561044257600080fd5b50610385610451366004612d72565b610db8565b34801561046257600080fd5b5060005461ffff165b6040519081526020016103b3565b34801561048557600080fd5b5061046b60115481565b34801561049b57600080fd5b506103856104aa366004612ba8565b610e29565b3480156104bb57600080fd5b506103856104ca366004612dd4565b610e34565b3480156104db57600080fd5b506103d1610ea5565b3480156104f057600080fd5b506103856104ff366004612dbb565b610f33565b34801561051057600080fd5b5061046b61051f366004612c9c565b610fa5565b34801561053057600080fd5b506018546103fe906201000090046001600160a01b031681565b34801561055657600080fd5b50610385611077565b34801561056b57600080fd5b5061038561057a366004612b5a565b61110b565b34801561058b57600080fd5b5061038561059a366004612ba8565b6111a5565b3480156105ab57600080fd5b506103856105ba366004612c9c565b6111c0565b6103856105cd366004612dbb565b6112b1565b3480156105de57600080fd5b5061046b6105ed366004612dbb565b6114dc565b3480156105fe57600080fd5b5061046b60135481565b34801561061457600080fd5b506018546103a790610100900460ff1681565b34801561063357600080fd5b5061046b60125481565b34801561064957600080fd5b50610385610658366004612d00565b611569565b34801561066957600080fd5b506103fe610678366004612dbb565b6115cf565b34801561068957600080fd5b5061046b60145481565b34801561069f57600080fd5b506103d1611677565b3480156106b457600080fd5b5061046b6106c3366004612b5a565b611686565b3480156106d457600080fd5b50610385611720565b3480156106e957600080fd5b506106fd6106f8366004612b5a565b611786565b6040516103b39190612ec4565b34801561071657600080fd5b506007546001600160a01b03166103fe565b34801561073457600080fd5b50610385610743366004612dbb565b61181a565b34801561075457600080fd5b506103d1611879565b34801561076957600080fd5b50610385610778366004612c60565b611888565b34801561078957600080fd5b5061046b600f5481565b34801561079f57600080fd5b506103856107ae366004612dbb565b61196b565b3480156107bf57600080fd5b506103856107ce366004612dbb565b6119ca565b3480156107df57600080fd5b5061046b60165481565b3480156107f557600080fd5b50610385610804366004612be4565b611b01565b34801561081557600080fd5b5061046b600d5481565b34801561082b57600080fd5b50610385611b90565b34801561084057600080fd5b506103d161084f366004612dbb565b611c24565b34801561086057600080fd5b5061046b600b5481565b34801561087657600080fd5b5061046b600e5481565b34801561088c57600080fd5b5061046b600c5481565b3480156108a257600080fd5b506019546103fe906001600160a01b031681565b3480156108c257600080fd5b50610385611d0a565b3480156108d757600080fd5b5061046b600a5481565b3480156108ed57600080fd5b506103a76108fc366004612b75565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561093657600080fd5b506018546103a79060ff1681565b34801561095057600080fd5b5061046b611d96565b34801561096557600080fd5b5061046b60105481565b34801561097b57600080fd5b5061046b60155481565b34801561099157600080fd5b506103856109a0366004612b5a565b611dd6565b3480156109b157600080fd5b5061046b60175481565b6007546001600160a01b03163314610a1a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b601155565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480610ab257507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610afe57507fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000145b80610b4a57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b606060018054610b5f90612fe8565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8b90612fe8565b8015610bd85780601f10610bad57610100808354040283529160200191610bd8565b820191906000526020600020905b815481529060010190602001808311610bbb57829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b0316610c6c5760405162461bcd60e51b815260206004820152602d60248201527f455243373231503a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e000000000000000000000000000000000000006064820152608401610a11565b506000908152600560205260409020546001600160a01b031690565b6000818152600360205260409020546001600160a01b03908116908316811415610d1a5760405162461bcd60e51b815260206004820152602260248201527f455243373231503a20617070726f76616c20746f2063757272656e74206f776e60448201527f65720000000000000000000000000000000000000000000000000000000000006064820152608401610a11565b336001600160a01b0382161480610d365750610d3681336108fc565b610da85760405162461bcd60e51b815260206004820152603960248201527f455243373231503a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610a11565b610db3838383611eb5565b505050565b6007546001600160a01b03163314610e125760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a11565b8051610e25906009906020840190612983565b5050565b610db3838383611f29565b6007546001600160a01b03163314610e8e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a11565b601294909455601392909255601455601555601655565b60098054610eb290612fe8565b80601f0160208091040260200160405190810160405280929190818152602001828054610ede90612fe8565b8015610f2b5780601f10610f0057610100808354040283529160200191610f2b565b820191906000526020600020905b815481529060010190602001808311610f0e57829003601f168201915b505050505081565b6007546001600160a01b03163314610f8d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a11565b600f819055610f9f8162015180612f3c565b60105550565b6000610fb083611686565b82106110245760405162461bcd60e51b815260206004820152602260248201527f455243373231503a206f776e657220696e646578206f7574206f6620626f756e60448201527f64730000000000000000000000000000000000000000000000000000000000006064820152608401610a11565b6001600160a01b038316600090815260046020526040902080548390811061104e5761104e613138565b60009182526020909120601082040154600f9091166002026101000a900461ffff169392505050565b6019546001600160a01b031633146110d15760405162461bcd60e51b815260206004820152600f60248201527f4e6f742062656e656669636961727900000000000000000000000000000000006044820152606401610a11565b60195460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050158015610e25573d6000803e3d6000fd5b6007546001600160a01b031633146111655760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a11565b601880546001600160a01b0390921662010000027fffffffffffffffffffff0000000000000000000000000000000000000000ffff909216919091179055565b610db383838360405180602001604052806000815250611b01565b6007546001600160a01b0316331461121a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a11565b600d5481600e5461122b9190612f3c565b111561129f5760405162461bcd60e51b815260206004820152602760248201527f4d696e74696e6720776f756c6420657863656564206d61782061756374696f6e60448201527f20737570706c79000000000000000000000000000000000000000000000000006064820152608401610a11565b600e805482019055610e2582826121b1565b600f54421180156112c4575060185460ff165b6113105760405162461bcd60e51b815260206004820152601260248201527f41756374696f6e206e6f742061637469766500000000000000000000000000006044820152606401610a11565b33321461135f5760405162461bcd60e51b815260206004820152600c60248201527f546d3867636d39696233527a00000000000000000000000000000000000000006044820152606401610a11565b600d5481600e546113709190612f3c565b11156113e45760405162461bcd60e51b815260206004820152602760248201527f4d696e74696e6720776f756c6420657863656564206d61782061756374696f6e60448201527f20737570706c79000000000000000000000000000000000000000000000000006064820152608401610a11565b6017548111156114365760405162461bcd60e51b815260206004820152601c60248201527f43616e2774206d696e742074686174206d616e79206174206f6e6365000000006044820152606401610a11565b6000611440611d96565b90503461144d8383612f68565b111561149b5760405162461bcd60e51b815260206004820152601d60248201527f4554482076616c75652073656e74206973206e6f7420636f72726563740000006044820152606401610a11565b600e8054830190556114ad33836121b1565b600a541580156114cf5750600c5460005461ffff1614806114cf575060115442115b15610e2557610e25612348565b600080821180156114f3575060005461ffff168211155b6115655760405162461bcd60e51b815260206004820152602360248201527f455243373231503a20676c6f62616c20696e646578206f7574206f6620626f7560448201527f6e647300000000000000000000000000000000000000000000000000000000006064820152608401610a11565b5090565b6007546001600160a01b031633146115c35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a11565b610db360088383612a03565b6000818152600360205260408120546001600160a01b03168061165a5760405162461bcd60e51b815260206004820152602a60248201527f455243373231503a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e000000000000000000000000000000000000000000006064820152608401610a11565b50506000908152600360205260409020546001600160a01b031690565b60606116816123ba565b905090565b60006001600160a01b0382166117045760405162461bcd60e51b815260206004820152602b60248201527f455243373231503a2062616c616e636520717565727920666f7220746865207a60448201527f65726f20616464726573730000000000000000000000000000000000000000006064820152608401610a11565b506001600160a01b031660009081526004602052604090205490565b6007546001600160a01b0316331461177a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a11565b61178460006123c9565b565b6001600160a01b03811660009081526004602090815260409182902080548351818402810184019094528084526060939283018282801561180e57602002820191906000526020600020906000905b82829054906101000a900461ffff1661ffff16815260200190600201906020826001010492830192600103820291508084116117d55790505b50505050509050919050565b6007546001600160a01b031633146118745760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a11565b601755565b606060028054610b5f90612fe8565b6001600160a01b0382163314156118e15760405162461bcd60e51b815260206004820152601a60248201527f455243373231503a20617070726f766520746f2063616c6c65720000000000006044820152606401610a11565b3360008181526006602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146119c55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a11565b601055565b601054421180156119e25750601854610100900460ff165b611a2e5760405162461bcd60e51b815260206004820152601360248201527f596f752063616e277420636c61696d20796574000000000000000000000000006044820152606401610a11565b6018546201000090046001600160a01b0316631e9a6950336040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b1681526001600160a01b03909116600482015260248101849052604401600060405180830381600087803b158015611aa657600080fd5b505af1158015611aba573d6000803e3d6000fd5b50505050611ace611ac83390565b826121b1565b600a54158015611af15750600c5460005461ffff161480611af157506011544210155b15611afe57611afe612348565b50565b611b0c848484611f29565b611b1884848484612433565b611b8a5760405162461bcd60e51b815260206004820152603360248201527f455243373231503a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610a11565b50505050565b6007546001600160a01b03163314611bea5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a11565b601880547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff81166101009182900460ff1615909102179055565b60606000611c31836115cf565b6001600160a01b03161415611cae5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610a11565b6000611cb86123ba565b90506000815111611cd85760405180602001604052806000815250611d03565b80611ce2846125ff565b604051602001611cf3929190612e59565b6040516020818303038152906040525b9392505050565b6007546001600160a01b03163314611d645760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a11565b601880547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00811660ff90911615179055565b600080601254600f5442611daa9190612fa5565b611db49190612f54565b90506014548110611dc757505060165490565b60135481026015540391505090565b6007546001600160a01b03163314611e305760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a11565b6001600160a01b038116611eac5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a11565b611afe816123c9565b60008281526005602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611f34826115cf565b9050836001600160a01b0316816001600160a01b031614611fbd5760405162461bcd60e51b815260206004820152602660248201527f455243373231503a207472616e736665722066726f6d20696e636f727265637460448201527f206f776e657200000000000000000000000000000000000000000000000000006064820152608401610a11565b6000336001600160a01b0383161480611fe6575033611fdb84610be2565b6001600160a01b0316145b80611ff65750611ff682336108fc565b90508061206b5760405162461bcd60e51b815260206004820152603260248201527f455243373231503a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610a11565b6001600160a01b0384166120e75760405162461bcd60e51b815260206004820152602560248201527f455243373231503a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610a11565b6120f360008484611eb5565b6120fd8584612731565b6001600160a01b038481166000818152600460209081526040808320805460018101825590845282842060108204018054600f9092166002026101000a61ffff81810219909316928b1602919091179055878352600390915280822080547fffffffffffffffffffffffff000000000000000000000000000000000000000016841790555186938916917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a45050505050565b6001600160a01b03821661222d5760405162461bcd60e51b815260206004820152602160248201527f455243373231503a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610a11565b6000805461224791908490610db39061ffff166001612f1f565b60005b81811015610db3576000805461ffff1690806122658361303c565b825461010092830a61ffff8181021990921692821602919091179092556001600160a01b03861660008181526004602090815260408083208354815460018101835591855283852060108304018054600f90931660020290970a80890219909216908816909102179094558154851682526003905282812080547fffffffffffffffffffffffff000000000000000000000000000000000000000016831790558054925192909316935091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4806123408161305e565b91505061224a565b600a54156123985760405162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c7265616479207365740000006044820152606401610a11565b6123a3600143612fa5565b600a819055600c546123b59140613097565b600b55565b606060088054610b5f90612fe8565b600780546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b156125f3576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290612490903390899088908890600401612e88565b602060405180830381600087803b1580156124aa57600080fd5b505af19250505080156124f8575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526124f591810190612ce3565b60015b6125a8573d808015612526576040519150601f19603f3d011682016040523d82523d6000602084013e61252b565b606091505b5080516125a05760405162461bcd60e51b815260206004820152603360248201527f455243373231503a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610a11565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490506125f7565b5060015b949350505050565b60608161263f57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561266957806126538161305e565b91506126629050600a83612f54565b9150612643565b60008167ffffffffffffffff81111561268457612684613167565b6040519080825280601f01601f1916602001820160405280156126ae576020820181803683370190505b5090505b84156125f7576126c3600183612fa5565b91506126d0600a86613097565b6126db906030612f3c565b60f81b8183815181106126f0576126f0613138565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061272a600a86612f54565b94506126b2565b60005b6001600160a01b03831660009081526004602052604090205461275990600190612fa5565b81101561290d576001600160a01b0383166000908152600460205260409020805461ffff841691908390811061279157612791613138565b60009182526020909120601082040154600f9091166002026101000a900461ffff1614156128fb576001600160a01b038316600090815260046020526040902080546127df90600190612fa5565b815481106127ef576127ef613138565b90600052602060002090601091828204019190066002029054906101000a900461ffff1660046000856001600160a01b03166001600160a01b03168152602001908152602001600020828154811061284957612849613138565b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff16021790555060046000846001600160a01b03166001600160a01b031681526020019081526020016000208054806128ac576128ac613109565b60008281526020902060107fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90920191820401805461ffff6002600f8516026101000a02191690559055505050565b806129058161305e565b915050612734565b506001600160a01b038216600090815260046020526040902080548061293557612935613109565b60008281526020902060107fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90920191820401805461ffff6002600f8516026101000a021916905590555050565b82805461298f90612fe8565b90600052602060002090601f0160209004810192826129b157600085556129f7565b82601f106129ca57805160ff19168380011785556129f7565b828001600101855582156129f7579182015b828111156129f75782518255916020019190600101906129dc565b50611565929150612a95565b828054612a0f90612fe8565b90600052602060002090601f016020900481019282612a3157600085556129f7565b82601f10612a68578280017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008235161785556129f7565b828001600101855582156129f7579182015b828111156129f7578235825591602001919060010190612a7a565b5b808211156115655760008155600101612a96565b600067ffffffffffffffff80841115612ac557612ac5613167565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715612b0b57612b0b613167565b81604052809350858152868686011115612b2457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612b5557600080fd5b919050565b600060208284031215612b6c57600080fd5b611d0382612b3e565b60008060408385031215612b8857600080fd5b612b9183612b3e565b9150612b9f60208401612b3e565b90509250929050565b600080600060608486031215612bbd57600080fd5b612bc684612b3e565b9250612bd460208501612b3e565b9150604084013590509250925092565b60008060008060808587031215612bfa57600080fd5b612c0385612b3e565b9350612c1160208601612b3e565b925060408501359150606085013567ffffffffffffffff811115612c3457600080fd5b8501601f81018713612c4557600080fd5b612c5487823560208401612aaa565b91505092959194509250565b60008060408385031215612c7357600080fd5b612c7c83612b3e565b915060208301358015158114612c9157600080fd5b809150509250929050565b60008060408385031215612caf57600080fd5b612cb883612b3e565b946020939093013593505050565b600060208284031215612cd857600080fd5b8135611d0381613196565b600060208284031215612cf557600080fd5b8151611d0381613196565b60008060208385031215612d1357600080fd5b823567ffffffffffffffff80821115612d2b57600080fd5b818501915085601f830112612d3f57600080fd5b813581811115612d4e57600080fd5b866020828501011115612d6057600080fd5b60209290920196919550909350505050565b600060208284031215612d8457600080fd5b813567ffffffffffffffff811115612d9b57600080fd5b8201601f81018413612dac57600080fd5b6125f784823560208401612aaa565b600060208284031215612dcd57600080fd5b5035919050565b600080600080600060a08688031215612dec57600080fd5b505083359560208501359550604085013594606081013594506080013592509050565b60008151808452612e27816020860160208601612fbc565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60008351612e6b818460208801612fbc565b835190830190612e7f818360208801612fbc565b01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612eba6080830184612e0f565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612f0057835161ffff1683529284019291840191600101612ee0565b50909695505050505050565b602081526000611d036020830184612e0f565b600061ffff808316818516808303821115612e7f57612e7f6130ab565b60008219821115612f4f57612f4f6130ab565b500190565b600082612f6357612f636130da565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612fa057612fa06130ab565b500290565b600082821015612fb757612fb76130ab565b500390565b60005b83811015612fd7578181015183820152602001612fbf565b83811115611b8a5750506000910152565b600181811c90821680612ffc57607f821691505b60208210811415613036577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b600061ffff80831681811415613054576130546130ab565b6001019392505050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613090576130906130ab565b5060010190565b6000826130a6576130a66130da565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081168114611afe57600080fdfea26469706673582212206d725ec23340e31d903514c3fff964c6f6b985b8e8750db9537320c65465c18964736f6c6343000807003300000000000000000000000000000000000000000000000000000000622cedaf00000000000000000000000000000000000000000000000000000000623f62b00000000000000000000000001a263f200c1fe51b1ab5f0bc5d4144f69b957fc7

Deployed Bytecode

0x6080604052600436106103605760003560e01c806370a08231116101c6578063c87b56dd116100f7578063e985e9c511610095578063f04d688f1161006f578063f04d688f14610959578063f1a9af891461096f578063f2fde38b14610985578063f5c1fea0146109a557600080fd5b8063e985e9c5146108e1578063eb8d24441461092a578063eb91d37e1461094457600080fd5b8063d5abeb01116100d1578063d5abeb0114610880578063d9c4870e14610896578063dd9c1f23146108b6578063e36d6498146108cb57600080fd5b8063c87b56dd14610834578063cb774d4714610854578063cbfff97f1461086a57600080fd5b8063ab0bcc4111610164578063b868723e1161013e578063b868723e146107d3578063b88d4fde146107e9578063ba060b7d14610809578063c063812c1461081f57600080fd5b8063ab0bcc411461077d578063b0aa1e0414610793578063b4398dd2146107b357600080fd5b80638da5cb5b116101a05780638da5cb5b1461070a57806394f225aa1461072857806395d89b4114610748578063a22cb4651461075d57600080fd5b806370a08231146106a8578063715018a6146106c85780638462151c146106dd57600080fd5b80633a49a18e116102a05780635191e58d1161023e57806355f804b31161021857806355f804b31461063d5780636352211e1461065d57806368002ee21461067d5780636c0360eb1461069357600080fd5b80635191e58d146105f25780635303f68c1461060857806354d782911461062757600080fd5b806342842e0e1161027a57806342842e0e1461057f578063484b973c1461059f5780634d3554c3146105bf5780634f6ccce7146105d257600080fd5b80633a49a18e146105245780633ccfd60b1461054a5780633ece47341461055f57600080fd5b806318160ddd1161030d5780632615bde4116102e75780632615bde4146104af57806326831791146104cf5780632f181f54146104e45780632f745c591461050457600080fd5b806318160ddd146104565780631e08a9e41461047957806323b872dd1461048f57600080fd5b8063081812fc1161033e578063081812fc146103de578063095ea7b314610416578063109695231461043657600080fd5b8063018a2c371461036557806301ffc9a71461038757806306fdde03146103bc575b600080fd5b34801561037157600080fd5b50610385610380366004612dbb565b6109bb565b005b34801561039357600080fd5b506103a76103a2366004612cc6565b610a1f565b60405190151581526020015b60405180910390f35b3480156103c857600080fd5b506103d1610b50565b6040516103b39190612f0c565b3480156103ea57600080fd5b506103fe6103f9366004612dbb565b610be2565b6040516001600160a01b0390911681526020016103b3565b34801561042257600080fd5b50610385610431366004612c9c565b610c88565b34801561044257600080fd5b50610385610451366004612d72565b610db8565b34801561046257600080fd5b5060005461ffff165b6040519081526020016103b3565b34801561048557600080fd5b5061046b60115481565b34801561049b57600080fd5b506103856104aa366004612ba8565b610e29565b3480156104bb57600080fd5b506103856104ca366004612dd4565b610e34565b3480156104db57600080fd5b506103d1610ea5565b3480156104f057600080fd5b506103856104ff366004612dbb565b610f33565b34801561051057600080fd5b5061046b61051f366004612c9c565b610fa5565b34801561053057600080fd5b506018546103fe906201000090046001600160a01b031681565b34801561055657600080fd5b50610385611077565b34801561056b57600080fd5b5061038561057a366004612b5a565b61110b565b34801561058b57600080fd5b5061038561059a366004612ba8565b6111a5565b3480156105ab57600080fd5b506103856105ba366004612c9c565b6111c0565b6103856105cd366004612dbb565b6112b1565b3480156105de57600080fd5b5061046b6105ed366004612dbb565b6114dc565b3480156105fe57600080fd5b5061046b60135481565b34801561061457600080fd5b506018546103a790610100900460ff1681565b34801561063357600080fd5b5061046b60125481565b34801561064957600080fd5b50610385610658366004612d00565b611569565b34801561066957600080fd5b506103fe610678366004612dbb565b6115cf565b34801561068957600080fd5b5061046b60145481565b34801561069f57600080fd5b506103d1611677565b3480156106b457600080fd5b5061046b6106c3366004612b5a565b611686565b3480156106d457600080fd5b50610385611720565b3480156106e957600080fd5b506106fd6106f8366004612b5a565b611786565b6040516103b39190612ec4565b34801561071657600080fd5b506007546001600160a01b03166103fe565b34801561073457600080fd5b50610385610743366004612dbb565b61181a565b34801561075457600080fd5b506103d1611879565b34801561076957600080fd5b50610385610778366004612c60565b611888565b34801561078957600080fd5b5061046b600f5481565b34801561079f57600080fd5b506103856107ae366004612dbb565b61196b565b3480156107bf57600080fd5b506103856107ce366004612dbb565b6119ca565b3480156107df57600080fd5b5061046b60165481565b3480156107f557600080fd5b50610385610804366004612be4565b611b01565b34801561081557600080fd5b5061046b600d5481565b34801561082b57600080fd5b50610385611b90565b34801561084057600080fd5b506103d161084f366004612dbb565b611c24565b34801561086057600080fd5b5061046b600b5481565b34801561087657600080fd5b5061046b600e5481565b34801561088c57600080fd5b5061046b600c5481565b3480156108a257600080fd5b506019546103fe906001600160a01b031681565b3480156108c257600080fd5b50610385611d0a565b3480156108d757600080fd5b5061046b600a5481565b3480156108ed57600080fd5b506103a76108fc366004612b75565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561093657600080fd5b506018546103a79060ff1681565b34801561095057600080fd5b5061046b611d96565b34801561096557600080fd5b5061046b60105481565b34801561097b57600080fd5b5061046b60155481565b34801561099157600080fd5b506103856109a0366004612b5a565b611dd6565b3480156109b157600080fd5b5061046b60175481565b6007546001600160a01b03163314610a1a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b601155565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480610ab257507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610afe57507fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000145b80610b4a57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b606060018054610b5f90612fe8565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8b90612fe8565b8015610bd85780601f10610bad57610100808354040283529160200191610bd8565b820191906000526020600020905b815481529060010190602001808311610bbb57829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b0316610c6c5760405162461bcd60e51b815260206004820152602d60248201527f455243373231503a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e000000000000000000000000000000000000006064820152608401610a11565b506000908152600560205260409020546001600160a01b031690565b6000818152600360205260409020546001600160a01b03908116908316811415610d1a5760405162461bcd60e51b815260206004820152602260248201527f455243373231503a20617070726f76616c20746f2063757272656e74206f776e60448201527f65720000000000000000000000000000000000000000000000000000000000006064820152608401610a11565b336001600160a01b0382161480610d365750610d3681336108fc565b610da85760405162461bcd60e51b815260206004820152603960248201527f455243373231503a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610a11565b610db3838383611eb5565b505050565b6007546001600160a01b03163314610e125760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a11565b8051610e25906009906020840190612983565b5050565b610db3838383611f29565b6007546001600160a01b03163314610e8e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a11565b601294909455601392909255601455601555601655565b60098054610eb290612fe8565b80601f0160208091040260200160405190810160405280929190818152602001828054610ede90612fe8565b8015610f2b5780601f10610f0057610100808354040283529160200191610f2b565b820191906000526020600020905b815481529060010190602001808311610f0e57829003601f168201915b505050505081565b6007546001600160a01b03163314610f8d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a11565b600f819055610f9f8162015180612f3c565b60105550565b6000610fb083611686565b82106110245760405162461bcd60e51b815260206004820152602260248201527f455243373231503a206f776e657220696e646578206f7574206f6620626f756e60448201527f64730000000000000000000000000000000000000000000000000000000000006064820152608401610a11565b6001600160a01b038316600090815260046020526040902080548390811061104e5761104e613138565b60009182526020909120601082040154600f9091166002026101000a900461ffff169392505050565b6019546001600160a01b031633146110d15760405162461bcd60e51b815260206004820152600f60248201527f4e6f742062656e656669636961727900000000000000000000000000000000006044820152606401610a11565b60195460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050158015610e25573d6000803e3d6000fd5b6007546001600160a01b031633146111655760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a11565b601880546001600160a01b0390921662010000027fffffffffffffffffffff0000000000000000000000000000000000000000ffff909216919091179055565b610db383838360405180602001604052806000815250611b01565b6007546001600160a01b0316331461121a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a11565b600d5481600e5461122b9190612f3c565b111561129f5760405162461bcd60e51b815260206004820152602760248201527f4d696e74696e6720776f756c6420657863656564206d61782061756374696f6e60448201527f20737570706c79000000000000000000000000000000000000000000000000006064820152608401610a11565b600e805482019055610e2582826121b1565b600f54421180156112c4575060185460ff165b6113105760405162461bcd60e51b815260206004820152601260248201527f41756374696f6e206e6f742061637469766500000000000000000000000000006044820152606401610a11565b33321461135f5760405162461bcd60e51b815260206004820152600c60248201527f546d3867636d39696233527a00000000000000000000000000000000000000006044820152606401610a11565b600d5481600e546113709190612f3c565b11156113e45760405162461bcd60e51b815260206004820152602760248201527f4d696e74696e6720776f756c6420657863656564206d61782061756374696f6e60448201527f20737570706c79000000000000000000000000000000000000000000000000006064820152608401610a11565b6017548111156114365760405162461bcd60e51b815260206004820152601c60248201527f43616e2774206d696e742074686174206d616e79206174206f6e6365000000006044820152606401610a11565b6000611440611d96565b90503461144d8383612f68565b111561149b5760405162461bcd60e51b815260206004820152601d60248201527f4554482076616c75652073656e74206973206e6f7420636f72726563740000006044820152606401610a11565b600e8054830190556114ad33836121b1565b600a541580156114cf5750600c5460005461ffff1614806114cf575060115442115b15610e2557610e25612348565b600080821180156114f3575060005461ffff168211155b6115655760405162461bcd60e51b815260206004820152602360248201527f455243373231503a20676c6f62616c20696e646578206f7574206f6620626f7560448201527f6e647300000000000000000000000000000000000000000000000000000000006064820152608401610a11565b5090565b6007546001600160a01b031633146115c35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a11565b610db360088383612a03565b6000818152600360205260408120546001600160a01b03168061165a5760405162461bcd60e51b815260206004820152602a60248201527f455243373231503a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e000000000000000000000000000000000000000000006064820152608401610a11565b50506000908152600360205260409020546001600160a01b031690565b60606116816123ba565b905090565b60006001600160a01b0382166117045760405162461bcd60e51b815260206004820152602b60248201527f455243373231503a2062616c616e636520717565727920666f7220746865207a60448201527f65726f20616464726573730000000000000000000000000000000000000000006064820152608401610a11565b506001600160a01b031660009081526004602052604090205490565b6007546001600160a01b0316331461177a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a11565b61178460006123c9565b565b6001600160a01b03811660009081526004602090815260409182902080548351818402810184019094528084526060939283018282801561180e57602002820191906000526020600020906000905b82829054906101000a900461ffff1661ffff16815260200190600201906020826001010492830192600103820291508084116117d55790505b50505050509050919050565b6007546001600160a01b031633146118745760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a11565b601755565b606060028054610b5f90612fe8565b6001600160a01b0382163314156118e15760405162461bcd60e51b815260206004820152601a60248201527f455243373231503a20617070726f766520746f2063616c6c65720000000000006044820152606401610a11565b3360008181526006602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146119c55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a11565b601055565b601054421180156119e25750601854610100900460ff165b611a2e5760405162461bcd60e51b815260206004820152601360248201527f596f752063616e277420636c61696d20796574000000000000000000000000006044820152606401610a11565b6018546201000090046001600160a01b0316631e9a6950336040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b1681526001600160a01b03909116600482015260248101849052604401600060405180830381600087803b158015611aa657600080fd5b505af1158015611aba573d6000803e3d6000fd5b50505050611ace611ac83390565b826121b1565b600a54158015611af15750600c5460005461ffff161480611af157506011544210155b15611afe57611afe612348565b50565b611b0c848484611f29565b611b1884848484612433565b611b8a5760405162461bcd60e51b815260206004820152603360248201527f455243373231503a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610a11565b50505050565b6007546001600160a01b03163314611bea5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a11565b601880547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff81166101009182900460ff1615909102179055565b60606000611c31836115cf565b6001600160a01b03161415611cae5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610a11565b6000611cb86123ba565b90506000815111611cd85760405180602001604052806000815250611d03565b80611ce2846125ff565b604051602001611cf3929190612e59565b6040516020818303038152906040525b9392505050565b6007546001600160a01b03163314611d645760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a11565b601880547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00811660ff90911615179055565b600080601254600f5442611daa9190612fa5565b611db49190612f54565b90506014548110611dc757505060165490565b60135481026015540391505090565b6007546001600160a01b03163314611e305760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a11565b6001600160a01b038116611eac5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a11565b611afe816123c9565b60008281526005602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611f34826115cf565b9050836001600160a01b0316816001600160a01b031614611fbd5760405162461bcd60e51b815260206004820152602660248201527f455243373231503a207472616e736665722066726f6d20696e636f727265637460448201527f206f776e657200000000000000000000000000000000000000000000000000006064820152608401610a11565b6000336001600160a01b0383161480611fe6575033611fdb84610be2565b6001600160a01b0316145b80611ff65750611ff682336108fc565b90508061206b5760405162461bcd60e51b815260206004820152603260248201527f455243373231503a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610a11565b6001600160a01b0384166120e75760405162461bcd60e51b815260206004820152602560248201527f455243373231503a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610a11565b6120f360008484611eb5565b6120fd8584612731565b6001600160a01b038481166000818152600460209081526040808320805460018101825590845282842060108204018054600f9092166002026101000a61ffff81810219909316928b1602919091179055878352600390915280822080547fffffffffffffffffffffffff000000000000000000000000000000000000000016841790555186938916917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a45050505050565b6001600160a01b03821661222d5760405162461bcd60e51b815260206004820152602160248201527f455243373231503a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610a11565b6000805461224791908490610db39061ffff166001612f1f565b60005b81811015610db3576000805461ffff1690806122658361303c565b825461010092830a61ffff8181021990921692821602919091179092556001600160a01b03861660008181526004602090815260408083208354815460018101835591855283852060108304018054600f90931660020290970a80890219909216908816909102179094558154851682526003905282812080547fffffffffffffffffffffffff000000000000000000000000000000000000000016831790558054925192909316935091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4806123408161305e565b91505061224a565b600a54156123985760405162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c7265616479207365740000006044820152606401610a11565b6123a3600143612fa5565b600a819055600c546123b59140613097565b600b55565b606060088054610b5f90612fe8565b600780546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b156125f3576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290612490903390899088908890600401612e88565b602060405180830381600087803b1580156124aa57600080fd5b505af19250505080156124f8575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526124f591810190612ce3565b60015b6125a8573d808015612526576040519150601f19603f3d011682016040523d82523d6000602084013e61252b565b606091505b5080516125a05760405162461bcd60e51b815260206004820152603360248201527f455243373231503a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610a11565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490506125f7565b5060015b949350505050565b60608161263f57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561266957806126538161305e565b91506126629050600a83612f54565b9150612643565b60008167ffffffffffffffff81111561268457612684613167565b6040519080825280601f01601f1916602001820160405280156126ae576020820181803683370190505b5090505b84156125f7576126c3600183612fa5565b91506126d0600a86613097565b6126db906030612f3c565b60f81b8183815181106126f0576126f0613138565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061272a600a86612f54565b94506126b2565b60005b6001600160a01b03831660009081526004602052604090205461275990600190612fa5565b81101561290d576001600160a01b0383166000908152600460205260409020805461ffff841691908390811061279157612791613138565b60009182526020909120601082040154600f9091166002026101000a900461ffff1614156128fb576001600160a01b038316600090815260046020526040902080546127df90600190612fa5565b815481106127ef576127ef613138565b90600052602060002090601091828204019190066002029054906101000a900461ffff1660046000856001600160a01b03166001600160a01b03168152602001908152602001600020828154811061284957612849613138565b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff16021790555060046000846001600160a01b03166001600160a01b031681526020019081526020016000208054806128ac576128ac613109565b60008281526020902060107fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90920191820401805461ffff6002600f8516026101000a02191690559055505050565b806129058161305e565b915050612734565b506001600160a01b038216600090815260046020526040902080548061293557612935613109565b60008281526020902060107fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90920191820401805461ffff6002600f8516026101000a021916905590555050565b82805461298f90612fe8565b90600052602060002090601f0160209004810192826129b157600085556129f7565b82601f106129ca57805160ff19168380011785556129f7565b828001600101855582156129f7579182015b828111156129f75782518255916020019190600101906129dc565b50611565929150612a95565b828054612a0f90612fe8565b90600052602060002090601f016020900481019282612a3157600085556129f7565b82601f10612a68578280017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008235161785556129f7565b828001600101855582156129f7579182015b828111156129f7578235825591602001919060010190612a7a565b5b808211156115655760008155600101612a96565b600067ffffffffffffffff80841115612ac557612ac5613167565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715612b0b57612b0b613167565b81604052809350858152868686011115612b2457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612b5557600080fd5b919050565b600060208284031215612b6c57600080fd5b611d0382612b3e565b60008060408385031215612b8857600080fd5b612b9183612b3e565b9150612b9f60208401612b3e565b90509250929050565b600080600060608486031215612bbd57600080fd5b612bc684612b3e565b9250612bd460208501612b3e565b9150604084013590509250925092565b60008060008060808587031215612bfa57600080fd5b612c0385612b3e565b9350612c1160208601612b3e565b925060408501359150606085013567ffffffffffffffff811115612c3457600080fd5b8501601f81018713612c4557600080fd5b612c5487823560208401612aaa565b91505092959194509250565b60008060408385031215612c7357600080fd5b612c7c83612b3e565b915060208301358015158114612c9157600080fd5b809150509250929050565b60008060408385031215612caf57600080fd5b612cb883612b3e565b946020939093013593505050565b600060208284031215612cd857600080fd5b8135611d0381613196565b600060208284031215612cf557600080fd5b8151611d0381613196565b60008060208385031215612d1357600080fd5b823567ffffffffffffffff80821115612d2b57600080fd5b818501915085601f830112612d3f57600080fd5b813581811115612d4e57600080fd5b866020828501011115612d6057600080fd5b60209290920196919550909350505050565b600060208284031215612d8457600080fd5b813567ffffffffffffffff811115612d9b57600080fd5b8201601f81018413612dac57600080fd5b6125f784823560208401612aaa565b600060208284031215612dcd57600080fd5b5035919050565b600080600080600060a08688031215612dec57600080fd5b505083359560208501359550604085013594606081013594506080013592509050565b60008151808452612e27816020860160208601612fbc565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60008351612e6b818460208801612fbc565b835190830190612e7f818360208801612fbc565b01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612eba6080830184612e0f565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612f0057835161ffff1683529284019291840191600101612ee0565b50909695505050505050565b602081526000611d036020830184612e0f565b600061ffff808316818516808303821115612e7f57612e7f6130ab565b60008219821115612f4f57612f4f6130ab565b500190565b600082612f6357612f636130da565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612fa057612fa06130ab565b500290565b600082821015612fb757612fb76130ab565b500390565b60005b83811015612fd7578181015183820152602001612fbf565b83811115611b8a5750506000910152565b600181811c90821680612ffc57607f821691505b60208210811415613036577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b600061ffff80831681811415613054576130546130ab565b6001019392505050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613090576130906130ab565b5060010190565b6000826130a6576130a66130da565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081168114611afe57600080fdfea26469706673582212206d725ec23340e31d903514c3fff964c6f6b985b8e8750db9537320c65465c18964736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000622cedaf00000000000000000000000000000000000000000000000000000000623f62b00000000000000000000000001a263f200c1fe51b1ab5f0bc5d4144f69b957fc7

-----Decoded View---------------
Arg [0] : _saleStart (uint256): 1647111599
Arg [1] : _revealDate (uint256): 1648321200
Arg [2] : _beneficiaryAddress (address): 0x1A263F200C1fe51b1Ab5F0bc5D4144F69B957fC7

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000622cedaf
Arg [1] : 00000000000000000000000000000000000000000000000000000000623f62b0
Arg [2] : 0000000000000000000000001a263f200c1fe51b1ab5f0bc5d4144f69b957fc7


Deployed Bytecode Sourcemap

37047:5322:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40857:121;;;;;;;;;;-1:-1:-1;40857:121:0;;;;;:::i;:::-;;:::i;:::-;;25271:386;;;;;;;;;;-1:-1:-1;25271:386:0;;;;;:::i;:::-;;:::i;:::-;;;7839:14:1;;7832:22;7814:41;;7802:2;7787:18;25271:386:0;;;;;;;;26316:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28366:214::-;;;;;;;;;;-1:-1:-1;28366:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6141:55:1;;;6123:74;;6111:2;6096:18;28366:214:0;5977:226:1;27891:409:0;;;;;;;;;;-1:-1:-1;27891:409:0;;;;;:::i;:::-;;:::i;41782:127::-;;;;;;;;;;-1:-1:-1;41782:127:0;;;;;:::i;:::-;;:::i;24127:100::-;;;;;;;;;;-1:-1:-1;24180:7:0;24207:12;;;24127:100;;;17563:25:1;;;17551:2;17536:18;24127:100:0;17417:177:1;37444:25:0;;;;;;;;;;;;;;;;29272:162;;;;;;;;;;-1:-1:-1;29272:162:0;;;;;:::i;:::-;;:::i;41284:350::-;;;;;;;;;;-1:-1:-1;41284:350:0;;;;;:::i;:::-;;:::i;37130:34::-;;;;;;;;;;;;;:::i;40987:161::-;;;;;;;;;;-1:-1:-1;40987:161:0;;;;;:::i;:::-;;:::i;24940:259::-;;;;;;;;;;-1:-1:-1;24940:259:0;;;;;:::i;:::-;;:::i;37872:26::-;;;;;;;;;;-1:-1:-1;37872:26:0;;;;;;;-1:-1:-1;;;;;37872:26:0;;;38280:211;;;;;;;;;;;;;:::i;42256:108::-;;;;;;;;;;-1:-1:-1;42256:108:0;;;;;:::i;:::-;;:::i;29505:177::-;;;;;;;;;;-1:-1:-1;29505:177:0;;;;;:::i;:::-;;:::i;40102:261::-;;;;;;;;;;-1:-1:-1;40102:261:0;;;;;:::i;:::-;;:::i;38884:809::-;;;;;;:::i;:::-;;:::i;24304:201::-;;;;;;;;;;-1:-1:-1;24304:201:0;;;;;:::i;:::-;;:::i;37562:54::-;;;;;;;;;;;;;;;;37831:32;;;;;;;;;;-1:-1:-1;37831:32:0;;;;;;;;;;;37478:37;;;;;;;;;;;;;;;;41921:122;;;;;;;;;;-1:-1:-1;41921:122:0;;;;;:::i;:::-;;:::i;25996:253::-;;;;;;;;;;-1:-1:-1;25996:253:0;;;;;:::i;:::-;;:::i;37623:34::-;;;;;;;;;;;;;;;;40498:91;;;;;;;;;;;;;:::i;25721:213::-;;;;;;;;;;-1:-1:-1;25721:213:0;;;;;:::i;:::-;;:::i;3468:94::-;;;;;;;;;;;;;:::i;24707:143::-;;;;;;;;;;-1:-1:-1;24707:143:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;2817:87::-;;;;;;;;;;-1:-1:-1;2890:6:0;;-1:-1:-1;;;;;2890:6:0;2817:87;;41642:128;;;;;;;;;;-1:-1:-1;41642:128:0;;;;;:::i;:::-;;:::i;26485:104::-;;;;;;;;;;;;;:::i;28652:288::-;;;;;;;;;;-1:-1:-1;28652:288:0;;;;;:::i;:::-;;:::i;37381:24::-;;;;;;;;;;;;;;;;41154:124;;;;;;;;;;-1:-1:-1;41154:124:0;;;;;:::i;:::-;;:::i;39705:391::-;;;;;;;;;;-1:-1:-1;39705:391:0;;;;;:::i;:::-;;:::i;37706:37::-;;;;;;;;;;;;;;;;29753:355;;;;;;;;;;-1:-1:-1;29753:355:0;;;;;:::i;:::-;;:::i;37294:36::-;;;;;;;;;;;;;;;;42152:96;;;;;;;;;;;;;:::i;26660:442::-;;;;;;;;;;-1:-1:-1;26660:442:0;;;;;:::i;:::-;;:::i;37217:28::-;;;;;;;;;;;;;;;;37337:31;;;;;;;;;;;;;;;;37258:32;;;;;;;;;;;;;;;;37905:33;;;;;;;;;;-1:-1:-1;37905:33:0;;;;-1:-1:-1;;;;;37905:33:0;;;42051:93;;;;;;;;;;;;;:::i;37177:33::-;;;;;;;;;;;;;;;;29011:194;;;;;;;;;;-1:-1:-1;29011:194:0;;;;;:::i;:::-;-1:-1:-1;;;;;29162:25:0;;;29133:4;29162:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29011:194;37793:31;;;;;;;;;;-1:-1:-1;37793:31:0;;;;;;;;38499:373;;;;;;;;;;;;;:::i;37412:25::-;;;;;;;;;;;;;;;;37664:35;;;;;;;;;;;;;;;;3717:192;;;;;;;;;;-1:-1:-1;3717:192:0;;;;;:::i;:::-;;:::i;37750:34::-;;;;;;;;;;;;;;;;40857:121;2890:6;;-1:-1:-1;;;;;2890:6:0;1771:10;3037:23;3029:68;;;;-1:-1:-1;;;3029:68:0;;14604:2:1;3029:68:0;;;14586:21:1;;;14623:18;;;14616:30;14682:34;14662:18;;;14655:62;14734:18;;3029:68:0;;;;;;;;;40941:10:::1;:29:::0;40857:121::o;25271:386::-;25398:4;25436:40;;;25451:25;25436:40;;:101;;-1:-1:-1;25489:48:0;;;25504:33;25489:48;25436:101;:164;;;-1:-1:-1;25550:50:0;;;25565:35;25550:50;25436:164;:213;;;-1:-1:-1;5675:25:0;5660:40;;;;25613:36;25420:229;25271:386;-1:-1:-1;;25271:386:0:o;26316:100::-;26370:13;26403:5;26396:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26316:100;:::o;28366:214::-;28434:7;27787:20;;;:11;:20;;;;;;-1:-1:-1;;;;;27787:20:0;28454:74;;;;-1:-1:-1;;;28454:74:0;;10635:2:1;28454:74:0;;;10617:21:1;10674:2;10654:18;;;10647:30;10713:34;10693:18;;;10686:62;10784:15;10764:18;;;10757:43;10817:19;;28454:74:0;10433:409:1;28454:74:0;-1:-1:-1;28548:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28548:24:0;;28366:214::o;27891:409::-;27964:13;27980:20;;;:11;:20;;;;;;-1:-1:-1;;;;;27980:20:0;;;;28019:11;;;;;28011:58;;;;-1:-1:-1;;;28011:58:0;;12206:2:1;28011:58:0;;;12188:21:1;12245:2;12225:18;;;12218:30;12284:34;12264:18;;;12257:62;12355:4;12335:18;;;12328:32;12377:19;;28011:58:0;12004:398:1;28011:58:0;1771:10;-1:-1:-1;;;;;28104:21:0;;;;:62;;-1:-1:-1;28129:37:0;28146:5;1771:10;29011:194;:::i;28129:37::-;28082:169;;;;-1:-1:-1;;;28082:169:0;;17193:2:1;28082:169:0;;;17175:21:1;17232:2;17212:18;;;17205:30;17271:34;17251:18;;;17244:62;17342:27;17322:18;;;17315:55;17387:19;;28082:169:0;16991:421:1;28082:169:0;28264:28;28273:2;28277:7;28286:5;28264:8;:28::i;:::-;27953:347;27891:409;;:::o;41782:127::-;2890:6;;-1:-1:-1;;;;;2890:6:0;1771:10;3037:23;3029:68;;;;-1:-1:-1;;;3029:68:0;;14604:2:1;3029:68:0;;;14586:21:1;;;14623:18;;;14616:30;14682:34;14662:18;;;14655:62;14734:18;;3029:68:0;14402:356:1;3029:68:0;41869:32;;::::1;::::0;:15:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;:::-;;41782:127:::0;:::o;29272:162::-;29398:28;29408:4;29414:2;29418:7;29398:9;:28::i;41284:350::-;2890:6;;-1:-1:-1;;;;;2890:6:0;1771:10;3037:23;3029:68;;;;-1:-1:-1;;;3029:68:0;;14604:2:1;3029:68:0;;;14586:21:1;;;14623:18;;;14616:30;14682:34;14662:18;;;14655:62;14734:18;;3029:68:0;14402:356:1;3029:68:0;41455:16:::1;:36:::0;;;;41496:19:::1;:42:::0;;;;41543:14:::1;:32:::0;41580:10:::1;:24:::0;41609:8:::1;:20:::0;41284:350::o;37130:34::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40987:161::-;2890:6;;-1:-1:-1;;;;;2890:6:0;1771:10;3037:23;3029:68;;;;-1:-1:-1;;;3029:68:0;;14604:2:1;3029:68:0;;;14586:21:1;;;14623:18;;;14616:30;14682:34;14662:18;;;14655:62;14734:18;;3029:68:0;14402:356:1;3029:68:0;41068:9:::1;:31:::0;;;41123:17:::1;41080:19:::0;41135:5:::1;41123:17;:::i;:::-;41110:10;:30:::0;-1:-1:-1;40987:161:0:o;24940:259::-;25049:7;25090:16;25100:5;25090:9;:16::i;:::-;25082:5;:24;25074:71;;;;-1:-1:-1;;;25074:71:0;;13386:2:1;25074:71:0;;;13368:21:1;13425:2;13405:18;;;13398:30;13464:34;13444:18;;;13437:62;13535:4;13515:18;;;13508:32;13557:19;;25074:71:0;13184:398:1;25074:71:0;-1:-1:-1;;;;;25163:21:0;;;;;;:14;:21;;;;;:28;;25185:5;;25163:28;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;24940:259;-1:-1:-1;;;24940:259:0:o;38280:211::-;38342:18;;-1:-1:-1;;;;;38342:18:0;38328:10;:32;38320:60;;;;-1:-1:-1;;;38320:60:0;;14965:2:1;38320:60:0;;;14947:21:1;15004:2;14984:18;;;14977:30;15043:17;15023:18;;;15016:45;15078:18;;38320:60:0;14763:339:1;38320:60:0;38446:18;;38438:45;;38406:21;;-1:-1:-1;;;;;38446:18:0;;38438:45;;;;;38406:21;;38391:12;38438:45;38391:12;38438:45;38406:21;38446:18;38438:45;;;;;;;;;;;;;;;;;;;42256:108;2890:6;;-1:-1:-1;;;;;2890:6:0;1771:10;3037:23;3029:68;;;;-1:-1:-1;;;3029:68:0;;14604:2:1;3029:68:0;;;14586:21:1;;;14623:18;;;14616:30;14682:34;14662:18;;;14655:62;14734:18;;3029:68:0;14402:356:1;3029:68:0;42331:11:::1;:25:::0;;-1:-1:-1;;;;;42331:25:0;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;42256:108::o;29505:177::-;29635:39;29652:4;29658:2;29662:7;29635:39;;;;;;;;;;;;:16;:39::i;40102:261::-;2890:6;;-1:-1:-1;;;;;2890:6:0;1771:10;3037:23;3029:68;;;;-1:-1:-1;;;3029:68:0;;14604:2:1;3029:68:0;;;14586:21:1;;;14623:18;;;14616:30;14682:34;14662:18;;;14655:62;14734:18;;3029:68:0;14402:356:1;3029:68:0;40217:13:::1;;40204:7;40185:16;;:26;;;;:::i;:::-;40184:46;;40175:99;;;::::0;-1:-1:-1;;;40175:99:0;;14196:2:1;40175:99:0::1;::::0;::::1;14178:21:1::0;14235:2;14215:18;;;14208:30;14274:34;14254:18;;;14247:62;14345:9;14325:18;;;14318:37;14372:19;;40175:99:0::1;13994:403:1::0;40175:99:0::1;40298:16;:27:::0;;;::::1;::::0;;40339:19:::1;40345:3:::0;40318:7;40339:5:::1;:19::i;38884:809::-:0;38977:9;;38959:15;:27;:43;;;;-1:-1:-1;38990:12:0;;;;38959:43;38950:75;;;;-1:-1:-1;;;38950:75:0;;11049:2:1;38950:75:0;;;11031:21:1;11088:2;11068:18;;;11061:30;11127:20;11107:18;;;11100:48;11165:18;;38950:75:0;10847:342:1;38950:75:0;39045:10;39059:9;39045:23;39036:49;;;;-1:-1:-1;;;39036:49:0;;16494:2:1;39036:49:0;;;16476:21:1;16533:2;16513:18;;;16506:30;16572:14;16552:18;;;16545:42;16604:18;;39036:49:0;16292:336:1;39036:49:0;39138:13;;39125:7;39106:16;;:26;;;;:::i;:::-;39105:46;;39096:99;;;;-1:-1:-1;;;39096:99:0;;14196:2:1;39096:99:0;;;14178:21:1;14235:2;14215:18;;;14208:30;14274:34;14254:18;;;14247:62;14345:9;14325:18;;;14318:37;14372:19;;39096:99:0;13994:403:1;39096:99:0;39226:14;;39215:7;:25;;39206:67;;;;-1:-1:-1;;;39206:67:0;;15725:2:1;39206:67:0;;;15707:21:1;15764:2;15744:18;;;15737:30;15803;15783:18;;;15776:58;15851:18;;39206:67:0;15523:352:1;39206:67:0;39294:24;39321:17;:15;:17::i;:::-;39294:44;-1:-1:-1;39390:9:0;39359:26;39378:7;39294:44;39359:26;:::i;:::-;39358:41;;39349:84;;;;-1:-1:-1;;;39349:84:0;;16835:2:1;39349:84:0;;;16817:21:1;16874:2;16854:18;;;16847:30;16913:31;16893:18;;;16886:59;16962:18;;39349:84:0;16633:353:1;39349:84:0;39462:16;:27;;;;;;39509:28;1771:10;39529:7;39509:5;:28::i;:::-;39550:18;;:23;:87;;;;-1:-1:-1;39595:9:0;;24180:7;24207:12;;;39578:26;:58;;;;39626:10;;39608:15;:28;39578:58;39546:139;;;39654:19;:17;:19::i;24304:201::-;24371:7;24407:1;24399:5;:9;:35;;;;-1:-1:-1;24180:7:0;24207:12;;;24412:5;:22;;24399:35;24391:83;;;;-1:-1:-1;;;24391:83:0;;11802:2:1;24391:83:0;;;11784:21:1;11841:2;11821:18;;;11814:30;11880:34;11860:18;;;11853:62;11951:5;11931:18;;;11924:33;11974:19;;24391:83:0;11600:399:1;24391:83:0;-1:-1:-1;24492:5:0;24304:201::o;41921:122::-;2890:6;;-1:-1:-1;;;;;2890:6:0;1771:10;3037:23;3029:68;;;;-1:-1:-1;;;3029:68:0;;14604:2:1;3029:68:0;;;14586:21:1;;;14623:18;;;14616:30;14682:34;14662:18;;;14655:62;14734:18;;3029:68:0;14402:356:1;3029:68:0;42004:31:::1;:13;42020:15:::0;;42004:31:::1;:::i;25996:253::-:0;26060:7;26096:20;;;:11;:20;;;;;;-1:-1:-1;;;;;26096:20:0;26135:19;26127:74;;;;-1:-1:-1;;;26127:74:0;;8712:2:1;26127:74:0;;;8694:21:1;8751:2;8731:18;;;8724:30;8790:34;8770:18;;;8763:62;8861:12;8841:18;;;8834:40;8891:19;;26127:74:0;8510:406:1;26127:74:0;-1:-1:-1;;26221:20:0;;;;:11;:20;;;;;;-1:-1:-1;;;;;26221:20:0;;25996:253::o;40498:91::-;40538:13;40571:10;:8;:10::i;:::-;40564:17;;40498:91;:::o;25721:213::-;25785:7;-1:-1:-1;;;;;25813:19:0;;25805:75;;;;-1:-1:-1;;;25805:75:0;;16082:2:1;25805:75:0;;;16064:21:1;16121:2;16101:18;;;16094:30;16160:34;16140:18;;;16133:62;16231:13;16211:18;;;16204:41;16262:19;;25805:75:0;15880:407:1;25805:75:0;-1:-1:-1;;;;;;25898:21:0;;;;;:14;:21;;;;;:28;;25721:213::o;3468:94::-;2890:6;;-1:-1:-1;;;;;2890:6:0;1771:10;3037:23;3029:68;;;;-1:-1:-1;;;3029:68:0;;14604:2:1;3029:68:0;;;14586:21:1;;;14623:18;;;14616:30;14682:34;14662:18;;;14655:62;14734:18;;3029:68:0;14402:356:1;3029:68:0;3533:21:::1;3551:1;3533:9;:21::i;:::-;3468:94::o:0;24707:143::-;-1:-1:-1;;;;;24821:21:0;;;;;;:14;:21;;;;;;;;;24814:28;;;;;;;;;;;;;;;;;24781:15;;24814:28;;;24821:21;24814:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24707:143;;;:::o;41642:128::-;2890:6;;-1:-1:-1;;;;;2890:6:0;1771:10;3037:23;3029:68;;;;-1:-1:-1;;;3029:68:0;;14604:2:1;3029:68:0;;;14586:21:1;;;14623:18;;;14616:30;14682:34;14662:18;;;14655:62;14734:18;;3029:68:0;14402:356:1;3029:68:0;41727:14:::1;:35:::0;41642:128::o;26485:104::-;26541:13;26574:7;26567:14;;;;;:::i;28652:288::-;-1:-1:-1;;;;;28747:24:0;;1771:10;28747:24;;28739:63;;;;-1:-1:-1;;;28739:63:0;;9123:2:1;28739:63:0;;;9105:21:1;9162:2;9142:18;;;9135:30;9201:28;9181:18;;;9174:56;9247:18;;28739:63:0;8921:350:1;28739:63:0;1771:10;28815:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;28815:42:0;;;;;;;;;;;;:53;;;;;;;;;;;;;28884:48;;7814:41:1;;;28815:42:0;;1771:10;28884:48;;7787:18:1;28884:48:0;;;;;;;28652:288;;:::o;41154:124::-;2890:6;;-1:-1:-1;;;;;2890:6:0;1771:10;3037:23;3029:68;;;;-1:-1:-1;;;3029:68:0;;14604:2:1;3029:68:0;;;14586:21:1;;;14623:18;;;14616:30;14682:34;14662:18;;;14655:62;14734:18;;3029:68:0;14402:356:1;3029:68:0;41237:10:::1;:33:::0;41154:124::o;39705:391::-;39786:10;;39768:15;:28;:45;;;;-1:-1:-1;39800:13:0;;;;;;;39768:45;39759:78;;;;-1:-1:-1;;;39759:78:0;;10287:2:1;39759:78:0;;;10269:21:1;10326:2;10306:18;;;10299:30;10365:21;10345:18;;;10338:49;10404:18;;39759:78:0;10085:343:1;39759:78:0;39858:11;;;;;-1:-1:-1;;;;;39858:11:0;39850:27;1771:10;39850:50;;;;;;;;;;-1:-1:-1;;;;;6916:55:1;;;39850:50:0;;;6898:74:1;6988:18;;;6981:34;;;6871:18;;39850:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39911:28;39917:12;1771:10;;1691:98;39917:12;39931:7;39911:5;:28::i;:::-;39952:18;;:23;:88;;;;-1:-1:-1;39997:9:0;;24180:7;24207:12;;;39980:26;:59;;;;40029:10;;40010:15;:29;;39980:59;39948:140;;;40057:19;:17;:19::i;:::-;39705:391;:::o;29753:355::-;29912:28;29922:4;29928:2;29932:7;29912:9;:28::i;:::-;29973:48;29996:4;30002:2;30006:7;30015:5;29973:22;:48::i;:::-;29951:149;;;;-1:-1:-1;;;29951:149:0;;8292:2:1;29951:149:0;;;8274:21:1;8331:2;8311:18;;;8304:30;8370:34;8350:18;;;8343:62;8441:21;8421:18;;;8414:49;8480:19;;29951:149:0;8090:415:1;29951:149:0;29753:355;;;;:::o;42152:96::-;2890:6;;-1:-1:-1;;;;;2890:6:0;1771:10;3037:23;3029:68;;;;-1:-1:-1;;;3029:68:0;;14604:2:1;3029:68:0;;;14586:21:1;;;14623:18;;;14616:30;14682:34;14662:18;;;14655:62;14734:18;;3029:68:0;14402:356:1;3029:68:0;42227:13:::1;::::0;;42210:30;;::::1;42227:13;::::0;;;::::1;;;42226:14;42210:30:::0;;::::1;;::::0;;42152:96::o;26660:442::-;26758:13;26839:1;26811:16;26819:7;26811;:16::i;:::-;-1:-1:-1;;;;;26811:30:0;;;26789:127;;;;-1:-1:-1;;;26789:127:0;;15309:2:1;26789:127:0;;;15291:21:1;15348:2;15328:18;;;15321:30;15387:34;15367:18;;;15360:62;15458:17;15438:18;;;15431:45;15493:19;;26789:127:0;15107:411:1;26789:127:0;26929:21;26953:10;:8;:10::i;:::-;26929:34;;27014:1;26996:7;26990:21;:25;:104;;;;;;;;;;;;;;;;;27051:7;27060:18;:7;:16;:18::i;:::-;27034:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26990:104;26974:120;26660:442;-1:-1:-1;;;26660:442:0:o;42051:93::-;2890:6;;-1:-1:-1;;;;;2890:6:0;1771:10;3037:23;3029:68;;;;-1:-1:-1;;;3029:68:0;;14604:2:1;3029:68:0;;;14586:21:1;;;14623:18;;;14616:30;14682:34;14662:18;;;14655:62;14734:18;;3029:68:0;14402:356:1;3029:68:0;42124:12:::1;::::0;;42108:28;;::::1;42124:12;::::0;;::::1;42123:13;42108:28;::::0;;42051:93::o;38499:373::-;38546:7;38566:23;38624:16;;38611:9;;38593:15;:27;;;;:::i;:::-;38592:48;;;;:::i;:::-;38566:74;;38674:14;;38655:15;:33;38651:214;;-1:-1:-1;;38712:8:0;;;38499:373::o;38651:214::-;38819:19;;38801:15;:37;38788:10;;:50;38781:57;;;38499:373;:::o;3717:192::-;2890:6;;-1:-1:-1;;;;;2890:6:0;1771:10;3037:23;3029:68;;;;-1:-1:-1;;;3029:68:0;;14604:2:1;3029:68:0;;;14586:21:1;;;14623:18;;;14616:30;14682:34;14662:18;;;14655:62;14734:18;;3029:68:0;14402:356:1;3029:68:0;-1:-1:-1;;;;;3806:22:0;::::1;3798:73;;;::::0;-1:-1:-1;;;3798:73:0;;9880:2:1;3798:73:0::1;::::0;::::1;9862:21:1::0;9919:2;9899:18;;;9892:30;9958:34;9938:18;;;9931:62;10029:8;10009:18;;;10002:36;10055:19;;3798:73:0::1;9678:402:1::0;3798:73:0::1;3882:19;3892:8;3882:9;:19::i;34143:196::-:0;34258:24;;;;:15;:24;;;;;;:29;;;;-1:-1:-1;;;;;34258:29:0;;;;;;;;;34303:28;;34258:24;;34303:28;;;;;;;34143:196;;;:::o;32296:1160::-;32411:17;32431:16;32439:7;32431;:16::i;:::-;32411:36;;32495:4;-1:-1:-1;;;;;32482:17:0;:9;-1:-1:-1;;;;;32482:17:0;;32460:105;;;;-1:-1:-1;;;32460:105:0;;13789:2:1;32460:105:0;;;13771:21:1;13828:2;13808:18;;;13801:30;13867:34;13847:18;;;13840:62;13938:8;13918:18;;;13911:36;13964:19;;32460:105:0;13587:402:1;32460:105:0;32578:22;1771:10;-1:-1:-1;;;;;32604:25:0;;;;:78;;-1:-1:-1;1771:10:0;32646:20;32658:7;32646:11;:20::i;:::-;-1:-1:-1;;;;;32646:36:0;;32604:78;:136;;;-1:-1:-1;32699:41:0;32716:9;1771:10;29011:194;:::i;32699:41::-;32578:163;;32776:17;32754:117;;;;-1:-1:-1;;;32754:117:0;;12609:2:1;32754:117:0;;;12591:21:1;12648:2;12628:18;;;12621:30;12687:34;12667:18;;;12660:62;12758:20;12738:18;;;12731:48;12796:19;;32754:117:0;12407:414:1;32754:117:0;-1:-1:-1;;;;;32892:16:0;;32884:66;;;;-1:-1:-1;;;32884:66:0;;11396:2:1;32884:66:0;;;11378:21:1;11435:2;11415:18;;;11408:30;11474:34;11454:18;;;11447:62;11545:7;11525:18;;;11518:35;11570:19;;32884:66:0;11194:401:1;32884:66:0;33071:40;33088:1;33092:7;33101:9;33071:8;:40::i;:::-;33179:37;33194:4;33207:7;33179:14;:37::i;:::-;-1:-1:-1;;;;;33274:18:0;;;;;;;:14;:18;;;;;;;;:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33325:20;;;:11;:20;;;;;;:25;;;;;;;;33368:27;33274:40;;33368:27;;;;;;32400:1056;;32296:1160;;;:::o;30380:558::-;-1:-1:-1;;;;;30478:16:0;;30470:62;;;;-1:-1:-1;;;30470:62:0;;9478:2:1;30470:62:0;;;9460:21:1;9517:2;9497:18;;;9490:30;9556:34;9536:18;;;9529:62;9627:3;9607:18;;;9600:31;9648:19;;30470:62:0;9276:397:1;30470:62:0;30575:1;30583:12;;30545:65;;30575:1;30579:2;;30583:16;;:12;;;:16;:::i;30545:65::-;30628:9;30623:235;30647:8;30643:1;:12;30623:235;;;30677:12;:14;;;;;:12;:14;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30706:18:0;;-1:-1:-1;30706:18:0;;;:14;:18;;;;;;;;30730:12;;30706:37;;-1:-1:-1;30706:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30730:12;;;30706:37;;;;;;;30770:12;;;;30758:25;;:11;:25;;;;;:30;;;;;;;;30833:12;;30808:38;;30833:12;;;;;-1:-1:-1;30706:18:0;-1:-1:-1;30808:38:0;;-1:-1:-1;;30808:38:0;30657:3;;;;:::i;:::-;;;;30623:235;;40601:248;40658:18;;:23;40650:65;;;;-1:-1:-1;;;40650:65:0;;13028:2:1;40650:65:0;;;13010:21:1;13067:2;13047:18;;;13040:30;13106:31;13086:18;;;13079:59;13155:18;;40650:65:0;12826:353:1;40650:65:0;40749:16;40764:1;40749:12;:16;:::i;:::-;40728:18;:37;;;40832:9;;40794:47;;40799:29;40794:47;:::i;:::-;40778:13;:63;40601:248::o;40375:115::-;40436:13;40469;40462:20;;;;;:::i;3917:173::-;3992:6;;;-1:-1:-1;;;;;4009:17:0;;;;;;;;;;;4042:40;;3992:6;;;4009:17;3992:6;;4042:40;;3973:16;;4042:40;3962:128;3917:173;:::o;34904:830::-;35059:4;-1:-1:-1;;;;;35080:13:0;;8708:20;8756:8;35076:651;;35129:72;;;;;-1:-1:-1;;;;;35129:36:0;;;;;:72;;1771:10;;35180:4;;35186:7;;35195:5;;35129:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35129:72:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35112:560;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35388:13:0;;35384:273;;35431:61;;-1:-1:-1;;;35431:61:0;;8292:2:1;35431:61:0;;;8274:21:1;8331:2;8311:18;;;8304:30;8370:34;8350:18;;;8343:62;8441:21;8421:18;;;8414:49;8480:19;;35431:61:0;8090:415:1;35384:273:0;35607:6;35601:13;35592:6;35588:2;35584:15;35577:38;35112:560;35265:55;;35275:45;35265:55;;-1:-1:-1;35258:62:0;;35076:651;-1:-1:-1;35711:4:0;35076:651;34904:830;;;;;;:::o;5943:723::-;5999:13;6220:10;6216:53;;-1:-1:-1;;6247:10:0;;;;;;;;;;;;;;;;;;5943:723::o;6216:53::-;6294:5;6279:12;6335:78;6342:9;;6335:78;;6368:8;;;;:::i;:::-;;-1:-1:-1;6391:10:0;;-1:-1:-1;6399:2:0;6391:10;;:::i;:::-;;;6335:78;;;6423:19;6455:6;6445:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6445:17:0;;6423:39;;6473:154;6480:10;;6473:154;;6507:11;6517:1;6507:11;;:::i;:::-;;-1:-1:-1;6576:10:0;6584:2;6576:5;:10;:::i;:::-;6563:24;;:2;:24;:::i;:::-;6550:39;;6533:6;6540;6533:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;6604:11:0;6613:2;6604:11;;:::i;:::-;;;6473:154;;33594:431;33674:6;33669:311;-1:-1:-1;;;;;33688:21:0;;;;;;:14;:21;;;;;:28;:32;;33719:1;;33688:32;:::i;:::-;33684:1;:36;33669:311;;;-1:-1:-1;;;;;33745:21:0;;;;;;:14;:21;;;;;:24;;:35;;;;:21;33767:1;;33745:24;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;:35;33741:228;;;-1:-1:-1;;;;;33827:21:0;;;;;;:14;:21;;;;;33849:28;;:32;;33880:1;;33849:32;:::i;:::-;33827:55;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;33800:14;:21;33815:5;-1:-1:-1;;;;;33800:21:0;-1:-1:-1;;;;;33800:21:0;;;;;;;;;;;;33822:1;33800:24;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:82;;;;;;;;;;;;;;;;;;33901:14;:21;33916:5;-1:-1:-1;;;;;33901:21:0;-1:-1:-1;;;;;33901:21:0;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;33594:431:0:o;33741:228::-;33722:3;;;;:::i;:::-;;;;33669:311;;;-1:-1:-1;;;;;;33990:21:0;;;;;;:14;:21;;;;;:27;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;33594:431:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:690:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;289:2;283:9;355:2;343:15;;194:66;339:24;;;365:2;335:33;331:42;319:55;;;389:18;;;409:22;;;386:46;383:72;;;435:18;;:::i;:::-;475:10;471:2;464:22;504:6;495:15;;534:6;526;519:22;574:3;565:6;560:3;556:16;553:25;550:45;;;591:1;588;581:12;550:45;641:6;636:3;629:4;621:6;617:17;604:44;696:1;689:4;680:6;672;668:19;664:30;657:41;;;;14:690;;;;;:::o;709:196::-;777:20;;-1:-1:-1;;;;;826:54:1;;816:65;;806:93;;895:1;892;885:12;806:93;709:196;;;:::o;910:186::-;969:6;1022:2;1010:9;1001:7;997:23;993:32;990:52;;;1038:1;1035;1028:12;990:52;1061:29;1080:9;1061:29;:::i;1101:260::-;1169:6;1177;1230:2;1218:9;1209:7;1205:23;1201:32;1198:52;;;1246:1;1243;1236:12;1198:52;1269:29;1288:9;1269:29;:::i;:::-;1259:39;;1317:38;1351:2;1340:9;1336:18;1317:38;:::i;:::-;1307:48;;1101:260;;;;;:::o;1366:328::-;1443:6;1451;1459;1512:2;1500:9;1491:7;1487:23;1483:32;1480:52;;;1528:1;1525;1518:12;1480:52;1551:29;1570:9;1551:29;:::i;:::-;1541:39;;1599:38;1633:2;1622:9;1618:18;1599:38;:::i;:::-;1589:48;;1684:2;1673:9;1669:18;1656:32;1646:42;;1366:328;;;;;:::o;1699:666::-;1794:6;1802;1810;1818;1871:3;1859:9;1850:7;1846:23;1842:33;1839:53;;;1888:1;1885;1878:12;1839:53;1911:29;1930:9;1911:29;:::i;:::-;1901:39;;1959:38;1993:2;1982:9;1978:18;1959:38;:::i;:::-;1949:48;;2044:2;2033:9;2029:18;2016:32;2006:42;;2099:2;2088:9;2084:18;2071:32;2126:18;2118:6;2115:30;2112:50;;;2158:1;2155;2148:12;2112:50;2181:22;;2234:4;2226:13;;2222:27;-1:-1:-1;2212:55:1;;2263:1;2260;2253:12;2212:55;2286:73;2351:7;2346:2;2333:16;2328:2;2324;2320:11;2286:73;:::i;:::-;2276:83;;;1699:666;;;;;;;:::o;2370:347::-;2435:6;2443;2496:2;2484:9;2475:7;2471:23;2467:32;2464:52;;;2512:1;2509;2502:12;2464:52;2535:29;2554:9;2535:29;:::i;:::-;2525:39;;2614:2;2603:9;2599:18;2586:32;2661:5;2654:13;2647:21;2640:5;2637:32;2627:60;;2683:1;2680;2673:12;2627:60;2706:5;2696:15;;;2370:347;;;;;:::o;2722:254::-;2790:6;2798;2851:2;2839:9;2830:7;2826:23;2822:32;2819:52;;;2867:1;2864;2857:12;2819:52;2890:29;2909:9;2890:29;:::i;:::-;2880:39;2966:2;2951:18;;;;2938:32;;-1:-1:-1;;;2722:254:1:o;2981:245::-;3039:6;3092:2;3080:9;3071:7;3067:23;3063:32;3060:52;;;3108:1;3105;3098:12;3060:52;3147:9;3134:23;3166:30;3190:5;3166:30;:::i;3231:249::-;3300:6;3353:2;3341:9;3332:7;3328:23;3324:32;3321:52;;;3369:1;3366;3359:12;3321:52;3401:9;3395:16;3420:30;3444:5;3420:30;:::i;3485:592::-;3556:6;3564;3617:2;3605:9;3596:7;3592:23;3588:32;3585:52;;;3633:1;3630;3623:12;3585:52;3673:9;3660:23;3702:18;3743:2;3735:6;3732:14;3729:34;;;3759:1;3756;3749:12;3729:34;3797:6;3786:9;3782:22;3772:32;;3842:7;3835:4;3831:2;3827:13;3823:27;3813:55;;3864:1;3861;3854:12;3813:55;3904:2;3891:16;3930:2;3922:6;3919:14;3916:34;;;3946:1;3943;3936:12;3916:34;3991:7;3986:2;3977:6;3973:2;3969:15;3965:24;3962:37;3959:57;;;4012:1;4009;4002:12;3959:57;4043:2;4035:11;;;;;4065:6;;-1:-1:-1;3485:592:1;;-1:-1:-1;;;;3485:592:1:o;4082:450::-;4151:6;4204:2;4192:9;4183:7;4179:23;4175:32;4172:52;;;4220:1;4217;4210:12;4172:52;4260:9;4247:23;4293:18;4285:6;4282:30;4279:50;;;4325:1;4322;4315:12;4279:50;4348:22;;4401:4;4393:13;;4389:27;-1:-1:-1;4379:55:1;;4430:1;4427;4420:12;4379:55;4453:73;4518:7;4513:2;4500:16;4495:2;4491;4487:11;4453:73;:::i;4537:180::-;4596:6;4649:2;4637:9;4628:7;4624:23;4620:32;4617:52;;;4665:1;4662;4655:12;4617:52;-1:-1:-1;4688:23:1;;4537:180;-1:-1:-1;4537:180:1:o;4722:454::-;4817:6;4825;4833;4841;4849;4902:3;4890:9;4881:7;4877:23;4873:33;4870:53;;;4919:1;4916;4909:12;4870:53;-1:-1:-1;;4942:23:1;;;5012:2;4997:18;;4984:32;;-1:-1:-1;5063:2:1;5048:18;;5035:32;;5114:2;5099:18;;5086:32;;-1:-1:-1;5165:3:1;5150:19;5137:33;;-1:-1:-1;4722:454:1;-1:-1:-1;4722:454:1:o;5181:316::-;5222:3;5260:5;5254:12;5287:6;5282:3;5275:19;5303:63;5359:6;5352:4;5347:3;5343:14;5336:4;5329:5;5325:16;5303:63;:::i;:::-;5411:2;5399:15;5416:66;5395:88;5386:98;;;;5486:4;5382:109;;5181:316;-1:-1:-1;;5181:316:1:o;5502:470::-;5681:3;5719:6;5713:13;5735:53;5781:6;5776:3;5769:4;5761:6;5757:17;5735:53;:::i;:::-;5851:13;;5810:16;;;;5873:57;5851:13;5810:16;5907:4;5895:17;;5873:57;:::i;:::-;5946:20;;5502:470;-1:-1:-1;;;;5502:470:1:o;6208:511::-;6402:4;-1:-1:-1;;;;;6512:2:1;6504:6;6500:15;6489:9;6482:34;6564:2;6556:6;6552:15;6547:2;6536:9;6532:18;6525:43;;6604:6;6599:2;6588:9;6584:18;6577:34;6647:3;6642:2;6631:9;6627:18;6620:31;6668:45;6708:3;6697:9;6693:19;6685:6;6668:45;:::i;:::-;6660:53;6208:511;-1:-1:-1;;;;;;6208:511:1:o;7026:643::-;7195:2;7247:21;;;7317:13;;7220:18;;;7339:22;;;7166:4;;7195:2;7418:15;;;;7392:2;7377:18;;;7166:4;7461:182;7475:6;7472:1;7469:13;7461:182;;;7540:13;;7555:6;7536:26;7524:39;;7618:15;;;;7583:12;;;;7497:1;7490:9;7461:182;;;-1:-1:-1;7660:3:1;;7026:643;-1:-1:-1;;;;;;7026:643:1:o;7866:219::-;8015:2;8004:9;7997:21;7978:4;8035:44;8075:2;8064:9;8060:18;8052:6;8035:44;:::i;17599:224::-;17638:3;17666:6;17699:2;17696:1;17692:10;17729:2;17726:1;17722:10;17760:3;17756:2;17752:12;17747:3;17744:21;17741:47;;;17768:18;;:::i;17828:128::-;17868:3;17899:1;17895:6;17892:1;17889:13;17886:39;;;17905:18;;:::i;:::-;-1:-1:-1;17941:9:1;;17828:128::o;17961:120::-;18001:1;18027;18017:35;;18032:18;;:::i;:::-;-1:-1:-1;18066:9:1;;17961:120::o;18086:228::-;18126:7;18252:1;18184:66;18180:74;18177:1;18174:81;18169:1;18162:9;18155:17;18151:105;18148:131;;;18259:18;;:::i;:::-;-1:-1:-1;18299:9:1;;18086:228::o;18319:125::-;18359:4;18387:1;18384;18381:8;18378:34;;;18392:18;;:::i;:::-;-1:-1:-1;18429:9:1;;18319:125::o;18449:258::-;18521:1;18531:113;18545:6;18542:1;18539:13;18531:113;;;18621:11;;;18615:18;18602:11;;;18595:39;18567:2;18560:10;18531:113;;;18662:6;18659:1;18656:13;18653:48;;;-1:-1:-1;;18697:1:1;18679:16;;18672:27;18449:258::o;18712:437::-;18791:1;18787:12;;;;18834;;;18855:61;;18909:4;18901:6;18897:17;18887:27;;18855:61;18962:2;18954:6;18951:14;18931:18;18928:38;18925:218;;;18999:77;18996:1;18989:88;19100:4;19097:1;19090:15;19128:4;19125:1;19118:15;18925:218;;18712:437;;;:::o;19154:197::-;19192:3;19220:6;19261:2;19254:5;19250:14;19288:2;19279:7;19276:15;19273:41;;;19294:18;;:::i;:::-;19343:1;19330:15;;19154:197;-1:-1:-1;;;19154:197:1:o;19356:195::-;19395:3;19426:66;19419:5;19416:77;19413:103;;;19496:18;;:::i;:::-;-1:-1:-1;19543:1:1;19532:13;;19356:195::o;19556:112::-;19588:1;19614;19604:35;;19619:18;;:::i;:::-;-1:-1:-1;19653:9:1;;19556:112::o;19673:184::-;19725:77;19722:1;19715:88;19822:4;19819:1;19812:15;19846:4;19843:1;19836:15;19862:184;19914:77;19911:1;19904:88;20011:4;20008:1;20001:15;20035:4;20032:1;20025:15;20051:184;20103:77;20100:1;20093:88;20200:4;20197:1;20190:15;20224:4;20221:1;20214:15;20240:184;20292:77;20289:1;20282:88;20389:4;20386:1;20379:15;20413:4;20410:1;20403:15;20429:184;20481:77;20478:1;20471:88;20578:4;20575:1;20568:15;20602:4;20599:1;20592:15;20618:177;20703:66;20696:5;20692:78;20685:5;20682:89;20672:117;;20785:1;20782;20775:12

Swarm Source

ipfs://6d725ec23340e31d903514c3fff964c6f6b985b8e8750db9537320c65465c189
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.