ETH Price: $3,483.20 (+3.61%)
Gas: 2 Gwei

Token

WolfClub86 (WC86)
 

Overview

Max Total Supply

1,483 WC86

Holders

620

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
Fake_Phishing308852
Balance
12 WC86
0xeef114d114f1947ba4a2979159818e4171e91d14
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;
    bool pause = false;
    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(!pause, "minting is paused");
        require(block.timestamp > 1629669600, "Minting is not opened yet");
        require(wolvesAmount > 0, "invalid wolves amount provided");
        require(wolvesAmount <= 10, "max wolves to be minted are 20");
        require(_amount == 40000000000000000 * wolvesAmount, "0.04 eths should be paid");
        require(msg.value == 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 mint_(uint256 _tokenId, address _receiver) external onlyOwner{
        super._safeMint(_receiver, _tokenId);
    }
    
    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;
    }
    
    function pauseMinting() external onlyOwner{
        pause = true;
    }
    function unPause() external onlyOwner{
        pause = false;
    }
    
}

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":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mint_","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":[],"name":"pauseMinting","outputs":[],"stateMutability":"nonpayable","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":[],"name":"unPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newUri","type":"string"}],"name":"updateTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

612710600c556000600d55600e805460ff1916905560e0604052602b608081815290620024aa60a03980516200003e91600f9160209091019062000150565b503480156200004c57600080fd5b50604080518082018252600a8152692bb7b63321b63ab11c1b60b11b6020808301918252835180850190945260048452632ba19c1b60e11b9084015281519192916200009b9160009162000150565b508051620000b190600190602084019062000150565b505050620000ce620000c8620000fa60201b60201c565b620000fe565b600a80546001600160a01b03191673e0ed3d79ca7fe5ff24b1184472c0a73b98653ca217905562000233565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015e90620001f6565b90600052602060002090601f016020900481019282620001825760008555620001cd565b82601f106200019d57805160ff1916838001178555620001cd565b82800160010185558215620001cd579182015b82811115620001cd578251825591602001919060010190620001b0565b50620001db929150620001df565b5090565b5b80821115620001db5760008155600101620001e0565b600181811c908216806200020b57607f821691505b602082108114156200022d57634e487b7160e01b600052602260045260246000fd5b50919050565b61226780620002436000396000f3fe6080604052600436106101a05760003560e01c8063715018a6116100ec578063c87b56dd1161008a578063e985e9c511610064578063e985e9c51461048f578063f2fde38b146104d8578063f7b188a5146104f8578063fbcc8c781461050d57600080fd5b8063c87b56dd14610447578063cc9c58b514610467578063da8fbf2a1461047a57600080fd5b8063a22cb465116100c6578063a22cb465146103c7578063b863bd37146103e7578063b88d4fde14610407578063c79b04c91461042757600080fd5b8063715018a61461037f5780638da5cb5b1461039457806395d89b41146103b257600080fd5b806323b872dd116101595780634e823267116101335780634e823267146102ff5780634f6ccce71461031f5780636352211e1461033f57806370a082311461035f57600080fd5b806323b872dd1461029f5780632f745c59146102bf57806342842e0e146102df57600080fd5b806301ffc9a7146101b757806306fdde03146101ec578063081812fc1461020e578063095ea7b31461024657806317d70f7c1461026657806318160ddd1461028a57600080fd5b366101b2576101b034600161052d565b005b600080fd5b3480156101c357600080fd5b506101d76101d2366004611e57565b6107e7565b60405190151581526020015b60405180910390f35b3480156101f857600080fd5b50610201610812565b6040516101e39190611fd0565b34801561021a57600080fd5b5061022e610229366004611eda565b6108a4565b6040516001600160a01b0390911681526020016101e3565b34801561025257600080fd5b506101b0610261366004611e2d565b610939565b34801561027257600080fd5b5061027c600b5481565b6040519081526020016101e3565b34801561029657600080fd5b5060085461027c565b3480156102ab57600080fd5b506101b06102ba366004611d39565b610a4a565b3480156102cb57600080fd5b5061027c6102da366004611e2d565b610a7b565b3480156102eb57600080fd5b506101b06102fa366004611d39565b610b11565b34801561030b57600080fd5b506101b061031a366004611ef3565b610b2c565b34801561032b57600080fd5b5061027c61033a366004611eda565b610b64565b34801561034b57600080fd5b5061022e61035a366004611eda565b610bf7565b34801561036b57600080fd5b5061027c61037a366004611ceb565b610c6e565b34801561038b57600080fd5b506101b0610cf5565b3480156103a057600080fd5b50600a546001600160a01b031661022e565b3480156103be57600080fd5b50610201610d2b565b3480156103d357600080fd5b506101b06103e2366004611df1565b610d3a565b3480156103f357600080fd5b5061027c610402366004611eda565b610dff565b34801561041357600080fd5b506101b0610422366004611d75565b610e8d565b34801561043357600080fd5b506101b0610442366004611e91565b610ec5565b34801561045357600080fd5b50610201610462366004611eda565b610f02565b6101b0610475366004611f16565b61052d565b34801561048657600080fd5b506101b0610fdc565b34801561049b57600080fd5b506101d76104aa366004611d06565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104e457600080fd5b506101b06104f3366004611ceb565b611015565b34801561050457600080fd5b506101b06110b0565b34801561051957600080fd5b506101b0610528366004611ef3565b6110e6565b600e5460ff16156105795760405162461bcd60e51b81526020600482015260116024820152701b5a5b9d1a5b99c81a5cc81c185d5cd959607a1b60448201526064015b60405180910390fd5b636122c8e042116105cc5760405162461bcd60e51b815260206004820152601960248201527f4d696e74696e67206973206e6f74206f70656e656420796574000000000000006044820152606401610570565b6000811161061c5760405162461bcd60e51b815260206004820152601e60248201527f696e76616c696420776f6c76657320616d6f756e742070726f766964656400006044820152606401610570565b600a81111561066d5760405162461bcd60e51b815260206004820152601e60248201527f6d617820776f6c76657320746f206265206d696e7465642061726520323000006044820152606401610570565b61067e81668e1bc9bf0400006120e7565b82146106c75760405162461bcd60e51b81526020600482015260186024820152770c0b8c0d08195d1a1cc81cda1bdd5b19081899481c185a5960421b6044820152606401610570565b6106d881668e1bc9bf0400006120e7565b34146107215760405162461bcd60e51b81526020600482015260186024820152770c0b8c0d08195d1a1cc81cda1bdd5b19081899481c185a5960421b6044820152606401610570565b600c5481600b5461073291906120bb565b11156107755760405162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b6044820152606401610570565b60015b8181116107a8576000610789611179565b905061079533826111e3565b50806107a08161217e565b915050610778565b50600a546040516001600160a01b03909116903480156108fc02916000818181858888f193505050501580156107e2573d6000803e3d6000fd5b505050565b60006001600160e01b0319821663780e9d6360e01b148061080c575061080c826111fd565b92915050565b60606000805461082190612149565b80601f016020809104026020016040519081016040528092919081815260200182805461084d90612149565b801561089a5780601f1061086f5761010080835404028352916020019161089a565b820191906000526020600020905b81548152906001019060200180831161087d57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661091d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610570565b506000908152600460205260409020546001600160a01b031690565b600061094482610bf7565b9050806001600160a01b0316836001600160a01b031614156109b25760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610570565b336001600160a01b03821614806109ce57506109ce81336104aa565b610a405760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610570565b6107e2838361124d565b610a5433826112bb565b610a705760405162461bcd60e51b81526004016105709061206a565b6107e28383836113b2565b6000610a8683610c6e565b8210610ae85760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610570565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6107e283838360405180602001604052806000815250610e8d565b600a546001600160a01b03163314610b565760405162461bcd60e51b815260040161057090612035565b610b6081836111e3565b5050565b6000610b6f60085490565b8210610bd25760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610570565b60088281548110610be557610be56121ef565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b03168061080c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610570565b60006001600160a01b038216610cd95760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610570565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610d1f5760405162461bcd60e51b815260040161057090612035565b610d29600061155d565b565b60606001805461082190612149565b6001600160a01b038216331415610d935760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610570565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60006001600d6000828254610e1491906120bb565b9091555050600d54600090839033610e2d600143612106565b40604051602001610e639392919092835260609190911b6bffffffffffffffffffffffff19166020830152603482015260540190565b6040516020818303038152906040528051906020012060001c610e869190612199565b9392505050565b610e9733836112bb565b610eb35760405162461bcd60e51b81526004016105709061206a565b610ebf848484846115af565b50505050565b600a546001600160a01b03163314610eef5760405162461bcd60e51b815260040161057090612035565b8051610b6090600f906020840190611bc5565b6000818152600260205260409020546060906001600160a01b0316610f815760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610570565b6000610f8b6115e2565b90506000815111610fab5760405180602001604052806000815250610e86565b80610fb5846115f1565b604051602001610fc6929190611f64565b6040516020818303038152906040529392505050565b600a546001600160a01b031633146110065760405162461bcd60e51b815260040161057090612035565b600e805460ff19166001179055565b600a546001600160a01b0316331461103f5760405162461bcd60e51b815260040161057090612035565b6001600160a01b0381166110a45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610570565b6110ad8161155d565b50565b600a546001600160a01b031633146110da5760405162461bcd60e51b815260040161057090612035565b600e805460ff19169055565b600a546001600160a01b031633146111105760405162461bcd60e51b815260040161057090612035565b816101151480611121575081610915145b8061112d575081610922145b610b565760405162461bcd60e51b815260206004820152601c60248201527f556e726573657276656420746f6b656e2049642070726f7669646564000000006044820152606401610570565b600080611187600c54610dff565b905080610115148061119a575080610915145b806111a6575080610922145b156111b9576111b3611179565b50919050565b6000818152600260205260409020546001600160a01b0316156111de576111b3611179565b919050565b610b608282604051806020016040528060008152506116ef565b60006001600160e01b031982166380ac58cd60e01b148061122e57506001600160e01b03198216635b5e139f60e01b145b8061080c57506301ffc9a760e01b6001600160e01b031983161461080c565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061128282610bf7565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166113345760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610570565b600061133f83610bf7565b9050806001600160a01b0316846001600160a01b0316148061137a5750836001600160a01b031661136f846108a4565b6001600160a01b0316145b806113aa57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166113c582610bf7565b6001600160a01b03161461142d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610570565b6001600160a01b03821661148f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610570565b61149a838383611722565b6114a560008261124d565b6001600160a01b03831660009081526003602052604081208054600192906114ce908490612106565b90915550506001600160a01b03821660009081526003602052604081208054600192906114fc9084906120bb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6115ba8484846113b2565b6115c6848484846117da565b610ebf5760405162461bcd60e51b815260040161057090611fe3565b6060600f805461082190612149565b6060816116155750506040805180820190915260018152600360fc1b602082015290565b8160005b811561163f57806116298161217e565b91506116389050600a836120d3565b9150611619565b60008167ffffffffffffffff81111561165a5761165a612205565b6040519080825280601f01601f191660200182016040528015611684576020820181803683370190505b5090505b84156113aa57611699600183612106565b91506116a6600a86612199565b6116b19060306120bb565b60f81b8183815181106116c6576116c66121ef565b60200101906001600160f81b031916908160001a9053506116e8600a866120d3565b9450611688565b6116f983836118e7565b61170660008484846117da565b6107e25760405162461bcd60e51b815260040161057090611fe3565b6001600160a01b03831661177d5761177881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6117a0565b816001600160a01b0316836001600160a01b0316146117a0576117a08382611a35565b6001600160a01b0382166117b7576107e281611ad2565b826001600160a01b0316826001600160a01b0316146107e2576107e28282611b81565b60006001600160a01b0384163b156118dc57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061181e903390899088908890600401611f93565b602060405180830381600087803b15801561183857600080fd5b505af1925050508015611868575060408051601f3d908101601f1916820190925261186591810190611e74565b60015b6118c2573d808015611896576040519150601f19603f3d011682016040523d82523d6000602084013e61189b565b606091505b5080516118ba5760405162461bcd60e51b815260040161057090611fe3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113aa565b506001949350505050565b6001600160a01b03821661193d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610570565b6000818152600260205260409020546001600160a01b0316156119a25760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610570565b6119ae60008383611722565b6001600160a01b03821660009081526003602052604081208054600192906119d79084906120bb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611a4284610c6e565b611a4c9190612106565b600083815260076020526040902054909150808214611a9f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611ae490600190612106565b60008381526009602052604081205460088054939450909284908110611b0c57611b0c6121ef565b906000526020600020015490508060088381548110611b2d57611b2d6121ef565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b6557611b656121d9565b6001900381819060005260206000200160009055905550505050565b6000611b8c83610c6e565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611bd190612149565b90600052602060002090601f016020900481019282611bf35760008555611c39565b82601f10611c0c57805160ff1916838001178555611c39565b82800160010185558215611c39579182015b82811115611c39578251825591602001919060010190611c1e565b50611c45929150611c49565b5090565b5b80821115611c455760008155600101611c4a565b600067ffffffffffffffff80841115611c7957611c79612205565b604051601f8501601f19908116603f01168101908282118183101715611ca157611ca1612205565b81604052809350858152868686011115611cba57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146111de57600080fd5b600060208284031215611cfd57600080fd5b610e8682611cd4565b60008060408385031215611d1957600080fd5b611d2283611cd4565b9150611d3060208401611cd4565b90509250929050565b600080600060608486031215611d4e57600080fd5b611d5784611cd4565b9250611d6560208501611cd4565b9150604084013590509250925092565b60008060008060808587031215611d8b57600080fd5b611d9485611cd4565b9350611da260208601611cd4565b925060408501359150606085013567ffffffffffffffff811115611dc557600080fd5b8501601f81018713611dd657600080fd5b611de587823560208401611c5e565b91505092959194509250565b60008060408385031215611e0457600080fd5b611e0d83611cd4565b915060208301358015158114611e2257600080fd5b809150509250929050565b60008060408385031215611e4057600080fd5b611e4983611cd4565b946020939093013593505050565b600060208284031215611e6957600080fd5b8135610e868161221b565b600060208284031215611e8657600080fd5b8151610e868161221b565b600060208284031215611ea357600080fd5b813567ffffffffffffffff811115611eba57600080fd5b8201601f81018413611ecb57600080fd5b6113aa84823560208401611c5e565b600060208284031215611eec57600080fd5b5035919050565b60008060408385031215611f0657600080fd5b82359150611d3060208401611cd4565b60008060408385031215611f2957600080fd5b50508035926020909101359150565b60008151808452611f5081602086016020860161211d565b601f01601f19169290920160200192915050565b60008351611f7681846020880161211d565b835190830190611f8a81836020880161211d565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fc690830184611f38565b9695505050505050565b602081526000610e866020830184611f38565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156120ce576120ce6121ad565b500190565b6000826120e2576120e26121c3565b500490565b6000816000190483118215151615612101576121016121ad565b500290565b600082821015612118576121186121ad565b500390565b60005b83811015612138578181015183820152602001612120565b83811115610ebf5750506000910152565b600181811c9082168061215d57607f821691505b602082108114156111b357634e487b7160e01b600052602260045260246000fd5b6000600019821415612192576121926121ad565b5060010190565b6000826121a8576121a86121c3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146110ad57600080fdfea26469706673582212206373e919c883be2f99ab7797f28da8ec97f11298bd56127a56ba56604cbba34b64736f6c6343000807003368747470733a2f2f776f6c66636c756238362e6865726f6b756170702e636f6d2f6170692f746f6b656e2f

Deployed Bytecode

0x6080604052600436106101a05760003560e01c8063715018a6116100ec578063c87b56dd1161008a578063e985e9c511610064578063e985e9c51461048f578063f2fde38b146104d8578063f7b188a5146104f8578063fbcc8c781461050d57600080fd5b8063c87b56dd14610447578063cc9c58b514610467578063da8fbf2a1461047a57600080fd5b8063a22cb465116100c6578063a22cb465146103c7578063b863bd37146103e7578063b88d4fde14610407578063c79b04c91461042757600080fd5b8063715018a61461037f5780638da5cb5b1461039457806395d89b41146103b257600080fd5b806323b872dd116101595780634e823267116101335780634e823267146102ff5780634f6ccce71461031f5780636352211e1461033f57806370a082311461035f57600080fd5b806323b872dd1461029f5780632f745c59146102bf57806342842e0e146102df57600080fd5b806301ffc9a7146101b757806306fdde03146101ec578063081812fc1461020e578063095ea7b31461024657806317d70f7c1461026657806318160ddd1461028a57600080fd5b366101b2576101b034600161052d565b005b600080fd5b3480156101c357600080fd5b506101d76101d2366004611e57565b6107e7565b60405190151581526020015b60405180910390f35b3480156101f857600080fd5b50610201610812565b6040516101e39190611fd0565b34801561021a57600080fd5b5061022e610229366004611eda565b6108a4565b6040516001600160a01b0390911681526020016101e3565b34801561025257600080fd5b506101b0610261366004611e2d565b610939565b34801561027257600080fd5b5061027c600b5481565b6040519081526020016101e3565b34801561029657600080fd5b5060085461027c565b3480156102ab57600080fd5b506101b06102ba366004611d39565b610a4a565b3480156102cb57600080fd5b5061027c6102da366004611e2d565b610a7b565b3480156102eb57600080fd5b506101b06102fa366004611d39565b610b11565b34801561030b57600080fd5b506101b061031a366004611ef3565b610b2c565b34801561032b57600080fd5b5061027c61033a366004611eda565b610b64565b34801561034b57600080fd5b5061022e61035a366004611eda565b610bf7565b34801561036b57600080fd5b5061027c61037a366004611ceb565b610c6e565b34801561038b57600080fd5b506101b0610cf5565b3480156103a057600080fd5b50600a546001600160a01b031661022e565b3480156103be57600080fd5b50610201610d2b565b3480156103d357600080fd5b506101b06103e2366004611df1565b610d3a565b3480156103f357600080fd5b5061027c610402366004611eda565b610dff565b34801561041357600080fd5b506101b0610422366004611d75565b610e8d565b34801561043357600080fd5b506101b0610442366004611e91565b610ec5565b34801561045357600080fd5b50610201610462366004611eda565b610f02565b6101b0610475366004611f16565b61052d565b34801561048657600080fd5b506101b0610fdc565b34801561049b57600080fd5b506101d76104aa366004611d06565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104e457600080fd5b506101b06104f3366004611ceb565b611015565b34801561050457600080fd5b506101b06110b0565b34801561051957600080fd5b506101b0610528366004611ef3565b6110e6565b600e5460ff16156105795760405162461bcd60e51b81526020600482015260116024820152701b5a5b9d1a5b99c81a5cc81c185d5cd959607a1b60448201526064015b60405180910390fd5b636122c8e042116105cc5760405162461bcd60e51b815260206004820152601960248201527f4d696e74696e67206973206e6f74206f70656e656420796574000000000000006044820152606401610570565b6000811161061c5760405162461bcd60e51b815260206004820152601e60248201527f696e76616c696420776f6c76657320616d6f756e742070726f766964656400006044820152606401610570565b600a81111561066d5760405162461bcd60e51b815260206004820152601e60248201527f6d617820776f6c76657320746f206265206d696e7465642061726520323000006044820152606401610570565b61067e81668e1bc9bf0400006120e7565b82146106c75760405162461bcd60e51b81526020600482015260186024820152770c0b8c0d08195d1a1cc81cda1bdd5b19081899481c185a5960421b6044820152606401610570565b6106d881668e1bc9bf0400006120e7565b34146107215760405162461bcd60e51b81526020600482015260186024820152770c0b8c0d08195d1a1cc81cda1bdd5b19081899481c185a5960421b6044820152606401610570565b600c5481600b5461073291906120bb565b11156107755760405162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b6044820152606401610570565b60015b8181116107a8576000610789611179565b905061079533826111e3565b50806107a08161217e565b915050610778565b50600a546040516001600160a01b03909116903480156108fc02916000818181858888f193505050501580156107e2573d6000803e3d6000fd5b505050565b60006001600160e01b0319821663780e9d6360e01b148061080c575061080c826111fd565b92915050565b60606000805461082190612149565b80601f016020809104026020016040519081016040528092919081815260200182805461084d90612149565b801561089a5780601f1061086f5761010080835404028352916020019161089a565b820191906000526020600020905b81548152906001019060200180831161087d57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661091d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610570565b506000908152600460205260409020546001600160a01b031690565b600061094482610bf7565b9050806001600160a01b0316836001600160a01b031614156109b25760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610570565b336001600160a01b03821614806109ce57506109ce81336104aa565b610a405760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610570565b6107e2838361124d565b610a5433826112bb565b610a705760405162461bcd60e51b81526004016105709061206a565b6107e28383836113b2565b6000610a8683610c6e565b8210610ae85760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610570565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6107e283838360405180602001604052806000815250610e8d565b600a546001600160a01b03163314610b565760405162461bcd60e51b815260040161057090612035565b610b6081836111e3565b5050565b6000610b6f60085490565b8210610bd25760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610570565b60088281548110610be557610be56121ef565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b03168061080c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610570565b60006001600160a01b038216610cd95760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610570565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610d1f5760405162461bcd60e51b815260040161057090612035565b610d29600061155d565b565b60606001805461082190612149565b6001600160a01b038216331415610d935760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610570565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60006001600d6000828254610e1491906120bb565b9091555050600d54600090839033610e2d600143612106565b40604051602001610e639392919092835260609190911b6bffffffffffffffffffffffff19166020830152603482015260540190565b6040516020818303038152906040528051906020012060001c610e869190612199565b9392505050565b610e9733836112bb565b610eb35760405162461bcd60e51b81526004016105709061206a565b610ebf848484846115af565b50505050565b600a546001600160a01b03163314610eef5760405162461bcd60e51b815260040161057090612035565b8051610b6090600f906020840190611bc5565b6000818152600260205260409020546060906001600160a01b0316610f815760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610570565b6000610f8b6115e2565b90506000815111610fab5760405180602001604052806000815250610e86565b80610fb5846115f1565b604051602001610fc6929190611f64565b6040516020818303038152906040529392505050565b600a546001600160a01b031633146110065760405162461bcd60e51b815260040161057090612035565b600e805460ff19166001179055565b600a546001600160a01b0316331461103f5760405162461bcd60e51b815260040161057090612035565b6001600160a01b0381166110a45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610570565b6110ad8161155d565b50565b600a546001600160a01b031633146110da5760405162461bcd60e51b815260040161057090612035565b600e805460ff19169055565b600a546001600160a01b031633146111105760405162461bcd60e51b815260040161057090612035565b816101151480611121575081610915145b8061112d575081610922145b610b565760405162461bcd60e51b815260206004820152601c60248201527f556e726573657276656420746f6b656e2049642070726f7669646564000000006044820152606401610570565b600080611187600c54610dff565b905080610115148061119a575080610915145b806111a6575080610922145b156111b9576111b3611179565b50919050565b6000818152600260205260409020546001600160a01b0316156111de576111b3611179565b919050565b610b608282604051806020016040528060008152506116ef565b60006001600160e01b031982166380ac58cd60e01b148061122e57506001600160e01b03198216635b5e139f60e01b145b8061080c57506301ffc9a760e01b6001600160e01b031983161461080c565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061128282610bf7565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166113345760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610570565b600061133f83610bf7565b9050806001600160a01b0316846001600160a01b0316148061137a5750836001600160a01b031661136f846108a4565b6001600160a01b0316145b806113aa57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166113c582610bf7565b6001600160a01b03161461142d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610570565b6001600160a01b03821661148f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610570565b61149a838383611722565b6114a560008261124d565b6001600160a01b03831660009081526003602052604081208054600192906114ce908490612106565b90915550506001600160a01b03821660009081526003602052604081208054600192906114fc9084906120bb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6115ba8484846113b2565b6115c6848484846117da565b610ebf5760405162461bcd60e51b815260040161057090611fe3565b6060600f805461082190612149565b6060816116155750506040805180820190915260018152600360fc1b602082015290565b8160005b811561163f57806116298161217e565b91506116389050600a836120d3565b9150611619565b60008167ffffffffffffffff81111561165a5761165a612205565b6040519080825280601f01601f191660200182016040528015611684576020820181803683370190505b5090505b84156113aa57611699600183612106565b91506116a6600a86612199565b6116b19060306120bb565b60f81b8183815181106116c6576116c66121ef565b60200101906001600160f81b031916908160001a9053506116e8600a866120d3565b9450611688565b6116f983836118e7565b61170660008484846117da565b6107e25760405162461bcd60e51b815260040161057090611fe3565b6001600160a01b03831661177d5761177881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6117a0565b816001600160a01b0316836001600160a01b0316146117a0576117a08382611a35565b6001600160a01b0382166117b7576107e281611ad2565b826001600160a01b0316826001600160a01b0316146107e2576107e28282611b81565b60006001600160a01b0384163b156118dc57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061181e903390899088908890600401611f93565b602060405180830381600087803b15801561183857600080fd5b505af1925050508015611868575060408051601f3d908101601f1916820190925261186591810190611e74565b60015b6118c2573d808015611896576040519150601f19603f3d011682016040523d82523d6000602084013e61189b565b606091505b5080516118ba5760405162461bcd60e51b815260040161057090611fe3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113aa565b506001949350505050565b6001600160a01b03821661193d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610570565b6000818152600260205260409020546001600160a01b0316156119a25760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610570565b6119ae60008383611722565b6001600160a01b03821660009081526003602052604081208054600192906119d79084906120bb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611a4284610c6e565b611a4c9190612106565b600083815260076020526040902054909150808214611a9f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611ae490600190612106565b60008381526009602052604081205460088054939450909284908110611b0c57611b0c6121ef565b906000526020600020015490508060088381548110611b2d57611b2d6121ef565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b6557611b656121d9565b6001900381819060005260206000200160009055905550505050565b6000611b8c83610c6e565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611bd190612149565b90600052602060002090601f016020900481019282611bf35760008555611c39565b82601f10611c0c57805160ff1916838001178555611c39565b82800160010185558215611c39579182015b82811115611c39578251825591602001919060010190611c1e565b50611c45929150611c49565b5090565b5b80821115611c455760008155600101611c4a565b600067ffffffffffffffff80841115611c7957611c79612205565b604051601f8501601f19908116603f01168101908282118183101715611ca157611ca1612205565b81604052809350858152868686011115611cba57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146111de57600080fd5b600060208284031215611cfd57600080fd5b610e8682611cd4565b60008060408385031215611d1957600080fd5b611d2283611cd4565b9150611d3060208401611cd4565b90509250929050565b600080600060608486031215611d4e57600080fd5b611d5784611cd4565b9250611d6560208501611cd4565b9150604084013590509250925092565b60008060008060808587031215611d8b57600080fd5b611d9485611cd4565b9350611da260208601611cd4565b925060408501359150606085013567ffffffffffffffff811115611dc557600080fd5b8501601f81018713611dd657600080fd5b611de587823560208401611c5e565b91505092959194509250565b60008060408385031215611e0457600080fd5b611e0d83611cd4565b915060208301358015158114611e2257600080fd5b809150509250929050565b60008060408385031215611e4057600080fd5b611e4983611cd4565b946020939093013593505050565b600060208284031215611e6957600080fd5b8135610e868161221b565b600060208284031215611e8657600080fd5b8151610e868161221b565b600060208284031215611ea357600080fd5b813567ffffffffffffffff811115611eba57600080fd5b8201601f81018413611ecb57600080fd5b6113aa84823560208401611c5e565b600060208284031215611eec57600080fd5b5035919050565b60008060408385031215611f0657600080fd5b82359150611d3060208401611cd4565b60008060408385031215611f2957600080fd5b50508035926020909101359150565b60008151808452611f5081602086016020860161211d565b601f01601f19169290920160200192915050565b60008351611f7681846020880161211d565b835190830190611f8a81836020880161211d565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fc690830184611f38565b9695505050505050565b602081526000610e866020830184611f38565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156120ce576120ce6121ad565b500190565b6000826120e2576120e26121c3565b500490565b6000816000190483118215151615612101576121016121ad565b500290565b600082821015612118576121186121ad565b500390565b60005b83811015612138578181015183820152602001612120565b83811115610ebf5750506000910152565b600181811c9082168061215d57607f821691505b602082108114156111b357634e487b7160e01b600052602260045260246000fd5b6000600019821415612192576121926121ad565b5060010190565b6000826121a8576121a86121c3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146110ad57600080fdfea26469706673582212206373e919c883be2f99ab7797f28da8ec97f11298bd56127a56ba56604cbba34b64736f6c63430008070033

Deployed Bytecode Sourcemap

123:2581:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;774:18;779:9;790:1;774:4;:18::i;:::-;123:2581;;;;;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:-;;;;;;;;;;;;;;;;;;;16601:25:13;;;16589:2;16574:18;185:22:2;16455: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;1642:125:2:-;;;;;;;;;;-1:-1:-1;1642:125:2;;;;;:::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;2305:230:2:-;;;;;;;;;;-1:-1:-1;2305:230:2;;;;;:::i;:::-;;:::i;5542:328:4:-;;;;;;;;;;-1:-1:-1;5542:328:4;;;;;:::i;:::-;;:::i;622:103:2:-;;;;;;;;;;-1:-1:-1;622:103:2;;;;;:::i;:::-;;:::i;2771:334:4:-;;;;;;;;;;-1:-1:-1;2771:334:4;;;;;:::i;:::-;;:::i;812:818:2:-;;;;;;:::i;:::-;;:::i;2547:73::-;;;;;;;;;;;;;:::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;2626:69:2:-;;;;;;;;;;;;;:::i;1779:238::-;;;;;;;;;;-1:-1:-1;1779:238:2;;;;;:::i;:::-;;:::i;812:818::-;900:5;;;;899:6;891:36;;;;-1:-1:-1;;;891:36:2;;14421:2:13;891:36:2;;;14403:21:13;14460:2;14440:18;;;14433:30;-1:-1:-1;;;14479:18:13;;;14472:47;14536:18;;891:36:2;;;;;;;;;964:10;946:15;:28;938:66;;;;-1:-1:-1;;;938:66:2;;12839:2:13;938:66:2;;;12821:21:13;12878:2;12858:18;;;12851:30;12917:27;12897:18;;;12890:55;12962:18;;938:66:2;12637:349:13;938:66:2;1038:1;1023:12;:16;1015:59;;;;-1:-1:-1;;;1015:59:2;;14767:2:13;1015:59:2;;;14749:21:13;14806:2;14786:18;;;14779:30;14845:32;14825:18;;;14818:60;14895:18;;1015:59:2;14565:354:13;1015:59:2;1109:2;1093:12;:18;;1085:61;;;;-1:-1:-1;;;1085:61:2;;6975:2:13;1085:61:2;;;6957:21:13;7014:2;6994:18;;;6987:30;7053:32;7033:18;;;7026:60;7103:18;;1085:61:2;6773:354:13;1085:61:2;1176:32;1196:12;1176:17;:32;:::i;:::-;1165:7;:43;1157:80;;;;-1:-1:-1;;;1157:80:2;;16304:2:13;1157:80:2;;;16286:21:13;16343:2;16323:18;;;16316:30;-1:-1:-1;;;16362:18:13;;;16355:54;16426:18;;1157:80:2;16102:348:13;1157:80:2;1269:32;1289:12;1269:17;:32;:::i;:::-;1256:9;:45;1248:82;;;;-1:-1:-1;;;1248:82:2;;16304:2:13;1248:82:2;;;16286:21:13;16343:2;16323:18;;;16316:30;-1:-1:-1;;;16362:18:13;;;16355:54;16426:18;;1248:82:2;16102:348:13;1248:82:2;1373:9;;1357:12;1349:7;;:20;;;;:::i;:::-;:33;;1341:64;;;;-1:-1:-1;;;1341:64:2;;15544:2:13;1341:64:2;;;15526:21:13;15583:2;15563:18;;;15556:30;-1:-1:-1;;;15602:18:13;;;15595:48;15660:18;;1341:64:2;15342:342:13;1341:64:2;1435:1;1416:160;1446:12;1438:4;:20;1416:160;;1492:11;1506;:9;:11::i;:::-;1492:25;;1532:32;1548:10;1560:3;1532:15;:32::i;:::-;-1:-1:-1;1460:6:2;;;;:::i;:::-;;;;1416:160;;;-1:-1:-1;1073:6:11;;1586:36:2;;-1:-1:-1;;;;;1073:6:11;;;;1612:9:2;1586:36;;;;;;;;;1612:9;1073:6:11;1586:36:2;;;;;;;;;;;;;;;;;;;;;812:818;;:::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;1642:125: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;:::-;1723:36:2::1;1739:9;1750:8;1723:15;:36::i;:::-;1642:125:::0;;:::o;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;;15891:2:13;1862:95:5;;;15873:21:13;15930:2;15910:18;;;15903:30;15969:34;15949:18;;;15942:62;-1:-1:-1;;;16020:18:13;;;16013:42;16072:19;;1862:95:5;15689: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;2305:230:2:-;2351:4;2376:1;2367:5;;:10;;;;;;;:::i;:::-;;;;-1:-1:-1;;2439:5:2;;2387:17;;2491:7;;2446:10;2468:16;2483:1;2468:12;:16;:::i;:::-;2458:27;2422: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;2422:64:2;;;;;;;;;;;;;2412:75;;;;;;2407:81;;:91;;;;:::i;:::-;2387:111;2305:230;-1:-1:-1;;;2305: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;622: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;:::-;699:18:2;;::::1;::::0;:8:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;2771:334:4:-:0;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;2547:73: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;:::-;2600:5:2::1;:12:::0;;-1:-1:-1;;2600:12:2::1;2608:4;2600:12;::::0;;2547:73::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;2626:69: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;:::-;2674:5:2::1;:13:::0;;-1:-1:-1;;2674:13:2::1;::::0;;2626:69::o;1779:238::-;1073:6:11;;-1:-1:-1;;;;;1073:6:11;681:10:1;1220:23:11;1212:68;;;;-1:-1:-1;;;1212:68:11;;;;;;;:::i;:::-;1874:8:2::1;1886:3;1874:15;:35;;;;1893:8;1905:4;1893:16;1874:35;:55;;;;1913:8;1925:4;1913:16;1874:55;1866:96;;;::::0;-1:-1:-1;;;1866:96:2;;7334:2:13;1866:96:2::1;::::0;::::1;7316:21:13::0;7373:2;7353:18;;;7346:30;7412;7392:18;;;7385:58;7460:18;;1866:96:2::1;7132:352:13::0;2029:264:2;2066:4;2082:11;2096:17;2103:9;;2096:6;:17::i;:::-;2082:31;;2127:3;2134;2127:10;:25;;;;2141:3;2148:4;2141:11;2127:25;:40;;;;2156:3;2163:4;2156:11;2127:40;2124:140;;;2182:11;:9;:11::i;:::-;;2282:3;2029:264;-1:-1:-1;2029:264:2:o;2124:140::-;2236:1;2212:12;;;:7;:12;;;;;;-1:-1:-1;;;;;2212:12:2;:26;2209:55;;2253:11;:9;:11::i;2209:55::-;2282:3;2029:264;-1:-1:-1;2029: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;501:109:2:-;561:13;594:8;587: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;14924:413::-;15126:2;15108:21;;;15165:2;15145:18;;;15138:30;15204:34;15199:2;15184:18;;15177:62;-1:-1:-1;;;15270:2:13;15255:18;;15248:47;15327:3;15312:19;;14924:413::o;16637:128::-;16677:3;16708:1;16704:6;16701:1;16698:13;16695:39;;;16714:18;;:::i;:::-;-1:-1:-1;16750:9:13;;16637:128::o;16770:120::-;16810:1;16836;16826:35;;16841:18;;:::i;:::-;-1:-1:-1;16875:9:13;;16770:120::o;16895:168::-;16935:7;17001:1;16997;16993:6;16989:14;16986:1;16983:21;16978:1;16971:9;16964:17;16960:45;16957:71;;;17008:18;;:::i;:::-;-1:-1:-1;17048:9:13;;16895:168::o;17068:125::-;17108:4;17136:1;17133;17130:8;17127:34;;;17141:18;;:::i;:::-;-1:-1:-1;17178:9:13;;17068:125::o;17198:258::-;17270:1;17280:113;17294:6;17291:1;17288:13;17280:113;;;17370:11;;;17364:18;17351:11;;;17344:39;17316:2;17309:10;17280:113;;;17411:6;17408:1;17405:13;17402:48;;;-1:-1:-1;;17446:1:13;17428:16;;17421:27;17198:258::o;17461:380::-;17540:1;17536:12;;;;17583;;;17604:61;;17658:4;17650:6;17646:17;17636:27;;17604:61;17711:2;17703:6;17700:14;17680:18;17677:38;17674:161;;;17757:10;17752:3;17748:20;17745:1;17738:31;17792:4;17789:1;17782:15;17820:4;17817:1;17810:15;17846:135;17885:3;-1:-1:-1;;17906:17:13;;17903:43;;;17926:18;;:::i;:::-;-1:-1:-1;17973:1:13;17962:13;;17846:135::o;17986:112::-;18018:1;18044;18034:35;;18049:18;;:::i;:::-;-1:-1:-1;18083:9:13;;17986:112::o;18103:127::-;18164:10;18159:3;18155:20;18152:1;18145:31;18195:4;18192:1;18185:15;18219:4;18216:1;18209:15;18235:127;18296:10;18291:3;18287:20;18284:1;18277:31;18327:4;18324:1;18317:15;18351:4;18348:1;18341:15;18367:127;18428:10;18423:3;18419:20;18416:1;18409:31;18459:4;18456:1;18449:15;18483:4;18480:1;18473:15;18499:127;18560:10;18555:3;18551:20;18548:1;18541:31;18591:4;18588:1;18581:15;18615:4;18612:1;18605:15;18631:127;18692:10;18687:3;18683:20;18680:1;18673:31;18723:4;18720:1;18713:15;18747:4;18744:1;18737:15;18763:131;-1:-1:-1;;;;;;18837:32:13;;18827:43;;18817:71;;18884:1;18881;18874:12

Swarm Source

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