ETH Price: $3,485.48 (+2.87%)
Gas: 3 Gwei

Token

Lucha Libre Knockout (LLKO)
 

Overview

Max Total Supply

10,000 LLKO

Holders

3,120

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
djfathead.eth
Balance
4 LLKO
0x5e130cb7f8cdcfb5a15018ee5846769703ec4478
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

LLKO is a collection of 10,000 Luchadores NFTs — unique ERC721 collectibles living on the Ethereum blockchain. Each Luchador will represent one of these six academies.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
NFT

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

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

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

contract NFT is ERC721, Ownable { 
    
    string internal baseTokenURI = 'https://llko-backend.herokuapp.com/';
    uint public price = 0.06 ether;
    uint public totalSupply = 10000;
    uint public nonce = 0;
    uint public maxTx = 20;
    
    event Mint(address owner, uint qty);
    event Giveaway(address to, uint qty);
    event Withdraw(uint amount);
    event SetMember(address indexed member, uint percent);
    
    address[] public members;
    mapping (address => uint) public society;
    uint membersCount = 0;
    
    constructor() ERC721("Lucha Libre Knockout", "LLKO") {}
    
    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 setMaxTx(uint newMax) external onlyOwner {
        maxTx = newMax;
    }
    
    // percent must be multiplied by 100. ex 1000 = 10%; 575 = 5.75%;
    function setMember(address member, uint percent) external onlyOwner {
        if(society[member] < 1){
            members.push(member);
            membersCount++;
        }
        if(society[member] > 0 && percent == 0){
            membersCount--;
        }
        society[member] = percent;
        emit SetMember(member, percent);
    }
    
    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 buy(uint qty) external payable {
        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(_msgSender(), tokenId);
            nonce++;
        }
        emit Mint(_msgSender(), qty);
    }
    
    function withdrawOwner() external onlyOwner {
        payable(_msgSender()).transfer(address(this).balance);
    }
    
    function withdraw() external onlyOwner {
        require(address(this).balance > price, "this account doesn't have enough balance");
        require(membersCount > 0, "WITHDRAW: couldn't find any payable address");
        uint nbalance = address(this).balance - 0.01 ether;
        address[] memory payments = new address[](membersCount);
        uint pmts=0;
        for(uint i=0; i < members.length;i++){
            address m = members[i];
            bool found = false;
            for(uint j=0; j < payments.length; j++){
                if(payments[j] == m){
                    found = true;
                    break;
                }
            }
            if(!found && society[m] > 0){
                payments[pmts] = m;
                pmts++;
                payable(m).transfer((nbalance * (society[m] / 100)) / 100);
            }
        }
    }
    
}

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":"member","type":"address"},{"indexed":false,"internalType":"uint256","name":"percent","type":"uint256"}],"name":"SetMember","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":"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":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"members","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"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":[{"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":"member","type":"address"},{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"setMember","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"society","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawOwner","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180606001604052806023815260200162004643602391396007908051906020019062000035929190620001f8565b5066d529ae9e8600006008556127106009556000600a556014600b556000600e553480156200006357600080fd5b506040518060400160405280601481526020017f4c75636861204c69627265204b6e6f636b6f75740000000000000000000000008152506040518060400160405280600481526020017f4c4c4b4f000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000e8929190620001f8565b50806001908051906020019062000101929190620001f8565b50505062000124620001186200012a60201b60201c565b6200013260201b60201c565b6200030d565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020690620002a8565b90600052602060002090601f0160209004810192826200022a576000855562000276565b82601f106200024557805160ff191683800117855562000276565b8280016001018555821562000276579182015b828111156200027557825182559160200191906001019062000258565b5b50905062000285919062000289565b5090565b5b80821115620002a45760008160009055506001016200028a565b5090565b60006002820490506001821680620002c157607f821691505b60208210811415620002d857620002d7620002de565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614326806200031d6000396000f3fe6080604052600436106101ee5760003560e01c806370a082311161010d578063affed0e0116100a0578063d96a094a1161006f578063d96a094a146106fb578063e8cc00ad14610717578063e985e9c51461072e578063f2fde38b1461076b578063f7ea7a3d14610794576101ee565b8063affed0e014610641578063b88d4fde1461066c578063bc33718214610695578063c87b56dd146106be576101ee565b806391b7f5ed116100dc57806391b7f5ed1461059957806395d89b41146105c2578063a035b1fe146105ed578063a22cb46514610618576101ee565b806370a08231146104ef578063715018a61461052c5780637437681e146105435780638da5cb5b1461056e576101ee565b806330176e131161018557806347002d1d1161015457806347002d1d1461040d5780635daf08ca146104385780636352211e1461047557806366a243f2146104b2576101ee565b806330176e131461037b57806333e6a54b146103a45780633ccfd60b146103cd57806342842e0e146103e4576101ee565b8063095ea7b3116101c1578063095ea7b3146102c157806318160ddd146102ea57806323b872dd14610315578063276f09341461033e576101ee565b806301ffc9a7146101f3578063050225ea1461023057806306fdde0314610259578063081812fc14610284575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612fa4565b6107bd565b604051610227919061356e565b60405180910390f35b34801561023c57600080fd5b5061025760048036038101906102529190612f68565b61089f565b005b34801561026557600080fd5b5061026e6109f3565b60405161027b9190613589565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a6919061303b565b610a85565b6040516102b891906134bc565b60405180910390f35b3480156102cd57600080fd5b506102e860048036038101906102e39190612f68565b610b0a565b005b3480156102f657600080fd5b506102ff610c22565b60405161030c919061384b565b60405180910390f35b34801561032157600080fd5b5061033c60048036038101906103379190612e62565b610c28565b005b34801561034a57600080fd5b5061036560048036038101906103609190612dfd565b610c88565b604051610372919061354c565b60405180910390f35b34801561038757600080fd5b506103a2600480360381019061039d9190612ff6565b610dc2565b005b3480156103b057600080fd5b506103cb60048036038101906103c69190612f68565b610e54565b005b3480156103d957600080fd5b506103e2611097565b005b3480156103f057600080fd5b5061040b60048036038101906104069190612e62565b6114d8565b005b34801561041957600080fd5b506104226114f8565b60405161042f919061354c565b60405180910390f35b34801561044457600080fd5b5061045f600480360381019061045a919061303b565b611508565b60405161046c91906134bc565b60405180910390f35b34801561048157600080fd5b5061049c6004803603810190610497919061303b565b611547565b6040516104a991906134bc565b60405180910390f35b3480156104be57600080fd5b506104d960048036038101906104d49190612dfd565b6115f9565b6040516104e6919061384b565b60405180910390f35b3480156104fb57600080fd5b5061051660048036038101906105119190612dfd565b611611565b604051610523919061384b565b60405180910390f35b34801561053857600080fd5b506105416116c9565b005b34801561054f57600080fd5b50610558611751565b604051610565919061384b565b60405180910390f35b34801561057a57600080fd5b50610583611757565b60405161059091906134bc565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb919061303b565b611781565b005b3480156105ce57600080fd5b506105d7611807565b6040516105e49190613589565b60405180910390f35b3480156105f957600080fd5b50610602611899565b60405161060f919061384b565b60405180910390f35b34801561062457600080fd5b5061063f600480360381019061063a9190612f2c565b61189f565b005b34801561064d57600080fd5b50610656611a20565b604051610663919061384b565b60405180910390f35b34801561067857600080fd5b50610693600480360381019061068e9190612eb1565b611a26565b005b3480156106a157600080fd5b506106bc60048036038101906106b7919061303b565b611a88565b005b3480156106ca57600080fd5b506106e560048036038101906106e0919061303b565b611b0e565b6040516106f29190613589565b60405180910390f35b6107156004803603810190610710919061303b565b611bb5565b005b34801561072357600080fd5b5061072c611d39565b005b34801561073a57600080fd5b5061075560048036038101906107509190612e26565b611e05565b604051610762919061356e565b60405180910390f35b34801561077757600080fd5b50610792600480360381019061078d9190612dfd565b611e99565b005b3480156107a057600080fd5b506107bb60048036038101906107b6919061303b565b611f91565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610898575061089782612017565b5b9050919050565b6108a7612081565b73ffffffffffffffffffffffffffffffffffffffff166108c5611757565b73ffffffffffffffffffffffffffffffffffffffff161461091b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109129061374b565b60405180910390fd5b600954600a548261092c9190613938565b111561096d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610964906137eb565b60405180910390fd5b60005b818110156109b5576000600a5490506109898482612089565b600a600081548092919061099c90613b90565b91905055505080806109ad90613b90565b915050610970565b507f2118eda2a5fcc2e5f909a608477a856272adadcb48e1373747c51d2d3f6fc2ef82826040516109e7929190613523565b60405180910390a15050565b606060008054610a0290613b2d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2e90613b2d565b8015610a7b5780601f10610a5057610100808354040283529160200191610a7b565b820191906000526020600020905b815481529060010190602001808311610a5e57829003601f168201915b5050505050905090565b6000610a90826120a7565b610acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac69061372b565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b1582611547565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7d906137cb565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ba5612081565b73ffffffffffffffffffffffffffffffffffffffff161480610bd45750610bd381610bce612081565b611e05565b5b610c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0a906136ab565b60405180910390fd5b610c1d8383612113565b505050565b60095481565b610c39610c33612081565b826121cc565b610c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6f9061380b565b60405180910390fd5b610c838383836122aa565b505050565b60606000610c9583611611565b67ffffffffffffffff811115610cd4577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610d025781602001602082028036833780820191505090505b5090506000805b600a54811015610db7578473ffffffffffffffffffffffffffffffffffffffff16610d3382611547565b73ffffffffffffffffffffffffffffffffffffffff161415610da45780838381518110610d89577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508180610da090613b90565b9250505b8080610daf90613b90565b915050610d09565b508192505050919050565b610dca612081565b73ffffffffffffffffffffffffffffffffffffffff16610de8611757565b73ffffffffffffffffffffffffffffffffffffffff1614610e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e359061374b565b60405180910390fd5b818160079190610e4f929190612c3f565b505050565b610e5c612081565b73ffffffffffffffffffffffffffffffffffffffff16610e7a611757565b73ffffffffffffffffffffffffffffffffffffffff1614610ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec79061374b565b60405180910390fd5b6001600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610f9457600c829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600e6000815480929190610f8e90613b90565b91905055505b6000600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054118015610fe35750600081145b1561100157600e6000815480929190610ffb90613b03565b91905055505b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff167fbd5ba6785911c9dffbe6af4fb220b50c03c7a549007144714c8c7589f70dc72f8260405161108b919061384b565b60405180910390a25050565b61109f612081565b73ffffffffffffffffffffffffffffffffffffffff166110bd611757565b73ffffffffffffffffffffffffffffffffffffffff1614611113576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110a9061374b565b60405180910390fd5b6008544711611157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114e906137ab565b60405180910390fd5b6000600e541161119c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111939061382b565b60405180910390fd5b6000662386f26fc10000476111b19190613a19565b90506000600e5467ffffffffffffffff8111156111f7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156112255781602001602082028036833780820191505090505b5090506000805b600c805490508110156114d2576000600c8281548110611275577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000805b855181101561133f578273ffffffffffffffffffffffffffffffffffffffff168682815181106112ff577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff16141561132c576001915061133f565b808061133790613b90565b9150506112a6565b508015801561138d57506000600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156114bd57818585815181106113cc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050838061141190613b90565b9450508173ffffffffffffffffffffffffffffffffffffffff166108fc606480600d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461147b919061398e565b8961148691906139bf565b611490919061398e565b9081150290604051600060405180830381858888f193505050501580156114bb573d6000803e3d6000fd5b505b505080806114ca90613b90565b91505061122c565b50505050565b6114f383838360405180602001604052806000815250611a26565b505050565b606061150332610c88565b905090565b600c818154811061151857600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e7906136eb565b60405180910390fd5b80915050919050565b600d6020528060005260406000206000915090505481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611682576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611679906136cb565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116d1612081565b73ffffffffffffffffffffffffffffffffffffffff166116ef611757565b73ffffffffffffffffffffffffffffffffffffffff1614611745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173c9061374b565b60405180910390fd5b61174f6000612506565b565b600b5481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611789612081565b73ffffffffffffffffffffffffffffffffffffffff166117a7611757565b73ffffffffffffffffffffffffffffffffffffffff16146117fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f49061374b565b60405180910390fd5b8060088190555050565b60606001805461181690613b2d565b80601f016020809104026020016040519081016040528092919081815260200182805461184290613b2d565b801561188f5780601f106118645761010080835404028352916020019161188f565b820191906000526020600020905b81548152906001019060200180831161187257829003601f168201915b5050505050905090565b60085481565b6118a7612081565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190c9061366b565b60405180910390fd5b8060056000611922612081565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119cf612081565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a14919061356e565b60405180910390a35050565b600a5481565b611a37611a31612081565b836121cc565b611a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6d9061380b565b60405180910390fd5b611a82848484846125cc565b50505050565b611a90612081565b73ffffffffffffffffffffffffffffffffffffffff16611aae611757565b73ffffffffffffffffffffffffffffffffffffffff1614611b04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afb9061374b565b60405180910390fd5b80600b8190555050565b6060611b19826120a7565b611b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4f9061378b565b60405180910390fd5b6000611b62612628565b90506000815111611b825760405180602001604052806000815250611bad565b80611b8c846126ba565b604051602001611b9d929190613498565b6040516020818303038152906040525b915050919050565b600b5481111580611bc65750600181105b611c05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfc9061360b565b60405180910390fd5b600954600a5482611c169190613938565b1115611c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4e906137eb565b60405180910390fd5b80600854611c6591906139bf565b3414611ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9d9061362b565b60405180910390fd5b60005b81811015611cf5576000600a549050611cc9611cc3612081565b82612089565b600a6000815480929190611cdc90613b90565b9190505550508080611ced90613b90565b915050611ca9565b507f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885611d1f612081565b82604051611d2e929190613523565b60405180910390a150565b611d41612081565b73ffffffffffffffffffffffffffffffffffffffff16611d5f611757565b73ffffffffffffffffffffffffffffffffffffffff1614611db5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dac9061374b565b60405180910390fd5b611dbd612081565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611e02573d6000803e3d6000fd5b50565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ea1612081565b73ffffffffffffffffffffffffffffffffffffffff16611ebf611757565b73ffffffffffffffffffffffffffffffffffffffff1614611f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0c9061374b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7c906135cb565b60405180910390fd5b611f8e81612506565b50565b611f99612081565b73ffffffffffffffffffffffffffffffffffffffff16611fb7611757565b73ffffffffffffffffffffffffffffffffffffffff161461200d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120049061374b565b60405180910390fd5b8060098190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6120a3828260405180602001604052806000815250612867565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661218683611547565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006121d7826120a7565b612216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220d9061368b565b60405180910390fd5b600061222183611547565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061229057508373ffffffffffffffffffffffffffffffffffffffff1661227884610a85565b73ffffffffffffffffffffffffffffffffffffffff16145b806122a157506122a08185611e05565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122ca82611547565b73ffffffffffffffffffffffffffffffffffffffff1614612320576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123179061376b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612390576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123879061364b565b60405180910390fd5b61239b8383836128c2565b6123a6600082612113565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123f69190613a19565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461244d9190613938565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6125d78484846122aa565b6125e3848484846128c7565b612622576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612619906135ab565b60405180910390fd5b50505050565b60606007805461263790613b2d565b80601f016020809104026020016040519081016040528092919081815260200182805461266390613b2d565b80156126b05780601f10612685576101008083540402835291602001916126b0565b820191906000526020600020905b81548152906001019060200180831161269357829003601f168201915b5050505050905090565b60606000821415612702576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612862565b600082905060005b6000821461273457808061271d90613b90565b915050600a8261272d919061398e565b915061270a565b60008167ffffffffffffffff811115612776577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156127a85781602001600182028036833780820191505090505b5090505b6000851461285b576001826127c19190613a19565b9150600a856127d09190613bd9565b60306127dc9190613938565b60f81b818381518110612818577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612854919061398e565b94506127ac565b8093505050505b919050565b6128718383612a5e565b61287e60008484846128c7565b6128bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b4906135ab565b60405180910390fd5b505050565b505050565b60006128e88473ffffffffffffffffffffffffffffffffffffffff16612c2c565b15612a51578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612911612081565b8786866040518563ffffffff1660e01b815260040161293394939291906134d7565b602060405180830381600087803b15801561294d57600080fd5b505af192505050801561297e57506040513d601f19601f8201168201806040525081019061297b9190612fcd565b60015b612a01573d80600081146129ae576040519150601f19603f3d011682016040523d82523d6000602084013e6129b3565b606091505b506000815114156129f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f0906135ab565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a56565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac59061370b565b60405180910390fd5b612ad7816120a7565b15612b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0e906135eb565b60405180910390fd5b612b23600083836128c2565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b739190613938565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612c4b90613b2d565b90600052602060002090601f016020900481019282612c6d5760008555612cb4565b82601f10612c8657803560ff1916838001178555612cb4565b82800160010185558215612cb4579182015b82811115612cb3578235825591602001919060010190612c98565b5b509050612cc19190612cc5565b5090565b5b80821115612cde576000816000905550600101612cc6565b5090565b6000612cf5612cf08461388b565b613866565b905082815260208101848484011115612d0d57600080fd5b612d18848285613ac1565b509392505050565b600081359050612d2f81614294565b92915050565b600081359050612d44816142ab565b92915050565b600081359050612d59816142c2565b92915050565b600081519050612d6e816142c2565b92915050565b600082601f830112612d8557600080fd5b8135612d95848260208601612ce2565b91505092915050565b60008083601f840112612db057600080fd5b8235905067ffffffffffffffff811115612dc957600080fd5b602083019150836001820283011115612de157600080fd5b9250929050565b600081359050612df7816142d9565b92915050565b600060208284031215612e0f57600080fd5b6000612e1d84828501612d20565b91505092915050565b60008060408385031215612e3957600080fd5b6000612e4785828601612d20565b9250506020612e5885828601612d20565b9150509250929050565b600080600060608486031215612e7757600080fd5b6000612e8586828701612d20565b9350506020612e9686828701612d20565b9250506040612ea786828701612de8565b9150509250925092565b60008060008060808587031215612ec757600080fd5b6000612ed587828801612d20565b9450506020612ee687828801612d20565b9350506040612ef787828801612de8565b925050606085013567ffffffffffffffff811115612f1457600080fd5b612f2087828801612d74565b91505092959194509250565b60008060408385031215612f3f57600080fd5b6000612f4d85828601612d20565b9250506020612f5e85828601612d35565b9150509250929050565b60008060408385031215612f7b57600080fd5b6000612f8985828601612d20565b9250506020612f9a85828601612de8565b9150509250929050565b600060208284031215612fb657600080fd5b6000612fc484828501612d4a565b91505092915050565b600060208284031215612fdf57600080fd5b6000612fed84828501612d5f565b91505092915050565b6000806020838503121561300957600080fd5b600083013567ffffffffffffffff81111561302357600080fd5b61302f85828601612d9e565b92509250509250929050565b60006020828403121561304d57600080fd5b600061305b84828501612de8565b91505092915050565b6000613070838361347a565b60208301905092915050565b61308581613a4d565b82525050565b6000613096826138cc565b6130a081856138fa565b93506130ab836138bc565b8060005b838110156130dc5781516130c38882613064565b97506130ce836138ed565b9250506001810190506130af565b5085935050505092915050565b6130f281613a5f565b82525050565b6000613103826138d7565b61310d818561390b565b935061311d818560208601613ad0565b61312681613cc6565b840191505092915050565b600061313c826138e2565b613146818561391c565b9350613156818560208601613ad0565b61315f81613cc6565b840191505092915050565b6000613175826138e2565b61317f818561392d565b935061318f818560208601613ad0565b80840191505092915050565b60006131a860328361391c565b91506131b382613cd7565b604082019050919050565b60006131cb60268361391c565b91506131d682613d26565b604082019050919050565b60006131ee601c8361391c565b91506131f982613d75565b602082019050919050565b600061321160248361391c565b915061321c82613d9e565b604082019050919050565b600061323460168361391c565b915061323f82613ded565b602082019050919050565b600061325760248361391c565b915061326282613e16565b604082019050919050565b600061327a60198361391c565b915061328582613e65565b602082019050919050565b600061329d602c8361391c565b91506132a882613e8e565b604082019050919050565b60006132c060388361391c565b91506132cb82613edd565b604082019050919050565b60006132e3602a8361391c565b91506132ee82613f2c565b604082019050919050565b600061330660298361391c565b915061331182613f7b565b604082019050919050565b600061332960208361391c565b915061333482613fca565b602082019050919050565b600061334c602c8361391c565b915061335782613ff3565b604082019050919050565b600061336f60208361391c565b915061337a82614042565b602082019050919050565b600061339260298361391c565b915061339d8261406b565b604082019050919050565b60006133b5602f8361391c565b91506133c0826140ba565b604082019050919050565b60006133d860288361391c565b91506133e382614109565b604082019050919050565b60006133fb60218361391c565b915061340682614158565b604082019050919050565b600061341e60218361391c565b9150613429826141a7565b604082019050919050565b600061344160318361391c565b915061344c826141f6565b604082019050919050565b6000613464602b8361391c565b915061346f82614245565b604082019050919050565b61348381613ab7565b82525050565b61349281613ab7565b82525050565b60006134a4828561316a565b91506134b0828461316a565b91508190509392505050565b60006020820190506134d1600083018461307c565b92915050565b60006080820190506134ec600083018761307c565b6134f9602083018661307c565b6135066040830185613489565b818103606083015261351881846130f8565b905095945050505050565b6000604082019050613538600083018561307c565b6135456020830184613489565b9392505050565b60006020820190508181036000830152613566818461308b565b905092915050565b600060208201905061358360008301846130e9565b92915050565b600060208201905081810360008301526135a38184613131565b905092915050565b600060208201905081810360008301526135c48161319b565b9050919050565b600060208201905081810360008301526135e4816131be565b9050919050565b60006020820190508181036000830152613604816131e1565b9050919050565b6000602082019050818103600083015261362481613204565b9050919050565b6000602082019050818103600083015261364481613227565b9050919050565b600060208201905081810360008301526136648161324a565b9050919050565b600060208201905081810360008301526136848161326d565b9050919050565b600060208201905081810360008301526136a481613290565b9050919050565b600060208201905081810360008301526136c4816132b3565b9050919050565b600060208201905081810360008301526136e4816132d6565b9050919050565b60006020820190508181036000830152613704816132f9565b9050919050565b600060208201905081810360008301526137248161331c565b9050919050565b600060208201905081810360008301526137448161333f565b9050919050565b6000602082019050818103600083015261376481613362565b9050919050565b6000602082019050818103600083015261378481613385565b9050919050565b600060208201905081810360008301526137a4816133a8565b9050919050565b600060208201905081810360008301526137c4816133cb565b9050919050565b600060208201905081810360008301526137e4816133ee565b9050919050565b6000602082019050818103600083015261380481613411565b9050919050565b6000602082019050818103600083015261382481613434565b9050919050565b6000602082019050818103600083015261384481613457565b9050919050565b60006020820190506138606000830184613489565b92915050565b6000613870613881565b905061387c8282613b5f565b919050565b6000604051905090565b600067ffffffffffffffff8211156138a6576138a5613c97565b5b6138af82613cc6565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061394382613ab7565b915061394e83613ab7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561398357613982613c0a565b5b828201905092915050565b600061399982613ab7565b91506139a483613ab7565b9250826139b4576139b3613c39565b5b828204905092915050565b60006139ca82613ab7565b91506139d583613ab7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a0e57613a0d613c0a565b5b828202905092915050565b6000613a2482613ab7565b9150613a2f83613ab7565b925082821015613a4257613a41613c0a565b5b828203905092915050565b6000613a5882613a97565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613aee578082015181840152602081019050613ad3565b83811115613afd576000848401525b50505050565b6000613b0e82613ab7565b91506000821415613b2257613b21613c0a565b5b600182039050919050565b60006002820490506001821680613b4557607f821691505b60208210811415613b5957613b58613c68565b5b50919050565b613b6882613cc6565b810181811067ffffffffffffffff82111715613b8757613b86613c97565b5b80604052505050565b6000613b9b82613ab7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613bce57613bcd613c0a565b5b600182019050919050565b6000613be482613ab7565b9150613bef83613ab7565b925082613bff57613bfe613c39565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5452414e53414354494f4e3a20717479206f66206d696e7473206e6f7420616c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b7f5041594d454e543a20696e76616c69642076616c756500000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f74686973206163636f756e7420646f65736e2774206861766520656e6f75676860008201527f2062616c616e6365000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f535550504c593a2056616c7565206578636565647320746f74616c537570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f57495448445241573a20636f756c646e27742066696e6420616e79207061796160008201527f626c652061646472657373000000000000000000000000000000000000000000602082015250565b61429d81613a4d565b81146142a857600080fd5b50565b6142b481613a5f565b81146142bf57600080fd5b50565b6142cb81613a6b565b81146142d657600080fd5b50565b6142e281613ab7565b81146142ed57600080fd5b5056fea264697066735822122047e788cbf1eb994e4e82be212d6b6fca6138444a6b8272a6bbe934f803db157664736f6c6343000804003368747470733a2f2f6c6c6b6f2d6261636b656e642e6865726f6b756170702e636f6d2f

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c806370a082311161010d578063affed0e0116100a0578063d96a094a1161006f578063d96a094a146106fb578063e8cc00ad14610717578063e985e9c51461072e578063f2fde38b1461076b578063f7ea7a3d14610794576101ee565b8063affed0e014610641578063b88d4fde1461066c578063bc33718214610695578063c87b56dd146106be576101ee565b806391b7f5ed116100dc57806391b7f5ed1461059957806395d89b41146105c2578063a035b1fe146105ed578063a22cb46514610618576101ee565b806370a08231146104ef578063715018a61461052c5780637437681e146105435780638da5cb5b1461056e576101ee565b806330176e131161018557806347002d1d1161015457806347002d1d1461040d5780635daf08ca146104385780636352211e1461047557806366a243f2146104b2576101ee565b806330176e131461037b57806333e6a54b146103a45780633ccfd60b146103cd57806342842e0e146103e4576101ee565b8063095ea7b3116101c1578063095ea7b3146102c157806318160ddd146102ea57806323b872dd14610315578063276f09341461033e576101ee565b806301ffc9a7146101f3578063050225ea1461023057806306fdde0314610259578063081812fc14610284575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612fa4565b6107bd565b604051610227919061356e565b60405180910390f35b34801561023c57600080fd5b5061025760048036038101906102529190612f68565b61089f565b005b34801561026557600080fd5b5061026e6109f3565b60405161027b9190613589565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a6919061303b565b610a85565b6040516102b891906134bc565b60405180910390f35b3480156102cd57600080fd5b506102e860048036038101906102e39190612f68565b610b0a565b005b3480156102f657600080fd5b506102ff610c22565b60405161030c919061384b565b60405180910390f35b34801561032157600080fd5b5061033c60048036038101906103379190612e62565b610c28565b005b34801561034a57600080fd5b5061036560048036038101906103609190612dfd565b610c88565b604051610372919061354c565b60405180910390f35b34801561038757600080fd5b506103a2600480360381019061039d9190612ff6565b610dc2565b005b3480156103b057600080fd5b506103cb60048036038101906103c69190612f68565b610e54565b005b3480156103d957600080fd5b506103e2611097565b005b3480156103f057600080fd5b5061040b60048036038101906104069190612e62565b6114d8565b005b34801561041957600080fd5b506104226114f8565b60405161042f919061354c565b60405180910390f35b34801561044457600080fd5b5061045f600480360381019061045a919061303b565b611508565b60405161046c91906134bc565b60405180910390f35b34801561048157600080fd5b5061049c6004803603810190610497919061303b565b611547565b6040516104a991906134bc565b60405180910390f35b3480156104be57600080fd5b506104d960048036038101906104d49190612dfd565b6115f9565b6040516104e6919061384b565b60405180910390f35b3480156104fb57600080fd5b5061051660048036038101906105119190612dfd565b611611565b604051610523919061384b565b60405180910390f35b34801561053857600080fd5b506105416116c9565b005b34801561054f57600080fd5b50610558611751565b604051610565919061384b565b60405180910390f35b34801561057a57600080fd5b50610583611757565b60405161059091906134bc565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb919061303b565b611781565b005b3480156105ce57600080fd5b506105d7611807565b6040516105e49190613589565b60405180910390f35b3480156105f957600080fd5b50610602611899565b60405161060f919061384b565b60405180910390f35b34801561062457600080fd5b5061063f600480360381019061063a9190612f2c565b61189f565b005b34801561064d57600080fd5b50610656611a20565b604051610663919061384b565b60405180910390f35b34801561067857600080fd5b50610693600480360381019061068e9190612eb1565b611a26565b005b3480156106a157600080fd5b506106bc60048036038101906106b7919061303b565b611a88565b005b3480156106ca57600080fd5b506106e560048036038101906106e0919061303b565b611b0e565b6040516106f29190613589565b60405180910390f35b6107156004803603810190610710919061303b565b611bb5565b005b34801561072357600080fd5b5061072c611d39565b005b34801561073a57600080fd5b5061075560048036038101906107509190612e26565b611e05565b604051610762919061356e565b60405180910390f35b34801561077757600080fd5b50610792600480360381019061078d9190612dfd565b611e99565b005b3480156107a057600080fd5b506107bb60048036038101906107b6919061303b565b611f91565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610898575061089782612017565b5b9050919050565b6108a7612081565b73ffffffffffffffffffffffffffffffffffffffff166108c5611757565b73ffffffffffffffffffffffffffffffffffffffff161461091b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109129061374b565b60405180910390fd5b600954600a548261092c9190613938565b111561096d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610964906137eb565b60405180910390fd5b60005b818110156109b5576000600a5490506109898482612089565b600a600081548092919061099c90613b90565b91905055505080806109ad90613b90565b915050610970565b507f2118eda2a5fcc2e5f909a608477a856272adadcb48e1373747c51d2d3f6fc2ef82826040516109e7929190613523565b60405180910390a15050565b606060008054610a0290613b2d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2e90613b2d565b8015610a7b5780601f10610a5057610100808354040283529160200191610a7b565b820191906000526020600020905b815481529060010190602001808311610a5e57829003601f168201915b5050505050905090565b6000610a90826120a7565b610acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac69061372b565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b1582611547565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7d906137cb565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ba5612081565b73ffffffffffffffffffffffffffffffffffffffff161480610bd45750610bd381610bce612081565b611e05565b5b610c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0a906136ab565b60405180910390fd5b610c1d8383612113565b505050565b60095481565b610c39610c33612081565b826121cc565b610c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6f9061380b565b60405180910390fd5b610c838383836122aa565b505050565b60606000610c9583611611565b67ffffffffffffffff811115610cd4577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610d025781602001602082028036833780820191505090505b5090506000805b600a54811015610db7578473ffffffffffffffffffffffffffffffffffffffff16610d3382611547565b73ffffffffffffffffffffffffffffffffffffffff161415610da45780838381518110610d89577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508180610da090613b90565b9250505b8080610daf90613b90565b915050610d09565b508192505050919050565b610dca612081565b73ffffffffffffffffffffffffffffffffffffffff16610de8611757565b73ffffffffffffffffffffffffffffffffffffffff1614610e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e359061374b565b60405180910390fd5b818160079190610e4f929190612c3f565b505050565b610e5c612081565b73ffffffffffffffffffffffffffffffffffffffff16610e7a611757565b73ffffffffffffffffffffffffffffffffffffffff1614610ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec79061374b565b60405180910390fd5b6001600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610f9457600c829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600e6000815480929190610f8e90613b90565b91905055505b6000600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054118015610fe35750600081145b1561100157600e6000815480929190610ffb90613b03565b91905055505b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff167fbd5ba6785911c9dffbe6af4fb220b50c03c7a549007144714c8c7589f70dc72f8260405161108b919061384b565b60405180910390a25050565b61109f612081565b73ffffffffffffffffffffffffffffffffffffffff166110bd611757565b73ffffffffffffffffffffffffffffffffffffffff1614611113576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110a9061374b565b60405180910390fd5b6008544711611157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114e906137ab565b60405180910390fd5b6000600e541161119c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111939061382b565b60405180910390fd5b6000662386f26fc10000476111b19190613a19565b90506000600e5467ffffffffffffffff8111156111f7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156112255781602001602082028036833780820191505090505b5090506000805b600c805490508110156114d2576000600c8281548110611275577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000805b855181101561133f578273ffffffffffffffffffffffffffffffffffffffff168682815181106112ff577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff16141561132c576001915061133f565b808061133790613b90565b9150506112a6565b508015801561138d57506000600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156114bd57818585815181106113cc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050838061141190613b90565b9450508173ffffffffffffffffffffffffffffffffffffffff166108fc606480600d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461147b919061398e565b8961148691906139bf565b611490919061398e565b9081150290604051600060405180830381858888f193505050501580156114bb573d6000803e3d6000fd5b505b505080806114ca90613b90565b91505061122c565b50505050565b6114f383838360405180602001604052806000815250611a26565b505050565b606061150332610c88565b905090565b600c818154811061151857600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e7906136eb565b60405180910390fd5b80915050919050565b600d6020528060005260406000206000915090505481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611682576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611679906136cb565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116d1612081565b73ffffffffffffffffffffffffffffffffffffffff166116ef611757565b73ffffffffffffffffffffffffffffffffffffffff1614611745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173c9061374b565b60405180910390fd5b61174f6000612506565b565b600b5481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611789612081565b73ffffffffffffffffffffffffffffffffffffffff166117a7611757565b73ffffffffffffffffffffffffffffffffffffffff16146117fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f49061374b565b60405180910390fd5b8060088190555050565b60606001805461181690613b2d565b80601f016020809104026020016040519081016040528092919081815260200182805461184290613b2d565b801561188f5780601f106118645761010080835404028352916020019161188f565b820191906000526020600020905b81548152906001019060200180831161187257829003601f168201915b5050505050905090565b60085481565b6118a7612081565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190c9061366b565b60405180910390fd5b8060056000611922612081565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119cf612081565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a14919061356e565b60405180910390a35050565b600a5481565b611a37611a31612081565b836121cc565b611a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6d9061380b565b60405180910390fd5b611a82848484846125cc565b50505050565b611a90612081565b73ffffffffffffffffffffffffffffffffffffffff16611aae611757565b73ffffffffffffffffffffffffffffffffffffffff1614611b04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afb9061374b565b60405180910390fd5b80600b8190555050565b6060611b19826120a7565b611b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4f9061378b565b60405180910390fd5b6000611b62612628565b90506000815111611b825760405180602001604052806000815250611bad565b80611b8c846126ba565b604051602001611b9d929190613498565b6040516020818303038152906040525b915050919050565b600b5481111580611bc65750600181105b611c05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfc9061360b565b60405180910390fd5b600954600a5482611c169190613938565b1115611c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4e906137eb565b60405180910390fd5b80600854611c6591906139bf565b3414611ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9d9061362b565b60405180910390fd5b60005b81811015611cf5576000600a549050611cc9611cc3612081565b82612089565b600a6000815480929190611cdc90613b90565b9190505550508080611ced90613b90565b915050611ca9565b507f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885611d1f612081565b82604051611d2e929190613523565b60405180910390a150565b611d41612081565b73ffffffffffffffffffffffffffffffffffffffff16611d5f611757565b73ffffffffffffffffffffffffffffffffffffffff1614611db5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dac9061374b565b60405180910390fd5b611dbd612081565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611e02573d6000803e3d6000fd5b50565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ea1612081565b73ffffffffffffffffffffffffffffffffffffffff16611ebf611757565b73ffffffffffffffffffffffffffffffffffffffff1614611f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0c9061374b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7c906135cb565b60405180910390fd5b611f8e81612506565b50565b611f99612081565b73ffffffffffffffffffffffffffffffffffffffff16611fb7611757565b73ffffffffffffffffffffffffffffffffffffffff161461200d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120049061374b565b60405180910390fd5b8060098190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6120a3828260405180602001604052806000815250612867565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661218683611547565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006121d7826120a7565b612216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220d9061368b565b60405180910390fd5b600061222183611547565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061229057508373ffffffffffffffffffffffffffffffffffffffff1661227884610a85565b73ffffffffffffffffffffffffffffffffffffffff16145b806122a157506122a08185611e05565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122ca82611547565b73ffffffffffffffffffffffffffffffffffffffff1614612320576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123179061376b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612390576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123879061364b565b60405180910390fd5b61239b8383836128c2565b6123a6600082612113565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123f69190613a19565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461244d9190613938565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6125d78484846122aa565b6125e3848484846128c7565b612622576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612619906135ab565b60405180910390fd5b50505050565b60606007805461263790613b2d565b80601f016020809104026020016040519081016040528092919081815260200182805461266390613b2d565b80156126b05780601f10612685576101008083540402835291602001916126b0565b820191906000526020600020905b81548152906001019060200180831161269357829003601f168201915b5050505050905090565b60606000821415612702576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612862565b600082905060005b6000821461273457808061271d90613b90565b915050600a8261272d919061398e565b915061270a565b60008167ffffffffffffffff811115612776577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156127a85781602001600182028036833780820191505090505b5090505b6000851461285b576001826127c19190613a19565b9150600a856127d09190613bd9565b60306127dc9190613938565b60f81b818381518110612818577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612854919061398e565b94506127ac565b8093505050505b919050565b6128718383612a5e565b61287e60008484846128c7565b6128bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b4906135ab565b60405180910390fd5b505050565b505050565b60006128e88473ffffffffffffffffffffffffffffffffffffffff16612c2c565b15612a51578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612911612081565b8786866040518563ffffffff1660e01b815260040161293394939291906134d7565b602060405180830381600087803b15801561294d57600080fd5b505af192505050801561297e57506040513d601f19601f8201168201806040525081019061297b9190612fcd565b60015b612a01573d80600081146129ae576040519150601f19603f3d011682016040523d82523d6000602084013e6129b3565b606091505b506000815114156129f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f0906135ab565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a56565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac59061370b565b60405180910390fd5b612ad7816120a7565b15612b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0e906135eb565b60405180910390fd5b612b23600083836128c2565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b739190613938565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612c4b90613b2d565b90600052602060002090601f016020900481019282612c6d5760008555612cb4565b82601f10612c8657803560ff1916838001178555612cb4565b82800160010185558215612cb4579182015b82811115612cb3578235825591602001919060010190612c98565b5b509050612cc19190612cc5565b5090565b5b80821115612cde576000816000905550600101612cc6565b5090565b6000612cf5612cf08461388b565b613866565b905082815260208101848484011115612d0d57600080fd5b612d18848285613ac1565b509392505050565b600081359050612d2f81614294565b92915050565b600081359050612d44816142ab565b92915050565b600081359050612d59816142c2565b92915050565b600081519050612d6e816142c2565b92915050565b600082601f830112612d8557600080fd5b8135612d95848260208601612ce2565b91505092915050565b60008083601f840112612db057600080fd5b8235905067ffffffffffffffff811115612dc957600080fd5b602083019150836001820283011115612de157600080fd5b9250929050565b600081359050612df7816142d9565b92915050565b600060208284031215612e0f57600080fd5b6000612e1d84828501612d20565b91505092915050565b60008060408385031215612e3957600080fd5b6000612e4785828601612d20565b9250506020612e5885828601612d20565b9150509250929050565b600080600060608486031215612e7757600080fd5b6000612e8586828701612d20565b9350506020612e9686828701612d20565b9250506040612ea786828701612de8565b9150509250925092565b60008060008060808587031215612ec757600080fd5b6000612ed587828801612d20565b9450506020612ee687828801612d20565b9350506040612ef787828801612de8565b925050606085013567ffffffffffffffff811115612f1457600080fd5b612f2087828801612d74565b91505092959194509250565b60008060408385031215612f3f57600080fd5b6000612f4d85828601612d20565b9250506020612f5e85828601612d35565b9150509250929050565b60008060408385031215612f7b57600080fd5b6000612f8985828601612d20565b9250506020612f9a85828601612de8565b9150509250929050565b600060208284031215612fb657600080fd5b6000612fc484828501612d4a565b91505092915050565b600060208284031215612fdf57600080fd5b6000612fed84828501612d5f565b91505092915050565b6000806020838503121561300957600080fd5b600083013567ffffffffffffffff81111561302357600080fd5b61302f85828601612d9e565b92509250509250929050565b60006020828403121561304d57600080fd5b600061305b84828501612de8565b91505092915050565b6000613070838361347a565b60208301905092915050565b61308581613a4d565b82525050565b6000613096826138cc565b6130a081856138fa565b93506130ab836138bc565b8060005b838110156130dc5781516130c38882613064565b97506130ce836138ed565b9250506001810190506130af565b5085935050505092915050565b6130f281613a5f565b82525050565b6000613103826138d7565b61310d818561390b565b935061311d818560208601613ad0565b61312681613cc6565b840191505092915050565b600061313c826138e2565b613146818561391c565b9350613156818560208601613ad0565b61315f81613cc6565b840191505092915050565b6000613175826138e2565b61317f818561392d565b935061318f818560208601613ad0565b80840191505092915050565b60006131a860328361391c565b91506131b382613cd7565b604082019050919050565b60006131cb60268361391c565b91506131d682613d26565b604082019050919050565b60006131ee601c8361391c565b91506131f982613d75565b602082019050919050565b600061321160248361391c565b915061321c82613d9e565b604082019050919050565b600061323460168361391c565b915061323f82613ded565b602082019050919050565b600061325760248361391c565b915061326282613e16565b604082019050919050565b600061327a60198361391c565b915061328582613e65565b602082019050919050565b600061329d602c8361391c565b91506132a882613e8e565b604082019050919050565b60006132c060388361391c565b91506132cb82613edd565b604082019050919050565b60006132e3602a8361391c565b91506132ee82613f2c565b604082019050919050565b600061330660298361391c565b915061331182613f7b565b604082019050919050565b600061332960208361391c565b915061333482613fca565b602082019050919050565b600061334c602c8361391c565b915061335782613ff3565b604082019050919050565b600061336f60208361391c565b915061337a82614042565b602082019050919050565b600061339260298361391c565b915061339d8261406b565b604082019050919050565b60006133b5602f8361391c565b91506133c0826140ba565b604082019050919050565b60006133d860288361391c565b91506133e382614109565b604082019050919050565b60006133fb60218361391c565b915061340682614158565b604082019050919050565b600061341e60218361391c565b9150613429826141a7565b604082019050919050565b600061344160318361391c565b915061344c826141f6565b604082019050919050565b6000613464602b8361391c565b915061346f82614245565b604082019050919050565b61348381613ab7565b82525050565b61349281613ab7565b82525050565b60006134a4828561316a565b91506134b0828461316a565b91508190509392505050565b60006020820190506134d1600083018461307c565b92915050565b60006080820190506134ec600083018761307c565b6134f9602083018661307c565b6135066040830185613489565b818103606083015261351881846130f8565b905095945050505050565b6000604082019050613538600083018561307c565b6135456020830184613489565b9392505050565b60006020820190508181036000830152613566818461308b565b905092915050565b600060208201905061358360008301846130e9565b92915050565b600060208201905081810360008301526135a38184613131565b905092915050565b600060208201905081810360008301526135c48161319b565b9050919050565b600060208201905081810360008301526135e4816131be565b9050919050565b60006020820190508181036000830152613604816131e1565b9050919050565b6000602082019050818103600083015261362481613204565b9050919050565b6000602082019050818103600083015261364481613227565b9050919050565b600060208201905081810360008301526136648161324a565b9050919050565b600060208201905081810360008301526136848161326d565b9050919050565b600060208201905081810360008301526136a481613290565b9050919050565b600060208201905081810360008301526136c4816132b3565b9050919050565b600060208201905081810360008301526136e4816132d6565b9050919050565b60006020820190508181036000830152613704816132f9565b9050919050565b600060208201905081810360008301526137248161331c565b9050919050565b600060208201905081810360008301526137448161333f565b9050919050565b6000602082019050818103600083015261376481613362565b9050919050565b6000602082019050818103600083015261378481613385565b9050919050565b600060208201905081810360008301526137a4816133a8565b9050919050565b600060208201905081810360008301526137c4816133cb565b9050919050565b600060208201905081810360008301526137e4816133ee565b9050919050565b6000602082019050818103600083015261380481613411565b9050919050565b6000602082019050818103600083015261382481613434565b9050919050565b6000602082019050818103600083015261384481613457565b9050919050565b60006020820190506138606000830184613489565b92915050565b6000613870613881565b905061387c8282613b5f565b919050565b6000604051905090565b600067ffffffffffffffff8211156138a6576138a5613c97565b5b6138af82613cc6565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061394382613ab7565b915061394e83613ab7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561398357613982613c0a565b5b828201905092915050565b600061399982613ab7565b91506139a483613ab7565b9250826139b4576139b3613c39565b5b828204905092915050565b60006139ca82613ab7565b91506139d583613ab7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a0e57613a0d613c0a565b5b828202905092915050565b6000613a2482613ab7565b9150613a2f83613ab7565b925082821015613a4257613a41613c0a565b5b828203905092915050565b6000613a5882613a97565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613aee578082015181840152602081019050613ad3565b83811115613afd576000848401525b50505050565b6000613b0e82613ab7565b91506000821415613b2257613b21613c0a565b5b600182039050919050565b60006002820490506001821680613b4557607f821691505b60208210811415613b5957613b58613c68565b5b50919050565b613b6882613cc6565b810181811067ffffffffffffffff82111715613b8757613b86613c97565b5b80604052505050565b6000613b9b82613ab7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613bce57613bcd613c0a565b5b600182019050919050565b6000613be482613ab7565b9150613bef83613ab7565b925082613bff57613bfe613c39565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5452414e53414354494f4e3a20717479206f66206d696e7473206e6f7420616c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b7f5041594d454e543a20696e76616c69642076616c756500000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f74686973206163636f756e7420646f65736e2774206861766520656e6f75676860008201527f2062616c616e6365000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f535550504c593a2056616c7565206578636565647320746f74616c537570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f57495448445241573a20636f756c646e27742066696e6420616e79207061796160008201527f626c652061646472657373000000000000000000000000000000000000000000602082015250565b61429d81613a4d565b81146142a857600080fd5b50565b6142b481613a5f565b81146142bf57600080fd5b50565b6142cb81613a6b565b81146142d657600080fd5b50565b6142e281613ab7565b81146142ed57600080fd5b5056fea264697066735822122047e788cbf1eb994e4e82be212d6b6fca6138444a6b8272a6bbe934f803db157664736f6c63430008040033

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.