ETH Price: $3,463.94 (-1.50%)
Gas: 4 Gwei

Token

 

Overview

Max Total Supply

100,000,000

Holders

440

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
rockroll.eth
0x6659b3ac47dc9b7b0a0211a4bdfdc4d4831bd8f0
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
PoorLandMaterialNFT

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : PoorLandMaterialNFT.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import '@openzeppelin/contracts/utils/Strings.sol';

import "./IBuilderMaterial.sol";


contract PoorLandMaterialNFT is ERC1155, IBuilderMaterial, Ownable {
    /// @dev Library
    using Strings for uint256;

    uint256 public constant STORAGE = 100000000;

    uint256 public constant BATCH_MINT_LIMIT = 10;
    uint256 public constant PER_ADDR_LIMIT = 100;
    uint256 public constant MINT_PRICE = 0.0001 ether;

    //private ////////////////////////////////////////////
    uint256 private _totalSupply = 0;
    uint256 private _totalBurned = 0;
    mapping(address=>uint256) private _minted;

    bool private _sale = true;

    string private _baseURI = "https://gateway.pinata.cloud/";
    string private _path = "ipfs/QmS6oiLQVaE1BYohDRDceaLgMLrymcnha1kG3NfqkjHSfy/";
    address private _builder;


    // token
    uint256 public constant POORLAND_MATERIAL = 0;


    modifier onlyBuilder() {
        require(_builder != address(0) && _builder == _msgSender(), "Builder: caller is not the builder");
        _;
    }


    function uri(uint256 _tokenId) public view override returns (string memory) {
        return string(abi.encodePacked(_baseURI, _path,  _tokenId.toString(), ".json"));
    }

    function totalSupply() public view returns(uint256 supply) {
        supply = _totalSupply;
    }

    function totalBurned() public view returns(uint256) {
        return _totalBurned;
    }

    constructor() ERC1155("") {}

    function mint(uint256 mintAmount) external payable {
    
        validator(msg.sender, mintAmount);
        mintTo(msg.sender, mintAmount);
    }

    function materialBalance(address _owner) public view returns (uint256 _balance) {
        _balance = balanceOf(_owner, POORLAND_MATERIAL);
    }
    
    function validator(address addr, uint256 amount) private {
        // basic validate
        require(_sale == true, "Selling not started");
        require(amount >= 1, "Need to purchase at least one");
        require(amount <= BATCH_MINT_LIMIT, "Can purchase 10 once at most");
        require(_minted[addr] + amount <= PER_ADDR_LIMIT, "Limit 100 per address");
        require(msg.value >= MINT_PRICE, "Insufficient funds sent");
        isEnough(amount);
    }

    function spendMaterialToBuild(address tokenOwner, uint256 spend) external override onlyBuilder {

        require(materialBalance(tokenOwner) >= spend, "Balance is not enough");
        _burn(tokenOwner, POORLAND_MATERIAL, spend);
        _totalBurned += spend;

    }

    function isEnough(uint256 amount) private view returns (bool enough) {
        uint256 solded = totalSupply();
        uint256 afterPurchased = solded + amount;
        enough = true;
        require(afterPurchased <= STORAGE, "Out of stock");
    }

    function mintTo(address purchaseUser, uint256 amount) private {
        _mint(purchaseUser, POORLAND_MATERIAL, amount, "");
        _minted[purchaseUser] += amount;
        _totalSupply += amount;
    }


    function updateURI(string memory uri_) external onlyOwner {
        _baseURI = uri_;
    }

    function updatePath(string memory path_) external onlyOwner {
        _path = path_;
    }

    function updateURL(string memory uri_, string memory path_) external onlyOwner {
        _baseURI = uri_;
        _path = path_;
    }


    function toggleSale() external onlyOwner {
        _sale = !_sale;
    } 

    function updateBuilder(address builder_) external onlyOwner {
        _builder = builder_;
    }

    function batchMint(address wallet, uint amount) public onlyOwner {
        isEnough(amount);
        mintTo(wallet, amount);
    }

    function withdrawTo(address targetAddress) external onlyOwner {
        payable(targetAddress).transfer(address(this).balance);
    }

    function withdrawLimit(address targetAddress, uint256 amount) external onlyOwner {
        payable(targetAddress).transfer(amount);
    }
}

File 2 of 12 : ERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;

import "./IERC1155.sol";
import "./IERC1155Receiver.sol";
import "./extensions/IERC1155MetadataURI.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC1155: setting approval status for self");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

File 3 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

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() {
        _transferOwnership(_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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 4 of 12 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

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 5 of 12 : IBuilderMaterial.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface IBuilderMaterial {
      function spendMaterialToBuild(address owner, uint256 spend) external;
}

File 6 of 12 : IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

File 7 of 12 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
     * @dev Handles the receipt of a single ERC1155 token type. This function is
     * called at the end of a `safeTransferFrom` after the balance has been updated.
     *
     * NOTE: To accept the transfer, this must return
     * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
     * (i.e. 0xf23a6e61, or its own function selector).
     *
     * @param operator The address which initiated the transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param id The ID of the token being transferred
     * @param value The amount of tokens being transferred
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
     */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
     * @dev Handles the receipt of a multiple ERC1155 token types. This function
     * is called at the end of a `safeBatchTransferFrom` after the balances have
     * been updated.
     *
     * NOTE: To accept the transfer(s), this must return
     * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
     * (i.e. 0xbc197c81, or its own function selector).
     *
     * @param operator The address which initiated the batch transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param ids An array containing ids of each token being transferred (order and length must match values array)
     * @param values An array containing amounts of each token being transferred (order and length must match ids array)
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
     */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

File 8 of 12 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;

import "../IERC1155.sol";

/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

File 9 of 12 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal 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 10 of 12 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

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 11 of 12 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

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 12 of 12 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

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
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"BATCH_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PER_ADDR_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"POORLAND_MATERIAL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STORAGE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"materialBalance","outputs":[{"internalType":"uint256","name":"_balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","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":"address","name":"tokenOwner","type":"address"},{"internalType":"uint256","name":"spend","type":"uint256"}],"name":"spendMaterialToBuild","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"supply","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"builder_","type":"address"}],"name":"updateBuilder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"path_","type":"string"}],"name":"updatePath","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"updateURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"},{"internalType":"string","name":"path_","type":"string"}],"name":"updateURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"targetAddress","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"targetAddress","type":"address"}],"name":"withdrawTo","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600060045560006005556001600760006101000a81548160ff0219169083151502179055506040518060400160405280601d81526020017f68747470733a2f2f676174657761792e70696e6174612e636c6f75642f0000008152506008908051906020019062000076929190620001e9565b5060405180606001604052806034815260200162004a336034913960099080519060200190620000a8929190620001e9565b50348015620000b657600080fd5b5060405180602001604052806000815250620000d881620000ff60201b60201c565b50620000f9620000ed6200011b60201b60201c565b6200012360201b60201c565b620002fe565b806002908051906020019062000117929190620001e9565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001f79062000299565b90600052602060002090601f0160209004810192826200021b576000855562000267565b82601f106200023657805160ff191683800117855562000267565b8280016001018555821562000267579182015b828111156200026657825182559160200191906001019062000249565b5b5090506200027691906200027a565b5090565b5b80821115620002955760008160009055506001016200027b565b5090565b60006002820490506001821680620002b257607f821691505b60208210811415620002c957620002c8620002cf565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614725806200030e6000396000f3fe6080604052600436106101c15760003560e01c80637d8966e4116100f7578063c002d23d11610095578063e1a37cca11610064578063e1a37cca14610608578063e985e9c514610633578063f242432a14610670578063f2fde38b14610699576101c1565b8063c002d23d1461055e578063c30f4a5a14610589578063d80ea9d5146105b2578063d89135cd146105dd576101c1565b80639438d92d116100d15780639438d92d146104b1578063a0712d68146104dc578063a22cb465146104f8578063af00df5c14610521576101c1565b80637d8966e414610446578063839e5f781461045d5780638da5cb5b14610486576101c1565b80633e62cf50116101645780634e23ae6c1161013e5780634e23ae6c146103b45780636a73efb8146103dd578063715018a61461040657806372b0d90c1461041d576101c1565b80633e62cf501461032557806343508b051461034e5780634e1273f414610377576101c1565b80630b1a818e116101a05780630b1a818e1461026b5780630e89341c1461029457806318160ddd146102d15780632eb2c2d6146102fc576101c1565b8062fdd58e146101c657806301ffc9a7146102035780630a90e46514610240575b600080fd5b3480156101d257600080fd5b506101ed60048036038101906101e89190612f72565b6106c2565b6040516101fa9190613aed565b60405180910390f35b34801561020f57600080fd5b5061022a6004803603810190610225919061301a565b61078b565b60405161023791906137d0565b60405180910390f35b34801561024c57600080fd5b5061025561086d565b6040516102629190613aed565b60405180910390f35b34801561027757600080fd5b50610292600480360381019061028d9190612d83565b610872565b005b3480156102a057600080fd5b506102bb60048036038101906102b69190613119565b610932565b6040516102c891906137eb565b60405180910390f35b3480156102dd57600080fd5b506102e6610969565b6040516102f39190613aed565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e9190612de8565b610973565b005b34801561033157600080fd5b5061034c6004803603810190610347919061306c565b610a14565b005b34801561035a57600080fd5b5061037560048036038101906103709190612f72565b610aaa565b005b34801561038357600080fd5b5061039e60048036038101906103999190612fae565b610b3e565b6040516103ab9190613777565b60405180910390f35b3480156103c057600080fd5b506103db60048036038101906103d69190612f72565b610cef565b005b3480156103e957600080fd5b5061040460048036038101906103ff9190612f72565b610db6565b005b34801561041257600080fd5b5061041b610f1c565b005b34801561042957600080fd5b50610444600480360381019061043f9190612d83565b610fa4565b005b34801561045257600080fd5b5061045b61106a565b005b34801561046957600080fd5b50610484600480360381019061047f91906130ad565b611112565b005b34801561049257600080fd5b5061049b6111c0565b6040516104a8919061369a565b60405180910390f35b3480156104bd57600080fd5b506104c66111ea565b6040516104d39190613aed565b60405180910390f35b6104f660048036038101906104f19190613119565b6111ef565b005b34801561050457600080fd5b5061051f600480360381019061051a9190612f36565b611206565b005b34801561052d57600080fd5b5061054860048036038101906105439190612d83565b61121c565b6040516105559190613aed565b60405180910390f35b34801561056a57600080fd5b50610573611230565b6040516105809190613aed565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab919061306c565b61123a565b005b3480156105be57600080fd5b506105c76112d0565b6040516105d49190613aed565b60405180910390f35b3480156105e957600080fd5b506105f26112d8565b6040516105ff9190613aed565b60405180910390f35b34801561061457600080fd5b5061061d6112e2565b60405161062a9190613aed565b60405180910390f35b34801561063f57600080fd5b5061065a60048036038101906106559190612dac565b6112e7565b60405161066791906137d0565b60405180910390f35b34801561067c57600080fd5b5061069760048036038101906106929190612ea7565b61137b565b005b3480156106a557600080fd5b506106c060048036038101906106bb9190612d83565b61141c565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610733576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072a9061386d565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085657507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610866575061086582611514565b5b9050919050565b606481565b61087a61157e565b73ffffffffffffffffffffffffffffffffffffffff166108986111c0565b73ffffffffffffffffffffffffffffffffffffffff16146108ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e5906139ad565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606008600961094184611586565b6040516020016109539392919061365e565b6040516020818303038152906040529050919050565b6000600454905090565b61097b61157e565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806109c157506109c0856109bb61157e565b6112e7565b5b610a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f79061394d565b60405180910390fd5b610a0d8585858585611733565b5050505050565b610a1c61157e565b73ffffffffffffffffffffffffffffffffffffffff16610a3a6111c0565b73ffffffffffffffffffffffffffffffffffffffff1614610a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a87906139ad565b60405180910390fd5b8060099080519060200190610aa6929190612a7b565b5050565b610ab261157e565b73ffffffffffffffffffffffffffffffffffffffff16610ad06111c0565b73ffffffffffffffffffffffffffffffffffffffff1614610b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1d906139ad565b60405180910390fd5b610b2f81611a93565b50610b3a8282611b02565b5050565b60608151835114610b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7b90613a2d565b60405180910390fd5b6000835167ffffffffffffffff811115610bc7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610bf55781602001602082028036833780820191505090505b50905060005b8451811015610ce457610c8e858281518110610c40577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110610c81577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516106c2565b828281518110610cc7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080610cdd90613e75565b9050610bfb565b508091505092915050565b610cf761157e565b73ffffffffffffffffffffffffffffffffffffffff16610d156111c0565b73ffffffffffffffffffffffffffffffffffffffff1614610d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d62906139ad565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610db1573d6000803e3d6000fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614158015610e695750610e1861157e565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9f906139ed565b60405180910390fd5b80610eb28361121c565b1015610ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eea90613acd565b60405180910390fd5b610eff82600083611b91565b8060056000828254610f119190613ca1565b925050819055505050565b610f2461157e565b73ffffffffffffffffffffffffffffffffffffffff16610f426111c0565b73ffffffffffffffffffffffffffffffffffffffff1614610f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8f906139ad565b60405180910390fd5b610fa26000611dae565b565b610fac61157e565b73ffffffffffffffffffffffffffffffffffffffff16610fca6111c0565b73ffffffffffffffffffffffffffffffffffffffff1614611020576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611017906139ad565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611066573d6000803e3d6000fd5b5050565b61107261157e565b73ffffffffffffffffffffffffffffffffffffffff166110906111c0565b73ffffffffffffffffffffffffffffffffffffffff16146110e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dd906139ad565b60405180910390fd5b600760009054906101000a900460ff1615600760006101000a81548160ff021916908315150217905550565b61111a61157e565b73ffffffffffffffffffffffffffffffffffffffff166111386111c0565b73ffffffffffffffffffffffffffffffffffffffff161461118e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611185906139ad565b60405180910390fd5b81600890805190602001906111a4929190612a7b565b5080600990805190602001906111bb929190612a7b565b505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a81565b6111f93382611e74565b6112033382611b02565b50565b61121861121161157e565b8383612037565b5050565b60006112298260006106c2565b9050919050565b655af3107a400081565b61124261157e565b73ffffffffffffffffffffffffffffffffffffffff166112606111c0565b73ffffffffffffffffffffffffffffffffffffffff16146112b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ad906139ad565b60405180910390fd5b80600890805190602001906112cc929190612a7b565b5050565b6305f5e10081565b6000600554905090565b600081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61138361157e565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806113c957506113c8856113c361157e565b6112e7565b5b611408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ff906138cd565b60405180910390fd5b61141585858585856121a4565b5050505050565b61142461157e565b73ffffffffffffffffffffffffffffffffffffffff166114426111c0565b73ffffffffffffffffffffffffffffffffffffffff1614611498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148f906139ad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ff9061388d565b60405180910390fd5b61151181611dae565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b606060008214156115ce576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061172e565b600082905060005b600082146116005780806115e990613e75565b915050600a826115f99190613cf7565b91506115d6565b60008167ffffffffffffffff811115611642577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156116745781602001600182028036833780820191505090505b5090505b600085146117275760018261168d9190613d28565b9150600a8561169c9190613ebe565b60306116a89190613ca1565b60f81b8183815181106116e4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856117209190613cf7565b9450611678565b8093505050505b919050565b8151835114611777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176e90613a4d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156117e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117de9061392d565b60405180910390fd5b60006117f161157e565b9050611801818787878787612426565b60005b84518110156119fe576000858281518110611848577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600085838151811061188d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561192e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119259061398d565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119e39190613ca1565b92505081905550505050806119f790613e75565b9050611804565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611a75929190613799565b60405180910390a4611a8b81878787878761242e565b505050505050565b600080611a9e610969565b905060008382611aae9190613ca1565b9050600192506305f5e100811115611afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af29061390d565b60405180910390fd5b5050919050565b611b1e8260008360405180602001604052806000815250612615565b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b6d9190613ca1565b925050819055508060046000828254611b869190613ca1565b925050819055505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf89061396d565b60405180910390fd5b6000611c0b61157e565b9050611c3b81856000611c1d876127ab565b611c26876127ab565b60405180602001604052806000815250612426565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc9906138ad565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611d9f929190613b08565b60405180910390a45050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60011515600760009054906101000a900460ff16151514611eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec1906139cd565b60405180910390fd5b6001811015611f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0590613a6d565b60405180910390fd5b600a811115611f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f499061384d565b60405180910390fd5b606481600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f9f9190613ca1565b1115611fe0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd7906138ed565b60405180910390fd5b655af3107a4000341015612029576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202090613aad565b60405180910390fd5b61203281611a93565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209d90613a0d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161219791906137d0565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220b9061392d565b60405180910390fd5b600061221e61157e565b905061223e81878761222f886127ab565b612238886127ab565b87612426565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156122d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cc9061398d565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461238a9190613ca1565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051612407929190613b08565b60405180910390a461241d828888888888612871565b50505050505050565b505050505050565b61244d8473ffffffffffffffffffffffffffffffffffffffff16612a58565b1561260d578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016124939594939291906136b5565b602060405180830381600087803b1580156124ad57600080fd5b505af19250505080156124de57506040513d601f19601f820116820180604052508101906124db9190613043565b60015b612584576124ea613fab565b806308c379a0141561254757506124ff6145fd565b8061250a5750612549565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253e91906137eb565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257b9061380d565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461260b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126029061382d565b60405180910390fd5b505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612685576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267c90613a8d565b60405180910390fd5b600061268f61157e565b90506126b0816000876126a1886127ab565b6126aa886127ab565b87612426565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461270f9190613ca1565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161278d929190613b08565b60405180910390a46127a481600087878787612871565b5050505050565b60606000600167ffffffffffffffff8111156127f0577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561281e5781602001602082028036833780820191505090505b509050828160008151811061285c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b6128908473ffffffffffffffffffffffffffffffffffffffff16612a58565b15612a50578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016128d695949392919061371d565b602060405180830381600087803b1580156128f057600080fd5b505af192505050801561292157506040513d601f19601f8201168201806040525081019061291e9190613043565b60015b6129c75761292d613fab565b806308c379a0141561298a57506129426145fd565b8061294d575061298c565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298191906137eb565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129be9061380d565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a459061382d565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612a8790613e12565b90600052602060002090601f016020900481019282612aa95760008555612af0565b82601f10612ac257805160ff1916838001178555612af0565b82800160010185558215612af0579182015b82811115612aef578251825591602001919060010190612ad4565b5b509050612afd9190612b01565b5090565b5b80821115612b1a576000816000905550600101612b02565b5090565b6000612b31612b2c84613b56565b613b31565b90508083825260208201905082856020860282011115612b5057600080fd5b60005b85811015612b805781612b668882612c72565b845260208401935060208301925050600181019050612b53565b5050509392505050565b6000612b9d612b9884613b82565b613b31565b90508083825260208201905082856020860282011115612bbc57600080fd5b60005b85811015612bec5781612bd28882612d6e565b845260208401935060208301925050600181019050612bbf565b5050509392505050565b6000612c09612c0484613bae565b613b31565b905082815260208101848484011115612c2157600080fd5b612c2c848285613dd0565b509392505050565b6000612c47612c4284613bdf565b613b31565b905082815260208101848484011115612c5f57600080fd5b612c6a848285613dd0565b509392505050565b600081359050612c8181614693565b92915050565b600082601f830112612c9857600080fd5b8135612ca8848260208601612b1e565b91505092915050565b600082601f830112612cc257600080fd5b8135612cd2848260208601612b8a565b91505092915050565b600081359050612cea816146aa565b92915050565b600081359050612cff816146c1565b92915050565b600081519050612d14816146c1565b92915050565b600082601f830112612d2b57600080fd5b8135612d3b848260208601612bf6565b91505092915050565b600082601f830112612d5557600080fd5b8135612d65848260208601612c34565b91505092915050565b600081359050612d7d816146d8565b92915050565b600060208284031215612d9557600080fd5b6000612da384828501612c72565b91505092915050565b60008060408385031215612dbf57600080fd5b6000612dcd85828601612c72565b9250506020612dde85828601612c72565b9150509250929050565b600080600080600060a08688031215612e0057600080fd5b6000612e0e88828901612c72565b9550506020612e1f88828901612c72565b945050604086013567ffffffffffffffff811115612e3c57600080fd5b612e4888828901612cb1565b935050606086013567ffffffffffffffff811115612e6557600080fd5b612e7188828901612cb1565b925050608086013567ffffffffffffffff811115612e8e57600080fd5b612e9a88828901612d1a565b9150509295509295909350565b600080600080600060a08688031215612ebf57600080fd5b6000612ecd88828901612c72565b9550506020612ede88828901612c72565b9450506040612eef88828901612d6e565b9350506060612f0088828901612d6e565b925050608086013567ffffffffffffffff811115612f1d57600080fd5b612f2988828901612d1a565b9150509295509295909350565b60008060408385031215612f4957600080fd5b6000612f5785828601612c72565b9250506020612f6885828601612cdb565b9150509250929050565b60008060408385031215612f8557600080fd5b6000612f9385828601612c72565b9250506020612fa485828601612d6e565b9150509250929050565b60008060408385031215612fc157600080fd5b600083013567ffffffffffffffff811115612fdb57600080fd5b612fe785828601612c87565b925050602083013567ffffffffffffffff81111561300457600080fd5b61301085828601612cb1565b9150509250929050565b60006020828403121561302c57600080fd5b600061303a84828501612cf0565b91505092915050565b60006020828403121561305557600080fd5b600061306384828501612d05565b91505092915050565b60006020828403121561307e57600080fd5b600082013567ffffffffffffffff81111561309857600080fd5b6130a484828501612d44565b91505092915050565b600080604083850312156130c057600080fd5b600083013567ffffffffffffffff8111156130da57600080fd5b6130e685828601612d44565b925050602083013567ffffffffffffffff81111561310357600080fd5b61310f85828601612d44565b9150509250929050565b60006020828403121561312b57600080fd5b600061313984828501612d6e565b91505092915050565b600061314e8383613640565b60208301905092915050565b61316381613d5c565b82525050565b600061317482613c35565b61317e8185613c63565b935061318983613c10565b8060005b838110156131ba5781516131a18882613142565b97506131ac83613c56565b92505060018101905061318d565b5085935050505092915050565b6131d081613d6e565b82525050565b60006131e182613c40565b6131eb8185613c74565b93506131fb818560208601613ddf565b61320481613fcd565b840191505092915050565b600061321a82613c4b565b6132248185613c85565b9350613234818560208601613ddf565b61323d81613fcd565b840191505092915050565b600061325382613c4b565b61325d8185613c96565b935061326d818560208601613ddf565b80840191505092915050565b6000815461328681613e12565b6132908186613c96565b945060018216600081146132ab57600181146132bc576132ef565b60ff198316865281860193506132ef565b6132c585613c20565b60005b838110156132e7578154818901526001820191506020810190506132c8565b838801955050505b50505092915050565b6000613305603483613c85565b915061331082613feb565b604082019050919050565b6000613328602883613c85565b91506133338261403a565b604082019050919050565b600061334b601c83613c85565b915061335682614089565b602082019050919050565b600061336e602b83613c85565b9150613379826140b2565b604082019050919050565b6000613391602683613c85565b915061339c82614101565b604082019050919050565b60006133b4602483613c85565b91506133bf82614150565b604082019050919050565b60006133d7602983613c85565b91506133e28261419f565b604082019050919050565b60006133fa601583613c85565b9150613405826141ee565b602082019050919050565b600061341d600c83613c85565b915061342882614217565b602082019050919050565b6000613440602583613c85565b915061344b82614240565b604082019050919050565b6000613463603283613c85565b915061346e8261428f565b604082019050919050565b6000613486602383613c85565b9150613491826142de565b604082019050919050565b60006134a9602a83613c85565b91506134b48261432d565b604082019050919050565b60006134cc600583613c96565b91506134d78261437c565b600582019050919050565b60006134ef602083613c85565b91506134fa826143a5565b602082019050919050565b6000613512601383613c85565b915061351d826143ce565b602082019050919050565b6000613535602283613c85565b9150613540826143f7565b604082019050919050565b6000613558602983613c85565b915061356382614446565b604082019050919050565b600061357b602983613c85565b915061358682614495565b604082019050919050565b600061359e602883613c85565b91506135a9826144e4565b604082019050919050565b60006135c1601d83613c85565b91506135cc82614533565b602082019050919050565b60006135e4602183613c85565b91506135ef8261455c565b604082019050919050565b6000613607601783613c85565b9150613612826145ab565b602082019050919050565b600061362a601583613c85565b9150613635826145d4565b602082019050919050565b61364981613dc6565b82525050565b61365881613dc6565b82525050565b600061366a8286613279565b91506136768285613279565b91506136828284613248565b915061368d826134bf565b9150819050949350505050565b60006020820190506136af600083018461315a565b92915050565b600060a0820190506136ca600083018861315a565b6136d7602083018761315a565b81810360408301526136e98186613169565b905081810360608301526136fd8185613169565b9050818103608083015261371181846131d6565b90509695505050505050565b600060a082019050613732600083018861315a565b61373f602083018761315a565b61374c604083018661364f565b613759606083018561364f565b818103608083015261376b81846131d6565b90509695505050505050565b600060208201905081810360008301526137918184613169565b905092915050565b600060408201905081810360008301526137b38185613169565b905081810360208301526137c78184613169565b90509392505050565b60006020820190506137e560008301846131c7565b92915050565b60006020820190508181036000830152613805818461320f565b905092915050565b60006020820190508181036000830152613826816132f8565b9050919050565b600060208201905081810360008301526138468161331b565b9050919050565b600060208201905081810360008301526138668161333e565b9050919050565b6000602082019050818103600083015261388681613361565b9050919050565b600060208201905081810360008301526138a681613384565b9050919050565b600060208201905081810360008301526138c6816133a7565b9050919050565b600060208201905081810360008301526138e6816133ca565b9050919050565b60006020820190508181036000830152613906816133ed565b9050919050565b6000602082019050818103600083015261392681613410565b9050919050565b6000602082019050818103600083015261394681613433565b9050919050565b6000602082019050818103600083015261396681613456565b9050919050565b6000602082019050818103600083015261398681613479565b9050919050565b600060208201905081810360008301526139a68161349c565b9050919050565b600060208201905081810360008301526139c6816134e2565b9050919050565b600060208201905081810360008301526139e681613505565b9050919050565b60006020820190508181036000830152613a0681613528565b9050919050565b60006020820190508181036000830152613a268161354b565b9050919050565b60006020820190508181036000830152613a468161356e565b9050919050565b60006020820190508181036000830152613a6681613591565b9050919050565b60006020820190508181036000830152613a86816135b4565b9050919050565b60006020820190508181036000830152613aa6816135d7565b9050919050565b60006020820190508181036000830152613ac6816135fa565b9050919050565b60006020820190508181036000830152613ae68161361d565b9050919050565b6000602082019050613b02600083018461364f565b92915050565b6000604082019050613b1d600083018561364f565b613b2a602083018461364f565b9392505050565b6000613b3b613b4c565b9050613b478282613e44565b919050565b6000604051905090565b600067ffffffffffffffff821115613b7157613b70613f7c565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613b9d57613b9c613f7c565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613bc957613bc8613f7c565b5b613bd282613fcd565b9050602081019050919050565b600067ffffffffffffffff821115613bfa57613bf9613f7c565b5b613c0382613fcd565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613cac82613dc6565b9150613cb783613dc6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613cec57613ceb613eef565b5b828201905092915050565b6000613d0282613dc6565b9150613d0d83613dc6565b925082613d1d57613d1c613f1e565b5b828204905092915050565b6000613d3382613dc6565b9150613d3e83613dc6565b925082821015613d5157613d50613eef565b5b828203905092915050565b6000613d6782613da6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613dfd578082015181840152602081019050613de2565b83811115613e0c576000848401525b50505050565b60006002820490506001821680613e2a57607f821691505b60208210811415613e3e57613e3d613f4d565b5b50919050565b613e4d82613fcd565b810181811067ffffffffffffffff82111715613e6c57613e6b613f7c565b5b80604052505050565b6000613e8082613dc6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613eb357613eb2613eef565b5b600182019050919050565b6000613ec982613dc6565b9150613ed483613dc6565b925082613ee457613ee3613f1e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d1115613fca5760046000803e613fc7600051613fde565b90505b90565b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f43616e207075726368617365203130206f6e6365206174206d6f737400000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f4c696d6974203130302070657220616464726573730000000000000000000000600082015250565b7f4f7574206f662073746f636b0000000000000000000000000000000000000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f53656c6c696e67206e6f74207374617274656400000000000000000000000000600082015250565b7f4275696c6465723a2063616c6c6572206973206e6f7420746865206275696c6460008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f4e65656420746f207075726368617365206174206c65617374206f6e65000000600082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732073656e74000000000000000000600082015250565b7f42616c616e6365206973206e6f7420656e6f7567680000000000000000000000600082015250565b600060443d101561460d57614690565b614615613b4c565b60043d036004823e80513d602482011167ffffffffffffffff8211171561463d575050614690565b808201805167ffffffffffffffff81111561465b5750505050614690565b80602083010160043d038501811115614678575050505050614690565b61468782602001850186613e44565b82955050505050505b90565b61469c81613d5c565b81146146a757600080fd5b50565b6146b381613d6e565b81146146be57600080fd5b50565b6146ca81613d7a565b81146146d557600080fd5b50565b6146e181613dc6565b81146146ec57600080fd5b5056fea264697066735822122029f8d694ed03074cd1272b82550e8d058940ae5183964b07e33c239cd6c96f7964736f6c63430008040033697066732f516d53366f694c515661453142596f684452446365614c674d4c72796d636e6861316b47334e66716b6a485366792f

Deployed Bytecode

0x6080604052600436106101c15760003560e01c80637d8966e4116100f7578063c002d23d11610095578063e1a37cca11610064578063e1a37cca14610608578063e985e9c514610633578063f242432a14610670578063f2fde38b14610699576101c1565b8063c002d23d1461055e578063c30f4a5a14610589578063d80ea9d5146105b2578063d89135cd146105dd576101c1565b80639438d92d116100d15780639438d92d146104b1578063a0712d68146104dc578063a22cb465146104f8578063af00df5c14610521576101c1565b80637d8966e414610446578063839e5f781461045d5780638da5cb5b14610486576101c1565b80633e62cf50116101645780634e23ae6c1161013e5780634e23ae6c146103b45780636a73efb8146103dd578063715018a61461040657806372b0d90c1461041d576101c1565b80633e62cf501461032557806343508b051461034e5780634e1273f414610377576101c1565b80630b1a818e116101a05780630b1a818e1461026b5780630e89341c1461029457806318160ddd146102d15780632eb2c2d6146102fc576101c1565b8062fdd58e146101c657806301ffc9a7146102035780630a90e46514610240575b600080fd5b3480156101d257600080fd5b506101ed60048036038101906101e89190612f72565b6106c2565b6040516101fa9190613aed565b60405180910390f35b34801561020f57600080fd5b5061022a6004803603810190610225919061301a565b61078b565b60405161023791906137d0565b60405180910390f35b34801561024c57600080fd5b5061025561086d565b6040516102629190613aed565b60405180910390f35b34801561027757600080fd5b50610292600480360381019061028d9190612d83565b610872565b005b3480156102a057600080fd5b506102bb60048036038101906102b69190613119565b610932565b6040516102c891906137eb565b60405180910390f35b3480156102dd57600080fd5b506102e6610969565b6040516102f39190613aed565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e9190612de8565b610973565b005b34801561033157600080fd5b5061034c6004803603810190610347919061306c565b610a14565b005b34801561035a57600080fd5b5061037560048036038101906103709190612f72565b610aaa565b005b34801561038357600080fd5b5061039e60048036038101906103999190612fae565b610b3e565b6040516103ab9190613777565b60405180910390f35b3480156103c057600080fd5b506103db60048036038101906103d69190612f72565b610cef565b005b3480156103e957600080fd5b5061040460048036038101906103ff9190612f72565b610db6565b005b34801561041257600080fd5b5061041b610f1c565b005b34801561042957600080fd5b50610444600480360381019061043f9190612d83565b610fa4565b005b34801561045257600080fd5b5061045b61106a565b005b34801561046957600080fd5b50610484600480360381019061047f91906130ad565b611112565b005b34801561049257600080fd5b5061049b6111c0565b6040516104a8919061369a565b60405180910390f35b3480156104bd57600080fd5b506104c66111ea565b6040516104d39190613aed565b60405180910390f35b6104f660048036038101906104f19190613119565b6111ef565b005b34801561050457600080fd5b5061051f600480360381019061051a9190612f36565b611206565b005b34801561052d57600080fd5b5061054860048036038101906105439190612d83565b61121c565b6040516105559190613aed565b60405180910390f35b34801561056a57600080fd5b50610573611230565b6040516105809190613aed565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab919061306c565b61123a565b005b3480156105be57600080fd5b506105c76112d0565b6040516105d49190613aed565b60405180910390f35b3480156105e957600080fd5b506105f26112d8565b6040516105ff9190613aed565b60405180910390f35b34801561061457600080fd5b5061061d6112e2565b60405161062a9190613aed565b60405180910390f35b34801561063f57600080fd5b5061065a60048036038101906106559190612dac565b6112e7565b60405161066791906137d0565b60405180910390f35b34801561067c57600080fd5b5061069760048036038101906106929190612ea7565b61137b565b005b3480156106a557600080fd5b506106c060048036038101906106bb9190612d83565b61141c565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610733576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072a9061386d565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085657507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610866575061086582611514565b5b9050919050565b606481565b61087a61157e565b73ffffffffffffffffffffffffffffffffffffffff166108986111c0565b73ffffffffffffffffffffffffffffffffffffffff16146108ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e5906139ad565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606008600961094184611586565b6040516020016109539392919061365e565b6040516020818303038152906040529050919050565b6000600454905090565b61097b61157e565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806109c157506109c0856109bb61157e565b6112e7565b5b610a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f79061394d565b60405180910390fd5b610a0d8585858585611733565b5050505050565b610a1c61157e565b73ffffffffffffffffffffffffffffffffffffffff16610a3a6111c0565b73ffffffffffffffffffffffffffffffffffffffff1614610a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a87906139ad565b60405180910390fd5b8060099080519060200190610aa6929190612a7b565b5050565b610ab261157e565b73ffffffffffffffffffffffffffffffffffffffff16610ad06111c0565b73ffffffffffffffffffffffffffffffffffffffff1614610b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1d906139ad565b60405180910390fd5b610b2f81611a93565b50610b3a8282611b02565b5050565b60608151835114610b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7b90613a2d565b60405180910390fd5b6000835167ffffffffffffffff811115610bc7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610bf55781602001602082028036833780820191505090505b50905060005b8451811015610ce457610c8e858281518110610c40577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110610c81577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516106c2565b828281518110610cc7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080610cdd90613e75565b9050610bfb565b508091505092915050565b610cf761157e565b73ffffffffffffffffffffffffffffffffffffffff16610d156111c0565b73ffffffffffffffffffffffffffffffffffffffff1614610d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d62906139ad565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610db1573d6000803e3d6000fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614158015610e695750610e1861157e565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9f906139ed565b60405180910390fd5b80610eb28361121c565b1015610ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eea90613acd565b60405180910390fd5b610eff82600083611b91565b8060056000828254610f119190613ca1565b925050819055505050565b610f2461157e565b73ffffffffffffffffffffffffffffffffffffffff16610f426111c0565b73ffffffffffffffffffffffffffffffffffffffff1614610f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8f906139ad565b60405180910390fd5b610fa26000611dae565b565b610fac61157e565b73ffffffffffffffffffffffffffffffffffffffff16610fca6111c0565b73ffffffffffffffffffffffffffffffffffffffff1614611020576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611017906139ad565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611066573d6000803e3d6000fd5b5050565b61107261157e565b73ffffffffffffffffffffffffffffffffffffffff166110906111c0565b73ffffffffffffffffffffffffffffffffffffffff16146110e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dd906139ad565b60405180910390fd5b600760009054906101000a900460ff1615600760006101000a81548160ff021916908315150217905550565b61111a61157e565b73ffffffffffffffffffffffffffffffffffffffff166111386111c0565b73ffffffffffffffffffffffffffffffffffffffff161461118e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611185906139ad565b60405180910390fd5b81600890805190602001906111a4929190612a7b565b5080600990805190602001906111bb929190612a7b565b505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a81565b6111f93382611e74565b6112033382611b02565b50565b61121861121161157e565b8383612037565b5050565b60006112298260006106c2565b9050919050565b655af3107a400081565b61124261157e565b73ffffffffffffffffffffffffffffffffffffffff166112606111c0565b73ffffffffffffffffffffffffffffffffffffffff16146112b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ad906139ad565b60405180910390fd5b80600890805190602001906112cc929190612a7b565b5050565b6305f5e10081565b6000600554905090565b600081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61138361157e565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806113c957506113c8856113c361157e565b6112e7565b5b611408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ff906138cd565b60405180910390fd5b61141585858585856121a4565b5050505050565b61142461157e565b73ffffffffffffffffffffffffffffffffffffffff166114426111c0565b73ffffffffffffffffffffffffffffffffffffffff1614611498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148f906139ad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ff9061388d565b60405180910390fd5b61151181611dae565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b606060008214156115ce576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061172e565b600082905060005b600082146116005780806115e990613e75565b915050600a826115f99190613cf7565b91506115d6565b60008167ffffffffffffffff811115611642577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156116745781602001600182028036833780820191505090505b5090505b600085146117275760018261168d9190613d28565b9150600a8561169c9190613ebe565b60306116a89190613ca1565b60f81b8183815181106116e4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856117209190613cf7565b9450611678565b8093505050505b919050565b8151835114611777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176e90613a4d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156117e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117de9061392d565b60405180910390fd5b60006117f161157e565b9050611801818787878787612426565b60005b84518110156119fe576000858281518110611848577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600085838151811061188d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561192e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119259061398d565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119e39190613ca1565b92505081905550505050806119f790613e75565b9050611804565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611a75929190613799565b60405180910390a4611a8b81878787878761242e565b505050505050565b600080611a9e610969565b905060008382611aae9190613ca1565b9050600192506305f5e100811115611afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af29061390d565b60405180910390fd5b5050919050565b611b1e8260008360405180602001604052806000815250612615565b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b6d9190613ca1565b925050819055508060046000828254611b869190613ca1565b925050819055505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf89061396d565b60405180910390fd5b6000611c0b61157e565b9050611c3b81856000611c1d876127ab565b611c26876127ab565b60405180602001604052806000815250612426565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc9906138ad565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611d9f929190613b08565b60405180910390a45050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60011515600760009054906101000a900460ff16151514611eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec1906139cd565b60405180910390fd5b6001811015611f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0590613a6d565b60405180910390fd5b600a811115611f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f499061384d565b60405180910390fd5b606481600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f9f9190613ca1565b1115611fe0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd7906138ed565b60405180910390fd5b655af3107a4000341015612029576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202090613aad565b60405180910390fd5b61203281611a93565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209d90613a0d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161219791906137d0565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220b9061392d565b60405180910390fd5b600061221e61157e565b905061223e81878761222f886127ab565b612238886127ab565b87612426565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156122d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cc9061398d565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461238a9190613ca1565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051612407929190613b08565b60405180910390a461241d828888888888612871565b50505050505050565b505050505050565b61244d8473ffffffffffffffffffffffffffffffffffffffff16612a58565b1561260d578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016124939594939291906136b5565b602060405180830381600087803b1580156124ad57600080fd5b505af19250505080156124de57506040513d601f19601f820116820180604052508101906124db9190613043565b60015b612584576124ea613fab565b806308c379a0141561254757506124ff6145fd565b8061250a5750612549565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253e91906137eb565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257b9061380d565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461260b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126029061382d565b60405180910390fd5b505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612685576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267c90613a8d565b60405180910390fd5b600061268f61157e565b90506126b0816000876126a1886127ab565b6126aa886127ab565b87612426565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461270f9190613ca1565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161278d929190613b08565b60405180910390a46127a481600087878787612871565b5050505050565b60606000600167ffffffffffffffff8111156127f0577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561281e5781602001602082028036833780820191505090505b509050828160008151811061285c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b6128908473ffffffffffffffffffffffffffffffffffffffff16612a58565b15612a50578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016128d695949392919061371d565b602060405180830381600087803b1580156128f057600080fd5b505af192505050801561292157506040513d601f19601f8201168201806040525081019061291e9190613043565b60015b6129c75761292d613fab565b806308c379a0141561298a57506129426145fd565b8061294d575061298c565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298191906137eb565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129be9061380d565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a459061382d565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612a8790613e12565b90600052602060002090601f016020900481019282612aa95760008555612af0565b82601f10612ac257805160ff1916838001178555612af0565b82800160010185558215612af0579182015b82811115612aef578251825591602001919060010190612ad4565b5b509050612afd9190612b01565b5090565b5b80821115612b1a576000816000905550600101612b02565b5090565b6000612b31612b2c84613b56565b613b31565b90508083825260208201905082856020860282011115612b5057600080fd5b60005b85811015612b805781612b668882612c72565b845260208401935060208301925050600181019050612b53565b5050509392505050565b6000612b9d612b9884613b82565b613b31565b90508083825260208201905082856020860282011115612bbc57600080fd5b60005b85811015612bec5781612bd28882612d6e565b845260208401935060208301925050600181019050612bbf565b5050509392505050565b6000612c09612c0484613bae565b613b31565b905082815260208101848484011115612c2157600080fd5b612c2c848285613dd0565b509392505050565b6000612c47612c4284613bdf565b613b31565b905082815260208101848484011115612c5f57600080fd5b612c6a848285613dd0565b509392505050565b600081359050612c8181614693565b92915050565b600082601f830112612c9857600080fd5b8135612ca8848260208601612b1e565b91505092915050565b600082601f830112612cc257600080fd5b8135612cd2848260208601612b8a565b91505092915050565b600081359050612cea816146aa565b92915050565b600081359050612cff816146c1565b92915050565b600081519050612d14816146c1565b92915050565b600082601f830112612d2b57600080fd5b8135612d3b848260208601612bf6565b91505092915050565b600082601f830112612d5557600080fd5b8135612d65848260208601612c34565b91505092915050565b600081359050612d7d816146d8565b92915050565b600060208284031215612d9557600080fd5b6000612da384828501612c72565b91505092915050565b60008060408385031215612dbf57600080fd5b6000612dcd85828601612c72565b9250506020612dde85828601612c72565b9150509250929050565b600080600080600060a08688031215612e0057600080fd5b6000612e0e88828901612c72565b9550506020612e1f88828901612c72565b945050604086013567ffffffffffffffff811115612e3c57600080fd5b612e4888828901612cb1565b935050606086013567ffffffffffffffff811115612e6557600080fd5b612e7188828901612cb1565b925050608086013567ffffffffffffffff811115612e8e57600080fd5b612e9a88828901612d1a565b9150509295509295909350565b600080600080600060a08688031215612ebf57600080fd5b6000612ecd88828901612c72565b9550506020612ede88828901612c72565b9450506040612eef88828901612d6e565b9350506060612f0088828901612d6e565b925050608086013567ffffffffffffffff811115612f1d57600080fd5b612f2988828901612d1a565b9150509295509295909350565b60008060408385031215612f4957600080fd5b6000612f5785828601612c72565b9250506020612f6885828601612cdb565b9150509250929050565b60008060408385031215612f8557600080fd5b6000612f9385828601612c72565b9250506020612fa485828601612d6e565b9150509250929050565b60008060408385031215612fc157600080fd5b600083013567ffffffffffffffff811115612fdb57600080fd5b612fe785828601612c87565b925050602083013567ffffffffffffffff81111561300457600080fd5b61301085828601612cb1565b9150509250929050565b60006020828403121561302c57600080fd5b600061303a84828501612cf0565b91505092915050565b60006020828403121561305557600080fd5b600061306384828501612d05565b91505092915050565b60006020828403121561307e57600080fd5b600082013567ffffffffffffffff81111561309857600080fd5b6130a484828501612d44565b91505092915050565b600080604083850312156130c057600080fd5b600083013567ffffffffffffffff8111156130da57600080fd5b6130e685828601612d44565b925050602083013567ffffffffffffffff81111561310357600080fd5b61310f85828601612d44565b9150509250929050565b60006020828403121561312b57600080fd5b600061313984828501612d6e565b91505092915050565b600061314e8383613640565b60208301905092915050565b61316381613d5c565b82525050565b600061317482613c35565b61317e8185613c63565b935061318983613c10565b8060005b838110156131ba5781516131a18882613142565b97506131ac83613c56565b92505060018101905061318d565b5085935050505092915050565b6131d081613d6e565b82525050565b60006131e182613c40565b6131eb8185613c74565b93506131fb818560208601613ddf565b61320481613fcd565b840191505092915050565b600061321a82613c4b565b6132248185613c85565b9350613234818560208601613ddf565b61323d81613fcd565b840191505092915050565b600061325382613c4b565b61325d8185613c96565b935061326d818560208601613ddf565b80840191505092915050565b6000815461328681613e12565b6132908186613c96565b945060018216600081146132ab57600181146132bc576132ef565b60ff198316865281860193506132ef565b6132c585613c20565b60005b838110156132e7578154818901526001820191506020810190506132c8565b838801955050505b50505092915050565b6000613305603483613c85565b915061331082613feb565b604082019050919050565b6000613328602883613c85565b91506133338261403a565b604082019050919050565b600061334b601c83613c85565b915061335682614089565b602082019050919050565b600061336e602b83613c85565b9150613379826140b2565b604082019050919050565b6000613391602683613c85565b915061339c82614101565b604082019050919050565b60006133b4602483613c85565b91506133bf82614150565b604082019050919050565b60006133d7602983613c85565b91506133e28261419f565b604082019050919050565b60006133fa601583613c85565b9150613405826141ee565b602082019050919050565b600061341d600c83613c85565b915061342882614217565b602082019050919050565b6000613440602583613c85565b915061344b82614240565b604082019050919050565b6000613463603283613c85565b915061346e8261428f565b604082019050919050565b6000613486602383613c85565b9150613491826142de565b604082019050919050565b60006134a9602a83613c85565b91506134b48261432d565b604082019050919050565b60006134cc600583613c96565b91506134d78261437c565b600582019050919050565b60006134ef602083613c85565b91506134fa826143a5565b602082019050919050565b6000613512601383613c85565b915061351d826143ce565b602082019050919050565b6000613535602283613c85565b9150613540826143f7565b604082019050919050565b6000613558602983613c85565b915061356382614446565b604082019050919050565b600061357b602983613c85565b915061358682614495565b604082019050919050565b600061359e602883613c85565b91506135a9826144e4565b604082019050919050565b60006135c1601d83613c85565b91506135cc82614533565b602082019050919050565b60006135e4602183613c85565b91506135ef8261455c565b604082019050919050565b6000613607601783613c85565b9150613612826145ab565b602082019050919050565b600061362a601583613c85565b9150613635826145d4565b602082019050919050565b61364981613dc6565b82525050565b61365881613dc6565b82525050565b600061366a8286613279565b91506136768285613279565b91506136828284613248565b915061368d826134bf565b9150819050949350505050565b60006020820190506136af600083018461315a565b92915050565b600060a0820190506136ca600083018861315a565b6136d7602083018761315a565b81810360408301526136e98186613169565b905081810360608301526136fd8185613169565b9050818103608083015261371181846131d6565b90509695505050505050565b600060a082019050613732600083018861315a565b61373f602083018761315a565b61374c604083018661364f565b613759606083018561364f565b818103608083015261376b81846131d6565b90509695505050505050565b600060208201905081810360008301526137918184613169565b905092915050565b600060408201905081810360008301526137b38185613169565b905081810360208301526137c78184613169565b90509392505050565b60006020820190506137e560008301846131c7565b92915050565b60006020820190508181036000830152613805818461320f565b905092915050565b60006020820190508181036000830152613826816132f8565b9050919050565b600060208201905081810360008301526138468161331b565b9050919050565b600060208201905081810360008301526138668161333e565b9050919050565b6000602082019050818103600083015261388681613361565b9050919050565b600060208201905081810360008301526138a681613384565b9050919050565b600060208201905081810360008301526138c6816133a7565b9050919050565b600060208201905081810360008301526138e6816133ca565b9050919050565b60006020820190508181036000830152613906816133ed565b9050919050565b6000602082019050818103600083015261392681613410565b9050919050565b6000602082019050818103600083015261394681613433565b9050919050565b6000602082019050818103600083015261396681613456565b9050919050565b6000602082019050818103600083015261398681613479565b9050919050565b600060208201905081810360008301526139a68161349c565b9050919050565b600060208201905081810360008301526139c6816134e2565b9050919050565b600060208201905081810360008301526139e681613505565b9050919050565b60006020820190508181036000830152613a0681613528565b9050919050565b60006020820190508181036000830152613a268161354b565b9050919050565b60006020820190508181036000830152613a468161356e565b9050919050565b60006020820190508181036000830152613a6681613591565b9050919050565b60006020820190508181036000830152613a86816135b4565b9050919050565b60006020820190508181036000830152613aa6816135d7565b9050919050565b60006020820190508181036000830152613ac6816135fa565b9050919050565b60006020820190508181036000830152613ae68161361d565b9050919050565b6000602082019050613b02600083018461364f565b92915050565b6000604082019050613b1d600083018561364f565b613b2a602083018461364f565b9392505050565b6000613b3b613b4c565b9050613b478282613e44565b919050565b6000604051905090565b600067ffffffffffffffff821115613b7157613b70613f7c565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613b9d57613b9c613f7c565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613bc957613bc8613f7c565b5b613bd282613fcd565b9050602081019050919050565b600067ffffffffffffffff821115613bfa57613bf9613f7c565b5b613c0382613fcd565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613cac82613dc6565b9150613cb783613dc6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613cec57613ceb613eef565b5b828201905092915050565b6000613d0282613dc6565b9150613d0d83613dc6565b925082613d1d57613d1c613f1e565b5b828204905092915050565b6000613d3382613dc6565b9150613d3e83613dc6565b925082821015613d5157613d50613eef565b5b828203905092915050565b6000613d6782613da6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613dfd578082015181840152602081019050613de2565b83811115613e0c576000848401525b50505050565b60006002820490506001821680613e2a57607f821691505b60208210811415613e3e57613e3d613f4d565b5b50919050565b613e4d82613fcd565b810181811067ffffffffffffffff82111715613e6c57613e6b613f7c565b5b80604052505050565b6000613e8082613dc6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613eb357613eb2613eef565b5b600182019050919050565b6000613ec982613dc6565b9150613ed483613dc6565b925082613ee457613ee3613f1e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d1115613fca5760046000803e613fc7600051613fde565b90505b90565b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f43616e207075726368617365203130206f6e6365206174206d6f737400000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f4c696d6974203130302070657220616464726573730000000000000000000000600082015250565b7f4f7574206f662073746f636b0000000000000000000000000000000000000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f53656c6c696e67206e6f74207374617274656400000000000000000000000000600082015250565b7f4275696c6465723a2063616c6c6572206973206e6f7420746865206275696c6460008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f4e65656420746f207075726368617365206174206c65617374206f6e65000000600082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732073656e74000000000000000000600082015250565b7f42616c616e6365206973206e6f7420656e6f7567680000000000000000000000600082015250565b600060443d101561460d57614690565b614615613b4c565b60043d036004823e80513d602482011167ffffffffffffffff8211171561463d575050614690565b808201805167ffffffffffffffff81111561465b5750505050614690565b80602083010160043d038501811115614678575050505050614690565b61468782602001850186613e44565b82955050505050505b90565b61469c81613d5c565b81146146a757600080fd5b50565b6146b381613d6e565b81146146be57600080fd5b50565b6146ca81613d7a565b81146146d557600080fd5b50565b6146e181613dc6565b81146146ec57600080fd5b5056fea264697066735822122029f8d694ed03074cd1272b82550e8d058940ae5183964b07e33c239cd6c96f7964736f6c63430008040033

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.