ETH Price: $2,945.39 (-6.71%)
Gas: 7 Gwei

Token

Guardians of the Metaverse (METAG)
 

Overview

Max Total Supply

10,000 METAG

Holders

3,120

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
16 METAG
0x305ea6f95e1d3f2d1152bc3f6b7c412504da09ac
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

[METAGUARDIANS: VILLAINS](https://opensea.io/collection/metavillains) Metaguardians are a collection of 10,000 unique 3D hero-like avatars living as NFTs on the blockchain. Guardians are stored as ERC721 tokens on the Ethereum blockchain. Not only are Guardians dope designed character-collectibles, they also serve as your ticket to a world of exclusive content. From developing new collections to fill our universe, to metaverse avatars, and of course our new upcoming P2E game!

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MetaGuardians

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : MetaGuardians.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.4;

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

contract MetaGuardians is ERC721, Ownable { 

    bool public saleActive = false;
    bool public presaleActive = false;
    
    string internal baseTokenURI;

    uint public price = 0.08 ether;
    uint public totalSupply = 10000;
    uint public nonce = 0;
    uint public maxTx = 3;
    
    event Mint(address owner, uint qty);
    event Giveaway(address to, uint qty);
    event Withdraw(uint amount);

    address public m1;
    address public m2;
    address public m3;
    address public m4;
    address public m5;

    mapping (address => uint256) public presaleWallets;
    
    constructor() ERC721("Guardians of the Metaverse", "METAG") {}
    
    function setPrice(uint newPrice) external onlyOwner {
        price = newPrice;
    }
    
    function setBaseTokenURI(string calldata _uri) external onlyOwner {
        baseTokenURI = _uri;
    }
    
    function setTotalSupply(uint newSupply) external onlyOwner {
        totalSupply = newSupply;
    }

    function setPresaleActive(bool val) public onlyOwner {
        presaleActive = val;
    }

    function setSaleActive(bool val) public onlyOwner {
        saleActive = val;
    }

    function setPresaleWallets(address[] memory _a, uint256[] memory _amount) public onlyOwner {
        for(uint256 i; i < _a.length; i++){
            presaleWallets[_a[i]] = _amount[i];
        }
    }

    function editPresaleWallets(address[] memory _a, uint256[] memory _amount) public onlyOwner {
        for(uint256 i; i < _a.length; i++){
            presaleWallets[_a[i]] = _amount[i];
        }
    }

    function setMembersAddresses(address[] memory _a) public onlyOwner {
        m1 = _a[0];
        m2 = _a[1];
        m3 = _a[2];
        m4 = _a[3];
        m5 = _a[4];
    }

    function withdrawTeam(uint256 amount) public payable onlyOwner {
        uint256 percent = amount / 100;
        require(payable(m1).send(percent * 20));
        require(payable(m2).send(percent * 20));
        require(payable(m3).send(percent * 20));
        require(payable(m4).send(percent * 20));
        require(payable(m5).send(percent * 20));
    }
    
    function setMaxTx(uint newMax) external onlyOwner {
        maxTx = newMax;
    }
    
    function getAssetsByOwner(address _owner) public view returns(uint[] memory) {
        uint[] memory result = new uint[](balanceOf(_owner));
        uint counter = 0;
        for (uint i = 0; i < nonce; i++) {
            if (ownerOf(i) == _owner) {
                result[counter] = i;
                counter++;
            }
        }
        return result;
    }
    
    function getMyAssets() external view returns(uint[] memory){
        return getAssetsByOwner(tx.origin);
    }

    function _baseURI() internal override view returns (string memory) {
        return baseTokenURI;
    }
    
    function giveaway(address to, uint qty) external onlyOwner {
        require(qty + nonce <= totalSupply, "SUPPLY: Value exceeds totalSupply");
        for(uint i = 0; i < qty; i++){
            uint tokenId = nonce;
            _safeMint(to, tokenId);
            nonce++;
        }
        emit Giveaway(to, qty);
    }

    function buyPresale(uint qty) external payable {
        uint256 qtyAllowed = presaleWallets[msg.sender];
        require(presaleActive, "TRANSACTION: Presale is not active");
        require(qtyAllowed > 0, "TRANSACTION: You can't mint on presale");
        require(qty + nonce <= totalSupply, "SUPPLY: Value exceeds totalSupply");
        require(msg.value == price * qty, "PAYMENT: invalid value");
        presaleWallets[msg.sender] = qtyAllowed - qty;
        for(uint i = 0; i < qty; i++){
            uint tokenId = nonce;
            _safeMint(msg.sender, tokenId);
            nonce++;
        }
        emit Mint(msg.sender, qty);
    }
    
    function buy(uint qty) external payable {
        require(saleActive, "TRANSACTION: sale is not active");
        require(qty <= maxTx || qty < 1, "TRANSACTION: qty of mints not alowed");
        require(qty + nonce <= totalSupply, "SUPPLY: Value exceeds totalSupply");
        require(msg.value == price * qty, "PAYMENT: invalid value");
        for(uint i = 0; i < qty; i++){
            uint tokenId = nonce;
            _safeMint(msg.sender, tokenId);
            nonce++;
        }
        emit Mint(msg.sender, qty);
    }
    
    function withdrawOwner() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }
}

File 2 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 3 of 11 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 11 : 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 6 of 11 : 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 7 of 11 : 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 8 of 11 : 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 9 of 11 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 10 of 11 : 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 11 of 11 : 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);
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "evmVersion": "istanbul",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

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":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"qty","type":"uint256"}],"name":"Giveaway","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"qty","type":"uint256"}],"name":"Mint","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"buyPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_a","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"editPresaleWallets","outputs":[],"stateMutability":"nonpayable","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"}],"name":"getAssetsByOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMyAssets","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"giveaway","outputs":[],"stateMutability":"nonpayable","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":[],"name":"m1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"m2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"m3","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"m4","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"m5","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nonce","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleWallets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_a","type":"address[]"}],"name":"setMembersAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setPresaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_a","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"setPresaleWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setTotalSupply","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":"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":"withdrawOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawTeam","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526000600660146101000a81548160ff0219169083151502179055506000600660156101000a81548160ff02191690831515021790555067011c37937e0800006008556127106009556000600a556003600b553480156200006357600080fd5b506040518060400160405280601a81526020017f477561726469616e73206f6620746865204d65746176657273650000000000008152506040518060400160405280600581526020017f4d455441470000000000000000000000000000000000000000000000000000008152508160009080519060200190620000e8929190620001f8565b50806001908051906020019062000101929190620001f8565b50505062000124620001186200012a60201b60201c565b6200013260201b60201c565b6200030d565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020690620002a8565b90600052602060002090601f0160209004810192826200022a576000855562000276565b82601f106200024557805160ff191683800117855562000276565b8280016001018555821562000276579182015b828111156200027557825182559160200191906001019062000258565b5b50905062000285919062000289565b5090565b5b80821115620002a45760008160009055506001016200028a565b5090565b60006002820490506001821680620002c157607f821691505b60208210811415620002d857620002d7620002de565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614e47806200031d6000396000f3fe6080604052600436106102675760003560e01c8063715018a611610144578063affed0e0116100b6578063d96a094a1161007a578063d96a094a1461090d578063e8cc00ad14610929578063e985e9c514610940578063f2fde38b1461097d578063f7ea7a3d146109a6578063fd2b0492146109cf57610267565b8063affed0e01461082a578063b88d4fde14610855578063bc3371821461087e578063c87b56dd146108a7578063d27b1be9146108e457610267565b806391b7f5ed1161010857806391b7f5ed1461072c57806395d89b4114610755578063a0230b4f14610780578063a035b1fe146107ab578063a22cb465146107d6578063a77f92ff146107ff57610267565b8063715018a61461066b5780637437681e14610682578063841718a6146106ad5780638da5cb5b146106d657806391aa69ca1461070157610267565b80633f8121a2116101dd57806353135ca0116101a157806353135ca01461054557806361928084146105705780636352211e1461059b57806367755adf146105d857806368428a1b1461060357806370a082311461062e57610267565b80633f8121a21461048357806342842e0e146104ac57806343970161146104d557806347002d1d146104fe57806349c322171461052957610267565b806318160ddd1161022f57806318160ddd1461036357806323b872dd1461038e578063276f0934146103b75780632e6b106c146103f457806330176e131461041d57806330b2264e1461044657610267565b806301ffc9a71461026c578063050225ea146102a957806306fdde03146102d2578063081812fc146102fd578063095ea7b31461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613a2b565b6109eb565b6040516102a09190614018565b60405180910390f35b3480156102b557600080fd5b506102d060048036038101906102cb9190613919565b610acd565b005b3480156102de57600080fd5b506102e7610c21565b6040516102f49190614033565b60405180910390f35b34801561030957600080fd5b50610324600480360381019061031f9190613ac2565b610cb3565b6040516103319190613f66565b60405180910390f35b34801561034657600080fd5b50610361600480360381019061035c9190613919565b610d38565b005b34801561036f57600080fd5b50610378610e50565b6040516103859190614315565b60405180910390f35b34801561039a57600080fd5b506103b560048036038101906103b09190613813565b610e56565b005b3480156103c357600080fd5b506103de60048036038101906103d991906137ae565b610eb6565b6040516103eb9190613ff6565b60405180910390f35b34801561040057600080fd5b5061041b60048036038101906104169190613996565b610ff0565b005b34801561042957600080fd5b50610444600480360381019061043f9190613a7d565b611154565b005b34801561045257600080fd5b5061046d600480360381019061046891906137ae565b6111e6565b60405161047a9190614315565b60405180910390f35b34801561048f57600080fd5b506104aa60048036038101906104a59190613a02565b6111fe565b005b3480156104b857600080fd5b506104d360048036038101906104ce9190613813565b611297565b005b3480156104e157600080fd5b506104fc60048036038101906104f79190613955565b6112b7565b005b34801561050a57600080fd5b506105136115c0565b6040516105209190613ff6565b60405180910390f35b610543600480360381019061053e9190613ac2565b6115d0565b005b34801561055157600080fd5b5061055a61181c565b6040516105679190614018565b60405180910390f35b34801561057c57600080fd5b5061058561182f565b6040516105929190613f66565b60405180910390f35b3480156105a757600080fd5b506105c260048036038101906105bd9190613ac2565b611855565b6040516105cf9190613f66565b60405180910390f35b3480156105e457600080fd5b506105ed611907565b6040516105fa9190613f66565b60405180910390f35b34801561060f57600080fd5b5061061861192d565b6040516106259190614018565b60405180910390f35b34801561063a57600080fd5b50610655600480360381019061065091906137ae565b611940565b6040516106629190614315565b60405180910390f35b34801561067757600080fd5b506106806119f8565b005b34801561068e57600080fd5b50610697611a80565b6040516106a49190614315565b60405180910390f35b3480156106b957600080fd5b506106d460048036038101906106cf9190613a02565b611a86565b005b3480156106e257600080fd5b506106eb611b1f565b6040516106f89190613f66565b60405180910390f35b34801561070d57600080fd5b50610716611b49565b6040516107239190613f66565b60405180910390f35b34801561073857600080fd5b50610753600480360381019061074e9190613ac2565b611b6f565b005b34801561076157600080fd5b5061076a611bf5565b6040516107779190614033565b60405180910390f35b34801561078c57600080fd5b50610795611c87565b6040516107a29190613f66565b60405180910390f35b3480156107b757600080fd5b506107c0611cad565b6040516107cd9190614315565b60405180910390f35b3480156107e257600080fd5b506107fd60048036038101906107f891906138dd565b611cb3565b005b34801561080b57600080fd5b50610814611e34565b6040516108219190613f66565b60405180910390f35b34801561083657600080fd5b5061083f611e5a565b60405161084c9190614315565b60405180910390f35b34801561086157600080fd5b5061087c60048036038101906108779190613862565b611e60565b005b34801561088a57600080fd5b506108a560048036038101906108a09190613ac2565b611ec2565b005b3480156108b357600080fd5b506108ce60048036038101906108c99190613ac2565b611f48565b6040516108db9190614033565b60405180910390f35b3480156108f057600080fd5b5061090b60048036038101906109069190613996565b611fef565b005b61092760048036038101906109229190613ac2565b612153565b005b34801561093557600080fd5b5061093e612318565b005b34801561094c57600080fd5b50610967600480360381019061096291906137d7565b6123dd565b6040516109749190614018565b60405180910390f35b34801561098957600080fd5b506109a4600480360381019061099f91906137ae565b612471565b005b3480156109b257600080fd5b506109cd60048036038101906109c89190613ac2565b612569565b005b6109e960048036038101906109e49190613ac2565b6125ef565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ab657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ac65750610ac58261289c565b5b9050919050565b610ad5612906565b73ffffffffffffffffffffffffffffffffffffffff16610af3611b1f565b73ffffffffffffffffffffffffffffffffffffffff1614610b49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4090614215565b60405180910390fd5b600954600a5482610b5a919061445a565b1115610b9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b92906142b5565b60405180910390fd5b60005b81811015610be3576000600a549050610bb7848261290e565b600a6000815480929190610bca90614688565b9190505550508080610bdb90614688565b915050610b9e565b507f2118eda2a5fcc2e5f909a608477a856272adadcb48e1373747c51d2d3f6fc2ef8282604051610c15929190613fcd565b60405180910390a15050565b606060008054610c3090614625565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5c90614625565b8015610ca95780601f10610c7e57610100808354040283529160200191610ca9565b820191906000526020600020905b815481529060010190602001808311610c8c57829003601f168201915b5050505050905090565b6000610cbe8261292c565b610cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf4906141f5565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d4382611855565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dab90614295565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610dd3612906565b73ffffffffffffffffffffffffffffffffffffffff161480610e025750610e0181610dfc612906565b6123dd565b5b610e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3890614155565b60405180910390fd5b610e4b8383612998565b505050565b60095481565b610e67610e61612906565b82612a51565b610ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9d906142d5565b60405180910390fd5b610eb1838383612b2f565b505050565b60606000610ec383611940565b67ffffffffffffffff811115610f02577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610f305781602001602082028036833780820191505090505b5090506000805b600a54811015610fe5578473ffffffffffffffffffffffffffffffffffffffff16610f6182611855565b73ffffffffffffffffffffffffffffffffffffffff161415610fd25780838381518110610fb7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508180610fce90614688565b9250505b8080610fdd90614688565b915050610f37565b508192505050919050565b610ff8612906565b73ffffffffffffffffffffffffffffffffffffffff16611016611b1f565b73ffffffffffffffffffffffffffffffffffffffff161461106c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106390614215565b60405180910390fd5b60005b825181101561114f578181815181106110b1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151601160008584815181106110f6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061114790614688565b91505061106f565b505050565b61115c612906565b73ffffffffffffffffffffffffffffffffffffffff1661117a611b1f565b73ffffffffffffffffffffffffffffffffffffffff16146111d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c790614215565b60405180910390fd5b8181600791906111e19291906134c4565b505050565b60116020528060005260406000206000915090505481565b611206612906565b73ffffffffffffffffffffffffffffffffffffffff16611224611b1f565b73ffffffffffffffffffffffffffffffffffffffff161461127a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127190614215565b60405180910390fd5b80600660156101000a81548160ff02191690831515021790555050565b6112b283838360405180602001604052806000815250611e60565b505050565b6112bf612906565b73ffffffffffffffffffffffffffffffffffffffff166112dd611b1f565b73ffffffffffffffffffffffffffffffffffffffff1614611333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132a90614215565b60405180910390fd5b8060008151811061136d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550806001815181106113ef577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600281518110611471577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550806003815181106114f3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600481518110611575577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606115cb32610eb6565b905090565b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600660159054906101000a900460ff16611663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165a90614275565b60405180910390fd5b600081116116a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169d906142f5565b60405180910390fd5b600954600a54836116b7919061445a565b11156116f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ef906142b5565b60405180910390fd5b8160085461170691906144e1565b3414611747576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173e906140d5565b60405180910390fd5b8181611753919061453b565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b828110156117de576000600a5490506117b2338261290e565b600a60008154809291906117c590614688565b91905055505080806117d690614688565b915050611799565b507f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968853383604051611810929190613fcd565b60405180910390a15050565b600660159054906101000a900460ff1681565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f590614195565b60405180910390fd5b80915050919050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660149054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a890614175565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611a00612906565b73ffffffffffffffffffffffffffffffffffffffff16611a1e611b1f565b73ffffffffffffffffffffffffffffffffffffffff1614611a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6b90614215565b60405180910390fd5b611a7e6000612d8b565b565b600b5481565b611a8e612906565b73ffffffffffffffffffffffffffffffffffffffff16611aac611b1f565b73ffffffffffffffffffffffffffffffffffffffff1614611b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af990614215565b60405180910390fd5b80600660146101000a81548160ff02191690831515021790555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611b77612906565b73ffffffffffffffffffffffffffffffffffffffff16611b95611b1f565b73ffffffffffffffffffffffffffffffffffffffff1614611beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be290614215565b60405180910390fd5b8060088190555050565b606060018054611c0490614625565b80601f0160208091040260200160405190810160405280929190818152602001828054611c3090614625565b8015611c7d5780601f10611c5257610100808354040283529160200191611c7d565b820191906000526020600020905b815481529060010190602001808311611c6057829003601f168201915b5050505050905090565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60085481565b611cbb612906565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2090614115565b60405180910390fd5b8060056000611d36612906565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611de3612906565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e289190614018565b60405180910390a35050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b611e71611e6b612906565b83612a51565b611eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea7906142d5565b60405180910390fd5b611ebc84848484612e51565b50505050565b611eca612906565b73ffffffffffffffffffffffffffffffffffffffff16611ee8611b1f565b73ffffffffffffffffffffffffffffffffffffffff1614611f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3590614215565b60405180910390fd5b80600b8190555050565b6060611f538261292c565b611f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8990614255565b60405180910390fd5b6000611f9c612ead565b90506000815111611fbc5760405180602001604052806000815250611fe7565b80611fc684612f3f565b604051602001611fd7929190613f42565b6040516020818303038152906040525b915050919050565b611ff7612906565b73ffffffffffffffffffffffffffffffffffffffff16612015611b1f565b73ffffffffffffffffffffffffffffffffffffffff161461206b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206290614215565b60405180910390fd5b60005b825181101561214e578181815181106120b0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151601160008584815181106120f5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061214690614688565b91505061206e565b505050565b600660149054906101000a900460ff166121a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612199906141d5565b60405180910390fd5b600b54811115806121b35750600181105b6121f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e9906140b5565b60405180910390fd5b600954600a5482612203919061445a565b1115612244576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223b906142b5565b60405180910390fd5b8060085461225291906144e1565b3414612293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228a906140d5565b60405180910390fd5b60005b818110156122db576000600a5490506122af338261290e565b600a60008154809291906122c290614688565b91905055505080806122d390614688565b915050612296565b507f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885338260405161230d929190613fcd565b60405180910390a150565b612320612906565b73ffffffffffffffffffffffffffffffffffffffff1661233e611b1f565b73ffffffffffffffffffffffffffffffffffffffff1614612394576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238b90614215565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156123da573d6000803e3d6000fd5b50565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612479612906565b73ffffffffffffffffffffffffffffffffffffffff16612497611b1f565b73ffffffffffffffffffffffffffffffffffffffff16146124ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e490614215565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561255d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255490614075565b60405180910390fd5b61256681612d8b565b50565b612571612906565b73ffffffffffffffffffffffffffffffffffffffff1661258f611b1f565b73ffffffffffffffffffffffffffffffffffffffff16146125e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125dc90614215565b60405180910390fd5b8060098190555050565b6125f7612906565b73ffffffffffffffffffffffffffffffffffffffff16612615611b1f565b73ffffffffffffffffffffffffffffffffffffffff161461266b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266290614215565b60405180910390fd5b600060648261267a91906144b0565b9050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6014836126c591906144e1565b9081150290604051600060405180830381858888f193505050506126e857600080fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60148361273191906144e1565b9081150290604051600060405180830381858888f1935050505061275457600080fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60148361279d91906144e1565b9081150290604051600060405180830381858888f193505050506127c057600080fd5b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60148361280991906144e1565b9081150290604051600060405180830381858888f1935050505061282c57600080fd5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60148361287591906144e1565b9081150290604051600060405180830381858888f1935050505061289857600080fd5b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6129288282604051806020016040528060008152506130ec565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612a0b83611855565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612a5c8261292c565b612a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9290614135565b60405180910390fd5b6000612aa683611855565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612b1557508373ffffffffffffffffffffffffffffffffffffffff16612afd84610cb3565b73ffffffffffffffffffffffffffffffffffffffff16145b80612b265750612b2581856123dd565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612b4f82611855565b73ffffffffffffffffffffffffffffffffffffffff1614612ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9c90614235565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0c906140f5565b60405180910390fd5b612c20838383613147565b612c2b600082612998565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c7b919061453b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612cd2919061445a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612e5c848484612b2f565b612e688484848461314c565b612ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9e90614055565b60405180910390fd5b50505050565b606060078054612ebc90614625565b80601f0160208091040260200160405190810160405280929190818152602001828054612ee890614625565b8015612f355780601f10612f0a57610100808354040283529160200191612f35565b820191906000526020600020905b815481529060010190602001808311612f1857829003601f168201915b5050505050905090565b60606000821415612f87576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506130e7565b600082905060005b60008214612fb9578080612fa290614688565b915050600a82612fb291906144b0565b9150612f8f565b60008167ffffffffffffffff811115612ffb577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561302d5781602001600182028036833780820191505090505b5090505b600085146130e057600182613046919061453b565b9150600a8561305591906146d1565b6030613061919061445a565b60f81b81838151811061309d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130d991906144b0565b9450613031565b8093505050505b919050565b6130f683836132e3565b613103600084848461314c565b613142576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161313990614055565b60405180910390fd5b505050565b505050565b600061316d8473ffffffffffffffffffffffffffffffffffffffff166134b1565b156132d6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613196612906565b8786866040518563ffffffff1660e01b81526004016131b89493929190613f81565b602060405180830381600087803b1580156131d257600080fd5b505af192505050801561320357506040513d601f19601f820116820180604052508101906132009190613a54565b60015b613286573d8060008114613233576040519150601f19603f3d011682016040523d82523d6000602084013e613238565b606091505b5060008151141561327e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327590614055565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506132db565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334a906141b5565b60405180910390fd5b61335c8161292c565b1561339c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161339390614095565b60405180910390fd5b6133a860008383613147565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133f8919061445a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546134d090614625565b90600052602060002090601f0160209004810192826134f25760008555613539565b82601f1061350b57803560ff1916838001178555613539565b82800160010185558215613539579182015b8281111561353857823582559160200191906001019061351d565b5b509050613546919061354a565b5090565b5b8082111561356357600081600090555060010161354b565b5090565b600061357a61357584614355565b614330565b9050808382526020820190508285602086028201111561359957600080fd5b60005b858110156135c957816135af888261367d565b84526020840193506020830192505060018101905061359c565b5050509392505050565b60006135e66135e184614381565b614330565b9050808382526020820190508285602086028201111561360557600080fd5b60005b85811015613635578161361b8882613799565b845260208401935060208301925050600181019050613608565b5050509392505050565b600061365261364d846143ad565b614330565b90508281526020810184848401111561366a57600080fd5b6136758482856145e3565b509392505050565b60008135905061368c81614db5565b92915050565b600082601f8301126136a357600080fd5b81356136b3848260208601613567565b91505092915050565b600082601f8301126136cd57600080fd5b81356136dd8482602086016135d3565b91505092915050565b6000813590506136f581614dcc565b92915050565b60008135905061370a81614de3565b92915050565b60008151905061371f81614de3565b92915050565b600082601f83011261373657600080fd5b813561374684826020860161363f565b91505092915050565b60008083601f84011261376157600080fd5b8235905067ffffffffffffffff81111561377a57600080fd5b60208301915083600182028301111561379257600080fd5b9250929050565b6000813590506137a881614dfa565b92915050565b6000602082840312156137c057600080fd5b60006137ce8482850161367d565b91505092915050565b600080604083850312156137ea57600080fd5b60006137f88582860161367d565b92505060206138098582860161367d565b9150509250929050565b60008060006060848603121561382857600080fd5b60006138368682870161367d565b93505060206138478682870161367d565b925050604061385886828701613799565b9150509250925092565b6000806000806080858703121561387857600080fd5b60006138868782880161367d565b94505060206138978782880161367d565b93505060406138a887828801613799565b925050606085013567ffffffffffffffff8111156138c557600080fd5b6138d187828801613725565b91505092959194509250565b600080604083850312156138f057600080fd5b60006138fe8582860161367d565b925050602061390f858286016136e6565b9150509250929050565b6000806040838503121561392c57600080fd5b600061393a8582860161367d565b925050602061394b85828601613799565b9150509250929050565b60006020828403121561396757600080fd5b600082013567ffffffffffffffff81111561398157600080fd5b61398d84828501613692565b91505092915050565b600080604083850312156139a957600080fd5b600083013567ffffffffffffffff8111156139c357600080fd5b6139cf85828601613692565b925050602083013567ffffffffffffffff8111156139ec57600080fd5b6139f8858286016136bc565b9150509250929050565b600060208284031215613a1457600080fd5b6000613a22848285016136e6565b91505092915050565b600060208284031215613a3d57600080fd5b6000613a4b848285016136fb565b91505092915050565b600060208284031215613a6657600080fd5b6000613a7484828501613710565b91505092915050565b60008060208385031215613a9057600080fd5b600083013567ffffffffffffffff811115613aaa57600080fd5b613ab68582860161374f565b92509250509250929050565b600060208284031215613ad457600080fd5b6000613ae284828501613799565b91505092915050565b6000613af78383613f24565b60208301905092915050565b613b0c8161456f565b82525050565b6000613b1d826143ee565b613b27818561441c565b9350613b32836143de565b8060005b83811015613b63578151613b4a8882613aeb565b9750613b558361440f565b925050600181019050613b36565b5085935050505092915050565b613b7981614581565b82525050565b6000613b8a826143f9565b613b94818561442d565b9350613ba48185602086016145f2565b613bad816147be565b840191505092915050565b6000613bc382614404565b613bcd818561443e565b9350613bdd8185602086016145f2565b613be6816147be565b840191505092915050565b6000613bfc82614404565b613c06818561444f565b9350613c168185602086016145f2565b80840191505092915050565b6000613c2f60328361443e565b9150613c3a826147cf565b604082019050919050565b6000613c5260268361443e565b9150613c5d8261481e565b604082019050919050565b6000613c75601c8361443e565b9150613c808261486d565b602082019050919050565b6000613c9860248361443e565b9150613ca382614896565b604082019050919050565b6000613cbb60168361443e565b9150613cc6826148e5565b602082019050919050565b6000613cde60248361443e565b9150613ce98261490e565b604082019050919050565b6000613d0160198361443e565b9150613d0c8261495d565b602082019050919050565b6000613d24602c8361443e565b9150613d2f82614986565b604082019050919050565b6000613d4760388361443e565b9150613d52826149d5565b604082019050919050565b6000613d6a602a8361443e565b9150613d7582614a24565b604082019050919050565b6000613d8d60298361443e565b9150613d9882614a73565b604082019050919050565b6000613db060208361443e565b9150613dbb82614ac2565b602082019050919050565b6000613dd3601f8361443e565b9150613dde82614aeb565b602082019050919050565b6000613df6602c8361443e565b9150613e0182614b14565b604082019050919050565b6000613e1960208361443e565b9150613e2482614b63565b602082019050919050565b6000613e3c60298361443e565b9150613e4782614b8c565b604082019050919050565b6000613e5f602f8361443e565b9150613e6a82614bdb565b604082019050919050565b6000613e8260228361443e565b9150613e8d82614c2a565b604082019050919050565b6000613ea560218361443e565b9150613eb082614c79565b604082019050919050565b6000613ec860218361443e565b9150613ed382614cc8565b604082019050919050565b6000613eeb60318361443e565b9150613ef682614d17565b604082019050919050565b6000613f0e60268361443e565b9150613f1982614d66565b604082019050919050565b613f2d816145d9565b82525050565b613f3c816145d9565b82525050565b6000613f4e8285613bf1565b9150613f5a8284613bf1565b91508190509392505050565b6000602082019050613f7b6000830184613b03565b92915050565b6000608082019050613f966000830187613b03565b613fa36020830186613b03565b613fb06040830185613f33565b8181036060830152613fc28184613b7f565b905095945050505050565b6000604082019050613fe26000830185613b03565b613fef6020830184613f33565b9392505050565b600060208201905081810360008301526140108184613b12565b905092915050565b600060208201905061402d6000830184613b70565b92915050565b6000602082019050818103600083015261404d8184613bb8565b905092915050565b6000602082019050818103600083015261406e81613c22565b9050919050565b6000602082019050818103600083015261408e81613c45565b9050919050565b600060208201905081810360008301526140ae81613c68565b9050919050565b600060208201905081810360008301526140ce81613c8b565b9050919050565b600060208201905081810360008301526140ee81613cae565b9050919050565b6000602082019050818103600083015261410e81613cd1565b9050919050565b6000602082019050818103600083015261412e81613cf4565b9050919050565b6000602082019050818103600083015261414e81613d17565b9050919050565b6000602082019050818103600083015261416e81613d3a565b9050919050565b6000602082019050818103600083015261418e81613d5d565b9050919050565b600060208201905081810360008301526141ae81613d80565b9050919050565b600060208201905081810360008301526141ce81613da3565b9050919050565b600060208201905081810360008301526141ee81613dc6565b9050919050565b6000602082019050818103600083015261420e81613de9565b9050919050565b6000602082019050818103600083015261422e81613e0c565b9050919050565b6000602082019050818103600083015261424e81613e2f565b9050919050565b6000602082019050818103600083015261426e81613e52565b9050919050565b6000602082019050818103600083015261428e81613e75565b9050919050565b600060208201905081810360008301526142ae81613e98565b9050919050565b600060208201905081810360008301526142ce81613ebb565b9050919050565b600060208201905081810360008301526142ee81613ede565b9050919050565b6000602082019050818103600083015261430e81613f01565b9050919050565b600060208201905061432a6000830184613f33565b92915050565b600061433a61434b565b90506143468282614657565b919050565b6000604051905090565b600067ffffffffffffffff8211156143705761436f61478f565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561439c5761439b61478f565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156143c8576143c761478f565b5b6143d1826147be565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614465826145d9565b9150614470836145d9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144a5576144a4614702565b5b828201905092915050565b60006144bb826145d9565b91506144c6836145d9565b9250826144d6576144d5614731565b5b828204905092915050565b60006144ec826145d9565b91506144f7836145d9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145305761452f614702565b5b828202905092915050565b6000614546826145d9565b9150614551836145d9565b92508282101561456457614563614702565b5b828203905092915050565b600061457a826145b9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156146105780820151818401526020810190506145f5565b8381111561461f576000848401525b50505050565b6000600282049050600182168061463d57607f821691505b6020821081141561465157614650614760565b5b50919050565b614660826147be565b810181811067ffffffffffffffff8211171561467f5761467e61478f565b5b80604052505050565b6000614693826145d9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146c6576146c5614702565b5b600182019050919050565b60006146dc826145d9565b91506146e7836145d9565b9250826146f7576146f6614731565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5452414e53414354494f4e3a20717479206f66206d696e7473206e6f7420616c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b7f5041594d454e543a20696e76616c69642076616c756500000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f5452414e53414354494f4e3a2073616c65206973206e6f742061637469766500600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5452414e53414354494f4e3a2050726573616c65206973206e6f74206163746960008201527f7665000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f535550504c593a2056616c7565206578636565647320746f74616c537570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f5452414e53414354494f4e3a20596f752063616e2774206d696e74206f6e207060008201527f726573616c650000000000000000000000000000000000000000000000000000602082015250565b614dbe8161456f565b8114614dc957600080fd5b50565b614dd581614581565b8114614de057600080fd5b50565b614dec8161458d565b8114614df757600080fd5b50565b614e03816145d9565b8114614e0e57600080fd5b5056fea2646970667358221220aa45ade80609712930fdbbee6cab585fa5d3c22fdc2d9954b91d7538d52fac1464736f6c63430008040033

Deployed Bytecode

0x6080604052600436106102675760003560e01c8063715018a611610144578063affed0e0116100b6578063d96a094a1161007a578063d96a094a1461090d578063e8cc00ad14610929578063e985e9c514610940578063f2fde38b1461097d578063f7ea7a3d146109a6578063fd2b0492146109cf57610267565b8063affed0e01461082a578063b88d4fde14610855578063bc3371821461087e578063c87b56dd146108a7578063d27b1be9146108e457610267565b806391b7f5ed1161010857806391b7f5ed1461072c57806395d89b4114610755578063a0230b4f14610780578063a035b1fe146107ab578063a22cb465146107d6578063a77f92ff146107ff57610267565b8063715018a61461066b5780637437681e14610682578063841718a6146106ad5780638da5cb5b146106d657806391aa69ca1461070157610267565b80633f8121a2116101dd57806353135ca0116101a157806353135ca01461054557806361928084146105705780636352211e1461059b57806367755adf146105d857806368428a1b1461060357806370a082311461062e57610267565b80633f8121a21461048357806342842e0e146104ac57806343970161146104d557806347002d1d146104fe57806349c322171461052957610267565b806318160ddd1161022f57806318160ddd1461036357806323b872dd1461038e578063276f0934146103b75780632e6b106c146103f457806330176e131461041d57806330b2264e1461044657610267565b806301ffc9a71461026c578063050225ea146102a957806306fdde03146102d2578063081812fc146102fd578063095ea7b31461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613a2b565b6109eb565b6040516102a09190614018565b60405180910390f35b3480156102b557600080fd5b506102d060048036038101906102cb9190613919565b610acd565b005b3480156102de57600080fd5b506102e7610c21565b6040516102f49190614033565b60405180910390f35b34801561030957600080fd5b50610324600480360381019061031f9190613ac2565b610cb3565b6040516103319190613f66565b60405180910390f35b34801561034657600080fd5b50610361600480360381019061035c9190613919565b610d38565b005b34801561036f57600080fd5b50610378610e50565b6040516103859190614315565b60405180910390f35b34801561039a57600080fd5b506103b560048036038101906103b09190613813565b610e56565b005b3480156103c357600080fd5b506103de60048036038101906103d991906137ae565b610eb6565b6040516103eb9190613ff6565b60405180910390f35b34801561040057600080fd5b5061041b60048036038101906104169190613996565b610ff0565b005b34801561042957600080fd5b50610444600480360381019061043f9190613a7d565b611154565b005b34801561045257600080fd5b5061046d600480360381019061046891906137ae565b6111e6565b60405161047a9190614315565b60405180910390f35b34801561048f57600080fd5b506104aa60048036038101906104a59190613a02565b6111fe565b005b3480156104b857600080fd5b506104d360048036038101906104ce9190613813565b611297565b005b3480156104e157600080fd5b506104fc60048036038101906104f79190613955565b6112b7565b005b34801561050a57600080fd5b506105136115c0565b6040516105209190613ff6565b60405180910390f35b610543600480360381019061053e9190613ac2565b6115d0565b005b34801561055157600080fd5b5061055a61181c565b6040516105679190614018565b60405180910390f35b34801561057c57600080fd5b5061058561182f565b6040516105929190613f66565b60405180910390f35b3480156105a757600080fd5b506105c260048036038101906105bd9190613ac2565b611855565b6040516105cf9190613f66565b60405180910390f35b3480156105e457600080fd5b506105ed611907565b6040516105fa9190613f66565b60405180910390f35b34801561060f57600080fd5b5061061861192d565b6040516106259190614018565b60405180910390f35b34801561063a57600080fd5b50610655600480360381019061065091906137ae565b611940565b6040516106629190614315565b60405180910390f35b34801561067757600080fd5b506106806119f8565b005b34801561068e57600080fd5b50610697611a80565b6040516106a49190614315565b60405180910390f35b3480156106b957600080fd5b506106d460048036038101906106cf9190613a02565b611a86565b005b3480156106e257600080fd5b506106eb611b1f565b6040516106f89190613f66565b60405180910390f35b34801561070d57600080fd5b50610716611b49565b6040516107239190613f66565b60405180910390f35b34801561073857600080fd5b50610753600480360381019061074e9190613ac2565b611b6f565b005b34801561076157600080fd5b5061076a611bf5565b6040516107779190614033565b60405180910390f35b34801561078c57600080fd5b50610795611c87565b6040516107a29190613f66565b60405180910390f35b3480156107b757600080fd5b506107c0611cad565b6040516107cd9190614315565b60405180910390f35b3480156107e257600080fd5b506107fd60048036038101906107f891906138dd565b611cb3565b005b34801561080b57600080fd5b50610814611e34565b6040516108219190613f66565b60405180910390f35b34801561083657600080fd5b5061083f611e5a565b60405161084c9190614315565b60405180910390f35b34801561086157600080fd5b5061087c60048036038101906108779190613862565b611e60565b005b34801561088a57600080fd5b506108a560048036038101906108a09190613ac2565b611ec2565b005b3480156108b357600080fd5b506108ce60048036038101906108c99190613ac2565b611f48565b6040516108db9190614033565b60405180910390f35b3480156108f057600080fd5b5061090b60048036038101906109069190613996565b611fef565b005b61092760048036038101906109229190613ac2565b612153565b005b34801561093557600080fd5b5061093e612318565b005b34801561094c57600080fd5b50610967600480360381019061096291906137d7565b6123dd565b6040516109749190614018565b60405180910390f35b34801561098957600080fd5b506109a4600480360381019061099f91906137ae565b612471565b005b3480156109b257600080fd5b506109cd60048036038101906109c89190613ac2565b612569565b005b6109e960048036038101906109e49190613ac2565b6125ef565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ab657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ac65750610ac58261289c565b5b9050919050565b610ad5612906565b73ffffffffffffffffffffffffffffffffffffffff16610af3611b1f565b73ffffffffffffffffffffffffffffffffffffffff1614610b49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4090614215565b60405180910390fd5b600954600a5482610b5a919061445a565b1115610b9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b92906142b5565b60405180910390fd5b60005b81811015610be3576000600a549050610bb7848261290e565b600a6000815480929190610bca90614688565b9190505550508080610bdb90614688565b915050610b9e565b507f2118eda2a5fcc2e5f909a608477a856272adadcb48e1373747c51d2d3f6fc2ef8282604051610c15929190613fcd565b60405180910390a15050565b606060008054610c3090614625565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5c90614625565b8015610ca95780601f10610c7e57610100808354040283529160200191610ca9565b820191906000526020600020905b815481529060010190602001808311610c8c57829003601f168201915b5050505050905090565b6000610cbe8261292c565b610cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf4906141f5565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d4382611855565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dab90614295565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610dd3612906565b73ffffffffffffffffffffffffffffffffffffffff161480610e025750610e0181610dfc612906565b6123dd565b5b610e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3890614155565b60405180910390fd5b610e4b8383612998565b505050565b60095481565b610e67610e61612906565b82612a51565b610ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9d906142d5565b60405180910390fd5b610eb1838383612b2f565b505050565b60606000610ec383611940565b67ffffffffffffffff811115610f02577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610f305781602001602082028036833780820191505090505b5090506000805b600a54811015610fe5578473ffffffffffffffffffffffffffffffffffffffff16610f6182611855565b73ffffffffffffffffffffffffffffffffffffffff161415610fd25780838381518110610fb7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508180610fce90614688565b9250505b8080610fdd90614688565b915050610f37565b508192505050919050565b610ff8612906565b73ffffffffffffffffffffffffffffffffffffffff16611016611b1f565b73ffffffffffffffffffffffffffffffffffffffff161461106c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106390614215565b60405180910390fd5b60005b825181101561114f578181815181106110b1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151601160008584815181106110f6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061114790614688565b91505061106f565b505050565b61115c612906565b73ffffffffffffffffffffffffffffffffffffffff1661117a611b1f565b73ffffffffffffffffffffffffffffffffffffffff16146111d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c790614215565b60405180910390fd5b8181600791906111e19291906134c4565b505050565b60116020528060005260406000206000915090505481565b611206612906565b73ffffffffffffffffffffffffffffffffffffffff16611224611b1f565b73ffffffffffffffffffffffffffffffffffffffff161461127a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127190614215565b60405180910390fd5b80600660156101000a81548160ff02191690831515021790555050565b6112b283838360405180602001604052806000815250611e60565b505050565b6112bf612906565b73ffffffffffffffffffffffffffffffffffffffff166112dd611b1f565b73ffffffffffffffffffffffffffffffffffffffff1614611333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132a90614215565b60405180910390fd5b8060008151811061136d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550806001815181106113ef577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600281518110611471577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550806003815181106114f3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600481518110611575577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606115cb32610eb6565b905090565b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600660159054906101000a900460ff16611663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165a90614275565b60405180910390fd5b600081116116a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169d906142f5565b60405180910390fd5b600954600a54836116b7919061445a565b11156116f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ef906142b5565b60405180910390fd5b8160085461170691906144e1565b3414611747576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173e906140d5565b60405180910390fd5b8181611753919061453b565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b828110156117de576000600a5490506117b2338261290e565b600a60008154809291906117c590614688565b91905055505080806117d690614688565b915050611799565b507f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968853383604051611810929190613fcd565b60405180910390a15050565b600660159054906101000a900460ff1681565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f590614195565b60405180910390fd5b80915050919050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660149054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a890614175565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611a00612906565b73ffffffffffffffffffffffffffffffffffffffff16611a1e611b1f565b73ffffffffffffffffffffffffffffffffffffffff1614611a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6b90614215565b60405180910390fd5b611a7e6000612d8b565b565b600b5481565b611a8e612906565b73ffffffffffffffffffffffffffffffffffffffff16611aac611b1f565b73ffffffffffffffffffffffffffffffffffffffff1614611b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af990614215565b60405180910390fd5b80600660146101000a81548160ff02191690831515021790555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611b77612906565b73ffffffffffffffffffffffffffffffffffffffff16611b95611b1f565b73ffffffffffffffffffffffffffffffffffffffff1614611beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be290614215565b60405180910390fd5b8060088190555050565b606060018054611c0490614625565b80601f0160208091040260200160405190810160405280929190818152602001828054611c3090614625565b8015611c7d5780601f10611c5257610100808354040283529160200191611c7d565b820191906000526020600020905b815481529060010190602001808311611c6057829003601f168201915b5050505050905090565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60085481565b611cbb612906565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2090614115565b60405180910390fd5b8060056000611d36612906565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611de3612906565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e289190614018565b60405180910390a35050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b611e71611e6b612906565b83612a51565b611eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea7906142d5565b60405180910390fd5b611ebc84848484612e51565b50505050565b611eca612906565b73ffffffffffffffffffffffffffffffffffffffff16611ee8611b1f565b73ffffffffffffffffffffffffffffffffffffffff1614611f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3590614215565b60405180910390fd5b80600b8190555050565b6060611f538261292c565b611f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8990614255565b60405180910390fd5b6000611f9c612ead565b90506000815111611fbc5760405180602001604052806000815250611fe7565b80611fc684612f3f565b604051602001611fd7929190613f42565b6040516020818303038152906040525b915050919050565b611ff7612906565b73ffffffffffffffffffffffffffffffffffffffff16612015611b1f565b73ffffffffffffffffffffffffffffffffffffffff161461206b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206290614215565b60405180910390fd5b60005b825181101561214e578181815181106120b0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151601160008584815181106120f5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061214690614688565b91505061206e565b505050565b600660149054906101000a900460ff166121a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612199906141d5565b60405180910390fd5b600b54811115806121b35750600181105b6121f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e9906140b5565b60405180910390fd5b600954600a5482612203919061445a565b1115612244576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223b906142b5565b60405180910390fd5b8060085461225291906144e1565b3414612293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228a906140d5565b60405180910390fd5b60005b818110156122db576000600a5490506122af338261290e565b600a60008154809291906122c290614688565b91905055505080806122d390614688565b915050612296565b507f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885338260405161230d929190613fcd565b60405180910390a150565b612320612906565b73ffffffffffffffffffffffffffffffffffffffff1661233e611b1f565b73ffffffffffffffffffffffffffffffffffffffff1614612394576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238b90614215565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156123da573d6000803e3d6000fd5b50565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612479612906565b73ffffffffffffffffffffffffffffffffffffffff16612497611b1f565b73ffffffffffffffffffffffffffffffffffffffff16146124ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e490614215565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561255d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255490614075565b60405180910390fd5b61256681612d8b565b50565b612571612906565b73ffffffffffffffffffffffffffffffffffffffff1661258f611b1f565b73ffffffffffffffffffffffffffffffffffffffff16146125e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125dc90614215565b60405180910390fd5b8060098190555050565b6125f7612906565b73ffffffffffffffffffffffffffffffffffffffff16612615611b1f565b73ffffffffffffffffffffffffffffffffffffffff161461266b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266290614215565b60405180910390fd5b600060648261267a91906144b0565b9050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6014836126c591906144e1565b9081150290604051600060405180830381858888f193505050506126e857600080fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60148361273191906144e1565b9081150290604051600060405180830381858888f1935050505061275457600080fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60148361279d91906144e1565b9081150290604051600060405180830381858888f193505050506127c057600080fd5b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60148361280991906144e1565b9081150290604051600060405180830381858888f1935050505061282c57600080fd5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60148361287591906144e1565b9081150290604051600060405180830381858888f1935050505061289857600080fd5b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6129288282604051806020016040528060008152506130ec565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612a0b83611855565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612a5c8261292c565b612a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9290614135565b60405180910390fd5b6000612aa683611855565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612b1557508373ffffffffffffffffffffffffffffffffffffffff16612afd84610cb3565b73ffffffffffffffffffffffffffffffffffffffff16145b80612b265750612b2581856123dd565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612b4f82611855565b73ffffffffffffffffffffffffffffffffffffffff1614612ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9c90614235565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0c906140f5565b60405180910390fd5b612c20838383613147565b612c2b600082612998565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c7b919061453b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612cd2919061445a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612e5c848484612b2f565b612e688484848461314c565b612ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9e90614055565b60405180910390fd5b50505050565b606060078054612ebc90614625565b80601f0160208091040260200160405190810160405280929190818152602001828054612ee890614625565b8015612f355780601f10612f0a57610100808354040283529160200191612f35565b820191906000526020600020905b815481529060010190602001808311612f1857829003601f168201915b5050505050905090565b60606000821415612f87576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506130e7565b600082905060005b60008214612fb9578080612fa290614688565b915050600a82612fb291906144b0565b9150612f8f565b60008167ffffffffffffffff811115612ffb577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561302d5781602001600182028036833780820191505090505b5090505b600085146130e057600182613046919061453b565b9150600a8561305591906146d1565b6030613061919061445a565b60f81b81838151811061309d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130d991906144b0565b9450613031565b8093505050505b919050565b6130f683836132e3565b613103600084848461314c565b613142576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161313990614055565b60405180910390fd5b505050565b505050565b600061316d8473ffffffffffffffffffffffffffffffffffffffff166134b1565b156132d6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613196612906565b8786866040518563ffffffff1660e01b81526004016131b89493929190613f81565b602060405180830381600087803b1580156131d257600080fd5b505af192505050801561320357506040513d601f19601f820116820180604052508101906132009190613a54565b60015b613286573d8060008114613233576040519150601f19603f3d011682016040523d82523d6000602084013e613238565b606091505b5060008151141561327e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327590614055565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506132db565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334a906141b5565b60405180910390fd5b61335c8161292c565b1561339c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161339390614095565b60405180910390fd5b6133a860008383613147565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133f8919061445a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546134d090614625565b90600052602060002090601f0160209004810192826134f25760008555613539565b82601f1061350b57803560ff1916838001178555613539565b82800160010185558215613539579182015b8281111561353857823582559160200191906001019061351d565b5b509050613546919061354a565b5090565b5b8082111561356357600081600090555060010161354b565b5090565b600061357a61357584614355565b614330565b9050808382526020820190508285602086028201111561359957600080fd5b60005b858110156135c957816135af888261367d565b84526020840193506020830192505060018101905061359c565b5050509392505050565b60006135e66135e184614381565b614330565b9050808382526020820190508285602086028201111561360557600080fd5b60005b85811015613635578161361b8882613799565b845260208401935060208301925050600181019050613608565b5050509392505050565b600061365261364d846143ad565b614330565b90508281526020810184848401111561366a57600080fd5b6136758482856145e3565b509392505050565b60008135905061368c81614db5565b92915050565b600082601f8301126136a357600080fd5b81356136b3848260208601613567565b91505092915050565b600082601f8301126136cd57600080fd5b81356136dd8482602086016135d3565b91505092915050565b6000813590506136f581614dcc565b92915050565b60008135905061370a81614de3565b92915050565b60008151905061371f81614de3565b92915050565b600082601f83011261373657600080fd5b813561374684826020860161363f565b91505092915050565b60008083601f84011261376157600080fd5b8235905067ffffffffffffffff81111561377a57600080fd5b60208301915083600182028301111561379257600080fd5b9250929050565b6000813590506137a881614dfa565b92915050565b6000602082840312156137c057600080fd5b60006137ce8482850161367d565b91505092915050565b600080604083850312156137ea57600080fd5b60006137f88582860161367d565b92505060206138098582860161367d565b9150509250929050565b60008060006060848603121561382857600080fd5b60006138368682870161367d565b93505060206138478682870161367d565b925050604061385886828701613799565b9150509250925092565b6000806000806080858703121561387857600080fd5b60006138868782880161367d565b94505060206138978782880161367d565b93505060406138a887828801613799565b925050606085013567ffffffffffffffff8111156138c557600080fd5b6138d187828801613725565b91505092959194509250565b600080604083850312156138f057600080fd5b60006138fe8582860161367d565b925050602061390f858286016136e6565b9150509250929050565b6000806040838503121561392c57600080fd5b600061393a8582860161367d565b925050602061394b85828601613799565b9150509250929050565b60006020828403121561396757600080fd5b600082013567ffffffffffffffff81111561398157600080fd5b61398d84828501613692565b91505092915050565b600080604083850312156139a957600080fd5b600083013567ffffffffffffffff8111156139c357600080fd5b6139cf85828601613692565b925050602083013567ffffffffffffffff8111156139ec57600080fd5b6139f8858286016136bc565b9150509250929050565b600060208284031215613a1457600080fd5b6000613a22848285016136e6565b91505092915050565b600060208284031215613a3d57600080fd5b6000613a4b848285016136fb565b91505092915050565b600060208284031215613a6657600080fd5b6000613a7484828501613710565b91505092915050565b60008060208385031215613a9057600080fd5b600083013567ffffffffffffffff811115613aaa57600080fd5b613ab68582860161374f565b92509250509250929050565b600060208284031215613ad457600080fd5b6000613ae284828501613799565b91505092915050565b6000613af78383613f24565b60208301905092915050565b613b0c8161456f565b82525050565b6000613b1d826143ee565b613b27818561441c565b9350613b32836143de565b8060005b83811015613b63578151613b4a8882613aeb565b9750613b558361440f565b925050600181019050613b36565b5085935050505092915050565b613b7981614581565b82525050565b6000613b8a826143f9565b613b94818561442d565b9350613ba48185602086016145f2565b613bad816147be565b840191505092915050565b6000613bc382614404565b613bcd818561443e565b9350613bdd8185602086016145f2565b613be6816147be565b840191505092915050565b6000613bfc82614404565b613c06818561444f565b9350613c168185602086016145f2565b80840191505092915050565b6000613c2f60328361443e565b9150613c3a826147cf565b604082019050919050565b6000613c5260268361443e565b9150613c5d8261481e565b604082019050919050565b6000613c75601c8361443e565b9150613c808261486d565b602082019050919050565b6000613c9860248361443e565b9150613ca382614896565b604082019050919050565b6000613cbb60168361443e565b9150613cc6826148e5565b602082019050919050565b6000613cde60248361443e565b9150613ce98261490e565b604082019050919050565b6000613d0160198361443e565b9150613d0c8261495d565b602082019050919050565b6000613d24602c8361443e565b9150613d2f82614986565b604082019050919050565b6000613d4760388361443e565b9150613d52826149d5565b604082019050919050565b6000613d6a602a8361443e565b9150613d7582614a24565b604082019050919050565b6000613d8d60298361443e565b9150613d9882614a73565b604082019050919050565b6000613db060208361443e565b9150613dbb82614ac2565b602082019050919050565b6000613dd3601f8361443e565b9150613dde82614aeb565b602082019050919050565b6000613df6602c8361443e565b9150613e0182614b14565b604082019050919050565b6000613e1960208361443e565b9150613e2482614b63565b602082019050919050565b6000613e3c60298361443e565b9150613e4782614b8c565b604082019050919050565b6000613e5f602f8361443e565b9150613e6a82614bdb565b604082019050919050565b6000613e8260228361443e565b9150613e8d82614c2a565b604082019050919050565b6000613ea560218361443e565b9150613eb082614c79565b604082019050919050565b6000613ec860218361443e565b9150613ed382614cc8565b604082019050919050565b6000613eeb60318361443e565b9150613ef682614d17565b604082019050919050565b6000613f0e60268361443e565b9150613f1982614d66565b604082019050919050565b613f2d816145d9565b82525050565b613f3c816145d9565b82525050565b6000613f4e8285613bf1565b9150613f5a8284613bf1565b91508190509392505050565b6000602082019050613f7b6000830184613b03565b92915050565b6000608082019050613f966000830187613b03565b613fa36020830186613b03565b613fb06040830185613f33565b8181036060830152613fc28184613b7f565b905095945050505050565b6000604082019050613fe26000830185613b03565b613fef6020830184613f33565b9392505050565b600060208201905081810360008301526140108184613b12565b905092915050565b600060208201905061402d6000830184613b70565b92915050565b6000602082019050818103600083015261404d8184613bb8565b905092915050565b6000602082019050818103600083015261406e81613c22565b9050919050565b6000602082019050818103600083015261408e81613c45565b9050919050565b600060208201905081810360008301526140ae81613c68565b9050919050565b600060208201905081810360008301526140ce81613c8b565b9050919050565b600060208201905081810360008301526140ee81613cae565b9050919050565b6000602082019050818103600083015261410e81613cd1565b9050919050565b6000602082019050818103600083015261412e81613cf4565b9050919050565b6000602082019050818103600083015261414e81613d17565b9050919050565b6000602082019050818103600083015261416e81613d3a565b9050919050565b6000602082019050818103600083015261418e81613d5d565b9050919050565b600060208201905081810360008301526141ae81613d80565b9050919050565b600060208201905081810360008301526141ce81613da3565b9050919050565b600060208201905081810360008301526141ee81613dc6565b9050919050565b6000602082019050818103600083015261420e81613de9565b9050919050565b6000602082019050818103600083015261422e81613e0c565b9050919050565b6000602082019050818103600083015261424e81613e2f565b9050919050565b6000602082019050818103600083015261426e81613e52565b9050919050565b6000602082019050818103600083015261428e81613e75565b9050919050565b600060208201905081810360008301526142ae81613e98565b9050919050565b600060208201905081810360008301526142ce81613ebb565b9050919050565b600060208201905081810360008301526142ee81613ede565b9050919050565b6000602082019050818103600083015261430e81613f01565b9050919050565b600060208201905061432a6000830184613f33565b92915050565b600061433a61434b565b90506143468282614657565b919050565b6000604051905090565b600067ffffffffffffffff8211156143705761436f61478f565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561439c5761439b61478f565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156143c8576143c761478f565b5b6143d1826147be565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614465826145d9565b9150614470836145d9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144a5576144a4614702565b5b828201905092915050565b60006144bb826145d9565b91506144c6836145d9565b9250826144d6576144d5614731565b5b828204905092915050565b60006144ec826145d9565b91506144f7836145d9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145305761452f614702565b5b828202905092915050565b6000614546826145d9565b9150614551836145d9565b92508282101561456457614563614702565b5b828203905092915050565b600061457a826145b9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156146105780820151818401526020810190506145f5565b8381111561461f576000848401525b50505050565b6000600282049050600182168061463d57607f821691505b6020821081141561465157614650614760565b5b50919050565b614660826147be565b810181811067ffffffffffffffff8211171561467f5761467e61478f565b5b80604052505050565b6000614693826145d9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146c6576146c5614702565b5b600182019050919050565b60006146dc826145d9565b91506146e7836145d9565b9250826146f7576146f6614731565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5452414e53414354494f4e3a20717479206f66206d696e7473206e6f7420616c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b7f5041594d454e543a20696e76616c69642076616c756500000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f5452414e53414354494f4e3a2073616c65206973206e6f742061637469766500600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5452414e53414354494f4e3a2050726573616c65206973206e6f74206163746960008201527f7665000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f535550504c593a2056616c7565206578636565647320746f74616c537570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f5452414e53414354494f4e3a20596f752063616e2774206d696e74206f6e207060008201527f726573616c650000000000000000000000000000000000000000000000000000602082015250565b614dbe8161456f565b8114614dc957600080fd5b50565b614dd581614581565b8114614de057600080fd5b50565b614dec8161458d565b8114614df757600080fd5b50565b614e03816145d9565b8114614e0e57600080fd5b5056fea2646970667358221220aa45ade80609712930fdbbee6cab585fa5d3c22fdc2d9954b91d7538d52fac1464736f6c63430008040033

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.