ETH Price: $2,521.59 (-0.44%)

Token

GHGRum (GHGRUM)
 

Overview

Max Total Supply

1,188 GHGRUM

Holders

343

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
homieslice.eth
0x9cd9f4d31c09b6537d37d7933bb1bb78fd292d1b
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:
GHGRum

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : GHGRum.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/security/Pausable.sol";

interface IGoldHunter {
    function ownerOf(uint id) external view returns (address);
}
interface ITreasureIsland {
    function getAccountGoldMiners(address user) external view returns (Stake[] memory);
    function getAccountPirates(address user) external view returns (Stake[] memory);
    struct Stake {
        uint16 tokenId;
        uint80 value;
        address owner;
    }
}

contract GHGRum is ERC1155, Ownable, Pausable {
    uint constant public TOKEN_ID = 0;
    uint public minted;

    IGoldHunter public goldHunter;
    ITreasureIsland public treasureIsland;

    mapping(uint => bool) public usedTokens;
    mapping(address => bool) public approvedManagers;

    function name() external pure returns (string memory) {
        return "GHGRum";
    }
    function symbol() external pure returns (string memory) {
        return "GHGRUM";
    }
    function totalSupply() external view returns (uint) {
        return minted;
    }

    constructor() ERC1155("https://gold-hunt-rum.herokuapp.com/meta/{id}") {
        _mint(msg.sender, TOKEN_ID, 1, "");
        minted += 1;
        _pause();
    }

    function setURI(string memory uri) external onlyOwner {
        _setURI(uri);
    }

    function giveAway(address to, uint amount) public onlyOwner {
        _mint(to, TOKEN_ID, amount, "");
        minted += 1;
    }

    // This method should be available only for owners of Gen0 collection
    // Minting for these holders is free (gas fee only)
    function mint(uint16[] calldata unstakedTokens) external whenNotPaused {
        uint gen0ids = 0;

        ITreasureIsland.Stake[] memory stake = treasureIsland.getAccountGoldMiners(msg.sender);
        ITreasureIsland.Stake[] memory stakePirates = treasureIsland.getAccountPirates(msg.sender);

        for (uint i = 0; i < stake.length; i++) {
            // Check for Gen0, tokenId < 10000
            if (stake[i].tokenId < 10000) {
                if (usedTokens[stake[i].tokenId] == false) {
                    gen0ids += 1;
                    usedTokens[stake[i].tokenId] = true;
                }
            }
        }

        for (uint i = 0; i < stakePirates.length; i++) {
            // Check for Gen0, tokenId < 10000
            if (stakePirates[i].tokenId < 10000) {
                if (usedTokens[stakePirates[i].tokenId] == false) {
                    gen0ids += 1;
                    usedTokens[stakePirates[i].tokenId] = true;
                }
            }
        }

        // Need to validate all the tokenId belong to user and mint appropriate amount of tokens
        for (uint i = 0; i < unstakedTokens.length; i++) {
            // Check for Gen0, tokenId < 10000
            if (unstakedTokens[i] < 10000) {
                require(goldHunter.ownerOf(unstakedTokens[i]) == msg.sender, "Only unstaked tokens");
                if (usedTokens[unstakedTokens[i]] == false) {
                    gen0ids += 1;
                    usedTokens[unstakedTokens[i]] = true;
                }
            }
        }

        if (gen0ids == 0) {
            revert();
        }
        minted += gen0ids;

        _mint(msg.sender, TOKEN_ID, gen0ids, "");
    }

    function availableClaims(uint16[] calldata tokenIds) external view returns(uint count) {
        uint gen0ids = 0;
        for (uint i = 0; i < tokenIds.length; i++) {
            if (tokenIds[i] < 10000 && usedTokens[tokenIds[i]] == false) {
                gen0ids += 1;
            }
        }

        return gen0ids;
    }

    function burn(address account, uint amount) external {
        require(minted > 0 && amount > 0 && minted - amount >= 0, "Invalid parameters");
        require(approvedManagers[msg.sender], "You are not allowed to do that");

        minted -= amount;
        _burn(account, TOKEN_ID, amount);
    }

    function setTreasureIsland(address _address) external onlyOwner {
        treasureIsland = ITreasureIsland(_address);
    }
    function setGoldHunter(address _address) public onlyOwner {
        goldHunter = IGoldHunter(_address);
    }
    function addManager(address _address) external onlyOwner {
        approvedManagers[_address] = true;
    }
    function removeManager(address _address) external onlyOwner {
        approvedManagers[_address] = false;
    }
    function unpause() public onlyOwner {
        _unpause();
    }
    function pause() external onlyOwner {
        _pause();
    }
}

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

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 {
        require(_msgSender() != operator, "ERC1155: setting approval status for self");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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 `account`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address account,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(account != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

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

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

        _doSafeTransferAcceptanceCheck(operator, address(0), account, 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 `account`
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address account,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

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

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

        emit TransferSingle(operator, account, 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 account,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

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

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

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

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

    /**
     * @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 11 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 4 of 11 : Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 5 of 11 : IERC1155.sol
// SPDX-License-Identifier: MIT

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 6 of 11 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT

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.
        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. 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 7 of 11 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT

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 8 of 11 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @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 9 of 11 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 10 of 11 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

Settings
{
  "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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"TOKEN_ID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"approvedManagers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16[]","name":"tokenIds","type":"uint16[]"}],"name":"availableClaims","outputs":[{"internalType":"uint256","name":"count","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":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"goldHunter","outputs":[{"internalType":"contract IGoldHunter","name":"","type":"address"}],"stateMutability":"view","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":"uint16[]","name":"unstakedTokens","type":"uint16[]"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"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":"_address","type":"address"}],"name":"setGoldHunter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setTreasureIsland","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasureIsland","outputs":[{"internalType":"contract ITreasureIsland","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"usedTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506040518060600160405280602d815260200162005a32602d91396200003d81620000d060201b60201c565b506200005e62000052620000ec60201b60201c565b620000f460201b60201c565b6000600360146101000a81548160ff0219169083151502179055506200009e336000600160405180602001604052806000815250620001ba60201b60201c565b600160046000828254620000b39190620007dd565b92505081905550620000ca6200037f60201b60201c565b62000f08565b8060029080519060200190620000e8929190620006f4565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156200022d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200022490620008c1565b60405180910390fd5b60006200023f620000ec60201b60201c565b905062000278816000876200025a886200043760201b60201c565b6200026b886200043760201b60201c565b87620004b860201b60201c565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002d99190620007dd565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405162000359929190620008f4565b60405180910390a46200037881600087878787620004c060201b60201c565b5050505050565b6200038f620006ca60201b60201c565b15620003d2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003c99062000971565b60405180910390fd5b6001600360146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586200041e620000ec60201b60201c565b6040516200042d9190620009d8565b60405180910390a1565b60606000600167ffffffffffffffff811115620004595762000458620009f5565b5b604051908082528060200260200182016040528015620004885781602001602082028036833780820191505090505b5090508281600081518110620004a357620004a262000a24565b5b60200260200101818152505080915050919050565b505050505050565b620004ec8473ffffffffffffffffffffffffffffffffffffffff16620006e160201b62001d2b1760201c565b15620006c2578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016200053595949392919062000af7565b602060405180830381600087803b1580156200055057600080fd5b505af19250505080156200058457506040513d601f19601f8201168201806040525081019062000581919062000bc7565b60015b62000636576200059362000c06565b806308c379a01415620005f75750620005ab62000c61565b80620005b85750620005f9565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005ee919062000d4f565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200062d9062000de9565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614620006c0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006b79062000e81565b60405180910390fd5b505b505050505050565b6000600360149054906101000a900460ff16905090565b600080823b905060008111915050919050565b828054620007029062000ed2565b90600052602060002090601f01602090048101928262000726576000855562000772565b82601f106200074157805160ff191683800117855562000772565b8280016001018555821562000772579182015b828111156200077157825182559160200191906001019062000754565b5b50905062000781919062000785565b5090565b5b80821115620007a057600081600090555060010162000786565b5090565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620007ea82620007a4565b9150620007f783620007a4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200082f576200082e620007ae565b5b828201905092915050565b600082825260208201905092915050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000620008a96021836200083a565b9150620008b6826200084b565b604082019050919050565b60006020820190508181036000830152620008dc816200089a565b9050919050565b620008ee81620007a4565b82525050565b60006040820190506200090b6000830185620008e3565b6200091a6020830184620008e3565b9392505050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000620009596010836200083a565b9150620009668262000921565b602082019050919050565b600060208201905081810360008301526200098c816200094a565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620009c08262000993565b9050919050565b620009d281620009b3565b82525050565b6000602082019050620009ef6000830184620009c7565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b60005b8381101562000a8f57808201518184015260208101905062000a72565b8381111562000a9f576000848401525b50505050565b6000601f19601f8301169050919050565b600062000ac38262000a53565b62000acf818562000a5e565b935062000ae181856020860162000a6f565b62000aec8162000aa5565b840191505092915050565b600060a08201905062000b0e6000830188620009c7565b62000b1d6020830187620009c7565b62000b2c6040830186620008e3565b62000b3b6060830185620008e3565b818103608083015262000b4f818462000ab6565b90509695505050505050565b6000604051905090565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000ba18162000b6a565b811462000bad57600080fd5b50565b60008151905062000bc18162000b96565b92915050565b60006020828403121562000be05762000bdf62000b65565b5b600062000bf08482850162000bb0565b91505092915050565b60008160e01c9050919050565b600060033d111562000c285760046000803e62000c2560005162000bf9565b90505b90565b62000c368262000aa5565b810181811067ffffffffffffffff8211171562000c585762000c57620009f5565b5b80604052505050565b600060443d101562000c735762000d00565b62000c7d62000b5b565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000ca757505062000d00565b808201805167ffffffffffffffff81111562000cc7575050505062000d00565b80602083010160043d03850181111562000ce657505050505062000d00565b62000cf78260200185018662000c2b565b82955050505050505b90565b600081519050919050565b600062000d1b8262000d03565b62000d2781856200083a565b935062000d3981856020860162000a6f565b62000d448162000aa5565b840191505092915050565b6000602082019050818103600083015262000d6b818462000d0e565b905092915050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b600062000dd16034836200083a565b915062000dde8262000d73565b604082019050919050565b6000602082019050818103600083015262000e048162000dc2565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b600062000e696028836200083a565b915062000e768262000e0b565b604082019050919050565b6000602082019050818103600083015262000e9c8162000e5a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000eeb57607f821691505b6020821081141562000f025762000f0162000ea3565b5b50919050565b614b1a8062000f186000396000f3fe608060405234801561001057600080fd5b50600436106101ef5760003560e01c806363c0f1331161010f5780639dc29fac116100a2578063ca80014411610071578063ca8001441461056c578063e985e9c514610588578063f242432a146105b8578063f2fde38b146105d4576101ef565b80639dc29fac146104e8578063a22cb46514610504578063ac18de4314610520578063c0dbd2101461053c576101ef565b806389a89002116100de57806389a89002146104725780638da5cb5b1461049057806395d89b41146104ae5780639c5e92fb146104cc576101ef565b806363c0f13314610412578063715018a6146104425780637e603d421461044c5780638456cb5914610468576101ef565b80632d06177a116101875780634e1273f4116101565780634e1273f41461038a5780634f02c420146103ba578063552a8db3146103d85780635c975abb146103f4576101ef565b80632d06177a1461032a5780632eb2c2d6146103465780633f4ba83a1461036257806340ce8d8a1461036c576101ef565b80630e89341c116101c35780630e89341c1461028e5780630f7ee879146102be57806318160ddd146102ee5780631fdaba111461030c576101ef565b8062fdd58e146101f457806301ffc9a71461022457806302fe53051461025457806306fdde0314610270575b600080fd5b61020e60048036038101906102099190612eb9565b6105f0565b60405161021b9190612f08565b60405180910390f35b61023e60048036038101906102399190612f7b565b6106b9565b60405161024b9190612fc3565b60405180910390f35b61026e60048036038101906102699190613124565b61079b565b005b610278610823565b60405161028591906131f5565b60405180910390f35b6102a860048036038101906102a39190613217565b610860565b6040516102b591906131f5565b60405180910390f35b6102d860048036038101906102d39190613217565b6108f4565b6040516102e59190612fc3565b60405180910390f35b6102f6610914565b6040516103039190612f08565b60405180910390f35b61031461091e565b60405161032191906132a3565b60405180910390f35b610344600480360381019061033f91906132be565b610944565b005b610360600480360381019061035b9190613454565b610a1b565b005b61036a610abc565b005b610374610b42565b6040516103819190613544565b60405180910390f35b6103a4600480360381019061039f9190613622565b610b68565b6040516103b19190613758565b60405180910390f35b6103c2610c81565b6040516103cf9190612f08565b60405180910390f35b6103f260048036038101906103ed91906132be565b610c87565b005b6103fc610d47565b6040516104099190612fc3565b60405180910390f35b61042c600480360381019061042791906132be565b610d5e565b6040516104399190612fc3565b60405180910390f35b61044a610d7e565b005b610466600480360381019061046191906132be565b610e06565b005b610470610ec6565b005b61047a610f4c565b6040516104879190612f08565b60405180910390f35b610498610f51565b6040516104a59190613789565b60405180910390f35b6104b6610f7b565b6040516104c391906131f5565b60405180910390f35b6104e660048036038101906104e191906137ff565b610fb8565b005b61050260048036038101906104fd9190612eb9565b6115fd565b005b61051e60048036038101906105199190613878565b61171d565b005b61053a600480360381019061053591906132be565b61189e565b005b610556600480360381019061055191906137ff565b611975565b6040516105639190612f08565b60405180910390f35b61058660048036038101906105819190612eb9565b611a48565b005b6105a2600480360381019061059d91906138b8565b611afe565b6040516105af9190612fc3565b60405180910390f35b6105d260048036038101906105cd91906138f8565b611b92565b005b6105ee60048036038101906105e991906132be565b611c33565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610661576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065890613a01565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061078457507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610794575061079382611d3e565b5b9050919050565b6107a3611da8565b73ffffffffffffffffffffffffffffffffffffffff166107c1610f51565b73ffffffffffffffffffffffffffffffffffffffff1614610817576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080e90613a6d565b60405180910390fd5b61082081611db0565b50565b60606040518060400160405280600681526020017f47484752756d0000000000000000000000000000000000000000000000000000815250905090565b60606002805461086f90613abc565b80601f016020809104026020016040519081016040528092919081815260200182805461089b90613abc565b80156108e85780601f106108bd576101008083540402835291602001916108e8565b820191906000526020600020905b8154815290600101906020018083116108cb57829003601f168201915b50505050509050919050565b60076020528060005260406000206000915054906101000a900460ff1681565b6000600454905090565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61094c611da8565b73ffffffffffffffffffffffffffffffffffffffff1661096a610f51565b73ffffffffffffffffffffffffffffffffffffffff16146109c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b790613a6d565b60405180910390fd5b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610a23611da8565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610a695750610a6885610a63611da8565b611afe565b5b610aa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9f90613b60565b60405180910390fd5b610ab58585858585611dca565b5050505050565b610ac4611da8565b73ffffffffffffffffffffffffffffffffffffffff16610ae2610f51565b73ffffffffffffffffffffffffffffffffffffffff1614610b38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2f90613a6d565b60405180910390fd5b610b406120de565b565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60608151835114610bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba590613bf2565b60405180910390fd5b6000835167ffffffffffffffff811115610bcb57610bca612ff9565b5b604051908082528060200260200182016040528015610bf95781602001602082028036833780820191505090505b50905060005b8451811015610c7657610c46858281518110610c1e57610c1d613c12565b5b6020026020010151858381518110610c3957610c38613c12565b5b60200260200101516105f0565b828281518110610c5957610c58613c12565b5b60200260200101818152505080610c6f90613c70565b9050610bff565b508091505092915050565b60045481565b610c8f611da8565b73ffffffffffffffffffffffffffffffffffffffff16610cad610f51565b73ffffffffffffffffffffffffffffffffffffffff1614610d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfa90613a6d565b60405180910390fd5b80600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600360149054906101000a900460ff16905090565b60086020528060005260406000206000915054906101000a900460ff1681565b610d86611da8565b73ffffffffffffffffffffffffffffffffffffffff16610da4610f51565b73ffffffffffffffffffffffffffffffffffffffff1614610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df190613a6d565b60405180910390fd5b610e046000612180565b565b610e0e611da8565b73ffffffffffffffffffffffffffffffffffffffff16610e2c610f51565b73ffffffffffffffffffffffffffffffffffffffff1614610e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7990613a6d565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610ece611da8565b73ffffffffffffffffffffffffffffffffffffffff16610eec610f51565b73ffffffffffffffffffffffffffffffffffffffff1614610f42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3990613a6d565b60405180910390fd5b610f4a612246565b565b600081565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600681526020017f47484752554d0000000000000000000000000000000000000000000000000000815250905090565b610fc0610d47565b15611000576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff790613d05565b60405180910390fd5b600080600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166303ba819d336040518263ffffffff1660e01b815260040161105e9190613789565b60006040518083038186803b15801561107657600080fd5b505afa15801561108a573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906110b39190613ee2565b90506000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634e34b91b336040518263ffffffff1660e01b81526004016111129190613789565b60006040518083038186803b15801561112a57600080fd5b505afa15801561113e573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906111679190613ee2565b905060005b82518110156112625761271083828151811061118b5761118a613c12565b5b60200260200101516000015161ffff16101561124f5760001515600760008584815181106111bc576111bb613c12565b5b60200260200101516000015161ffff16815260200190815260200160002060009054906101000a900460ff161515141561124e576001846111fd9190613f2b565b935060016007600085848151811061121857611217613c12565b5b60200260200101516000015161ffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b5b808061125a90613c70565b91505061116c565b5060005b815181101561135c5761271082828151811061128557611284613c12565b5b60200260200101516000015161ffff1610156113495760001515600760008484815181106112b6576112b5613c12565b5b60200260200101516000015161ffff16815260200190815260200160002060009054906101000a900460ff1615151415611348576001846112f79190613f2b565b935060016007600084848151811061131257611311613c12565b5b60200260200101516000015161ffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b5b808061135490613c70565b915050611266565b5060005b858590508110156115b25761271086868381811061138157611380613c12565b5b90506020020160208101906113969190613f96565b61ffff16101561159f573373ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e88888581811061140857611407613c12565b5b905060200201602081019061141d9190613f96565b6040518263ffffffff1660e01b81526004016114399190613ff4565b60206040518083038186803b15801561145157600080fd5b505afa158015611465573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611489919061400f565b73ffffffffffffffffffffffffffffffffffffffff16146114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d690614088565b60405180910390fd5b60001515600760008888858181106114fa576114f9613c12565b5b905060200201602081019061150f9190613f96565b61ffff16815260200190815260200160002060009054906101000a900460ff161515141561159e576001846115449190613f2b565b935060016007600088888581811061155f5761155e613c12565b5b90506020020160208101906115749190613f96565b61ffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b5b80806115aa90613c70565b915050611360565b5060008314156115c157600080fd5b82600460008282546115d39190613f2b565b925050819055506115f633600085604051806020016040528060008152506122e9565b5050505050565b600060045411801561160f5750600081115b8015611629575060008160045461162691906140a8565b10155b611668576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165f90614128565b60405180910390fd5b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166116f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116eb90614194565b60405180910390fd5b806004600082825461170691906140a8565b925050819055506117198260008361247f565b5050565b8173ffffffffffffffffffffffffffffffffffffffff1661173c611da8565b73ffffffffffffffffffffffffffffffffffffffff161415611793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178a90614226565b60405180910390fd5b80600160006117a0611da8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661184d611da8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118929190612fc3565b60405180910390a35050565b6118a6611da8565b73ffffffffffffffffffffffffffffffffffffffff166118c4610f51565b73ffffffffffffffffffffffffffffffffffffffff161461191a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191190613a6d565b60405180910390fd5b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000806000905060005b84849050811015611a3d576127108585838181106119a05761199f613c12565b5b90506020020160208101906119b59190613f96565b61ffff16108015611a15575060001515600760008787858181106119dc576119db613c12565b5b90506020020160208101906119f19190613f96565b61ffff16815260200190815260200160002060009054906101000a900460ff161515145b15611a2a57600182611a279190613f2b565b91505b8080611a3590613c70565b91505061197f565b508091505092915050565b611a50611da8565b73ffffffffffffffffffffffffffffffffffffffff16611a6e610f51565b73ffffffffffffffffffffffffffffffffffffffff1614611ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abb90613a6d565b60405180910390fd5b611ae082600083604051806020016040528060008152506122e9565b600160046000828254611af39190613f2b565b925050819055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b9a611da8565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611be05750611bdf85611bda611da8565b611afe565b5b611c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c16906142b8565b60405180910390fd5b611c2c858585858561269c565b5050505050565b611c3b611da8565b73ffffffffffffffffffffffffffffffffffffffff16611c59610f51565b73ffffffffffffffffffffffffffffffffffffffff1614611caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca690613a6d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d169061434a565b60405180910390fd5b611d2881612180565b50565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b8060029080519060200190611dc6929190612d6e565b5050565b8151835114611e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e05906143dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e759061446e565b60405180910390fd5b6000611e88611da8565b9050611e9881878787878761291e565b60005b8451811015612049576000858281518110611eb957611eb8613c12565b5b602002602001015190506000858381518110611ed857611ed7613c12565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7090614500565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461202e9190613f2b565b925050819055505050508061204290613c70565b9050611e9b565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516120c0929190614520565b60405180910390a46120d6818787878787612926565b505050505050565b6120e6610d47565b612125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211c906145a3565b60405180910390fd5b6000600360146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612169611da8565b6040516121769190613789565b60405180910390a1565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61224e610d47565b1561228e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228590613d05565b60405180910390fd5b6001600360146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586122d2611da8565b6040516122df9190613789565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612359576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235090614635565b60405180910390fd5b6000612363611da8565b90506123848160008761237588612b0d565b61237e88612b0d565b8761291e565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123e39190613f2b565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612461929190614655565b60405180910390a461247881600087878787612b87565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e6906146f0565b60405180910390fd5b60006124f9611da8565b90506125298185600061250b87612b0d565b61251487612b0d565b6040518060200160405280600081525061291e565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156125c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b790614782565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161268d929190614655565b60405180910390a45050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561270c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127039061446e565b60405180910390fd5b6000612716611da8565b905061273681878761272788612b0d565b61273088612b0d565b8761291e565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156127cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c490614500565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128829190613f2b565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516128ff929190614655565b60405180910390a4612915828888888888612b87565b50505050505050565b505050505050565b6129458473ffffffffffffffffffffffffffffffffffffffff16611d2b565b15612b05578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b815260040161298b9594939291906147f7565b602060405180830381600087803b1580156129a557600080fd5b505af19250505080156129d657506040513d601f19601f820116820180604052508101906129d39190614874565b60015b612a7c576129e26148ae565b806308c379a01415612a3f57506129f76148d0565b80612a025750612a41565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3691906131f5565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a73906149d8565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612b03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612afa90614a6a565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115612b2c57612b2b612ff9565b5b604051908082528060200260200182016040528015612b5a5781602001602082028036833780820191505090505b5090508281600081518110612b7257612b71613c12565b5b60200260200101818152505080915050919050565b612ba68473ffffffffffffffffffffffffffffffffffffffff16611d2b565b15612d66578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612bec959493929190614a8a565b602060405180830381600087803b158015612c0657600080fd5b505af1925050508015612c3757506040513d601f19601f82011682018060405250810190612c349190614874565b60015b612cdd57612c436148ae565b806308c379a01415612ca05750612c586148d0565b80612c635750612ca2565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9791906131f5565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd4906149d8565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612d64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5b90614a6a565b60405180910390fd5b505b505050505050565b828054612d7a90613abc565b90600052602060002090601f016020900481019282612d9c5760008555612de3565b82601f10612db557805160ff1916838001178555612de3565b82800160010185558215612de3579182015b82811115612de2578251825591602001919060010190612dc7565b5b509050612df09190612df4565b5090565b5b80821115612e0d576000816000905550600101612df5565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612e5082612e25565b9050919050565b612e6081612e45565b8114612e6b57600080fd5b50565b600081359050612e7d81612e57565b92915050565b6000819050919050565b612e9681612e83565b8114612ea157600080fd5b50565b600081359050612eb381612e8d565b92915050565b60008060408385031215612ed057612ecf612e1b565b5b6000612ede85828601612e6e565b9250506020612eef85828601612ea4565b9150509250929050565b612f0281612e83565b82525050565b6000602082019050612f1d6000830184612ef9565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612f5881612f23565b8114612f6357600080fd5b50565b600081359050612f7581612f4f565b92915050565b600060208284031215612f9157612f90612e1b565b5b6000612f9f84828501612f66565b91505092915050565b60008115159050919050565b612fbd81612fa8565b82525050565b6000602082019050612fd86000830184612fb4565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61303182612fe8565b810181811067ffffffffffffffff821117156130505761304f612ff9565b5b80604052505050565b6000613063612e11565b905061306f8282613028565b919050565b600067ffffffffffffffff82111561308f5761308e612ff9565b5b61309882612fe8565b9050602081019050919050565b82818337600083830152505050565b60006130c76130c284613074565b613059565b9050828152602081018484840111156130e3576130e2612fe3565b5b6130ee8482856130a5565b509392505050565b600082601f83011261310b5761310a612fde565b5b813561311b8482602086016130b4565b91505092915050565b60006020828403121561313a57613139612e1b565b5b600082013567ffffffffffffffff81111561315857613157612e20565b5b613164848285016130f6565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156131a757808201518184015260208101905061318c565b838111156131b6576000848401525b50505050565b60006131c78261316d565b6131d18185613178565b93506131e1818560208601613189565b6131ea81612fe8565b840191505092915050565b6000602082019050818103600083015261320f81846131bc565b905092915050565b60006020828403121561322d5761322c612e1b565b5b600061323b84828501612ea4565b91505092915050565b6000819050919050565b600061326961326461325f84612e25565b613244565b612e25565b9050919050565b600061327b8261324e565b9050919050565b600061328d82613270565b9050919050565b61329d81613282565b82525050565b60006020820190506132b86000830184613294565b92915050565b6000602082840312156132d4576132d3612e1b565b5b60006132e284828501612e6e565b91505092915050565b600067ffffffffffffffff82111561330657613305612ff9565b5b602082029050602081019050919050565b600080fd5b600061332f61332a846132eb565b613059565b9050808382526020820190506020840283018581111561335257613351613317565b5b835b8181101561337b57806133678882612ea4565b845260208401935050602081019050613354565b5050509392505050565b600082601f83011261339a57613399612fde565b5b81356133aa84826020860161331c565b91505092915050565b600067ffffffffffffffff8211156133ce576133cd612ff9565b5b6133d782612fe8565b9050602081019050919050565b60006133f76133f2846133b3565b613059565b90508281526020810184848401111561341357613412612fe3565b5b61341e8482856130a5565b509392505050565b600082601f83011261343b5761343a612fde565b5b813561344b8482602086016133e4565b91505092915050565b600080600080600060a086880312156134705761346f612e1b565b5b600061347e88828901612e6e565b955050602061348f88828901612e6e565b945050604086013567ffffffffffffffff8111156134b0576134af612e20565b5b6134bc88828901613385565b935050606086013567ffffffffffffffff8111156134dd576134dc612e20565b5b6134e988828901613385565b925050608086013567ffffffffffffffff81111561350a57613509612e20565b5b61351688828901613426565b9150509295509295909350565b600061352e82613270565b9050919050565b61353e81613523565b82525050565b60006020820190506135596000830184613535565b92915050565b600067ffffffffffffffff82111561357a57613579612ff9565b5b602082029050602081019050919050565b600061359e6135998461355f565b613059565b905080838252602082019050602084028301858111156135c1576135c0613317565b5b835b818110156135ea57806135d68882612e6e565b8452602084019350506020810190506135c3565b5050509392505050565b600082601f83011261360957613608612fde565b5b813561361984826020860161358b565b91505092915050565b6000806040838503121561363957613638612e1b565b5b600083013567ffffffffffffffff81111561365757613656612e20565b5b613663858286016135f4565b925050602083013567ffffffffffffffff81111561368457613683612e20565b5b61369085828601613385565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6136cf81612e83565b82525050565b60006136e183836136c6565b60208301905092915050565b6000602082019050919050565b60006137058261369a565b61370f81856136a5565b935061371a836136b6565b8060005b8381101561374b57815161373288826136d5565b975061373d836136ed565b92505060018101905061371e565b5085935050505092915050565b6000602082019050818103600083015261377281846136fa565b905092915050565b61378381612e45565b82525050565b600060208201905061379e600083018461377a565b92915050565b600080fd5b60008083601f8401126137bf576137be612fde565b5b8235905067ffffffffffffffff8111156137dc576137db6137a4565b5b6020830191508360208202830111156137f8576137f7613317565b5b9250929050565b6000806020838503121561381657613815612e1b565b5b600083013567ffffffffffffffff81111561383457613833612e20565b5b613840858286016137a9565b92509250509250929050565b61385581612fa8565b811461386057600080fd5b50565b6000813590506138728161384c565b92915050565b6000806040838503121561388f5761388e612e1b565b5b600061389d85828601612e6e565b92505060206138ae85828601613863565b9150509250929050565b600080604083850312156138cf576138ce612e1b565b5b60006138dd85828601612e6e565b92505060206138ee85828601612e6e565b9150509250929050565b600080600080600060a0868803121561391457613913612e1b565b5b600061392288828901612e6e565b955050602061393388828901612e6e565b945050604061394488828901612ea4565b935050606061395588828901612ea4565b925050608086013567ffffffffffffffff81111561397657613975612e20565b5b61398288828901613426565b9150509295509295909350565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006139eb602b83613178565b91506139f68261398f565b604082019050919050565b60006020820190508181036000830152613a1a816139de565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613a57602083613178565b9150613a6282613a21565b602082019050919050565b60006020820190508181036000830152613a8681613a4a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613ad457607f821691505b60208210811415613ae857613ae7613a8d565b5b50919050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000613b4a603283613178565b9150613b5582613aee565b604082019050919050565b60006020820190508181036000830152613b7981613b3d565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000613bdc602983613178565b9150613be782613b80565b604082019050919050565b60006020820190508181036000830152613c0b81613bcf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613c7b82612e83565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613cae57613cad613c41565b5b600182019050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000613cef601083613178565b9150613cfa82613cb9565b602082019050919050565b60006020820190508181036000830152613d1e81613ce2565b9050919050565b600067ffffffffffffffff821115613d4057613d3f612ff9565b5b602082029050602081019050919050565b600080fd5b600061ffff82169050919050565b613d6d81613d56565b8114613d7857600080fd5b50565b600081519050613d8a81613d64565b92915050565b600069ffffffffffffffffffff82169050919050565b613daf81613d90565b8114613dba57600080fd5b50565b600081519050613dcc81613da6565b92915050565b600081519050613de181612e57565b92915050565b600060608284031215613dfd57613dfc613d51565b5b613e076060613059565b90506000613e1784828501613d7b565b6000830152506020613e2b84828501613dbd565b6020830152506040613e3f84828501613dd2565b60408301525092915050565b6000613e5e613e5984613d25565b613059565b90508083825260208201905060608402830185811115613e8157613e80613317565b5b835b81811015613eaa5780613e968882613de7565b845260208401935050606081019050613e83565b5050509392505050565b600082601f830112613ec957613ec8612fde565b5b8151613ed9848260208601613e4b565b91505092915050565b600060208284031215613ef857613ef7612e1b565b5b600082015167ffffffffffffffff811115613f1657613f15612e20565b5b613f2284828501613eb4565b91505092915050565b6000613f3682612e83565b9150613f4183612e83565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f7657613f75613c41565b5b828201905092915050565b600081359050613f9081613d64565b92915050565b600060208284031215613fac57613fab612e1b565b5b6000613fba84828501613f81565b91505092915050565b6000613fde613fd9613fd484613d56565b613244565b612e83565b9050919050565b613fee81613fc3565b82525050565b60006020820190506140096000830184613fe5565b92915050565b60006020828403121561402557614024612e1b565b5b600061403384828501613dd2565b91505092915050565b7f4f6e6c7920756e7374616b656420746f6b656e73000000000000000000000000600082015250565b6000614072601483613178565b915061407d8261403c565b602082019050919050565b600060208201905081810360008301526140a181614065565b9050919050565b60006140b382612e83565b91506140be83612e83565b9250828210156140d1576140d0613c41565b5b828203905092915050565b7f496e76616c696420706172616d65746572730000000000000000000000000000600082015250565b6000614112601283613178565b915061411d826140dc565b602082019050919050565b6000602082019050818103600083015261414181614105565b9050919050565b7f596f7520617265206e6f7420616c6c6f77656420746f20646f20746861740000600082015250565b600061417e601e83613178565b915061418982614148565b602082019050919050565b600060208201905081810360008301526141ad81614171565b9050919050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b6000614210602983613178565b915061421b826141b4565b604082019050919050565b6000602082019050818103600083015261423f81614203565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b60006142a2602983613178565b91506142ad82614246565b604082019050919050565b600060208201905081810360008301526142d181614295565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614334602683613178565b915061433f826142d8565b604082019050919050565b6000602082019050818103600083015261436381614327565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b60006143c6602883613178565b91506143d18261436a565b604082019050919050565b600060208201905081810360008301526143f5816143b9565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614458602583613178565b9150614463826143fc565b604082019050919050565b600060208201905081810360008301526144878161444b565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b60006144ea602a83613178565b91506144f58261448e565b604082019050919050565b60006020820190508181036000830152614519816144dd565b9050919050565b6000604082019050818103600083015261453a81856136fa565b9050818103602083015261454e81846136fa565b90509392505050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b600061458d601483613178565b915061459882614557565b602082019050919050565b600060208201905081810360008301526145bc81614580565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061461f602183613178565b915061462a826145c3565b604082019050919050565b6000602082019050818103600083015261464e81614612565b9050919050565b600060408201905061466a6000830185612ef9565b6146776020830184612ef9565b9392505050565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006146da602383613178565b91506146e58261467e565b604082019050919050565b60006020820190508181036000830152614709816146cd565b9050919050565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b600061476c602483613178565b915061477782614710565b604082019050919050565b6000602082019050818103600083015261479b8161475f565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006147c9826147a2565b6147d381856147ad565b93506147e3818560208601613189565b6147ec81612fe8565b840191505092915050565b600060a08201905061480c600083018861377a565b614819602083018761377a565b818103604083015261482b81866136fa565b9050818103606083015261483f81856136fa565b9050818103608083015261485381846147be565b90509695505050505050565b60008151905061486e81612f4f565b92915050565b60006020828403121561488a57614889612e1b565b5b60006148988482850161485f565b91505092915050565b60008160e01c9050919050565b600060033d11156148cd5760046000803e6148ca6000516148a1565b90505b90565b600060443d10156148e057614963565b6148e8612e11565b60043d036004823e80513d602482011167ffffffffffffffff82111715614910575050614963565b808201805167ffffffffffffffff81111561492e5750505050614963565b80602083010160043d03850181111561494b575050505050614963565b61495a82602001850186613028565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b60006149c2603483613178565b91506149cd82614966565b604082019050919050565b600060208201905081810360008301526149f1816149b5565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000614a54602883613178565b9150614a5f826149f8565b604082019050919050565b60006020820190508181036000830152614a8381614a47565b9050919050565b600060a082019050614a9f600083018861377a565b614aac602083018761377a565b614ab96040830186612ef9565b614ac66060830185612ef9565b8181036080830152614ad881846147be565b9050969550505050505056fea2646970667358221220e845c4edd702ba94cfb3ae35489546054c4e86472ab26a59a9f5ea7a3b32106b64736f6c6343000809003368747470733a2f2f676f6c642d68756e742d72756d2e6865726f6b756170702e636f6d2f6d6574612f7b69647d

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101ef5760003560e01c806363c0f1331161010f5780639dc29fac116100a2578063ca80014411610071578063ca8001441461056c578063e985e9c514610588578063f242432a146105b8578063f2fde38b146105d4576101ef565b80639dc29fac146104e8578063a22cb46514610504578063ac18de4314610520578063c0dbd2101461053c576101ef565b806389a89002116100de57806389a89002146104725780638da5cb5b1461049057806395d89b41146104ae5780639c5e92fb146104cc576101ef565b806363c0f13314610412578063715018a6146104425780637e603d421461044c5780638456cb5914610468576101ef565b80632d06177a116101875780634e1273f4116101565780634e1273f41461038a5780634f02c420146103ba578063552a8db3146103d85780635c975abb146103f4576101ef565b80632d06177a1461032a5780632eb2c2d6146103465780633f4ba83a1461036257806340ce8d8a1461036c576101ef565b80630e89341c116101c35780630e89341c1461028e5780630f7ee879146102be57806318160ddd146102ee5780631fdaba111461030c576101ef565b8062fdd58e146101f457806301ffc9a71461022457806302fe53051461025457806306fdde0314610270575b600080fd5b61020e60048036038101906102099190612eb9565b6105f0565b60405161021b9190612f08565b60405180910390f35b61023e60048036038101906102399190612f7b565b6106b9565b60405161024b9190612fc3565b60405180910390f35b61026e60048036038101906102699190613124565b61079b565b005b610278610823565b60405161028591906131f5565b60405180910390f35b6102a860048036038101906102a39190613217565b610860565b6040516102b591906131f5565b60405180910390f35b6102d860048036038101906102d39190613217565b6108f4565b6040516102e59190612fc3565b60405180910390f35b6102f6610914565b6040516103039190612f08565b60405180910390f35b61031461091e565b60405161032191906132a3565b60405180910390f35b610344600480360381019061033f91906132be565b610944565b005b610360600480360381019061035b9190613454565b610a1b565b005b61036a610abc565b005b610374610b42565b6040516103819190613544565b60405180910390f35b6103a4600480360381019061039f9190613622565b610b68565b6040516103b19190613758565b60405180910390f35b6103c2610c81565b6040516103cf9190612f08565b60405180910390f35b6103f260048036038101906103ed91906132be565b610c87565b005b6103fc610d47565b6040516104099190612fc3565b60405180910390f35b61042c600480360381019061042791906132be565b610d5e565b6040516104399190612fc3565b60405180910390f35b61044a610d7e565b005b610466600480360381019061046191906132be565b610e06565b005b610470610ec6565b005b61047a610f4c565b6040516104879190612f08565b60405180910390f35b610498610f51565b6040516104a59190613789565b60405180910390f35b6104b6610f7b565b6040516104c391906131f5565b60405180910390f35b6104e660048036038101906104e191906137ff565b610fb8565b005b61050260048036038101906104fd9190612eb9565b6115fd565b005b61051e60048036038101906105199190613878565b61171d565b005b61053a600480360381019061053591906132be565b61189e565b005b610556600480360381019061055191906137ff565b611975565b6040516105639190612f08565b60405180910390f35b61058660048036038101906105819190612eb9565b611a48565b005b6105a2600480360381019061059d91906138b8565b611afe565b6040516105af9190612fc3565b60405180910390f35b6105d260048036038101906105cd91906138f8565b611b92565b005b6105ee60048036038101906105e991906132be565b611c33565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610661576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065890613a01565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061078457507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610794575061079382611d3e565b5b9050919050565b6107a3611da8565b73ffffffffffffffffffffffffffffffffffffffff166107c1610f51565b73ffffffffffffffffffffffffffffffffffffffff1614610817576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080e90613a6d565b60405180910390fd5b61082081611db0565b50565b60606040518060400160405280600681526020017f47484752756d0000000000000000000000000000000000000000000000000000815250905090565b60606002805461086f90613abc565b80601f016020809104026020016040519081016040528092919081815260200182805461089b90613abc565b80156108e85780601f106108bd576101008083540402835291602001916108e8565b820191906000526020600020905b8154815290600101906020018083116108cb57829003601f168201915b50505050509050919050565b60076020528060005260406000206000915054906101000a900460ff1681565b6000600454905090565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61094c611da8565b73ffffffffffffffffffffffffffffffffffffffff1661096a610f51565b73ffffffffffffffffffffffffffffffffffffffff16146109c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b790613a6d565b60405180910390fd5b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610a23611da8565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610a695750610a6885610a63611da8565b611afe565b5b610aa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9f90613b60565b60405180910390fd5b610ab58585858585611dca565b5050505050565b610ac4611da8565b73ffffffffffffffffffffffffffffffffffffffff16610ae2610f51565b73ffffffffffffffffffffffffffffffffffffffff1614610b38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2f90613a6d565b60405180910390fd5b610b406120de565b565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60608151835114610bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba590613bf2565b60405180910390fd5b6000835167ffffffffffffffff811115610bcb57610bca612ff9565b5b604051908082528060200260200182016040528015610bf95781602001602082028036833780820191505090505b50905060005b8451811015610c7657610c46858281518110610c1e57610c1d613c12565b5b6020026020010151858381518110610c3957610c38613c12565b5b60200260200101516105f0565b828281518110610c5957610c58613c12565b5b60200260200101818152505080610c6f90613c70565b9050610bff565b508091505092915050565b60045481565b610c8f611da8565b73ffffffffffffffffffffffffffffffffffffffff16610cad610f51565b73ffffffffffffffffffffffffffffffffffffffff1614610d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfa90613a6d565b60405180910390fd5b80600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600360149054906101000a900460ff16905090565b60086020528060005260406000206000915054906101000a900460ff1681565b610d86611da8565b73ffffffffffffffffffffffffffffffffffffffff16610da4610f51565b73ffffffffffffffffffffffffffffffffffffffff1614610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df190613a6d565b60405180910390fd5b610e046000612180565b565b610e0e611da8565b73ffffffffffffffffffffffffffffffffffffffff16610e2c610f51565b73ffffffffffffffffffffffffffffffffffffffff1614610e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7990613a6d565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610ece611da8565b73ffffffffffffffffffffffffffffffffffffffff16610eec610f51565b73ffffffffffffffffffffffffffffffffffffffff1614610f42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3990613a6d565b60405180910390fd5b610f4a612246565b565b600081565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600681526020017f47484752554d0000000000000000000000000000000000000000000000000000815250905090565b610fc0610d47565b15611000576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff790613d05565b60405180910390fd5b600080600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166303ba819d336040518263ffffffff1660e01b815260040161105e9190613789565b60006040518083038186803b15801561107657600080fd5b505afa15801561108a573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906110b39190613ee2565b90506000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634e34b91b336040518263ffffffff1660e01b81526004016111129190613789565b60006040518083038186803b15801561112a57600080fd5b505afa15801561113e573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906111679190613ee2565b905060005b82518110156112625761271083828151811061118b5761118a613c12565b5b60200260200101516000015161ffff16101561124f5760001515600760008584815181106111bc576111bb613c12565b5b60200260200101516000015161ffff16815260200190815260200160002060009054906101000a900460ff161515141561124e576001846111fd9190613f2b565b935060016007600085848151811061121857611217613c12565b5b60200260200101516000015161ffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b5b808061125a90613c70565b91505061116c565b5060005b815181101561135c5761271082828151811061128557611284613c12565b5b60200260200101516000015161ffff1610156113495760001515600760008484815181106112b6576112b5613c12565b5b60200260200101516000015161ffff16815260200190815260200160002060009054906101000a900460ff1615151415611348576001846112f79190613f2b565b935060016007600084848151811061131257611311613c12565b5b60200260200101516000015161ffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b5b808061135490613c70565b915050611266565b5060005b858590508110156115b25761271086868381811061138157611380613c12565b5b90506020020160208101906113969190613f96565b61ffff16101561159f573373ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e88888581811061140857611407613c12565b5b905060200201602081019061141d9190613f96565b6040518263ffffffff1660e01b81526004016114399190613ff4565b60206040518083038186803b15801561145157600080fd5b505afa158015611465573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611489919061400f565b73ffffffffffffffffffffffffffffffffffffffff16146114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d690614088565b60405180910390fd5b60001515600760008888858181106114fa576114f9613c12565b5b905060200201602081019061150f9190613f96565b61ffff16815260200190815260200160002060009054906101000a900460ff161515141561159e576001846115449190613f2b565b935060016007600088888581811061155f5761155e613c12565b5b90506020020160208101906115749190613f96565b61ffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b5b80806115aa90613c70565b915050611360565b5060008314156115c157600080fd5b82600460008282546115d39190613f2b565b925050819055506115f633600085604051806020016040528060008152506122e9565b5050505050565b600060045411801561160f5750600081115b8015611629575060008160045461162691906140a8565b10155b611668576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165f90614128565b60405180910390fd5b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166116f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116eb90614194565b60405180910390fd5b806004600082825461170691906140a8565b925050819055506117198260008361247f565b5050565b8173ffffffffffffffffffffffffffffffffffffffff1661173c611da8565b73ffffffffffffffffffffffffffffffffffffffff161415611793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178a90614226565b60405180910390fd5b80600160006117a0611da8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661184d611da8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118929190612fc3565b60405180910390a35050565b6118a6611da8565b73ffffffffffffffffffffffffffffffffffffffff166118c4610f51565b73ffffffffffffffffffffffffffffffffffffffff161461191a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191190613a6d565b60405180910390fd5b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000806000905060005b84849050811015611a3d576127108585838181106119a05761199f613c12565b5b90506020020160208101906119b59190613f96565b61ffff16108015611a15575060001515600760008787858181106119dc576119db613c12565b5b90506020020160208101906119f19190613f96565b61ffff16815260200190815260200160002060009054906101000a900460ff161515145b15611a2a57600182611a279190613f2b565b91505b8080611a3590613c70565b91505061197f565b508091505092915050565b611a50611da8565b73ffffffffffffffffffffffffffffffffffffffff16611a6e610f51565b73ffffffffffffffffffffffffffffffffffffffff1614611ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abb90613a6d565b60405180910390fd5b611ae082600083604051806020016040528060008152506122e9565b600160046000828254611af39190613f2b565b925050819055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b9a611da8565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611be05750611bdf85611bda611da8565b611afe565b5b611c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c16906142b8565b60405180910390fd5b611c2c858585858561269c565b5050505050565b611c3b611da8565b73ffffffffffffffffffffffffffffffffffffffff16611c59610f51565b73ffffffffffffffffffffffffffffffffffffffff1614611caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca690613a6d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d169061434a565b60405180910390fd5b611d2881612180565b50565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b8060029080519060200190611dc6929190612d6e565b5050565b8151835114611e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e05906143dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e759061446e565b60405180910390fd5b6000611e88611da8565b9050611e9881878787878761291e565b60005b8451811015612049576000858281518110611eb957611eb8613c12565b5b602002602001015190506000858381518110611ed857611ed7613c12565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7090614500565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461202e9190613f2b565b925050819055505050508061204290613c70565b9050611e9b565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516120c0929190614520565b60405180910390a46120d6818787878787612926565b505050505050565b6120e6610d47565b612125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211c906145a3565b60405180910390fd5b6000600360146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612169611da8565b6040516121769190613789565b60405180910390a1565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61224e610d47565b1561228e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228590613d05565b60405180910390fd5b6001600360146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586122d2611da8565b6040516122df9190613789565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612359576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235090614635565b60405180910390fd5b6000612363611da8565b90506123848160008761237588612b0d565b61237e88612b0d565b8761291e565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123e39190613f2b565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612461929190614655565b60405180910390a461247881600087878787612b87565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e6906146f0565b60405180910390fd5b60006124f9611da8565b90506125298185600061250b87612b0d565b61251487612b0d565b6040518060200160405280600081525061291e565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156125c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b790614782565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161268d929190614655565b60405180910390a45050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561270c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127039061446e565b60405180910390fd5b6000612716611da8565b905061273681878761272788612b0d565b61273088612b0d565b8761291e565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156127cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c490614500565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128829190613f2b565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516128ff929190614655565b60405180910390a4612915828888888888612b87565b50505050505050565b505050505050565b6129458473ffffffffffffffffffffffffffffffffffffffff16611d2b565b15612b05578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b815260040161298b9594939291906147f7565b602060405180830381600087803b1580156129a557600080fd5b505af19250505080156129d657506040513d601f19601f820116820180604052508101906129d39190614874565b60015b612a7c576129e26148ae565b806308c379a01415612a3f57506129f76148d0565b80612a025750612a41565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3691906131f5565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a73906149d8565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612b03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612afa90614a6a565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115612b2c57612b2b612ff9565b5b604051908082528060200260200182016040528015612b5a5781602001602082028036833780820191505090505b5090508281600081518110612b7257612b71613c12565b5b60200260200101818152505080915050919050565b612ba68473ffffffffffffffffffffffffffffffffffffffff16611d2b565b15612d66578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612bec959493929190614a8a565b602060405180830381600087803b158015612c0657600080fd5b505af1925050508015612c3757506040513d601f19601f82011682018060405250810190612c349190614874565b60015b612cdd57612c436148ae565b806308c379a01415612ca05750612c586148d0565b80612c635750612ca2565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9791906131f5565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd4906149d8565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612d64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5b90614a6a565b60405180910390fd5b505b505050505050565b828054612d7a90613abc565b90600052602060002090601f016020900481019282612d9c5760008555612de3565b82601f10612db557805160ff1916838001178555612de3565b82800160010185558215612de3579182015b82811115612de2578251825591602001919060010190612dc7565b5b509050612df09190612df4565b5090565b5b80821115612e0d576000816000905550600101612df5565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612e5082612e25565b9050919050565b612e6081612e45565b8114612e6b57600080fd5b50565b600081359050612e7d81612e57565b92915050565b6000819050919050565b612e9681612e83565b8114612ea157600080fd5b50565b600081359050612eb381612e8d565b92915050565b60008060408385031215612ed057612ecf612e1b565b5b6000612ede85828601612e6e565b9250506020612eef85828601612ea4565b9150509250929050565b612f0281612e83565b82525050565b6000602082019050612f1d6000830184612ef9565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612f5881612f23565b8114612f6357600080fd5b50565b600081359050612f7581612f4f565b92915050565b600060208284031215612f9157612f90612e1b565b5b6000612f9f84828501612f66565b91505092915050565b60008115159050919050565b612fbd81612fa8565b82525050565b6000602082019050612fd86000830184612fb4565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61303182612fe8565b810181811067ffffffffffffffff821117156130505761304f612ff9565b5b80604052505050565b6000613063612e11565b905061306f8282613028565b919050565b600067ffffffffffffffff82111561308f5761308e612ff9565b5b61309882612fe8565b9050602081019050919050565b82818337600083830152505050565b60006130c76130c284613074565b613059565b9050828152602081018484840111156130e3576130e2612fe3565b5b6130ee8482856130a5565b509392505050565b600082601f83011261310b5761310a612fde565b5b813561311b8482602086016130b4565b91505092915050565b60006020828403121561313a57613139612e1b565b5b600082013567ffffffffffffffff81111561315857613157612e20565b5b613164848285016130f6565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156131a757808201518184015260208101905061318c565b838111156131b6576000848401525b50505050565b60006131c78261316d565b6131d18185613178565b93506131e1818560208601613189565b6131ea81612fe8565b840191505092915050565b6000602082019050818103600083015261320f81846131bc565b905092915050565b60006020828403121561322d5761322c612e1b565b5b600061323b84828501612ea4565b91505092915050565b6000819050919050565b600061326961326461325f84612e25565b613244565b612e25565b9050919050565b600061327b8261324e565b9050919050565b600061328d82613270565b9050919050565b61329d81613282565b82525050565b60006020820190506132b86000830184613294565b92915050565b6000602082840312156132d4576132d3612e1b565b5b60006132e284828501612e6e565b91505092915050565b600067ffffffffffffffff82111561330657613305612ff9565b5b602082029050602081019050919050565b600080fd5b600061332f61332a846132eb565b613059565b9050808382526020820190506020840283018581111561335257613351613317565b5b835b8181101561337b57806133678882612ea4565b845260208401935050602081019050613354565b5050509392505050565b600082601f83011261339a57613399612fde565b5b81356133aa84826020860161331c565b91505092915050565b600067ffffffffffffffff8211156133ce576133cd612ff9565b5b6133d782612fe8565b9050602081019050919050565b60006133f76133f2846133b3565b613059565b90508281526020810184848401111561341357613412612fe3565b5b61341e8482856130a5565b509392505050565b600082601f83011261343b5761343a612fde565b5b813561344b8482602086016133e4565b91505092915050565b600080600080600060a086880312156134705761346f612e1b565b5b600061347e88828901612e6e565b955050602061348f88828901612e6e565b945050604086013567ffffffffffffffff8111156134b0576134af612e20565b5b6134bc88828901613385565b935050606086013567ffffffffffffffff8111156134dd576134dc612e20565b5b6134e988828901613385565b925050608086013567ffffffffffffffff81111561350a57613509612e20565b5b61351688828901613426565b9150509295509295909350565b600061352e82613270565b9050919050565b61353e81613523565b82525050565b60006020820190506135596000830184613535565b92915050565b600067ffffffffffffffff82111561357a57613579612ff9565b5b602082029050602081019050919050565b600061359e6135998461355f565b613059565b905080838252602082019050602084028301858111156135c1576135c0613317565b5b835b818110156135ea57806135d68882612e6e565b8452602084019350506020810190506135c3565b5050509392505050565b600082601f83011261360957613608612fde565b5b813561361984826020860161358b565b91505092915050565b6000806040838503121561363957613638612e1b565b5b600083013567ffffffffffffffff81111561365757613656612e20565b5b613663858286016135f4565b925050602083013567ffffffffffffffff81111561368457613683612e20565b5b61369085828601613385565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6136cf81612e83565b82525050565b60006136e183836136c6565b60208301905092915050565b6000602082019050919050565b60006137058261369a565b61370f81856136a5565b935061371a836136b6565b8060005b8381101561374b57815161373288826136d5565b975061373d836136ed565b92505060018101905061371e565b5085935050505092915050565b6000602082019050818103600083015261377281846136fa565b905092915050565b61378381612e45565b82525050565b600060208201905061379e600083018461377a565b92915050565b600080fd5b60008083601f8401126137bf576137be612fde565b5b8235905067ffffffffffffffff8111156137dc576137db6137a4565b5b6020830191508360208202830111156137f8576137f7613317565b5b9250929050565b6000806020838503121561381657613815612e1b565b5b600083013567ffffffffffffffff81111561383457613833612e20565b5b613840858286016137a9565b92509250509250929050565b61385581612fa8565b811461386057600080fd5b50565b6000813590506138728161384c565b92915050565b6000806040838503121561388f5761388e612e1b565b5b600061389d85828601612e6e565b92505060206138ae85828601613863565b9150509250929050565b600080604083850312156138cf576138ce612e1b565b5b60006138dd85828601612e6e565b92505060206138ee85828601612e6e565b9150509250929050565b600080600080600060a0868803121561391457613913612e1b565b5b600061392288828901612e6e565b955050602061393388828901612e6e565b945050604061394488828901612ea4565b935050606061395588828901612ea4565b925050608086013567ffffffffffffffff81111561397657613975612e20565b5b61398288828901613426565b9150509295509295909350565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006139eb602b83613178565b91506139f68261398f565b604082019050919050565b60006020820190508181036000830152613a1a816139de565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613a57602083613178565b9150613a6282613a21565b602082019050919050565b60006020820190508181036000830152613a8681613a4a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613ad457607f821691505b60208210811415613ae857613ae7613a8d565b5b50919050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000613b4a603283613178565b9150613b5582613aee565b604082019050919050565b60006020820190508181036000830152613b7981613b3d565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000613bdc602983613178565b9150613be782613b80565b604082019050919050565b60006020820190508181036000830152613c0b81613bcf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613c7b82612e83565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613cae57613cad613c41565b5b600182019050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000613cef601083613178565b9150613cfa82613cb9565b602082019050919050565b60006020820190508181036000830152613d1e81613ce2565b9050919050565b600067ffffffffffffffff821115613d4057613d3f612ff9565b5b602082029050602081019050919050565b600080fd5b600061ffff82169050919050565b613d6d81613d56565b8114613d7857600080fd5b50565b600081519050613d8a81613d64565b92915050565b600069ffffffffffffffffffff82169050919050565b613daf81613d90565b8114613dba57600080fd5b50565b600081519050613dcc81613da6565b92915050565b600081519050613de181612e57565b92915050565b600060608284031215613dfd57613dfc613d51565b5b613e076060613059565b90506000613e1784828501613d7b565b6000830152506020613e2b84828501613dbd565b6020830152506040613e3f84828501613dd2565b60408301525092915050565b6000613e5e613e5984613d25565b613059565b90508083825260208201905060608402830185811115613e8157613e80613317565b5b835b81811015613eaa5780613e968882613de7565b845260208401935050606081019050613e83565b5050509392505050565b600082601f830112613ec957613ec8612fde565b5b8151613ed9848260208601613e4b565b91505092915050565b600060208284031215613ef857613ef7612e1b565b5b600082015167ffffffffffffffff811115613f1657613f15612e20565b5b613f2284828501613eb4565b91505092915050565b6000613f3682612e83565b9150613f4183612e83565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f7657613f75613c41565b5b828201905092915050565b600081359050613f9081613d64565b92915050565b600060208284031215613fac57613fab612e1b565b5b6000613fba84828501613f81565b91505092915050565b6000613fde613fd9613fd484613d56565b613244565b612e83565b9050919050565b613fee81613fc3565b82525050565b60006020820190506140096000830184613fe5565b92915050565b60006020828403121561402557614024612e1b565b5b600061403384828501613dd2565b91505092915050565b7f4f6e6c7920756e7374616b656420746f6b656e73000000000000000000000000600082015250565b6000614072601483613178565b915061407d8261403c565b602082019050919050565b600060208201905081810360008301526140a181614065565b9050919050565b60006140b382612e83565b91506140be83612e83565b9250828210156140d1576140d0613c41565b5b828203905092915050565b7f496e76616c696420706172616d65746572730000000000000000000000000000600082015250565b6000614112601283613178565b915061411d826140dc565b602082019050919050565b6000602082019050818103600083015261414181614105565b9050919050565b7f596f7520617265206e6f7420616c6c6f77656420746f20646f20746861740000600082015250565b600061417e601e83613178565b915061418982614148565b602082019050919050565b600060208201905081810360008301526141ad81614171565b9050919050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b6000614210602983613178565b915061421b826141b4565b604082019050919050565b6000602082019050818103600083015261423f81614203565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b60006142a2602983613178565b91506142ad82614246565b604082019050919050565b600060208201905081810360008301526142d181614295565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614334602683613178565b915061433f826142d8565b604082019050919050565b6000602082019050818103600083015261436381614327565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b60006143c6602883613178565b91506143d18261436a565b604082019050919050565b600060208201905081810360008301526143f5816143b9565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614458602583613178565b9150614463826143fc565b604082019050919050565b600060208201905081810360008301526144878161444b565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b60006144ea602a83613178565b91506144f58261448e565b604082019050919050565b60006020820190508181036000830152614519816144dd565b9050919050565b6000604082019050818103600083015261453a81856136fa565b9050818103602083015261454e81846136fa565b90509392505050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b600061458d601483613178565b915061459882614557565b602082019050919050565b600060208201905081810360008301526145bc81614580565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061461f602183613178565b915061462a826145c3565b604082019050919050565b6000602082019050818103600083015261464e81614612565b9050919050565b600060408201905061466a6000830185612ef9565b6146776020830184612ef9565b9392505050565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006146da602383613178565b91506146e58261467e565b604082019050919050565b60006020820190508181036000830152614709816146cd565b9050919050565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b600061476c602483613178565b915061477782614710565b604082019050919050565b6000602082019050818103600083015261479b8161475f565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006147c9826147a2565b6147d381856147ad565b93506147e3818560208601613189565b6147ec81612fe8565b840191505092915050565b600060a08201905061480c600083018861377a565b614819602083018761377a565b818103604083015261482b81866136fa565b9050818103606083015261483f81856136fa565b9050818103608083015261485381846147be565b90509695505050505050565b60008151905061486e81612f4f565b92915050565b60006020828403121561488a57614889612e1b565b5b60006148988482850161485f565b91505092915050565b60008160e01c9050919050565b600060033d11156148cd5760046000803e6148ca6000516148a1565b90505b90565b600060443d10156148e057614963565b6148e8612e11565b60043d036004823e80513d602482011167ffffffffffffffff82111715614910575050614963565b808201805167ffffffffffffffff81111561492e5750505050614963565b80602083010160043d03850181111561494b575050505050614963565b61495a82602001850186613028565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b60006149c2603483613178565b91506149cd82614966565b604082019050919050565b600060208201905081810360008301526149f1816149b5565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000614a54602883613178565b9150614a5f826149f8565b604082019050919050565b60006020820190508181036000830152614a8381614a47565b9050919050565b600060a082019050614a9f600083018861377a565b614aac602083018761377a565b614ab96040830186612ef9565b614ac66060830185612ef9565b8181036080830152614ad881846147be565b9050969550505050505056fea2646970667358221220e845c4edd702ba94cfb3ae35489546054c4e86472ab26a59a9f5ea7a3b32106b64736f6c63430008090033

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.