ETH Price: $2,674.21 (+1.40%)
Gas: 0.87 Gwei

Token

WolfClub86 (WC86)
 

Overview

Max Total Supply

909 WC86

Holders

301

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 WC86
0xe0ed3d79ca7fe5ff24b1184472c0a73b98653ca2
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
WolfClub86

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

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

pragma solidity ^0.8.0;

import './ERC721Enumerable.sol';
import "./Ownable.sol";

contract WolfClub86 is ERC721Enumerable, Ownable {
    
    uint256 public tokenId;
    uint256 maxSupply = 10000;
    uint nonce = 0;
    string private tokenUri = "https://wolfclub86.herokuapp.com/api/token/";
    
    constructor() ERC721("WolfClub86", "WC86") {
        _owner = 0xe0ED3d79cA7FE5ff24B1184472C0A73B98653CA2;
    }
    
    function _baseURI() internal view virtual override returns (string memory) {
        return tokenUri;
    }
    
    function updateTokenUri(string memory _newUri) external onlyOwner {
        tokenUri = _newUri;
    }
    
    receive() external payable{
        Mint(msg.value, 1);
    }
    
    function Mint(uint256 _amount, uint256 wolvesAmount) public payable {
        require(block.timestamp > 1629669600, "Minting is not opened yet");
        require(wolvesAmount > 0, "invalid wolves amount provided");
        require(wolvesAmount <= 20, "max wolves to be minted are 20");
        require(_amount == 40000000000000000 * wolvesAmount, "0.04 eths should be paid");
        require(tokenId+wolvesAmount <= maxSupply, "Max supply reached");
        for(uint256 wolf = 1; wolf <= wolvesAmount; wolf++)
        {
            uint256 _rn = getRandom();
            super._safeMint(msg.sender, _rn);
        }
        payable(owner()).transfer(msg.value);
    }
    
    function mintReservedT(uint256 _tokenId, address _receiver) public onlyOwner{
        require(_tokenId == 277 || _tokenId == 2325 || _tokenId == 2338, "Unreserved token Id provided");
        super._safeMint(_receiver, _tokenId);
    }
    
    function getRandom() private returns(uint){
        uint256 _rn = random(maxSupply);
        if(_rn == 277 || _rn == 2325 || _rn == 2338)
            getRandom();
        else if(_owners[_rn] != address(0))
            getRandom();
        return _rn;
    }
    
    function random(uint _maxRan) public returns (uint) {
       nonce += 1;
       uint randomNumber = uint(keccak256(abi.encodePacked(nonce, msg.sender, blockhash(block.number - 1)))) % _maxRan;
       return randomNumber;
    }
    
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"wolvesAmount","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintReservedT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxRan","type":"uint256"}],"name":"random","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":[],"name":"tokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newUri","type":"string"}],"name":"updateTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

612710600c556000600d5560e0604052602b608081815290620022d060a03980516200003491600e9160209091019062000146565b503480156200004257600080fd5b50604080518082018252600a8152692bb7b63321b63ab11c1b60b11b6020808301918252835180850190945260048452632ba19c1b60e11b908401528151919291620000919160009162000146565b508051620000a790600190602084019062000146565b505050620000c4620000be620000f060201b60201c565b620000f4565b600a80546001600160a01b03191673e0ed3d79ca7fe5ff24b1184472c0a73b98653ca217905562000229565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015490620001ec565b90600052602060002090601f016020900481019282620001785760008555620001c3565b82601f106200019357805160ff1916838001178555620001c3565b82800160010185558215620001c3579182015b82811115620001c3578251825591602001919060010190620001a6565b50620001d1929150620001d5565b5090565b5b80821115620001d15760008155600101620001d6565b600181811c908216806200020157607f821691505b602082108114156200022357634e487b7160e01b600052602260045260246000fd5b50919050565b61209780620002396000396000f3fe60806040526004361061014f5760003560e01c8063715018a6116100b6578063c79b04c91161006f578063c79b04c9146103b6578063c87b56dd146103d6578063cc9c58b5146103f6578063e985e9c514610409578063f2fde38b14610452578063fbcc8c781461047257600080fd5b8063715018a61461030e5780638da5cb5b1461032357806395d89b4114610341578063a22cb46514610356578063b863bd3714610376578063b88d4fde1461039657600080fd5b806323b872dd1161010857806323b872dd1461024e5780632f745c591461026e57806342842e0e1461028e5780634f6ccce7146102ae5780636352211e146102ce57806370a08231146102ee57600080fd5b806301ffc9a71461016657806306fdde031461019b578063081812fc146101bd578063095ea7b3146101f557806317d70f7c1461021557806318160ddd1461023957600080fd5b366101615761015f346001610492565b005b600080fd5b34801561017257600080fd5b50610186610181366004611c87565b6106b0565b60405190151581526020015b60405180910390f35b3480156101a757600080fd5b506101b06106db565b6040516101929190611e00565b3480156101c957600080fd5b506101dd6101d8366004611d0a565b61076d565b6040516001600160a01b039091168152602001610192565b34801561020157600080fd5b5061015f610210366004611c5d565b610802565b34801561022157600080fd5b5061022b600b5481565b604051908152602001610192565b34801561024557600080fd5b5060085461022b565b34801561025a57600080fd5b5061015f610269366004611b69565b610913565b34801561027a57600080fd5b5061022b610289366004611c5d565b610944565b34801561029a57600080fd5b5061015f6102a9366004611b69565b6109da565b3480156102ba57600080fd5b5061022b6102c9366004611d0a565b6109f5565b3480156102da57600080fd5b506101dd6102e9366004611d0a565b610a88565b3480156102fa57600080fd5b5061022b610309366004611b1b565b610aff565b34801561031a57600080fd5b5061015f610b86565b34801561032f57600080fd5b50600a546001600160a01b03166101dd565b34801561034d57600080fd5b506101b0610bbc565b34801561036257600080fd5b5061015f610371366004611c21565b610bcb565b34801561038257600080fd5b5061022b610391366004611d0a565b610c90565b3480156103a257600080fd5b5061015f6103b1366004611ba5565b610d1e565b3480156103c257600080fd5b5061015f6103d1366004611cc1565b610d56565b3480156103e257600080fd5b506101b06103f1366004611d0a565b610d97565b61015f610404366004611d46565b610492565b34801561041557600080fd5b50610186610424366004611b36565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561045e57600080fd5b5061015f61046d366004611b1b565b610e71565b34801561047e57600080fd5b5061015f61048d366004611d23565b610f0c565b636122c8e042116104ea5760405162461bcd60e51b815260206004820152601960248201527f4d696e74696e67206973206e6f74206f70656e6564207965740000000000000060448201526064015b60405180910390fd5b6000811161053a5760405162461bcd60e51b815260206004820152601e60248201527f696e76616c696420776f6c76657320616d6f756e742070726f7669646564000060448201526064016104e1565b601481111561058b5760405162461bcd60e51b815260206004820152601e60248201527f6d617820776f6c76657320746f206265206d696e74656420617265203230000060448201526064016104e1565b61059c81668e1bc9bf040000611f17565b82146105ea5760405162461bcd60e51b815260206004820152601860248201527f302e303420657468732073686f756c642062652070616964000000000000000060448201526064016104e1565b600c5481600b546105fb9190611eeb565b111561063e5760405162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b60448201526064016104e1565b60015b818111610671576000610652610fa9565b905061065e3382611013565b508061066981611fae565b915050610641565b50600a546040516001600160a01b03909116903480156108fc02916000818181858888f193505050501580156106ab573d6000803e3d6000fd5b505050565b60006001600160e01b0319821663780e9d6360e01b14806106d557506106d58261102d565b92915050565b6060600080546106ea90611f79565b80601f016020809104026020016040519081016040528092919081815260200182805461071690611f79565b80156107635780601f1061073857610100808354040283529160200191610763565b820191906000526020600020905b81548152906001019060200180831161074657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107e65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016104e1565b506000908152600460205260409020546001600160a01b031690565b600061080d82610a88565b9050806001600160a01b0316836001600160a01b0316141561087b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016104e1565b336001600160a01b038216148061089757506108978133610424565b6109095760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016104e1565b6106ab838361107d565b61091d33826110eb565b6109395760405162461bcd60e51b81526004016104e190611e9a565b6106ab8383836111e2565b600061094f83610aff565b82106109b15760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016104e1565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6106ab83838360405180602001604052806000815250610d1e565b6000610a0060085490565b8210610a635760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016104e1565b60088281548110610a7657610a7661201f565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806106d55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016104e1565b60006001600160a01b038216610b6a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016104e1565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610bb05760405162461bcd60e51b81526004016104e190611e65565b610bba600061138d565b565b6060600180546106ea90611f79565b6001600160a01b038216331415610c245760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016104e1565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60006001600d6000828254610ca59190611eeb565b9091555050600d54600090839033610cbe600143611f36565b40604051602001610cf49392919092835260609190911b6bffffffffffffffffffffffff19166020830152603482015260540190565b6040516020818303038152906040528051906020012060001c610d179190611fc9565b9392505050565b610d2833836110eb565b610d445760405162461bcd60e51b81526004016104e190611e9a565b610d50848484846113df565b50505050565b600a546001600160a01b03163314610d805760405162461bcd60e51b81526004016104e190611e65565b8051610d9390600e9060208401906119f5565b5050565b6000818152600260205260409020546060906001600160a01b0316610e165760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016104e1565b6000610e20611412565b90506000815111610e405760405180602001604052806000815250610d17565b80610e4a84611421565b604051602001610e5b929190611d94565b6040516020818303038152906040529392505050565b600a546001600160a01b03163314610e9b5760405162461bcd60e51b81526004016104e190611e65565b6001600160a01b038116610f005760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104e1565b610f098161138d565b50565b600a546001600160a01b03163314610f365760405162461bcd60e51b81526004016104e190611e65565b816101151480610f47575081610915145b80610f53575081610922145b610f9f5760405162461bcd60e51b815260206004820152601c60248201527f556e726573657276656420746f6b656e2049642070726f76696465640000000060448201526064016104e1565b610d938183611013565b600080610fb7600c54610c90565b9050806101151480610fca575080610915145b80610fd6575080610922145b15610fe957610fe3610fa9565b50919050565b6000818152600260205260409020546001600160a01b03161561100e57610fe3610fa9565b919050565b610d9382826040518060200160405280600081525061151f565b60006001600160e01b031982166380ac58cd60e01b148061105e57506001600160e01b03198216635b5e139f60e01b145b806106d557506301ffc9a760e01b6001600160e01b03198316146106d5565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906110b282610a88565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111645760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016104e1565b600061116f83610a88565b9050806001600160a01b0316846001600160a01b031614806111aa5750836001600160a01b031661119f8461076d565b6001600160a01b0316145b806111da57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166111f582610a88565b6001600160a01b03161461125d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016104e1565b6001600160a01b0382166112bf5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016104e1565b6112ca838383611552565b6112d560008261107d565b6001600160a01b03831660009081526003602052604081208054600192906112fe908490611f36565b90915550506001600160a01b038216600090815260036020526040812080546001929061132c908490611eeb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6113ea8484846111e2565b6113f68484848461160a565b610d505760405162461bcd60e51b81526004016104e190611e13565b6060600e80546106ea90611f79565b6060816114455750506040805180820190915260018152600360fc1b602082015290565b8160005b811561146f578061145981611fae565b91506114689050600a83611f03565b9150611449565b60008167ffffffffffffffff81111561148a5761148a612035565b6040519080825280601f01601f1916602001820160405280156114b4576020820181803683370190505b5090505b84156111da576114c9600183611f36565b91506114d6600a86611fc9565b6114e1906030611eeb565b60f81b8183815181106114f6576114f661201f565b60200101906001600160f81b031916908160001a905350611518600a86611f03565b94506114b8565b6115298383611717565b611536600084848461160a565b6106ab5760405162461bcd60e51b81526004016104e190611e13565b6001600160a01b0383166115ad576115a881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6115d0565b816001600160a01b0316836001600160a01b0316146115d0576115d08382611865565b6001600160a01b0382166115e7576106ab81611902565b826001600160a01b0316826001600160a01b0316146106ab576106ab82826119b1565b60006001600160a01b0384163b1561170c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061164e903390899088908890600401611dc3565b602060405180830381600087803b15801561166857600080fd5b505af1925050508015611698575060408051601f3d908101601f1916820190925261169591810190611ca4565b60015b6116f2573d8080156116c6576040519150601f19603f3d011682016040523d82523d6000602084013e6116cb565b606091505b5080516116ea5760405162461bcd60e51b81526004016104e190611e13565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111da565b506001949350505050565b6001600160a01b03821661176d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016104e1565b6000818152600260205260409020546001600160a01b0316156117d25760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016104e1565b6117de60008383611552565b6001600160a01b0382166000908152600360205260408120805460019290611807908490611eeb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161187284610aff565b61187c9190611f36565b6000838152600760205260409020549091508082146118cf576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061191490600190611f36565b6000838152600960205260408120546008805493945090928490811061193c5761193c61201f565b90600052602060002001549050806008838154811061195d5761195d61201f565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061199557611995612009565b6001900381819060005260206000200160009055905550505050565b60006119bc83610aff565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611a0190611f79565b90600052602060002090601f016020900481019282611a235760008555611a69565b82601f10611a3c57805160ff1916838001178555611a69565b82800160010185558215611a69579182015b82811115611a69578251825591602001919060010190611a4e565b50611a75929150611a79565b5090565b5b80821115611a755760008155600101611a7a565b600067ffffffffffffffff80841115611aa957611aa9612035565b604051601f8501601f19908116603f01168101908282118183101715611ad157611ad1612035565b81604052809350858152868686011115611aea57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461100e57600080fd5b600060208284031215611b2d57600080fd5b610d1782611b04565b60008060408385031215611b4957600080fd5b611b5283611b04565b9150611b6060208401611b04565b90509250929050565b600080600060608486031215611b7e57600080fd5b611b8784611b04565b9250611b9560208501611b04565b9150604084013590509250925092565b60008060008060808587031215611bbb57600080fd5b611bc485611b04565b9350611bd260208601611b04565b925060408501359150606085013567ffffffffffffffff811115611bf557600080fd5b8501601f81018713611c0657600080fd5b611c1587823560208401611a8e565b91505092959194509250565b60008060408385031215611c3457600080fd5b611c3d83611b04565b915060208301358015158114611c5257600080fd5b809150509250929050565b60008060408385031215611c7057600080fd5b611c7983611b04565b946020939093013593505050565b600060208284031215611c9957600080fd5b8135610d178161204b565b600060208284031215611cb657600080fd5b8151610d178161204b565b600060208284031215611cd357600080fd5b813567ffffffffffffffff811115611cea57600080fd5b8201601f81018413611cfb57600080fd5b6111da84823560208401611a8e565b600060208284031215611d1c57600080fd5b5035919050565b60008060408385031215611d3657600080fd5b82359150611b6060208401611b04565b60008060408385031215611d5957600080fd5b50508035926020909101359150565b60008151808452611d80816020860160208601611f4d565b601f01601f19169290920160200192915050565b60008351611da6818460208801611f4d565b835190830190611dba818360208801611f4d565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611df690830184611d68565b9695505050505050565b602081526000610d176020830184611d68565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611efe57611efe611fdd565b500190565b600082611f1257611f12611ff3565b500490565b6000816000190483118215151615611f3157611f31611fdd565b500290565b600082821015611f4857611f48611fdd565b500390565b60005b83811015611f68578181015183820152602001611f50565b83811115610d505750506000910152565b600181811c90821680611f8d57607f821691505b60208210811415610fe357634e487b7160e01b600052602260045260246000fd5b6000600019821415611fc257611fc2611fdd565b5060010190565b600082611fd857611fd8611ff3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f0957600080fdfea2646970667358221220daaf66f2674aafd441f94f62f1fcb79928aa9af7099f84910cb4efd3b69ec84664736f6c6343000807003368747470733a2f2f776f6c66636c756238362e6865726f6b756170702e636f6d2f6170692f746f6b656e2f

Deployed Bytecode

0x60806040526004361061014f5760003560e01c8063715018a6116100b6578063c79b04c91161006f578063c79b04c9146103b6578063c87b56dd146103d6578063cc9c58b5146103f6578063e985e9c514610409578063f2fde38b14610452578063fbcc8c781461047257600080fd5b8063715018a61461030e5780638da5cb5b1461032357806395d89b4114610341578063a22cb46514610356578063b863bd3714610376578063b88d4fde1461039657600080fd5b806323b872dd1161010857806323b872dd1461024e5780632f745c591461026e57806342842e0e1461028e5780634f6ccce7146102ae5780636352211e146102ce57806370a08231146102ee57600080fd5b806301ffc9a71461016657806306fdde031461019b578063081812fc146101bd578063095ea7b3146101f557806317d70f7c1461021557806318160ddd1461023957600080fd5b366101615761015f346001610492565b005b600080fd5b34801561017257600080fd5b50610186610181366004611c87565b6106b0565b60405190151581526020015b60405180910390f35b3480156101a757600080fd5b506101b06106db565b6040516101929190611e00565b3480156101c957600080fd5b506101dd6101d8366004611d0a565b61076d565b6040516001600160a01b039091168152602001610192565b34801561020157600080fd5b5061015f610210366004611c5d565b610802565b34801561022157600080fd5b5061022b600b5481565b604051908152602001610192565b34801561024557600080fd5b5060085461022b565b34801561025a57600080fd5b5061015f610269366004611b69565b610913565b34801561027a57600080fd5b5061022b610289366004611c5d565b610944565b34801561029a57600080fd5b5061015f6102a9366004611b69565b6109da565b3480156102ba57600080fd5b5061022b6102c9366004611d0a565b6109f5565b3480156102da57600080fd5b506101dd6102e9366004611d0a565b610a88565b3480156102fa57600080fd5b5061022b610309366004611b1b565b610aff565b34801561031a57600080fd5b5061015f610b86565b34801561032f57600080fd5b50600a546001600160a01b03166101dd565b34801561034d57600080fd5b506101b0610bbc565b34801561036257600080fd5b5061015f610371366004611c21565b610bcb565b34801561038257600080fd5b5061022b610391366004611d0a565b610c90565b3480156103a257600080fd5b5061015f6103b1366004611ba5565b610d1e565b3480156103c257600080fd5b5061015f6103d1366004611cc1565b610d56565b3480156103e257600080fd5b506101b06103f1366004611d0a565b610d97565b61015f610404366004611d46565b610492565b34801561041557600080fd5b50610186610424366004611b36565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561045e57600080fd5b5061015f61046d366004611b1b565b610e71565b34801561047e57600080fd5b5061015f61048d366004611d23565b610f0c565b636122c8e042116104ea5760405162461bcd60e51b815260206004820152601960248201527f4d696e74696e67206973206e6f74206f70656e6564207965740000000000000060448201526064015b60405180910390fd5b6000811161053a5760405162461bcd60e51b815260206004820152601e60248201527f696e76616c696420776f6c76657320616d6f756e742070726f7669646564000060448201526064016104e1565b601481111561058b5760405162461bcd60e51b815260206004820152601e60248201527f6d617820776f6c76657320746f206265206d696e74656420617265203230000060448201526064016104e1565b61059c81668e1bc9bf040000611f17565b82146105ea5760405162461bcd60e51b815260206004820152601860248201527f302e303420657468732073686f756c642062652070616964000000000000000060448201526064016104e1565b600c5481600b546105fb9190611eeb565b111561063e5760405162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b60448201526064016104e1565b60015b818111610671576000610652610fa9565b905061065e3382611013565b508061066981611fae565b915050610641565b50600a546040516001600160a01b03909116903480156108fc02916000818181858888f193505050501580156106ab573d6000803e3d6000fd5b505050565b60006001600160e01b0319821663780e9d6360e01b14806106d557506106d58261102d565b92915050565b6060600080546106ea90611f79565b80601f016020809104026020016040519081016040528092919081815260200182805461071690611f79565b80156107635780601f1061073857610100808354040283529160200191610763565b820191906000526020600020905b81548152906001019060200180831161074657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107e65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016104e1565b506000908152600460205260409020546001600160a01b031690565b600061080d82610a88565b9050806001600160a01b0316836001600160a01b0316141561087b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016104e1565b336001600160a01b038216148061089757506108978133610424565b6109095760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016104e1565b6106ab838361107d565b61091d33826110eb565b6109395760405162461bcd60e51b81526004016104e190611e9a565b6106ab8383836111e2565b600061094f83610aff565b82106109b15760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016104e1565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6106ab83838360405180602001604052806000815250610d1e565b6000610a0060085490565b8210610a635760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016104e1565b60088281548110610a7657610a7661201f565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806106d55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016104e1565b60006001600160a01b038216610b6a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016104e1565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610bb05760405162461bcd60e51b81526004016104e190611e65565b610bba600061138d565b565b6060600180546106ea90611f79565b6001600160a01b038216331415610c245760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016104e1565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60006001600d6000828254610ca59190611eeb565b9091555050600d54600090839033610cbe600143611f36565b40604051602001610cf49392919092835260609190911b6bffffffffffffffffffffffff19166020830152603482015260540190565b6040516020818303038152906040528051906020012060001c610d179190611fc9565b9392505050565b610d2833836110eb565b610d445760405162461bcd60e51b81526004016104e190611e9a565b610d50848484846113df565b50505050565b600a546001600160a01b03163314610d805760405162461bcd60e51b81526004016104e190611e65565b8051610d9390600e9060208401906119f5565b5050565b6000818152600260205260409020546060906001600160a01b0316610e165760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016104e1565b6000610e20611412565b90506000815111610e405760405180602001604052806000815250610d17565b80610e4a84611421565b604051602001610e5b929190611d94565b6040516020818303038152906040529392505050565b600a546001600160a01b03163314610e9b5760405162461bcd60e51b81526004016104e190611e65565b6001600160a01b038116610f005760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104e1565b610f098161138d565b50565b600a546001600160a01b03163314610f365760405162461bcd60e51b81526004016104e190611e65565b816101151480610f47575081610915145b80610f53575081610922145b610f9f5760405162461bcd60e51b815260206004820152601c60248201527f556e726573657276656420746f6b656e2049642070726f76696465640000000060448201526064016104e1565b610d938183611013565b600080610fb7600c54610c90565b9050806101151480610fca575080610915145b80610fd6575080610922145b15610fe957610fe3610fa9565b50919050565b6000818152600260205260409020546001600160a01b03161561100e57610fe3610fa9565b919050565b610d9382826040518060200160405280600081525061151f565b60006001600160e01b031982166380ac58cd60e01b148061105e57506001600160e01b03198216635b5e139f60e01b145b806106d557506301ffc9a760e01b6001600160e01b03198316146106d5565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906110b282610a88565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111645760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016104e1565b600061116f83610a88565b9050806001600160a01b0316846001600160a01b031614806111aa5750836001600160a01b031661119f8461076d565b6001600160a01b0316145b806111da57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166111f582610a88565b6001600160a01b03161461125d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016104e1565b6001600160a01b0382166112bf5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016104e1565b6112ca838383611552565b6112d560008261107d565b6001600160a01b03831660009081526003602052604081208054600192906112fe908490611f36565b90915550506001600160a01b038216600090815260036020526040812080546001929061132c908490611eeb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6113ea8484846111e2565b6113f68484848461160a565b610d505760405162461bcd60e51b81526004016104e190611e13565b6060600e80546106ea90611f79565b6060816114455750506040805180820190915260018152600360fc1b602082015290565b8160005b811561146f578061145981611fae565b91506114689050600a83611f03565b9150611449565b60008167ffffffffffffffff81111561148a5761148a612035565b6040519080825280601f01601f1916602001820160405280156114b4576020820181803683370190505b5090505b84156111da576114c9600183611f36565b91506114d6600a86611fc9565b6114e1906030611eeb565b60f81b8183815181106114f6576114f661201f565b60200101906001600160f81b031916908160001a905350611518600a86611f03565b94506114b8565b6115298383611717565b611536600084848461160a565b6106ab5760405162461bcd60e51b81526004016104e190611e13565b6001600160a01b0383166115ad576115a881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6115d0565b816001600160a01b0316836001600160a01b0316146115d0576115d08382611865565b6001600160a01b0382166115e7576106ab81611902565b826001600160a01b0316826001600160a01b0316146106ab576106ab82826119b1565b60006001600160a01b0384163b1561170c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061164e903390899088908890600401611dc3565b602060405180830381600087803b15801561166857600080fd5b505af1925050508015611698575060408051601f3d908101601f1916820190925261169591810190611ca4565b60015b6116f2573d8080156116c6576040519150601f19603f3d011682016040523d82523d6000602084013e6116cb565b606091505b5080516116ea5760405162461bcd60e51b81526004016104e190611e13565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111da565b506001949350505050565b6001600160a01b03821661176d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016104e1565b6000818152600260205260409020546001600160a01b0316156117d25760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016104e1565b6117de60008383611552565b6001600160a01b0382166000908152600360205260408120805460019290611807908490611eeb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161187284610aff565b61187c9190611f36565b6000838152600760205260409020549091508082146118cf576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061191490600190611f36565b6000838152600960205260408120546008805493945090928490811061193c5761193c61201f565b90600052602060002001549050806008838154811061195d5761195d61201f565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061199557611995612009565b6001900381819060005260206000200160009055905550505050565b60006119bc83610aff565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611a0190611f79565b90600052602060002090601f016020900481019282611a235760008555611a69565b82601f10611a3c57805160ff1916838001178555611a69565b82800160010185558215611a69579182015b82811115611a69578251825591602001919060010190611a4e565b50611a75929150611a79565b5090565b5b80821115611a755760008155600101611a7a565b600067ffffffffffffffff80841115611aa957611aa9612035565b604051601f8501601f19908116603f01168101908282118183101715611ad157611ad1612035565b81604052809350858152868686011115611aea57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461100e57600080fd5b600060208284031215611b2d57600080fd5b610d1782611b04565b60008060408385031215611b4957600080fd5b611b5283611b04565b9150611b6060208401611b04565b90509250929050565b600080600060608486031215611b7e57600080fd5b611b8784611b04565b9250611b9560208501611b04565b9150604084013590509250925092565b60008060008060808587031215611bbb57600080fd5b611bc485611b04565b9350611bd260208601611b04565b925060408501359150606085013567ffffffffffffffff811115611bf557600080fd5b8501601f81018713611c0657600080fd5b611c1587823560208401611a8e565b91505092959194509250565b60008060408385031215611c3457600080fd5b611c3d83611b04565b915060208301358015158114611c5257600080fd5b809150509250929050565b60008060408385031215611c7057600080fd5b611c7983611b04565b946020939093013593505050565b600060208284031215611c9957600080fd5b8135610d178161204b565b600060208284031215611cb657600080fd5b8151610d178161204b565b600060208284031215611cd357600080fd5b813567ffffffffffffffff811115611cea57600080fd5b8201601f81018413611cfb57600080fd5b6111da84823560208401611a8e565b600060208284031215611d1c57600080fd5b5035919050565b60008060408385031215611d3657600080fd5b82359150611b6060208401611b04565b60008060408385031215611d5957600080fd5b50508035926020909101359150565b60008151808452611d80816020860160208601611f4d565b601f01601f19169290920160200192915050565b60008351611da6818460208801611f4d565b835190830190611dba818360208801611f4d565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611df690830184611d68565b9695505050505050565b602081526000610d176020830184611d68565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611efe57611efe611fdd565b500190565b600082611f1257611f12611ff3565b500490565b6000816000190483118215151615611f3157611f31611fdd565b500290565b600082821015611f4857611f48611fdd565b500390565b60005b83811015611f68578181015183820152602001611f50565b83811115610d505750506000910152565b600181811c90821680611f8d57607f821691505b60208210811415610fe357634e487b7160e01b600052602260045260246000fd5b6000600019821415611fc257611fc2611fdd565b5060010190565b600082611fd857611fd8611ff3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f0957600080fdfea2646970667358221220daaf66f2674aafd441f94f62f1fcb79928aa9af7099f84910cb4efd3b69ec84664736f6c63430008070033

Deployed Bytecode Sourcemap

123:2119:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;749:18;754:9;765:1;749:4;:18::i;:::-;123:2119;;;;;937:224:5;;;;;;;;;;-1:-1:-1;937:224:5;;;;;:::i;:::-;;:::i;:::-;;;6522:14:13;;6515:22;6497:41;;6485:2;6470:18;937:224:5;;;;;;;;2427:100:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3986:221::-;;;;;;;;;;-1:-1:-1;3986:221:4;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5820:32:13;;;5802:51;;5790:2;5775:18;3986:221:4;5656:203:13;3509:411:4;;;;;;;;;;-1:-1:-1;3509:411:4;;;;;:::i;:::-;;:::i;185:22:2:-;;;;;;;;;;;;;;;;;;;16255:25:13;;;16243:2;16228:18;185:22:2;16109:177:13;1577:113:5;;;;;;;;;;-1:-1:-1;1665:10:5;:17;1577:113;;4876:339:4;;;;;;;;;;-1:-1:-1;4876:339:4;;;;;:::i;:::-;;:::i;1245:256:5:-;;;;;;;;;;-1:-1:-1;1245:256:5;;;;;:::i;:::-;;:::i;5286:185:4:-;;;;;;;;;;-1:-1:-1;5286:185:4;;;;;:::i;:::-;;:::i;1767:233:5:-;;;;;;;;;;-1:-1:-1;1767:233:5;;;;;:::i;:::-;;:::i;2121:239:4:-;;;;;;;;;;-1:-1:-1;2121:239:4;;;;;:::i;:::-;;:::i;1851:208::-;;;;;;;;;;-1:-1:-1;1851:208:4;;;;;:::i;:::-;;:::i;1651:94:11:-;;;;;;;;;;;;;:::i;1000:87::-;;;;;;;;;;-1:-1:-1;1073:6:11;;-1:-1:-1;;;;;1073:6:11;1000:87;;2596:104:4;;;;;;;;;;;;;:::i;4279:295::-;;;;;;;;;;-1:-1:-1;4279:295:4;;;;;:::i;:::-;;:::i;2003:230:2:-;;;;;;;;;;-1:-1:-1;2003:230:2;;;;;:::i;:::-;;:::i;5542:328:4:-;;;;;;;;;;-1:-1:-1;5542:328:4;;;;;:::i;:::-;;:::i;597:103:2:-;;;;;;;;;;-1:-1:-1;597:103:2;;;;;:::i;:::-;;:::i;2771:334:4:-;;;;;;;;;;-1:-1:-1;2771:334:4;;;;;:::i;:::-;;:::i;787:678:2:-;;;;;;:::i;:::-;;:::i;4645:164:4:-;;;;;;;;;;-1:-1:-1;4645:164:4;;;;;:::i;:::-;-1:-1:-1;;;;;4766:25:4;;;4742:4;4766:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4645:164;1900:192:11;;;;;;;;;;-1:-1:-1;1900:192:11;;;;;:::i;:::-;;:::i;1477:238:2:-;;;;;;;;;;-1:-1:-1;1477:238:2;;;;;:::i;:::-;;:::i;787:678::-;892:10;874:15;:28;866:66;;;;-1:-1:-1;;;866:66:2;;12839:2:13;866:66:2;;;12821:21:13;12878:2;12858:18;;;12851:30;12917:27;12897:18;;;12890:55;12962:18;;866:66:2;;;;;;;;;966:1;951:12;:16;943:59;;;;-1:-1:-1;;;943:59:2;;14421:2:13;943:59:2;;;14403:21:13;14460:2;14440:18;;;14433:30;14499:32;14479:18;;;14472:60;14549:18;;943:59:2;14219:354:13;943:59:2;1037:2;1021:12;:18;;1013:61;;;;-1:-1:-1;;;1013:61:2;;6975:2:13;1013:61:2;;;6957:21:13;7014:2;6994:18;;;6987:30;7053:32;7033:18;;;7026:60;7103:18;;1013:61:2;6773:354:13;1013:61:2;1104:32;1124:12;1104:17;:32;:::i;:::-;1093:7;:43;1085:80;;;;-1:-1:-1;;;1085:80:2;;15958:2:13;1085:80:2;;;15940:21:13;15997:2;15977:18;;;15970:30;16036:26;16016:18;;;16009:54;16080:18;;1085:80:2;15756:348:13;1085:80:2;1208:9;;1192:12;1184:7;;:20;;;;:::i;:::-;:33;;1176:64;;;;-1:-1:-1;;;1176:64:2;;15198:2:13;1176:64:2;;;15180:21:13;15237:2;15217:18;;;15210:30;-1:-1:-1;;;15256:18:13;;;15249:48;15314:18;;1176:64:2;14996:342:13;1176:64:2;1270:1;1251:160;1281:12;1273:4;:20;1251:160;;1327:11;1341;:9;:11::i;:::-;1327:25;;1367:32;1383:10;1395:3;1367:15;:32::i;:::-;-1:-1:-1;1295:6:2;;;;:::i;:::-;;;;1251:160;;;-1:-1:-1;1073:6:11;;1421:36:2;;-1:-1:-1;;;;;1073:6:11;;;;1447:9:2;1421:36;;;;;;;;;1447:9;1073:6:11;1421:36:2;;;;;;;;;;;;;;;;;;;;;787:678;;:::o;937:224:5:-;1039:4;-1:-1:-1;;;;;;1063:50:5;;-1:-1:-1;;;1063:50:5;;:90;;;1117:36;1141:11;1117:23;:36::i;:::-;1056:97;937:224;-1:-1:-1;;937:224:5:o;2427:100:4:-;2481:13;2514:5;2507:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2427:100;:::o;3986:221::-;4062:7;7469:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7469:16:4;4082:73;;;;-1:-1:-1;;;4082:73:4;;12065:2:13;4082:73:4;;;12047:21:13;12104:2;12084:18;;;12077:30;12143:34;12123:18;;;12116:62;-1:-1:-1;;;12194:18:13;;;12187:42;12246:19;;4082:73:4;11863:408:13;4082:73:4;-1:-1:-1;4175:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;4175:24:4;;3986:221::o;3509:411::-;3590:13;3606:23;3621:7;3606:14;:23::i;:::-;3590:39;;3654:5;-1:-1:-1;;;;;3648:11:4;:2;-1:-1:-1;;;;;3648:11:4;;;3640:57;;;;-1:-1:-1;;;3640:57:4;;14019:2:13;3640:57:4;;;14001:21:13;14058:2;14038:18;;;14031:30;14097:34;14077:18;;;14070:62;-1:-1:-1;;;14148:18:13;;;14141:31;14189:19;;3640:57:4;13817:397:13;3640:57:4;681:10:1;-1:-1:-1;;;;;3732:21:4;;;;:62;;-1:-1:-1;3757:37:4;3774:5;681:10:1;4645:164:4;:::i;3757:37::-;3710:168;;;;-1:-1:-1;;;3710:168:4;;10458:2:13;3710:168:4;;;10440:21:13;10497:2;10477:18;;;10470:30;10536:34;10516:18;;;10509:62;10607:26;10587:18;;;10580:54;10651:19;;3710:168:4;10256:420:13;3710:168:4;3891:21;3900:2;3904:7;3891:8;:21::i;4876:339::-;5071:41;681:10:1;5104:7:4;5071:18;:41::i;:::-;5063:103;;;;-1:-1:-1;;;5063:103:4;;;;;;;:::i;:::-;5179:28;5189:4;5195:2;5199:7;5179:9;:28::i;1245:256:5:-;1342:7;1378:23;1395:5;1378:16;:23::i;:::-;1370:5;:31;1362:87;;;;-1:-1:-1;;;1362:87:5;;7691:2:13;1362:87:5;;;7673:21:13;7730:2;7710:18;;;7703:30;7769:34;7749:18;;;7742:62;-1:-1:-1;;;7820:18:13;;;7813:41;7871:19;;1362:87:5;7489:407:13;1362:87:5;-1:-1:-1;;;;;;1467:19:5;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1245:256::o;5286:185:4:-;5424:39;5441:4;5447:2;5451:7;5424:39;;;;;;;;;;;;:16;:39::i;1767:233:5:-;1842:7;1878:30;1665:10;:17;;1577:113;1878:30;1870:5;:38;1862:95;;;;-1:-1:-1;;;1862:95:5;;15545:2:13;1862:95:5;;;15527:21:13;15584:2;15564:18;;;15557:30;15623:34;15603:18;;;15596:62;-1:-1:-1;;;15674:18:13;;;15667:42;15726:19;;1862:95:5;15343:408:13;1862:95:5;1975:10;1986:5;1975:17;;;;;;;;:::i;:::-;;;;;;;;;1968:24;;1767:233;;;:::o;2121:239:4:-;2193:7;2229:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2229:16:4;2264:19;2256:73;;;;-1:-1:-1;;;2256:73:4;;11294:2:13;2256:73:4;;;11276:21:13;11333:2;11313:18;;;11306:30;11372:34;11352:18;;;11345:62;-1:-1:-1;;;11423:18:13;;;11416:39;11472:19;;2256:73:4;11092:405:13;1851:208:4;1923:7;-1:-1:-1;;;;;1951:19:4;;1943:74;;;;-1:-1:-1;;;1943:74:4;;10883:2:13;1943:74:4;;;10865:21:13;10922:2;10902:18;;;10895:30;10961:34;10941:18;;;10934:62;-1:-1:-1;;;11012:18:13;;;11005:40;11062:19;;1943:74:4;10681:406:13;1943:74:4;-1:-1:-1;;;;;;2035:16:4;;;;;:9;:16;;;;;;;1851:208::o;1651:94:11:-;1073:6;;-1:-1:-1;;;;;1073:6:11;681:10:1;1220:23:11;1212:68;;;;-1:-1:-1;;;1212:68:11;;;;;;;:::i;:::-;1716:21:::1;1734:1;1716:9;:21::i;:::-;1651:94::o:0;2596:104:4:-;2652:13;2685:7;2678:14;;;;;:::i;4279:295::-;-1:-1:-1;;;;;4382:24:4;;681:10:1;4382:24:4;;4374:62;;;;-1:-1:-1;;;4374:62:4;;9691:2:13;4374:62:4;;;9673:21:13;9730:2;9710:18;;;9703:30;9769:27;9749:18;;;9742:55;9814:18;;4374:62:4;9489:349:13;4374:62:4;681:10:1;4449:32:4;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;4449:42:4;;;;;;;;;;;;:53;;-1:-1:-1;;4449:53:4;;;;;;;;;;4518:48;;6497:41:13;;;4449:42:4;;681:10:1;4518:48:4;;6470:18:13;4518:48:4;;;;;;;4279:295;;:::o;2003:230:2:-;2049:4;2074:1;2065:5;;:10;;;;;;;:::i;:::-;;;;-1:-1:-1;;2137:5:2;;2085:17;;2189:7;;2144:10;2166:16;2181:1;2166:12;:16;:::i;:::-;2156:27;2120:64;;;;;;;;;5477:19:13;;;5534:2;5530:15;;;;-1:-1:-1;;5526:53:13;5521:2;5512:12;;5505:75;5605:2;5596:12;;5589:28;5642:2;5633:12;;5292:359;2120:64:2;;;;;;;;;;;;;2110:75;;;;;;2105:81;;:91;;;;:::i;:::-;2085:111;2003:230;-1:-1:-1;;;2003:230:2:o;5542:328:4:-;5717:41;681:10:1;5750:7:4;5717:18;:41::i;:::-;5709:103;;;;-1:-1:-1;;;5709:103:4;;;;;;;:::i;:::-;5823:39;5837:4;5843:2;5847:7;5856:5;5823:13;:39::i;:::-;5542:328;;;;:::o;597:103:2:-;1073:6:11;;-1:-1:-1;;;;;1073:6:11;681:10:1;1220:23:11;1212:68;;;;-1:-1:-1;;;1212:68:11;;;;;;;:::i;:::-;674:18:2;;::::1;::::0;:8:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;597:103:::0;:::o;2771:334:4:-;7445:4;7469:16;;;:7;:16;;;;;;2844:13;;-1:-1:-1;;;;;7469:16:4;2870:76;;;;-1:-1:-1;;;2870:76:4;;13603:2:13;2870:76:4;;;13585:21:13;13642:2;13622:18;;;13615:30;13681:34;13661:18;;;13654:62;-1:-1:-1;;;13732:18:13;;;13725:45;13787:19;;2870:76:4;13401:411:13;2870:76:4;2959:21;2983:10;:8;:10::i;:::-;2959:34;;3035:1;3017:7;3011:21;:25;:86;;;;;;;;;;;;;;;;;3063:7;3072:18;:7;:16;:18::i;:::-;3046:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3004:93;2771:334;-1:-1:-1;;;2771:334:4:o;1900:192:11:-;1073:6;;-1:-1:-1;;;;;1073:6:11;681:10:1;1220:23:11;1212:68;;;;-1:-1:-1;;;1212:68:11;;;;;;;:::i;:::-;-1:-1:-1;;;;;1989:22:11;::::1;1981:73;;;::::0;-1:-1:-1;;;1981:73:11;;8522:2:13;1981:73:11::1;::::0;::::1;8504:21:13::0;8561:2;8541:18;;;8534:30;8600:34;8580:18;;;8573:62;-1:-1:-1;;;8651:18:13;;;8644:36;8697:19;;1981:73:11::1;8320:402:13::0;1981:73:11::1;2065:19;2075:8;2065:9;:19::i;:::-;1900:192:::0;:::o;1477:238:2:-;1073:6:11;;-1:-1:-1;;;;;1073:6:11;681:10:1;1220:23:11;1212:68;;;;-1:-1:-1;;;1212:68:11;;;;;;;:::i;:::-;1572:8:2::1;1584:3;1572:15;:35;;;;1591:8;1603:4;1591:16;1572:35;:55;;;;1611:8;1623:4;1611:16;1572:55;1564:96;;;::::0;-1:-1:-1;;;1564:96:2;;7334:2:13;1564:96:2::1;::::0;::::1;7316:21:13::0;7373:2;7353:18;;;7346:30;7412;7392:18;;;7385:58;7460:18;;1564:96:2::1;7132:352:13::0;1564:96:2::1;1671:36;1687:9;1698:8;1671:15;:36::i;1727:264::-:0;1764:4;1780:11;1794:17;1801:9;;1794:6;:17::i;:::-;1780:31;;1825:3;1832;1825:10;:25;;;;1839:3;1846:4;1839:11;1825:25;:40;;;;1854:3;1861:4;1854:11;1825:40;1822:140;;;1880:11;:9;:11::i;:::-;;1980:3;1727:264;-1:-1:-1;1727:264:2:o;1822:140::-;1934:1;1910:12;;;:7;:12;;;;;;-1:-1:-1;;;;;1910:12:2;:26;1907:55;;1951:11;:9;:11::i;1907:55::-;1980:3;1727:264;-1:-1:-1;1727:264:2:o;8364:110:4:-;8440:26;8450:2;8454:7;8440:26;;;;;;;;;;;;:9;:26::i;1482:305::-;1584:4;-1:-1:-1;;;;;;1621:40:4;;-1:-1:-1;;;1621:40:4;;:105;;-1:-1:-1;;;;;;;1678:48:4;;-1:-1:-1;;;1678:48:4;1621:105;:158;;;-1:-1:-1;;;;;;;;;;896:40:3;;;1743:36:4;787:157:3;11362:174:4;11437:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11437:29:4;-1:-1:-1;;;;;11437:29:4;;;;;;;;:24;;11491:23;11437:24;11491:14;:23::i;:::-;-1:-1:-1;;;;;11482:46:4;;;;;;;;;;;11362:174;;:::o;7674:348::-;7767:4;7469:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7469:16:4;7784:73;;;;-1:-1:-1;;;7784:73:4;;10045:2:13;7784:73:4;;;10027:21:13;10084:2;10064:18;;;10057:30;10123:34;10103:18;;;10096:62;-1:-1:-1;;;10174:18:13;;;10167:42;10226:19;;7784:73:4;9843:408:13;7784:73:4;7868:13;7884:23;7899:7;7884:14;:23::i;:::-;7868:39;;7937:5;-1:-1:-1;;;;;7926:16:4;:7;-1:-1:-1;;;;;7926:16:4;;:51;;;;7970:7;-1:-1:-1;;;;;7946:31:4;:20;7958:7;7946:11;:20::i;:::-;-1:-1:-1;;;;;7946:31:4;;7926:51;:87;;;-1:-1:-1;;;;;;4766:25:4;;;4742:4;4766:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7981:32;7918:96;7674:348;-1:-1:-1;;;;7674:348:4:o;10666:578::-;10825:4;-1:-1:-1;;;;;10798:31:4;:23;10813:7;10798:14;:23::i;:::-;-1:-1:-1;;;;;10798:31:4;;10790:85;;;;-1:-1:-1;;;10790:85:4;;13193:2:13;10790:85:4;;;13175:21:13;13232:2;13212:18;;;13205:30;13271:34;13251:18;;;13244:62;-1:-1:-1;;;13322:18:13;;;13315:39;13371:19;;10790:85:4;12991:405:13;10790:85:4;-1:-1:-1;;;;;10894:16:4;;10886:65;;;;-1:-1:-1;;;10886:65:4;;9286:2:13;10886:65:4;;;9268:21:13;9325:2;9305:18;;;9298:30;9364:34;9344:18;;;9337:62;-1:-1:-1;;;9415:18:13;;;9408:34;9459:19;;10886:65:4;9084:400:13;10886:65:4;10964:39;10985:4;10991:2;10995:7;10964:20;:39::i;:::-;11068:29;11085:1;11089:7;11068:8;:29::i;:::-;-1:-1:-1;;;;;11110:15:4;;;;;;:9;:15;;;;;:20;;11129:1;;11110:15;:20;;11129:1;;11110:20;:::i;:::-;;;;-1:-1:-1;;;;;;;11141:13:4;;;;;;:9;:13;;;;;:18;;11158:1;;11141:13;:18;;11158:1;;11141:18;:::i;:::-;;;;-1:-1:-1;;11170:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;11170:21:4;-1:-1:-1;;;;;11170:21:4;;;;;;;;;11209:27;;11170:16;;11209:27;;;;;;;10666:578;;;:::o;2100:173:11:-;2175:6;;;-1:-1:-1;;;;;2192:17:11;;;-1:-1:-1;;;;;;2192:17:11;;;;;;;2225:40;;2175:6;;;2192:17;2175:6;;2225:40;;2156:16;;2225:40;2145:128;2100:173;:::o;6752:315:4:-;6909:28;6919:4;6925:2;6929:7;6909:9;:28::i;:::-;6956:48;6979:4;6985:2;6989:7;6998:5;6956:22;:48::i;:::-;6948:111;;;;-1:-1:-1;;;6948:111:4;;;;;;;:::i;476:109:2:-;536:13;569:8;562:15;;;;;:::i;288:723:12:-;344:13;565:10;561:53;;-1:-1:-1;;592:10:12;;;;;;;;;;;;-1:-1:-1;;;592:10:12;;;;;288:723::o;561:53::-;639:5;624:12;680:78;687:9;;680:78;;713:8;;;;:::i;:::-;;-1:-1:-1;736:10:12;;-1:-1:-1;744:2:12;736:10;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;790:17:12;;768:39;;818:154;825:10;;818:154;;852:11;862:1;852:11;;:::i;:::-;;-1:-1:-1;921:10:12;929:2;921:5;:10;:::i;:::-;908:24;;:2;:24;:::i;:::-;895:39;;878:6;885;878:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;878:56:12;;;;;;;;-1:-1:-1;949:11:12;958:2;949:11;;:::i;:::-;;;818:154;;8701:321:4;8831:18;8837:2;8841:7;8831:5;:18::i;:::-;8882:54;8913:1;8917:2;8921:7;8930:5;8882:22;:54::i;:::-;8860:154;;;;-1:-1:-1;;;8860:154:4;;;;;;;:::i;2613:589:5:-;-1:-1:-1;;;;;2819:18:5;;2815:187;;2854:40;2886:7;4029:10;:17;;4002:24;;;;:15;:24;;;;;:44;;;4057:24;;;;;;;;;;;;3925:164;2854:40;2815:187;;;2924:2;-1:-1:-1;;;;;2916:10:5;:4;-1:-1:-1;;;;;2916:10:5;;2912:90;;2943:47;2976:4;2982:7;2943:32;:47::i;:::-;-1:-1:-1;;;;;3016:16:5;;3012:183;;3049:45;3086:7;3049:36;:45::i;3012:183::-;3122:4;-1:-1:-1;;;;;3116:10:5;:2;-1:-1:-1;;;;;3116:10:5;;3112:83;;3143:40;3171:2;3175:7;3143:27;:40::i;12101:803:4:-;12256:4;-1:-1:-1;;;;;12277:13:4;;1066:20:0;1114:8;12273:624:4;;12313:72;;-1:-1:-1;;;12313:72:4;;-1:-1:-1;;;;;12313:36:4;;;;;:72;;681:10:1;;12364:4:4;;12370:7;;12379:5;;12313:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12313:72:4;;;;;;;;-1:-1:-1;;12313:72:4;;;;;;;;;;;;:::i;:::-;;;12309:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12559:13:4;;12555:272;;12602:60;;-1:-1:-1;;;12602:60:4;;;;;;;:::i;12555:272::-;12777:6;12771:13;12762:6;12758:2;12754:15;12747:38;12309:533;-1:-1:-1;;;;;;12436:55:4;-1:-1:-1;;;12436:55:4;;-1:-1:-1;12429:62:4;;12273:624;-1:-1:-1;12881:4:4;12101:803;;;;;;:::o;9358:382::-;-1:-1:-1;;;;;9438:16:4;;9430:61;;;;-1:-1:-1;;;9430:61:4;;11704:2:13;9430:61:4;;;11686:21:13;;;11723:18;;;11716:30;11782:34;11762:18;;;11755:62;11834:18;;9430:61:4;11502:356:13;9430:61:4;7445:4;7469:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7469:16:4;:30;9502:58;;;;-1:-1:-1;;;9502:58:4;;8929:2:13;9502:58:4;;;8911:21:13;8968:2;8948:18;;;8941:30;9007;8987:18;;;8980:58;9055:18;;9502:58:4;8727:352:13;9502:58:4;9573:45;9602:1;9606:2;9610:7;9573:20;:45::i;:::-;-1:-1:-1;;;;;9631:13:4;;;;;;:9;:13;;;;;:18;;9648:1;;9631:13;:18;;9648:1;;9631:18;:::i;:::-;;;;-1:-1:-1;;9660:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9660:21:4;-1:-1:-1;;;;;9660:21:4;;;;;;;;9699:33;;9660:16;;;9699:33;;9660:16;;9699:33;9358:382;;:::o;4716:988:5:-;4982:22;5032:1;5007:22;5024:4;5007:16;:22::i;:::-;:26;;;;:::i;:::-;5044:18;5065:26;;;:17;:26;;;;;;4982:51;;-1:-1:-1;5198:28:5;;;5194:328;;-1:-1:-1;;;;;5265:18:5;;5243:19;5265:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5316:30;;;;;;:44;;;5433:30;;:17;:30;;;;;:43;;;5194:328;-1:-1:-1;5618:26:5;;;;:17;:26;;;;;;;;5611:33;;;-1:-1:-1;;;;;5662:18:5;;;;;:12;:18;;;;;:34;;;;;;;5655:41;4716:988::o;5999:1079::-;6277:10;:17;6252:22;;6277:21;;6297:1;;6277:21;:::i;:::-;6309:18;6330:24;;;:15;:24;;;;;;6703:10;:26;;6252:46;;-1:-1:-1;6330:24:5;;6252:46;;6703:26;;;;;;:::i;:::-;;;;;;;;;6681:48;;6767:11;6742:10;6753;6742:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6847:28;;;:15;:28;;;;;;;:41;;;7019:24;;;;;7012:31;7054:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;6070:1008;;;5999:1079;:::o;3503:221::-;3588:14;3605:20;3622:2;3605:16;:20::i;:::-;-1:-1:-1;;;;;3636:16:5;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3681:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3503:221:5:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:13;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:13;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:13;;757:42;;747:70;;813:1;810;803:12;828:186;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:13;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:13:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:13;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:13;;3858:180;-1:-1:-1;3858:180:13:o;4043:254::-;4111:6;4119;4172:2;4160:9;4151:7;4147:23;4143:32;4140:52;;;4188:1;4185;4178:12;4140:52;4224:9;4211:23;4201:33;;4253:38;4287:2;4276:9;4272:18;4253:38;:::i;4302:248::-;4370:6;4378;4431:2;4419:9;4410:7;4406:23;4402:32;4399:52;;;4447:1;4444;4437:12;4399:52;-1:-1:-1;;4470:23:13;;;4540:2;4525:18;;;4512:32;;-1:-1:-1;4302:248:13:o;4555:257::-;4596:3;4634:5;4628:12;4661:6;4656:3;4649:19;4677:63;4733:6;4726:4;4721:3;4717:14;4710:4;4703:5;4699:16;4677:63;:::i;:::-;4794:2;4773:15;-1:-1:-1;;4769:29:13;4760:39;;;;4801:4;4756:50;;4555:257;-1:-1:-1;;4555:257:13:o;4817:470::-;4996:3;5034:6;5028:13;5050:53;5096:6;5091:3;5084:4;5076:6;5072:17;5050:53;:::i;:::-;5166:13;;5125:16;;;;5188:57;5166:13;5125:16;5222:4;5210:17;;5188:57;:::i;:::-;5261:20;;4817:470;-1:-1:-1;;;;4817:470:13:o;5864:488::-;-1:-1:-1;;;;;6133:15:13;;;6115:34;;6185:15;;6180:2;6165:18;;6158:43;6232:2;6217:18;;6210:34;;;6280:3;6275:2;6260:18;;6253:31;;;6058:4;;6301:45;;6326:19;;6318:6;6301:45;:::i;:::-;6293:53;5864:488;-1:-1:-1;;;;;;5864:488:13:o;6549:219::-;6698:2;6687:9;6680:21;6661:4;6718:44;6758:2;6747:9;6743:18;6735:6;6718:44;:::i;7901:414::-;8103:2;8085:21;;;8142:2;8122:18;;;8115:30;8181:34;8176:2;8161:18;;8154:62;-1:-1:-1;;;8247:2:13;8232:18;;8225:48;8305:3;8290:19;;7901:414::o;12276:356::-;12478:2;12460:21;;;12497:18;;;12490:30;12556:34;12551:2;12536:18;;12529:62;12623:2;12608:18;;12276:356::o;14578:413::-;14780:2;14762:21;;;14819:2;14799:18;;;14792:30;14858:34;14853:2;14838:18;;14831:62;-1:-1:-1;;;14924:2:13;14909:18;;14902:47;14981:3;14966:19;;14578:413::o;16291:128::-;16331:3;16362:1;16358:6;16355:1;16352:13;16349:39;;;16368:18;;:::i;:::-;-1:-1:-1;16404:9:13;;16291:128::o;16424:120::-;16464:1;16490;16480:35;;16495:18;;:::i;:::-;-1:-1:-1;16529:9:13;;16424:120::o;16549:168::-;16589:7;16655:1;16651;16647:6;16643:14;16640:1;16637:21;16632:1;16625:9;16618:17;16614:45;16611:71;;;16662:18;;:::i;:::-;-1:-1:-1;16702:9:13;;16549:168::o;16722:125::-;16762:4;16790:1;16787;16784:8;16781:34;;;16795:18;;:::i;:::-;-1:-1:-1;16832:9:13;;16722:125::o;16852:258::-;16924:1;16934:113;16948:6;16945:1;16942:13;16934:113;;;17024:11;;;17018:18;17005:11;;;16998:39;16970:2;16963:10;16934:113;;;17065:6;17062:1;17059:13;17056:48;;;-1:-1:-1;;17100:1:13;17082:16;;17075:27;16852:258::o;17115:380::-;17194:1;17190:12;;;;17237;;;17258:61;;17312:4;17304:6;17300:17;17290:27;;17258:61;17365:2;17357:6;17354:14;17334:18;17331:38;17328:161;;;17411:10;17406:3;17402:20;17399:1;17392:31;17446:4;17443:1;17436:15;17474:4;17471:1;17464:15;17500:135;17539:3;-1:-1:-1;;17560:17:13;;17557:43;;;17580:18;;:::i;:::-;-1:-1:-1;17627:1:13;17616:13;;17500:135::o;17640:112::-;17672:1;17698;17688:35;;17703:18;;:::i;:::-;-1:-1:-1;17737:9:13;;17640:112::o;17757:127::-;17818:10;17813:3;17809:20;17806:1;17799:31;17849:4;17846:1;17839:15;17873:4;17870:1;17863:15;17889:127;17950:10;17945:3;17941:20;17938:1;17931:31;17981:4;17978:1;17971:15;18005:4;18002:1;17995:15;18021:127;18082:10;18077:3;18073:20;18070:1;18063:31;18113:4;18110:1;18103:15;18137:4;18134:1;18127:15;18153:127;18214:10;18209:3;18205:20;18202:1;18195:31;18245:4;18242:1;18235:15;18269:4;18266:1;18259:15;18285:127;18346:10;18341:3;18337:20;18334:1;18327:31;18377:4;18374:1;18367:15;18401:4;18398:1;18391:15;18417:131;-1:-1:-1;;;;;;18491:32:13;;18481:43;;18471:71;;18538:1;18535;18528:12

Swarm Source

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