ETH Price: $3,401.23 (+3.01%)

Token

 

Overview

Max Total Supply

65,536

Holders

682

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0xbD042d4F67B19D5A8D90D93465DCe1FBD34A1527
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:
ForeverLandsExplorer

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : ForeverLandsExplorer.sol
//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;

/// @author: Paulius Uza - Upheaver

import "./AdminControl.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol";
import "hardhat/console.sol";

///////////////////////////////////////////////////////////////////////////////////////////////////////////////
//   ______                            _                     _     
//   |  ___|                          | |                   | |    
//   | |_ ___  _ __ _____   _____ _ __| |     __ _ _ __   __| |___ 
//   |  _/ _ \| '__/ _ \ \ / / _ \ '__| |    / _` | '_ \ / _` / __|
//   | || (_) | | |  __/\ V /  __/ |  | |___| (_| | | | | (_| \__ \
//   \_| \___/|_|  \___| \_/ \___|_|  \_____/\__,_|_| |_|\__,_|___/ . xyz
// 
///////////////////////////////////////////////////////////////////////////////////////////////////////////////

contract ForeverLandsExplorer is ReentrancyGuard, AdminControl, ERC1155 {

    struct Reward {
        address recipient;
        uint256 amount;
    }
    
    bytes4 private constant _INTERFACE_ID_ROYALTIES_CREATORCORE = 0xbb3bafd6;
    bytes4 private constant _INTERFACE_ID_ROYALTIES_EIP2981 = 0x2a55205a;
    bytes4 private constant _INTERFACE_ID_ROYALTIES_RARIBLE = 0xb7799584;

    uint256 private _royaltyBps;
    address payable private _royaltyRecipient;

    uint256 constant private _TOKEN_ID = 1;
    uint256 constant public FULL_PRICE = 160000000000000000;
    uint256 constant public PRESALE_PRICE = 128000000000000000;

    uint256 constant public MAX_EXPLORERS = 65536;
    uint256 constant public FOUNDERS_RESERVE = 1024;
    uint256 constant public SHARDS_RESERVE = 3360;
    uint256 constant public MAX_EXPLORERS_PRESALE = 16384;
    uint256 constant public MAX_EXPLORERS_CLAIMABLE = MAX_EXPLORERS - SHARDS_RESERVE - FOUNDERS_RESERVE;

    bool public publicSaleActive;
    bool public presaleActive;

    uint256 public claimedExplorers;
    uint256 public publicActiveTimestamp;
    uint256 public publicEndTimestamp;
    uint256 public presaleActiveTimestamp;
    uint256 public presaleEndTimestamp;

    address public partnerContract;
    uint256 public partnerTokenId;
    uint256 public partnerThreshold;

    event ActivatePresale();
    event DeactivatePresale();
    event ActivatePublicSale();
    event DeactivatePublicSale();

    constructor() ERC1155("https://www.foreverlands.xyz/api/explorer-mainnet/{id}.json") {
        console.log("Deploying ForeverLands Explorer");
    }

    /**
     * @dev Activate presale
     */
    function activatePresale(uint256 startTime, uint256 presaleInterval, address partnerContract_, uint256 partnerTokenId_, uint256 partnerThreshold_) external adminRequired {
        require(!presaleActive, "Already active");
        presaleActive = true;
        presaleActiveTimestamp = startTime;
        presaleEndTimestamp = presaleActiveTimestamp+presaleInterval;
        partnerContract = partnerContract_;
        partnerTokenId = partnerTokenId_;
        partnerThreshold = partnerThreshold_;
        emit ActivatePresale();
    }

    /**
     * @dev Activate public sale
     */
    function activatePublicSale(uint256 startTime, uint256 publicSaleInterval) external adminRequired {
        require(!publicSaleActive, "Already active");
        publicSaleActive = true;
        publicActiveTimestamp = startTime;
        publicEndTimestamp = publicActiveTimestamp+publicSaleInterval;
        emit ActivatePublicSale();
    }

     /**
     * @dev Claim explorers (main sale)
     */
    function claimExplorers(uint256 amount) external payable nonReentrant {
        require(publicSaleActive && block.timestamp >= publicActiveTimestamp && block.timestamp <= publicEndTimestamp, "Inactive");

        // Can only claim 500 at a time
        require(amount <= 500, "Too many requested");
        claimedExplorers += amount;

        require(claimedExplorers <= MAX_EXPLORERS_CLAIMABLE, "Too many requested");
        require(amount > 0 && msg.value == amount*FULL_PRICE, "Invalid eth sent");
        _mint(msg.sender, _TOKEN_ID, amount, "");
    }

    /**
     * @dev Claim explorers (pre-sale)
     */
    function claimExplorersPresale(uint256 amount) external payable nonReentrant {
        require(presaleActive && block.timestamp >= presaleActiveTimestamp && block.timestamp <= presaleEndTimestamp, "Inactive");

        // Check if user has whitelist tokens
        require(IERC1155(partnerContract).balanceOf(msg.sender, partnerTokenId) >= partnerThreshold, "Not eligible for the presale");

        // Can only claim 500 at a time
        require(amount <= 500, "Too many requested");
        claimedExplorers += amount;

        require(claimedExplorers <= MAX_EXPLORERS_PRESALE, "Too many requested");
        require(amount > 0 && msg.value == amount*PRESALE_PRICE, "Invalid eth sent");
        _mint(msg.sender, _TOKEN_ID, amount, "");
    }

    /**
     * @dev Distribute explorers. Only available after public sale completion
     */
     
    function distributeExplorers(Reward[] memory rewards) external adminRequired {
        require(publicEndTimestamp > 0 && block.timestamp > publicEndTimestamp, "Can run only after sale end");
        for (uint i = 0; i < rewards.length; i++) {
            claimedExplorers += rewards[i].amount;
            require(claimedExplorers <= MAX_EXPLORERS, "Too many requested");
            _mint(rewards[i].recipient, _TOKEN_ID, rewards[i].amount, "");
        }
    }

    /**
     * @dev Deactivate presale
     */
    function deactivatePresale() external adminRequired {
        presaleActive = false;
        presaleEndTimestamp = block.timestamp;
        emit DeactivatePresale();
    }

    /**
     * @dev Deactivate public sale
     */
    function deactivatePublicSale() external adminRequired {
        publicSaleActive = false;
        publicEndTimestamp = block.timestamp;
        emit DeactivatePublicSale();
    }

    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual override {
        require(claimedExplorers == MAX_EXPLORERS_CLAIMABLE, "Transfer locked");
        super._safeTransferFrom(from, to, id, amount, data);
    }

    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        require(claimedExplorers == MAX_EXPLORERS_CLAIMABLE, "Transfer locked");
        super._safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Change the URI
     */
    function setURI(string memory newuri) external adminRequired {
        _setURI(newuri);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(AdminControl, ERC1155) returns (bool) {
        return ERC1155.supportsInterface(interfaceId) || AdminControl.supportsInterface(interfaceId) || interfaceId == _INTERFACE_ID_ROYALTIES_CREATORCORE
               || interfaceId == _INTERFACE_ID_ROYALTIES_EIP2981 || interfaceId == _INTERFACE_ID_ROYALTIES_RARIBLE;
    }

    /**
     * @dev Withdraw funds
     */
    function withdraw(uint256 amount) external adminRequired {
        require(_royaltyRecipient != address(0x0), "Must set royalty recipient");
        _royaltyRecipient.transfer(amount);
    }

    /**
     * @dev Update royalties
     */
    function updateRoyalties(address payable recipient, uint256 bps) external adminRequired {
        _royaltyRecipient = recipient;
        _royaltyBps = bps;
    }

    /**
     * ROYALTY FUNCTIONS
     */

    function getRoyalties(uint256) external view returns (address payable[] memory recipients, uint256[] memory bps) {
        if (_royaltyRecipient != address(0x0)) {
            recipients = new address payable[](1);
            recipients[0] = _royaltyRecipient;
            bps = new uint256[](1);
            bps[0] = _royaltyBps;
        }
        return (recipients, bps);
    }

    function getFeeRecipients(uint256) external view returns (address payable[] memory recipients) {
        if (_royaltyRecipient != address(0x0)) {
            recipients = new address payable[](1);
            recipients[0] = _royaltyRecipient;
        }
        return recipients;
    }

    function getFeeBps(uint256) external view returns (uint[] memory bps) {
        if (_royaltyRecipient != address(0x0)) {
            bps = new uint256[](1);
            bps[0] = _royaltyBps;
        }
        return bps;
    }

    function royaltyInfo(uint256, uint256 value) external view returns (address, uint256) {
        return (_royaltyRecipient, value*_royaltyBps/10000);
    }

}

File 2 of 15 : AdminControl.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/// @author: manifold.xyz

import "@openzeppelin/contracts/utils/introspection/ERC165.sol";
import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./IAdminControl.sol";

abstract contract AdminControl is Ownable, IAdminControl, ERC165 {
    using EnumerableSet for EnumerableSet.AddressSet;

    // Track registered admins
    EnumerableSet.AddressSet private _admins;

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

    /**
     * @dev Only allows approved admins to call the specified function
     */
    modifier adminRequired() {
        require(owner() == msg.sender || _admins.contains(msg.sender), "AC: Must be owner or admin");
        _;
    }   

    /**
     * @dev See {IAdminControl-getAdmins}.
     */
    function getAdmins() external view override returns (address[] memory admins) {
        admins = new address[](_admins.length());
        for (uint i = 0; i < _admins.length(); i++) {
            admins[i] = _admins.at(i);
        }
        return admins;
    }

    /**
     * @dev See {IAdminControl-approveAdmin}.
     */
    function approveAdmin(address admin) external override onlyOwner {
        if (!_admins.contains(admin)) {
            emit AdminApproved(admin, msg.sender);
            _admins.add(admin);
        }
    }

    /**
     * @dev See {IAdminControl-revokeAdmin}.
     */
    function revokeAdmin(address admin) external override onlyOwner {
        if (_admins.contains(admin)) {
            emit AdminRevoked(admin, msg.sender);
            _admins.remove(admin);
        }
    }

    /**
     * @dev See {IAdminControl-isAdmin}.
     */
    function isAdmin(address admin) public override view returns (bool) {
        return (owner() == admin || _admins.contains(admin));
    }

}

File 3 of 15 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 4 of 15 : 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 5 of 15 : 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 15 : console.sol
// SPDX-License-Identifier: MIT
pragma solidity >= 0.4.22 <0.9.0;

library console {
	address constant CONSOLE_ADDRESS = address(0x000000000000000000636F6e736F6c652e6c6f67);

	function _sendLogPayload(bytes memory payload) private view {
		uint256 payloadLength = payload.length;
		address consoleAddress = CONSOLE_ADDRESS;
		assembly {
			let payloadStart := add(payload, 32)
			let r := staticcall(gas(), consoleAddress, payloadStart, payloadLength, 0, 0)
		}
	}

	function log() internal view {
		_sendLogPayload(abi.encodeWithSignature("log()"));
	}

	function logInt(int p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(int)", p0));
	}

	function logUint(uint p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint)", p0));
	}

	function logString(string memory p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string)", p0));
	}

	function logBool(bool p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool)", p0));
	}

	function logAddress(address p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address)", p0));
	}

	function logBytes(bytes memory p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes)", p0));
	}

	function logBytes1(bytes1 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes1)", p0));
	}

	function logBytes2(bytes2 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes2)", p0));
	}

	function logBytes3(bytes3 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes3)", p0));
	}

	function logBytes4(bytes4 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes4)", p0));
	}

	function logBytes5(bytes5 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes5)", p0));
	}

	function logBytes6(bytes6 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes6)", p0));
	}

	function logBytes7(bytes7 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes7)", p0));
	}

	function logBytes8(bytes8 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes8)", p0));
	}

	function logBytes9(bytes9 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes9)", p0));
	}

	function logBytes10(bytes10 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes10)", p0));
	}

	function logBytes11(bytes11 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes11)", p0));
	}

	function logBytes12(bytes12 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes12)", p0));
	}

	function logBytes13(bytes13 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes13)", p0));
	}

	function logBytes14(bytes14 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes14)", p0));
	}

	function logBytes15(bytes15 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes15)", p0));
	}

	function logBytes16(bytes16 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes16)", p0));
	}

	function logBytes17(bytes17 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes17)", p0));
	}

	function logBytes18(bytes18 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes18)", p0));
	}

	function logBytes19(bytes19 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes19)", p0));
	}

	function logBytes20(bytes20 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes20)", p0));
	}

	function logBytes21(bytes21 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes21)", p0));
	}

	function logBytes22(bytes22 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes22)", p0));
	}

	function logBytes23(bytes23 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes23)", p0));
	}

	function logBytes24(bytes24 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes24)", p0));
	}

	function logBytes25(bytes25 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes25)", p0));
	}

	function logBytes26(bytes26 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes26)", p0));
	}

	function logBytes27(bytes27 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes27)", p0));
	}

	function logBytes28(bytes28 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes28)", p0));
	}

	function logBytes29(bytes29 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes29)", p0));
	}

	function logBytes30(bytes30 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes30)", p0));
	}

	function logBytes31(bytes31 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes31)", p0));
	}

	function logBytes32(bytes32 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes32)", p0));
	}

	function log(uint p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint)", p0));
	}

	function log(string memory p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string)", p0));
	}

	function log(bool p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool)", p0));
	}

	function log(address p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address)", p0));
	}

	function log(uint p0, uint p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint)", p0, p1));
	}

	function log(uint p0, string memory p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string)", p0, p1));
	}

	function log(uint p0, bool p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool)", p0, p1));
	}

	function log(uint p0, address p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address)", p0, p1));
	}

	function log(string memory p0, uint p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint)", p0, p1));
	}

	function log(string memory p0, string memory p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string)", p0, p1));
	}

	function log(string memory p0, bool p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool)", p0, p1));
	}

	function log(string memory p0, address p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address)", p0, p1));
	}

	function log(bool p0, uint p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint)", p0, p1));
	}

	function log(bool p0, string memory p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string)", p0, p1));
	}

	function log(bool p0, bool p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool)", p0, p1));
	}

	function log(bool p0, address p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address)", p0, p1));
	}

	function log(address p0, uint p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint)", p0, p1));
	}

	function log(address p0, string memory p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string)", p0, p1));
	}

	function log(address p0, bool p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool)", p0, p1));
	}

	function log(address p0, address p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address)", p0, p1));
	}

	function log(uint p0, uint p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint)", p0, p1, p2));
	}

	function log(uint p0, uint p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,string)", p0, p1, p2));
	}

	function log(uint p0, uint p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool)", p0, p1, p2));
	}

	function log(uint p0, uint p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,address)", p0, p1, p2));
	}

	function log(uint p0, string memory p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,uint)", p0, p1, p2));
	}

	function log(uint p0, string memory p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,string)", p0, p1, p2));
	}

	function log(uint p0, string memory p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,bool)", p0, p1, p2));
	}

	function log(uint p0, string memory p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,address)", p0, p1, p2));
	}

	function log(uint p0, bool p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint)", p0, p1, p2));
	}

	function log(uint p0, bool p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,string)", p0, p1, p2));
	}

	function log(uint p0, bool p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool)", p0, p1, p2));
	}

	function log(uint p0, bool p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,address)", p0, p1, p2));
	}

	function log(uint p0, address p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,uint)", p0, p1, p2));
	}

	function log(uint p0, address p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,string)", p0, p1, p2));
	}

	function log(uint p0, address p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,bool)", p0, p1, p2));
	}

	function log(uint p0, address p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,address)", p0, p1, p2));
	}

	function log(string memory p0, uint p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,uint)", p0, p1, p2));
	}

	function log(string memory p0, uint p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,string)", p0, p1, p2));
	}

	function log(string memory p0, uint p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,bool)", p0, p1, p2));
	}

	function log(string memory p0, uint p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,address)", p0, p1, p2));
	}

	function log(string memory p0, string memory p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,uint)", p0, p1, p2));
	}

	function log(string memory p0, string memory p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,string)", p0, p1, p2));
	}

	function log(string memory p0, string memory p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,bool)", p0, p1, p2));
	}

	function log(string memory p0, string memory p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,address)", p0, p1, p2));
	}

	function log(string memory p0, bool p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint)", p0, p1, p2));
	}

	function log(string memory p0, bool p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,string)", p0, p1, p2));
	}

	function log(string memory p0, bool p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool)", p0, p1, p2));
	}

	function log(string memory p0, bool p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,address)", p0, p1, p2));
	}

	function log(string memory p0, address p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,uint)", p0, p1, p2));
	}

	function log(string memory p0, address p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,string)", p0, p1, p2));
	}

	function log(string memory p0, address p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,bool)", p0, p1, p2));
	}

	function log(string memory p0, address p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,address)", p0, p1, p2));
	}

	function log(bool p0, uint p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint)", p0, p1, p2));
	}

	function log(bool p0, uint p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,string)", p0, p1, p2));
	}

	function log(bool p0, uint p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool)", p0, p1, p2));
	}

	function log(bool p0, uint p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,address)", p0, p1, p2));
	}

	function log(bool p0, string memory p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint)", p0, p1, p2));
	}

	function log(bool p0, string memory p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,string)", p0, p1, p2));
	}

	function log(bool p0, string memory p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool)", p0, p1, p2));
	}

	function log(bool p0, string memory p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,address)", p0, p1, p2));
	}

	function log(bool p0, bool p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint)", p0, p1, p2));
	}

	function log(bool p0, bool p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string)", p0, p1, p2));
	}

	function log(bool p0, bool p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool)", p0, p1, p2));
	}

	function log(bool p0, bool p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address)", p0, p1, p2));
	}

	function log(bool p0, address p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint)", p0, p1, p2));
	}

	function log(bool p0, address p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,string)", p0, p1, p2));
	}

	function log(bool p0, address p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool)", p0, p1, p2));
	}

	function log(bool p0, address p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,address)", p0, p1, p2));
	}

	function log(address p0, uint p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,uint)", p0, p1, p2));
	}

	function log(address p0, uint p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,string)", p0, p1, p2));
	}

	function log(address p0, uint p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,bool)", p0, p1, p2));
	}

	function log(address p0, uint p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,address)", p0, p1, p2));
	}

	function log(address p0, string memory p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,uint)", p0, p1, p2));
	}

	function log(address p0, string memory p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,string)", p0, p1, p2));
	}

	function log(address p0, string memory p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,bool)", p0, p1, p2));
	}

	function log(address p0, string memory p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,address)", p0, p1, p2));
	}

	function log(address p0, bool p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint)", p0, p1, p2));
	}

	function log(address p0, bool p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,string)", p0, p1, p2));
	}

	function log(address p0, bool p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool)", p0, p1, p2));
	}

	function log(address p0, bool p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,address)", p0, p1, p2));
	}

	function log(address p0, address p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,uint)", p0, p1, p2));
	}

	function log(address p0, address p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,string)", p0, p1, p2));
	}

	function log(address p0, address p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,bool)", p0, p1, p2));
	}

	function log(address p0, address p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,address)", p0, p1, p2));
	}

	function log(uint p0, uint p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint,string)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint,address)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,string,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,string,string)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,string,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,string,address)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool,string)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool,address)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,address,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,address,string)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,address,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,address,address)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,uint,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,uint,string)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,uint,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,uint,address)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,string,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,string,string)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,string,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,string,address)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,bool,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,bool,string)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,bool,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,bool,address)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,address,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,address,string)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,address,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,address,address)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint,string)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint,address)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,string,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,string,string)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,string,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,string,address)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool,string)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool,address)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,address,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,address,string)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,address,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,address,address)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,uint,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,uint,string)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,uint,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,uint,address)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,string,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,string,string)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,string,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,string,address)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,bool,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,bool,string)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,bool,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,bool,address)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,address,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,address,string)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,address,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,address,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,uint,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,uint,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,uint,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,uint,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,string,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,string,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,string,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,string,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,bool,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,bool,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,bool,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,bool,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,address,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,address,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,address,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,address,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,uint,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,uint,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,uint,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,uint,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,string,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,string,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,string,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,string,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,bool,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,bool,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,bool,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,bool,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,address,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,address,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,address,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,address,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,string,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,string,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,string,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,string,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,uint,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,uint,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,uint,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,uint,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,string,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,string,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,string,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,string,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,address,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,address,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,address,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,address,address)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint,string)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint,address)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,string,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,string,string)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,string,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,string,address)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool,string)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool,address)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,address,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,address,string)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,address,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,address,address)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint,string)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint,address)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,string,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,string,string)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,string,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,string,address)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,string)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,address)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,string)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,address)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint,string)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint,address)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,string)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,address)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,string)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,address)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,string)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,address)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint,string)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint,address)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,string)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,address)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,string)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,address)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,string)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,address)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,uint,uint)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,uint,string)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,uint,bool)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,uint,address)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,string,uint)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,string,string)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,string,bool)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,string,address)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,bool,uint)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,bool,string)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,bool,bool)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,bool,address)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,address,uint)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,address,string)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,address,bool)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,address,address)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,uint,uint)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,uint,string)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,uint,bool)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,uint,address)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,string,uint)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,string,string)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,string,bool)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,string,address)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,uint)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,string)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,bool)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,address)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,address,uint)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,address,string)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,address,bool)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,address,address)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint,uint)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint,string)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint,bool)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint,address)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,uint)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,string)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,bool)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,address)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,uint)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,string)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,bool)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,address)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,uint)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,string)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,bool)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,address)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,uint,uint)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,uint,string)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,uint,bool)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,uint,address)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,string,uint)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,string,string)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,string,bool)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,string,address)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,uint)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,string)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,bool)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,address)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,address,uint)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,address,string)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,address,bool)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,address,address)", p0, p1, p2, p3));
	}

}

File 7 of 15 : 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 8 of 15 : EnumerableSet.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastvalue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastvalue;
                // Update the index for the moved value
                set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        return set._values[index];
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
        return _values(set._inner);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        assembly {
            result := store
        }

        return result;
    }
}

File 9 of 15 : 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 10 of 15 : IAdminControl.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/// @author: manifold.xyz

import "@openzeppelin/contracts/utils/introspection/IERC165.sol";

/**
 * @dev Interface for admin control
 */
interface IAdminControl is IERC165 {

    event AdminApproved(address indexed account, address indexed sender);
    event AdminRevoked(address indexed account, address indexed sender);

    /**
     * @dev gets address of all admins
     */
    function getAdmins() external view returns (address[] memory);

    /**
     * @dev add an admin.  Can only be called by contract owner.
     */
    function approveAdmin(address admin) external;

    /**
     * @dev remove an admin.  Can only be called by contract owner.
     */
    function revokeAdmin(address admin) external;

    /**
     * @dev checks whether or not given address is an admin
     * Returns True if they are
     */
    function isAdmin(address admin) external view returns (bool);

}

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

pragma solidity ^0.8.0;

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

File 12 of 15 : 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 13 of 15 : 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 14 of 15 : 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 15 of 15 : 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);
            }
        }
    }
}

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":[],"name":"ActivatePresale","type":"event"},{"anonymous":false,"inputs":[],"name":"ActivatePublicSale","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"AdminApproved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"AdminRevoked","type":"event"},{"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":[],"name":"DeactivatePresale","type":"event"},{"anonymous":false,"inputs":[],"name":"DeactivatePublicSale","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"FOUNDERS_RESERVE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FULL_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_EXPLORERS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_EXPLORERS_CLAIMABLE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_EXPLORERS_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SHARDS_RESERVE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"presaleInterval","type":"uint256"},{"internalType":"address","name":"partnerContract_","type":"address"},{"internalType":"uint256","name":"partnerTokenId_","type":"uint256"},{"internalType":"uint256","name":"partnerThreshold_","type":"uint256"}],"name":"activatePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"publicSaleInterval","type":"uint256"}],"name":"activatePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"admin","type":"address"}],"name":"approveAdmin","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"amount","type":"uint256"}],"name":"claimExplorers","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimExplorersPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"claimedExplorers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deactivatePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deactivatePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct ForeverLandsExplorer.Reward[]","name":"rewards","type":"tuple[]"}],"name":"distributeExplorers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAdmins","outputs":[{"internalType":"address[]","name":"admins","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getFeeBps","outputs":[{"internalType":"uint256[]","name":"bps","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getFeeRecipients","outputs":[{"internalType":"address payable[]","name":"recipients","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getRoyalties","outputs":[{"internalType":"address payable[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"bps","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"admin","type":"address"}],"name":"isAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"partnerContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"partnerThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"partnerTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleActiveTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleEndTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicActiveTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicEndTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"admin","type":"address"}],"name":"revokeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"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":"string","name":"newuri","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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"recipient","type":"address"},{"internalType":"uint256","name":"bps","type":"uint256"}],"name":"updateRoyalties","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":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060600160405280603b81526020016200634a603b913960016000819055506200005462000048620000b760201b60201c565b620000bf60201b60201c565b62000065816200018560201b60201c565b50620000b16040518060400160405280601f81526020017f4465706c6f79696e6720466f72657665724c616e6473204578706c6f72657200815250620001a160201b62002bb71760201c565b6200044a565b600033905090565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600690805190602001906200019d9291906200026d565b5050565b6200024181604051602401620001b891906200035e565b6040516020818303038152906040527f41304fac000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506200024460201b60201c565b50565b60008151905060006a636f6e736f6c652e6c6f679050602083016000808483855afa5050505050565b8280546200027b90620003d4565b90600052602060002090601f0160209004810192826200029f5760008555620002eb565b82601f10620002ba57805160ff1916838001178555620002eb565b82800160010185558215620002eb579182015b82811115620002ea578251825591602001919060010190620002cd565b5b509050620002fa9190620002fe565b5090565b5b8082111562000319576000816000905550600101620002ff565b5090565b60006200032a8262000382565b6200033681856200038d565b9350620003488185602086016200039e565b620003538162000439565b840191505092915050565b600060208201905081810360008301526200037a81846200031d565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015620003be578082015181840152602081019050620003a1565b83811115620003ce576000848401525b50505050565b60006002820490506001821680620003ed57607f821691505b602082108114156200040457620004036200040a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b615ef0806200045a6000396000f3fe60806040526004361061027c5760003560e01c80636c2f5acd1161014f578063a22cb465116100c1578063d5e1d5091161007a578063d5e1d5091461096f578063da061fcf1461099a578063db9136d3146109c5578063e985e9c5146109f0578063f242432a14610a2d578063f2fde38b14610a565761027c565b8063a22cb4651461084e578063a48dd46514610877578063b9c4d9fb146108a0578063bb3bafd6146108dd578063bc8893b41461091b578063be3c5390146109465761027c565b806378da7ba11161011357806378da7ba11461075d5780638da5cb5b1461078857806390f3bf2a146107b3578063912efd42146107dc578063935435bd14610807578063964ac3a0146108325761027c565b80636c2f5acd146106ad5780636d73e669146106d6578063715018a6146106ff57806375c55b921461071657806376df625f146107325761027c565b80632a55205a116101f3578063401226ec116101ac578063401226ec146105ad5780634e1273f4146105d857806353135ca01461061557806362dc6e211461064057806364f76e131461066b57806366a62ac9146106965761027c565b80632a55205a1461049e5780632d345670146104dc5780632d744b11146105055780632e1a7d4d146105305780632eb2c2d61461055957806331ae450b146105825761027c565b80630c0aa027116102455780630c0aa0271461037a5780630e89341c146103a55780630ebd4c7f146103e25780631f682a591461041f57806324d7806c1461044a578063290fd843146104875761027c565b8062fdd58e1461028157806301ffc9a7146102be57806302179c2d146102fb57806302fe5305146103265780630b40cc991461034f575b600080fd5b34801561028d57600080fd5b506102a860048036038101906102a391906145b8565b610a7f565b6040516102b59190615283565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e091906146a1565b610b49565b6040516102f29190614f66565b60405180910390f35b34801561030757600080fd5b50610310610c58565b60405161031d9190615283565b60405180910390f35b34801561033257600080fd5b5061034d600480360381019061034891906146f3565b610c5e565b005b34801561035b57600080fd5b50610364610cfa565b6040516103719190615283565b60405180910390f35b34801561038657600080fd5b5061038f610d06565b60405161039c9190615283565b60405180910390f35b3480156103b157600080fd5b506103cc60048036038101906103c79190614734565b610d0c565b6040516103d99190614f81565b60405180910390f35b3480156103ee57600080fd5b5061040960048036038101906104049190614734565b610da0565b6040516104169190614f0d565b60405180910390f35b34801561042b57600080fd5b50610434610eb9565b6040516104419190615283565b60405180910390f35b34801561045657600080fd5b50610471600480360381019061046c919061438d565b610ebf565b60405161047e9190614f66565b60405180910390f35b34801561049357600080fd5b5061049c610f19565b005b3480156104aa57600080fd5b506104c560048036038101906104c09190614786565b610ff9565b6040516104d3929190614e69565b60405180910390f35b3480156104e857600080fd5b5061050360048036038101906104fe919061438d565b611045565b005b34801561051157600080fd5b5061051a61114d565b6040516105279190614d8c565b60405180910390f35b34801561053c57600080fd5b5061055760048036038101906105529190614734565b611173565b005b34801561056557600080fd5b50610580600480360381019061057b919061442e565b611301565b005b34801561058e57600080fd5b506105976113a2565b6040516105a49190614e92565b60405180910390f35b3480156105b957600080fd5b506105c26114d0565b6040516105cf9190615283565b60405180910390f35b3480156105e457600080fd5b506105ff60048036038101906105fa91906145f4565b6114d6565b60405161060c9190614f0d565b60405180910390f35b34801561062157600080fd5b5061062a611687565b6040516106379190614f66565b60405180910390f35b34801561064c57600080fd5b5061065561169a565b6040516106629190615283565b60405180910390f35b34801561067757600080fd5b506106806116a6565b60405161068d9190615283565b60405180910390f35b3480156106a257600080fd5b506106ab6116ad565b005b3480156106b957600080fd5b506106d460048036038101906106cf91906143b6565b61178d565b005b3480156106e257600080fd5b506106fd60048036038101906106f8919061438d565b611869565b005b34801561070b57600080fd5b50610714611970565b005b610730600480360381019061072b9190614734565b6119f8565b005b34801561073e57600080fd5b50610747611bf9565b6040516107549190615283565b60405180910390f35b34801561076957600080fd5b50610772611bff565b60405161077f9190615283565b60405180910390f35b34801561079457600080fd5b5061079d611c05565b6040516107aa9190614d8c565b60405180910390f35b3480156107bf57600080fd5b506107da60048036038101906107d591906147c2565b611c2f565b005b3480156107e857600080fd5b506107f1611dc7565b6040516107fe9190615283565b60405180910390f35b34801561081357600080fd5b5061081c611dcd565b6040516108299190615283565b60405180910390f35b61084c60048036038101906108479190614734565b611dd3565b005b34801561085a57600080fd5b506108756004803603810190610870919061457c565b6120ab565b005b34801561088357600080fd5b5061089e60048036038101906108999190614786565b61222c565b005b3480156108ac57600080fd5b506108c760048036038101906108c29190614734565b612372565b6040516108d49190614eb4565b60405180910390f35b3480156108e957600080fd5b5061090460048036038101906108ff9190614734565b6124d9565b604051610912929190614ed6565b60405180910390f35b34801561092757600080fd5b506109306126fc565b60405161093d9190614f66565b60405180910390f35b34801561095257600080fd5b5061096d60048036038101906109689190614660565b61270f565b005b34801561097b57600080fd5b5061098461295d565b6040516109919190615283565b60405180910390f35b3480156109a657600080fd5b506109af612963565b6040516109bc9190615283565b60405180910390f35b3480156109d157600080fd5b506109da612984565b6040516109e79190615283565b60405180910390f35b3480156109fc57600080fd5b50610a176004803603810190610a1291906143f2565b61298a565b604051610a249190614f66565b60405180910390f35b348015610a3957600080fd5b50610a546004803603810190610a4f91906144ed565b612a1e565b005b348015610a6257600080fd5b50610a7d6004803603810190610a78919061438d565b612abf565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae790614fe3565b60405180910390fd5b6004600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000610b5482612c50565b80610b645750610b6382612d32565b5b80610bb3575063bb3bafd660e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c025750632a55205a60e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c51575063b779958460e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60095481565b3373ffffffffffffffffffffffffffffffffffffffff16610c7d611c05565b73ffffffffffffffffffffffffffffffffffffffff161480610caf5750610cae336002612dac90919063ffffffff16565b5b610cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce590615163565b60405180910390fd5b610cf781612ddc565b50565b6702386f26fc10000081565b61040081565b606060068054610d1b90615692565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4790615692565b8015610d945780601f10610d6957610100808354040283529160200191610d94565b820191906000526020600020905b815481529060010190602001808311610d7757829003601f168201915b50505050509050919050565b6060600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610eb457600167ffffffffffffffff811115610e39577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610e675781602001602082028036833780820191505090505b50905060075481600081518110610ea7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250505b919050565b600b5481565b60008173ffffffffffffffffffffffffffffffffffffffff16610ee0611c05565b73ffffffffffffffffffffffffffffffffffffffff161480610f125750610f11826002612dac90919063ffffffff16565b5b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff16610f38611c05565b73ffffffffffffffffffffffffffffffffffffffff161480610f6a5750610f69336002612dac90919063ffffffff16565b5b610fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa090615163565b60405180910390fd5b6000600860156101000a81548160ff02191690831515021790555042600d819055507f824b9793c8ac7d56c1770c09ee7517f9318e27df0b86c928d8c373cf3c8b61a260405160405180910390a1565b600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661271060075485611030919061553c565b61103a919061550b565b915091509250929050565b61104d612df6565b73ffffffffffffffffffffffffffffffffffffffff1661106b611c05565b73ffffffffffffffffffffffffffffffffffffffff16146110c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b890615183565b60405180910390fd5b6110d5816002612dac90919063ffffffff16565b1561114a573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f7c0c3c84c67c85fcac635147348bfe374c24a1a93d0366d1cfe9d8853cbf89d560405160405180910390a3611148816002612dfe90919063ffffffff16565b505b50565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b3373ffffffffffffffffffffffffffffffffffffffff16611192611c05565b73ffffffffffffffffffffffffffffffffffffffff1614806111c457506111c3336002612dac90919063ffffffff16565b5b611203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fa90615163565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128c90615103565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156112fd573d6000803e3d6000fd5b5050565b611309612df6565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061134f575061134e85611349612df6565b61298a565b5b61138e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611385906150e3565b60405180910390fd5b61139b8585858585612e2e565b5050505050565b60606113ae6002612ea3565b67ffffffffffffffff8111156113ed577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561141b5781602001602082028036833780820191505090505b50905060005b61142b6002612ea3565b8110156114cc57611446816002612eb890919063ffffffff16565b82828151811061147f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505080806114c4906156f5565b915050611421565b5090565b610d2081565b6060815183511461151c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151390615203565b60405180910390fd5b6000835167ffffffffffffffff81111561155f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561158d5781602001602082028036833780820191505090505b50905060005b845181101561167c576116268582815181106115d8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110611619577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151610a7f565b82828151811061165f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080611675906156f5565b9050611593565b508091505092915050565b600860159054906101000a900460ff1681565b6701c6bf526340000081565b6201000081565b3373ffffffffffffffffffffffffffffffffffffffff166116cc611c05565b73ffffffffffffffffffffffffffffffffffffffff1614806116fe57506116fd336002612dac90919063ffffffff16565b5b61173d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173490615163565b60405180910390fd5b6000600860146101000a81548160ff02191690831515021790555042600b819055507fad64d4c7c6a3afaf095623829ab808765fb5e3c10cf11ea5642a1ed509db608660405160405180910390a1565b3373ffffffffffffffffffffffffffffffffffffffff166117ac611c05565b73ffffffffffffffffffffffffffffffffffffffff1614806117de57506117dd336002612dac90919063ffffffff16565b5b61181d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181490615163565b60405180910390fd5b81600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550806007819055505050565b611871612df6565b73ffffffffffffffffffffffffffffffffffffffff1661188f611c05565b73ffffffffffffffffffffffffffffffffffffffff16146118e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118dc90615183565b60405180910390fd5b6118f9816002612dac90919063ffffffff16565b61196d573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f7e1a1a08d52e4ba0e21554733d66165fd5151f99460116223d9e3a608eec5cb160405160405180910390a361196b816002612ed290919063ffffffff16565b505b50565b611978612df6565b73ffffffffffffffffffffffffffffffffffffffff16611996611c05565b73ffffffffffffffffffffffffffffffffffffffff16146119ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e390615183565b60405180910390fd5b6119f66000612f02565b565b60026000541415611a3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3590615263565b60405180910390fd5b6002600081905550600860149054906101000a900460ff168015611a645750600a544210155b8015611a725750600b544211155b611ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa890615123565b60405180910390fd5b6101f4811115611af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aed90615063565b60405180910390fd5b8060096000828254611b0891906154b5565b92505081905550610400610d2062010000611b239190615596565b611b2d9190615596565b6009541115611b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6890615063565b60405180910390fd5b600081118015611b9357506702386f26fc10000081611b90919061553c565b34145b611bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc9906151c3565b60405180910390fd5b611bee3360018360405180602001604052806000815250612fc8565b600160008190555050565b61400081565b600d5481565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3373ffffffffffffffffffffffffffffffffffffffff16611c4e611c05565b73ffffffffffffffffffffffffffffffffffffffff161480611c805750611c7f336002612dac90919063ffffffff16565b5b611cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb690615163565b60405180910390fd5b600860159054906101000a900460ff1615611d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d06906151a3565b60405180910390fd5b6001600860156101000a81548160ff02191690831515021790555084600c8190555083600c54611d3f91906154b5565b600d8190555082600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600f81905550806010819055507f9905b2a8827744add26587e1fedc4293ff0d12730cdc60cce4588e5a2a6b3b6260405160405180910390a15050505050565b600c5481565b60105481565b60026000541415611e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1090615263565b60405180910390fd5b6002600081905550600860159054906101000a900460ff168015611e3f5750600c544210155b8015611e4d5750600d544211155b611e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8390615123565b60405180910390fd5b601054600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662fdd58e33600f546040518363ffffffff1660e01b8152600401611eed929190614e69565b60206040518083038186803b158015611f0557600080fd5b505afa158015611f19573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f3d919061475d565b1015611f7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7590615023565b60405180910390fd5b6101f4811115611fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fba90615063565b60405180910390fd5b8060096000828254611fd591906154b5565b925050819055506140006009541115612023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201a90615063565b60405180910390fd5b60008111801561204557506701c6bf526340000081612042919061553c565b34145b612084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207b906151c3565b60405180910390fd5b6120a03360018360405180602001604052806000815250612fc8565b600160008190555050565b8173ffffffffffffffffffffffffffffffffffffffff166120ca612df6565b73ffffffffffffffffffffffffffffffffffffffff161415612121576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612118906151e3565b60405180910390fd5b806005600061212e612df6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166121db612df6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122209190614f66565b60405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff1661224b611c05565b73ffffffffffffffffffffffffffffffffffffffff16148061227d575061227c336002612dac90919063ffffffff16565b5b6122bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b390615163565b60405180910390fd5b600860149054906101000a900460ff161561230c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612303906151a3565b60405180910390fd5b6001600860146101000a81548160ff02191690831515021790555081600a8190555080600a5461233c91906154b5565b600b819055507fddcd2c9c3c9899b1084051974c397912342cc4bdd576bd076baf216354be384360405160405180910390a15050565b6060600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146124d457600167ffffffffffffffff81111561240b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156124395781602001602082028036833780820191505090505b509050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600081518110612499577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250505b919050565b606080600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146126f757600167ffffffffffffffff811115612573577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156125a15781602001602082028036833780820191505090505b509150600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682600081518110612601577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600167ffffffffffffffff81111561267c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156126aa5781602001602082028036833780820191505090505b509050600754816000815181106126ea577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250505b915091565b600860149054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff1661272e611c05565b73ffffffffffffffffffffffffffffffffffffffff161480612760575061275f336002612dac90919063ffffffff16565b5b61279f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279690615163565b60405180910390fd5b6000600b541180156127b25750600b5442115b6127f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e890615083565b60405180910390fd5b60005b815181101561295957818181518110612836577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151602001516009600082825461285391906154b5565b925050819055506201000060095411156128a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289990615063565b60405180910390fd5b6129468282815181106128de577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600001516001848481518110612925577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516020015160405180602001604052806000815250612fc8565b8080612951906156f5565b9150506127f4565b5050565b600a5481565b610400610d20620100006129779190615596565b6129819190615596565b81565b600f5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612a26612df6565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480612a6c5750612a6b85612a66612df6565b61298a565b5b612aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa290615043565b60405180910390fd5b612ab8858585858561315f565b5050505050565b612ac7612df6565b73ffffffffffffffffffffffffffffffffffffffff16612ae5611c05565b73ffffffffffffffffffffffffffffffffffffffff1614612b3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3290615183565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba290615003565b60405180910390fd5b612bb481612f02565b50565b612c4d81604051602401612bcb9190614f81565b6040516020818303038152906040527f41304fac000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506131d4565b50565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612d1b57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612d2b5750612d2a82612d32565b5b9050919050565b60007f553e757e000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612da55750612da4826131fd565b5b9050919050565b6000612dd4836000018373ffffffffffffffffffffffffffffffffffffffff1660001b613267565b905092915050565b8060069080519060200190612df2929190613f79565b5050565b600033905090565b6000612e26836000018373ffffffffffffffffffffffffffffffffffffffff1660001b61328a565b905092915050565b610400610d2062010000612e429190615596565b612e4c9190615596565b60095414612e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e86906150a3565b60405180910390fd5b612e9c8585858585613410565b5050505050565b6000612eb182600001613773565b9050919050565b6000612ec78360000183613784565b60001c905092915050565b6000612efa836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6137d5565b905092915050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302f90615243565b60405180910390fd5b6000613042612df6565b90506130638160008761305488613845565b61305d88613845565b8761390b565b826004600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130c391906154b5565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161314192919061529e565b60405180910390a461315881600087878787613913565b5050505050565b610400610d20620100006131739190615596565b61317d9190615596565b600954146131c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b7906150a3565b60405180910390fd5b6131cd8585858585613afa565b5050505050565b60008151905060006a636f6e736f6c652e6c6f679050602083016000808483855afa5050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600080836001016000848152602001908152602001600020541415905092915050565b600080836001016000848152602001908152602001600020549050600081146134045760006001826132bc9190615596565b90506000600186600001805490506132d49190615596565b905081811461338f57600086600001828154811061331b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080876000018481548110613365577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b856000018054806133c9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505061340a565b60009150505b92915050565b8151835114613454576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161344b90615223565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156134c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134bb906150c3565b60405180910390fd5b60006134ce612df6565b90506134de81878787878761390b565b60005b84518110156136de576000858281518110613525577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600085838151811061356a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060006004600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561360c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161360390615143565b60405180910390fd5b8181036004600085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816004600085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546136c391906154b5565b92505081905550505050806136d7906156f5565b90506134e1565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051613755929190614f2f565b60405180910390a461376b818787878787613d7f565b505050505050565b600081600001805490509050919050565b60008260000182815481106137c2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b60006137e18383613267565b61383a57826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905061383f565b600090505b92915050565b60606000600167ffffffffffffffff81111561388a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156138b85781602001602082028036833780820191505090505b50905082816000815181106138f6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b505050505050565b6139328473ffffffffffffffffffffffffffffffffffffffff16613f66565b15613af2578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401613978959493929190614e0f565b602060405180830381600087803b15801561399257600080fd5b505af19250505080156139c357506040513d601f19601f820116820180604052508101906139c091906146ca565b60015b613a69576139cf6157fa565b806308c379a01415613a2c57506139e4615db1565b806139ef5750613a2e565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a239190614f81565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a6090614fa3565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ae790614fc3565b60405180910390fd5b505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b61906150c3565b60405180910390fd5b6000613b74612df6565b9050613b94818787613b8588613845565b613b8e88613845565b8761390b565b60006004600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015613c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c2390615143565b60405180910390fd5b8381036004600087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550836004600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613ce391906154b5565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051613d6092919061529e565b60405180910390a4613d76828888888888613913565b50505050505050565b613d9e8473ffffffffffffffffffffffffffffffffffffffff16613f66565b15613f5e578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401613de4959493929190614da7565b602060405180830381600087803b158015613dfe57600080fd5b505af1925050508015613e2f57506040513d601f19601f82011682018060405250810190613e2c91906146ca565b60015b613ed557613e3b6157fa565b806308c379a01415613e985750613e50615db1565b80613e5b5750613e9a565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e8f9190614f81565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ecc90614fa3565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613f5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f5390614fc3565b60405180910390fd5b505b505050505050565b600080823b905060008111915050919050565b828054613f8590615692565b90600052602060002090601f016020900481019282613fa75760008555613fee565b82601f10613fc057805160ff1916838001178555613fee565b82800160010185558215613fee579182015b82811115613fed578251825591602001919060010190613fd2565b5b509050613ffb9190613fff565b5090565b5b80821115614018576000816000905550600101614000565b5090565b600061402f61402a846152ec565b6152c7565b9050808382526020820190508285602086028201111561404e57600080fd5b60005b8581101561407e578161406488826141dc565b845260208401935060208301925050600181019050614051565b5050509392505050565b600061409b61409684615318565b6152c7565b905080838252602082019050828560408602820111156140ba57600080fd5b60005b858110156140ea57816140d08882614317565b8452602084019350604083019250506001810190506140bd565b5050509392505050565b600061410761410284615344565b6152c7565b9050808382526020820190508285602086028201111561412657600080fd5b60005b85811015614156578161413c8882614363565b845260208401935060208301925050600181019050614129565b5050509392505050565b600061417361416e84615370565b6152c7565b90508281526020810184848401111561418b57600080fd5b614196848285615650565b509392505050565b60006141b16141ac846153a1565b6152c7565b9050828152602081018484840111156141c957600080fd5b6141d4848285615650565b509392505050565b6000813590506141eb81615e47565b92915050565b60008135905061420081615e5e565b92915050565b600082601f83011261421757600080fd5b813561422784826020860161401c565b91505092915050565b600082601f83011261424157600080fd5b8135614251848260208601614088565b91505092915050565b600082601f83011261426b57600080fd5b813561427b8482602086016140f4565b91505092915050565b60008135905061429381615e75565b92915050565b6000813590506142a881615e8c565b92915050565b6000815190506142bd81615e8c565b92915050565b600082601f8301126142d457600080fd5b81356142e4848260208601614160565b91505092915050565b600082601f8301126142fe57600080fd5b813561430e84826020860161419e565b91505092915050565b60006040828403121561432957600080fd5b61433360406152c7565b90506000614343848285016141dc565b600083015250602061435784828501614363565b60208301525092915050565b60008135905061437281615ea3565b92915050565b60008151905061438781615ea3565b92915050565b60006020828403121561439f57600080fd5b60006143ad848285016141dc565b91505092915050565b600080604083850312156143c957600080fd5b60006143d7858286016141f1565b92505060206143e885828601614363565b9150509250929050565b6000806040838503121561440557600080fd5b6000614413858286016141dc565b9250506020614424858286016141dc565b9150509250929050565b600080600080600060a0868803121561444657600080fd5b6000614454888289016141dc565b9550506020614465888289016141dc565b945050604086013567ffffffffffffffff81111561448257600080fd5b61448e8882890161425a565b935050606086013567ffffffffffffffff8111156144ab57600080fd5b6144b78882890161425a565b925050608086013567ffffffffffffffff8111156144d457600080fd5b6144e0888289016142c3565b9150509295509295909350565b600080600080600060a0868803121561450557600080fd5b6000614513888289016141dc565b9550506020614524888289016141dc565b945050604061453588828901614363565b935050606061454688828901614363565b925050608086013567ffffffffffffffff81111561456357600080fd5b61456f888289016142c3565b9150509295509295909350565b6000806040838503121561458f57600080fd5b600061459d858286016141dc565b92505060206145ae85828601614284565b9150509250929050565b600080604083850312156145cb57600080fd5b60006145d9858286016141dc565b92505060206145ea85828601614363565b9150509250929050565b6000806040838503121561460757600080fd5b600083013567ffffffffffffffff81111561462157600080fd5b61462d85828601614206565b925050602083013567ffffffffffffffff81111561464a57600080fd5b6146568582860161425a565b9150509250929050565b60006020828403121561467257600080fd5b600082013567ffffffffffffffff81111561468c57600080fd5b61469884828501614230565b91505092915050565b6000602082840312156146b357600080fd5b60006146c184828501614299565b91505092915050565b6000602082840312156146dc57600080fd5b60006146ea848285016142ae565b91505092915050565b60006020828403121561470557600080fd5b600082013567ffffffffffffffff81111561471f57600080fd5b61472b848285016142ed565b91505092915050565b60006020828403121561474657600080fd5b600061475484828501614363565b91505092915050565b60006020828403121561476f57600080fd5b600061477d84828501614378565b91505092915050565b6000806040838503121561479957600080fd5b60006147a785828601614363565b92505060206147b885828601614363565b9150509250929050565b600080600080600060a086880312156147da57600080fd5b60006147e888828901614363565b95505060206147f988828901614363565b945050604061480a888289016141dc565b935050606061481b88828901614363565b925050608061482c88828901614363565b9150509295509295909350565b60006148458383614881565b60208301905092915050565b600061485d8383614890565b60208301905092915050565b60006148758383614d6e565b60208301905092915050565b61488a816155dc565b82525050565b614899816155ca565b82525050565b6148a8816155ca565b82525050565b60006148b982615402565b6148c38185615460565b93506148ce836153d2565b8060005b838110156148ff5781516148e68882614851565b97506148f183615439565b9250506001810190506148d2565b5085935050505092915050565b60006149178261540d565b6149218185615471565b935061492c836153e2565b8060005b8381101561495d5781516149448882614839565b975061494f83615446565b925050600181019050614930565b5085935050505092915050565b600061497582615418565b61497f8185615482565b935061498a836153f2565b8060005b838110156149bb5781516149a28882614869565b97506149ad83615453565b92505060018101905061498e565b5085935050505092915050565b6149d1816155ee565b82525050565b60006149e282615423565b6149ec8185615493565b93506149fc81856020860161565f565b614a058161581c565b840191505092915050565b6000614a1b8261542e565b614a2581856154a4565b9350614a3581856020860161565f565b614a3e8161581c565b840191505092915050565b6000614a566034836154a4565b9150614a618261583a565b604082019050919050565b6000614a796028836154a4565b9150614a8482615889565b604082019050919050565b6000614a9c602b836154a4565b9150614aa7826158d8565b604082019050919050565b6000614abf6026836154a4565b9150614aca82615927565b604082019050919050565b6000614ae2601c836154a4565b9150614aed82615976565b602082019050919050565b6000614b056029836154a4565b9150614b108261599f565b604082019050919050565b6000614b286012836154a4565b9150614b33826159ee565b602082019050919050565b6000614b4b601b836154a4565b9150614b5682615a17565b602082019050919050565b6000614b6e600f836154a4565b9150614b7982615a40565b602082019050919050565b6000614b916025836154a4565b9150614b9c82615a69565b604082019050919050565b6000614bb46032836154a4565b9150614bbf82615ab8565b604082019050919050565b6000614bd7601a836154a4565b9150614be282615b07565b602082019050919050565b6000614bfa6008836154a4565b9150614c0582615b30565b602082019050919050565b6000614c1d602a836154a4565b9150614c2882615b59565b604082019050919050565b6000614c40601a836154a4565b9150614c4b82615ba8565b602082019050919050565b6000614c636020836154a4565b9150614c6e82615bd1565b602082019050919050565b6000614c86600e836154a4565b9150614c9182615bfa565b602082019050919050565b6000614ca96010836154a4565b9150614cb482615c23565b602082019050919050565b6000614ccc6029836154a4565b9150614cd782615c4c565b604082019050919050565b6000614cef6029836154a4565b9150614cfa82615c9b565b604082019050919050565b6000614d126028836154a4565b9150614d1d82615cea565b604082019050919050565b6000614d356021836154a4565b9150614d4082615d39565b604082019050919050565b6000614d58601f836154a4565b9150614d6382615d88565b602082019050919050565b614d7781615646565b82525050565b614d8681615646565b82525050565b6000602082019050614da1600083018461489f565b92915050565b600060a082019050614dbc600083018861489f565b614dc9602083018761489f565b8181036040830152614ddb818661496a565b90508181036060830152614def818561496a565b90508181036080830152614e0381846149d7565b90509695505050505050565b600060a082019050614e24600083018861489f565b614e31602083018761489f565b614e3e6040830186614d7d565b614e4b6060830185614d7d565b8181036080830152614e5d81846149d7565b90509695505050505050565b6000604082019050614e7e600083018561489f565b614e8b6020830184614d7d565b9392505050565b60006020820190508181036000830152614eac81846148ae565b905092915050565b60006020820190508181036000830152614ece818461490c565b905092915050565b60006040820190508181036000830152614ef0818561490c565b90508181036020830152614f04818461496a565b90509392505050565b60006020820190508181036000830152614f27818461496a565b905092915050565b60006040820190508181036000830152614f49818561496a565b90508181036020830152614f5d818461496a565b90509392505050565b6000602082019050614f7b60008301846149c8565b92915050565b60006020820190508181036000830152614f9b8184614a10565b905092915050565b60006020820190508181036000830152614fbc81614a49565b9050919050565b60006020820190508181036000830152614fdc81614a6c565b9050919050565b60006020820190508181036000830152614ffc81614a8f565b9050919050565b6000602082019050818103600083015261501c81614ab2565b9050919050565b6000602082019050818103600083015261503c81614ad5565b9050919050565b6000602082019050818103600083015261505c81614af8565b9050919050565b6000602082019050818103600083015261507c81614b1b565b9050919050565b6000602082019050818103600083015261509c81614b3e565b9050919050565b600060208201905081810360008301526150bc81614b61565b9050919050565b600060208201905081810360008301526150dc81614b84565b9050919050565b600060208201905081810360008301526150fc81614ba7565b9050919050565b6000602082019050818103600083015261511c81614bca565b9050919050565b6000602082019050818103600083015261513c81614bed565b9050919050565b6000602082019050818103600083015261515c81614c10565b9050919050565b6000602082019050818103600083015261517c81614c33565b9050919050565b6000602082019050818103600083015261519c81614c56565b9050919050565b600060208201905081810360008301526151bc81614c79565b9050919050565b600060208201905081810360008301526151dc81614c9c565b9050919050565b600060208201905081810360008301526151fc81614cbf565b9050919050565b6000602082019050818103600083015261521c81614ce2565b9050919050565b6000602082019050818103600083015261523c81614d05565b9050919050565b6000602082019050818103600083015261525c81614d28565b9050919050565b6000602082019050818103600083015261527c81614d4b565b9050919050565b60006020820190506152986000830184614d7d565b92915050565b60006040820190506152b36000830185614d7d565b6152c06020830184614d7d565b9392505050565b60006152d16152e2565b90506152dd82826156c4565b919050565b6000604051905090565b600067ffffffffffffffff821115615307576153066157cb565b5b602082029050602081019050919050565b600067ffffffffffffffff821115615333576153326157cb565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561535f5761535e6157cb565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561538b5761538a6157cb565b5b6153948261581c565b9050602081019050919050565b600067ffffffffffffffff8211156153bc576153bb6157cb565b5b6153c58261581c565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b60006154c082615646565b91506154cb83615646565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615500576154ff61573e565b5b828201905092915050565b600061551682615646565b915061552183615646565b9250826155315761553061576d565b5b828204905092915050565b600061554782615646565b915061555283615646565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561558b5761558a61573e565b5b828202905092915050565b60006155a182615646565b91506155ac83615646565b9250828210156155bf576155be61573e565b5b828203905092915050565b60006155d582615626565b9050919050565b60006155e782615626565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561567d578082015181840152602081019050615662565b8381111561568c576000848401525b50505050565b600060028204905060018216806156aa57607f821691505b602082108114156156be576156bd61579c565b5b50919050565b6156cd8261581c565b810181811067ffffffffffffffff821117156156ec576156eb6157cb565b5b80604052505050565b600061570082615646565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156157335761573261573e565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156158195760046000803e61581660005161582d565b90505b90565b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656c696769626c6520666f72207468652070726573616c6500000000600082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f546f6f206d616e79207265717565737465640000000000000000000000000000600082015250565b7f43616e2072756e206f6e6c792061667465722073616c6520656e640000000000600082015250565b7f5472616e73666572206c6f636b65640000000000000000000000000000000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f4d7573742073657420726f79616c747920726563697069656e74000000000000600082015250565b7f496e616374697665000000000000000000000000000000000000000000000000600082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f41433a204d757374206265206f776e6572206f722061646d696e000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f416c726561647920616374697665000000000000000000000000000000000000600082015250565b7f496e76616c6964206574682073656e7400000000000000000000000000000000600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600060443d1015615dc157615e44565b615dc96152e2565b60043d036004823e80513d602482011167ffffffffffffffff82111715615df1575050615e44565b808201805167ffffffffffffffff811115615e0f5750505050615e44565b80602083010160043d038501811115615e2c575050505050615e44565b615e3b826020018501866156c4565b82955050505050505b90565b615e50816155ca565b8114615e5b57600080fd5b50565b615e67816155dc565b8114615e7257600080fd5b50565b615e7e816155ee565b8114615e8957600080fd5b50565b615e95816155fa565b8114615ea057600080fd5b50565b615eac81615646565b8114615eb757600080fd5b5056fea264697066735822122047ede09436ee1f3d8e9710c6d8682234a445f699290a7541b3cf511fa06db08064736f6c6343000804003368747470733a2f2f7777772e666f72657665726c616e64732e78797a2f6170692f6578706c6f7265722d6d61696e6e65742f7b69647d2e6a736f6e

Deployed Bytecode

0x60806040526004361061027c5760003560e01c80636c2f5acd1161014f578063a22cb465116100c1578063d5e1d5091161007a578063d5e1d5091461096f578063da061fcf1461099a578063db9136d3146109c5578063e985e9c5146109f0578063f242432a14610a2d578063f2fde38b14610a565761027c565b8063a22cb4651461084e578063a48dd46514610877578063b9c4d9fb146108a0578063bb3bafd6146108dd578063bc8893b41461091b578063be3c5390146109465761027c565b806378da7ba11161011357806378da7ba11461075d5780638da5cb5b1461078857806390f3bf2a146107b3578063912efd42146107dc578063935435bd14610807578063964ac3a0146108325761027c565b80636c2f5acd146106ad5780636d73e669146106d6578063715018a6146106ff57806375c55b921461071657806376df625f146107325761027c565b80632a55205a116101f3578063401226ec116101ac578063401226ec146105ad5780634e1273f4146105d857806353135ca01461061557806362dc6e211461064057806364f76e131461066b57806366a62ac9146106965761027c565b80632a55205a1461049e5780632d345670146104dc5780632d744b11146105055780632e1a7d4d146105305780632eb2c2d61461055957806331ae450b146105825761027c565b80630c0aa027116102455780630c0aa0271461037a5780630e89341c146103a55780630ebd4c7f146103e25780631f682a591461041f57806324d7806c1461044a578063290fd843146104875761027c565b8062fdd58e1461028157806301ffc9a7146102be57806302179c2d146102fb57806302fe5305146103265780630b40cc991461034f575b600080fd5b34801561028d57600080fd5b506102a860048036038101906102a391906145b8565b610a7f565b6040516102b59190615283565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e091906146a1565b610b49565b6040516102f29190614f66565b60405180910390f35b34801561030757600080fd5b50610310610c58565b60405161031d9190615283565b60405180910390f35b34801561033257600080fd5b5061034d600480360381019061034891906146f3565b610c5e565b005b34801561035b57600080fd5b50610364610cfa565b6040516103719190615283565b60405180910390f35b34801561038657600080fd5b5061038f610d06565b60405161039c9190615283565b60405180910390f35b3480156103b157600080fd5b506103cc60048036038101906103c79190614734565b610d0c565b6040516103d99190614f81565b60405180910390f35b3480156103ee57600080fd5b5061040960048036038101906104049190614734565b610da0565b6040516104169190614f0d565b60405180910390f35b34801561042b57600080fd5b50610434610eb9565b6040516104419190615283565b60405180910390f35b34801561045657600080fd5b50610471600480360381019061046c919061438d565b610ebf565b60405161047e9190614f66565b60405180910390f35b34801561049357600080fd5b5061049c610f19565b005b3480156104aa57600080fd5b506104c560048036038101906104c09190614786565b610ff9565b6040516104d3929190614e69565b60405180910390f35b3480156104e857600080fd5b5061050360048036038101906104fe919061438d565b611045565b005b34801561051157600080fd5b5061051a61114d565b6040516105279190614d8c565b60405180910390f35b34801561053c57600080fd5b5061055760048036038101906105529190614734565b611173565b005b34801561056557600080fd5b50610580600480360381019061057b919061442e565b611301565b005b34801561058e57600080fd5b506105976113a2565b6040516105a49190614e92565b60405180910390f35b3480156105b957600080fd5b506105c26114d0565b6040516105cf9190615283565b60405180910390f35b3480156105e457600080fd5b506105ff60048036038101906105fa91906145f4565b6114d6565b60405161060c9190614f0d565b60405180910390f35b34801561062157600080fd5b5061062a611687565b6040516106379190614f66565b60405180910390f35b34801561064c57600080fd5b5061065561169a565b6040516106629190615283565b60405180910390f35b34801561067757600080fd5b506106806116a6565b60405161068d9190615283565b60405180910390f35b3480156106a257600080fd5b506106ab6116ad565b005b3480156106b957600080fd5b506106d460048036038101906106cf91906143b6565b61178d565b005b3480156106e257600080fd5b506106fd60048036038101906106f8919061438d565b611869565b005b34801561070b57600080fd5b50610714611970565b005b610730600480360381019061072b9190614734565b6119f8565b005b34801561073e57600080fd5b50610747611bf9565b6040516107549190615283565b60405180910390f35b34801561076957600080fd5b50610772611bff565b60405161077f9190615283565b60405180910390f35b34801561079457600080fd5b5061079d611c05565b6040516107aa9190614d8c565b60405180910390f35b3480156107bf57600080fd5b506107da60048036038101906107d591906147c2565b611c2f565b005b3480156107e857600080fd5b506107f1611dc7565b6040516107fe9190615283565b60405180910390f35b34801561081357600080fd5b5061081c611dcd565b6040516108299190615283565b60405180910390f35b61084c60048036038101906108479190614734565b611dd3565b005b34801561085a57600080fd5b506108756004803603810190610870919061457c565b6120ab565b005b34801561088357600080fd5b5061089e60048036038101906108999190614786565b61222c565b005b3480156108ac57600080fd5b506108c760048036038101906108c29190614734565b612372565b6040516108d49190614eb4565b60405180910390f35b3480156108e957600080fd5b5061090460048036038101906108ff9190614734565b6124d9565b604051610912929190614ed6565b60405180910390f35b34801561092757600080fd5b506109306126fc565b60405161093d9190614f66565b60405180910390f35b34801561095257600080fd5b5061096d60048036038101906109689190614660565b61270f565b005b34801561097b57600080fd5b5061098461295d565b6040516109919190615283565b60405180910390f35b3480156109a657600080fd5b506109af612963565b6040516109bc9190615283565b60405180910390f35b3480156109d157600080fd5b506109da612984565b6040516109e79190615283565b60405180910390f35b3480156109fc57600080fd5b50610a176004803603810190610a1291906143f2565b61298a565b604051610a249190614f66565b60405180910390f35b348015610a3957600080fd5b50610a546004803603810190610a4f91906144ed565b612a1e565b005b348015610a6257600080fd5b50610a7d6004803603810190610a78919061438d565b612abf565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae790614fe3565b60405180910390fd5b6004600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000610b5482612c50565b80610b645750610b6382612d32565b5b80610bb3575063bb3bafd660e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c025750632a55205a60e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c51575063b779958460e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60095481565b3373ffffffffffffffffffffffffffffffffffffffff16610c7d611c05565b73ffffffffffffffffffffffffffffffffffffffff161480610caf5750610cae336002612dac90919063ffffffff16565b5b610cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce590615163565b60405180910390fd5b610cf781612ddc565b50565b6702386f26fc10000081565b61040081565b606060068054610d1b90615692565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4790615692565b8015610d945780601f10610d6957610100808354040283529160200191610d94565b820191906000526020600020905b815481529060010190602001808311610d7757829003601f168201915b50505050509050919050565b6060600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610eb457600167ffffffffffffffff811115610e39577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610e675781602001602082028036833780820191505090505b50905060075481600081518110610ea7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250505b919050565b600b5481565b60008173ffffffffffffffffffffffffffffffffffffffff16610ee0611c05565b73ffffffffffffffffffffffffffffffffffffffff161480610f125750610f11826002612dac90919063ffffffff16565b5b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff16610f38611c05565b73ffffffffffffffffffffffffffffffffffffffff161480610f6a5750610f69336002612dac90919063ffffffff16565b5b610fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa090615163565b60405180910390fd5b6000600860156101000a81548160ff02191690831515021790555042600d819055507f824b9793c8ac7d56c1770c09ee7517f9318e27df0b86c928d8c373cf3c8b61a260405160405180910390a1565b600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661271060075485611030919061553c565b61103a919061550b565b915091509250929050565b61104d612df6565b73ffffffffffffffffffffffffffffffffffffffff1661106b611c05565b73ffffffffffffffffffffffffffffffffffffffff16146110c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b890615183565b60405180910390fd5b6110d5816002612dac90919063ffffffff16565b1561114a573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f7c0c3c84c67c85fcac635147348bfe374c24a1a93d0366d1cfe9d8853cbf89d560405160405180910390a3611148816002612dfe90919063ffffffff16565b505b50565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b3373ffffffffffffffffffffffffffffffffffffffff16611192611c05565b73ffffffffffffffffffffffffffffffffffffffff1614806111c457506111c3336002612dac90919063ffffffff16565b5b611203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fa90615163565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128c90615103565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156112fd573d6000803e3d6000fd5b5050565b611309612df6565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061134f575061134e85611349612df6565b61298a565b5b61138e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611385906150e3565b60405180910390fd5b61139b8585858585612e2e565b5050505050565b60606113ae6002612ea3565b67ffffffffffffffff8111156113ed577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561141b5781602001602082028036833780820191505090505b50905060005b61142b6002612ea3565b8110156114cc57611446816002612eb890919063ffffffff16565b82828151811061147f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505080806114c4906156f5565b915050611421565b5090565b610d2081565b6060815183511461151c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151390615203565b60405180910390fd5b6000835167ffffffffffffffff81111561155f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561158d5781602001602082028036833780820191505090505b50905060005b845181101561167c576116268582815181106115d8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110611619577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151610a7f565b82828151811061165f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080611675906156f5565b9050611593565b508091505092915050565b600860159054906101000a900460ff1681565b6701c6bf526340000081565b6201000081565b3373ffffffffffffffffffffffffffffffffffffffff166116cc611c05565b73ffffffffffffffffffffffffffffffffffffffff1614806116fe57506116fd336002612dac90919063ffffffff16565b5b61173d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173490615163565b60405180910390fd5b6000600860146101000a81548160ff02191690831515021790555042600b819055507fad64d4c7c6a3afaf095623829ab808765fb5e3c10cf11ea5642a1ed509db608660405160405180910390a1565b3373ffffffffffffffffffffffffffffffffffffffff166117ac611c05565b73ffffffffffffffffffffffffffffffffffffffff1614806117de57506117dd336002612dac90919063ffffffff16565b5b61181d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181490615163565b60405180910390fd5b81600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550806007819055505050565b611871612df6565b73ffffffffffffffffffffffffffffffffffffffff1661188f611c05565b73ffffffffffffffffffffffffffffffffffffffff16146118e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118dc90615183565b60405180910390fd5b6118f9816002612dac90919063ffffffff16565b61196d573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f7e1a1a08d52e4ba0e21554733d66165fd5151f99460116223d9e3a608eec5cb160405160405180910390a361196b816002612ed290919063ffffffff16565b505b50565b611978612df6565b73ffffffffffffffffffffffffffffffffffffffff16611996611c05565b73ffffffffffffffffffffffffffffffffffffffff16146119ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e390615183565b60405180910390fd5b6119f66000612f02565b565b60026000541415611a3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3590615263565b60405180910390fd5b6002600081905550600860149054906101000a900460ff168015611a645750600a544210155b8015611a725750600b544211155b611ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa890615123565b60405180910390fd5b6101f4811115611af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aed90615063565b60405180910390fd5b8060096000828254611b0891906154b5565b92505081905550610400610d2062010000611b239190615596565b611b2d9190615596565b6009541115611b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6890615063565b60405180910390fd5b600081118015611b9357506702386f26fc10000081611b90919061553c565b34145b611bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc9906151c3565b60405180910390fd5b611bee3360018360405180602001604052806000815250612fc8565b600160008190555050565b61400081565b600d5481565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3373ffffffffffffffffffffffffffffffffffffffff16611c4e611c05565b73ffffffffffffffffffffffffffffffffffffffff161480611c805750611c7f336002612dac90919063ffffffff16565b5b611cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb690615163565b60405180910390fd5b600860159054906101000a900460ff1615611d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d06906151a3565b60405180910390fd5b6001600860156101000a81548160ff02191690831515021790555084600c8190555083600c54611d3f91906154b5565b600d8190555082600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600f81905550806010819055507f9905b2a8827744add26587e1fedc4293ff0d12730cdc60cce4588e5a2a6b3b6260405160405180910390a15050505050565b600c5481565b60105481565b60026000541415611e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1090615263565b60405180910390fd5b6002600081905550600860159054906101000a900460ff168015611e3f5750600c544210155b8015611e4d5750600d544211155b611e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8390615123565b60405180910390fd5b601054600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662fdd58e33600f546040518363ffffffff1660e01b8152600401611eed929190614e69565b60206040518083038186803b158015611f0557600080fd5b505afa158015611f19573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f3d919061475d565b1015611f7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7590615023565b60405180910390fd5b6101f4811115611fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fba90615063565b60405180910390fd5b8060096000828254611fd591906154b5565b925050819055506140006009541115612023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201a90615063565b60405180910390fd5b60008111801561204557506701c6bf526340000081612042919061553c565b34145b612084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207b906151c3565b60405180910390fd5b6120a03360018360405180602001604052806000815250612fc8565b600160008190555050565b8173ffffffffffffffffffffffffffffffffffffffff166120ca612df6565b73ffffffffffffffffffffffffffffffffffffffff161415612121576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612118906151e3565b60405180910390fd5b806005600061212e612df6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166121db612df6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122209190614f66565b60405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff1661224b611c05565b73ffffffffffffffffffffffffffffffffffffffff16148061227d575061227c336002612dac90919063ffffffff16565b5b6122bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b390615163565b60405180910390fd5b600860149054906101000a900460ff161561230c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612303906151a3565b60405180910390fd5b6001600860146101000a81548160ff02191690831515021790555081600a8190555080600a5461233c91906154b5565b600b819055507fddcd2c9c3c9899b1084051974c397912342cc4bdd576bd076baf216354be384360405160405180910390a15050565b6060600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146124d457600167ffffffffffffffff81111561240b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156124395781602001602082028036833780820191505090505b509050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600081518110612499577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250505b919050565b606080600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146126f757600167ffffffffffffffff811115612573577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156125a15781602001602082028036833780820191505090505b509150600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682600081518110612601577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600167ffffffffffffffff81111561267c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156126aa5781602001602082028036833780820191505090505b509050600754816000815181106126ea577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250505b915091565b600860149054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff1661272e611c05565b73ffffffffffffffffffffffffffffffffffffffff161480612760575061275f336002612dac90919063ffffffff16565b5b61279f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279690615163565b60405180910390fd5b6000600b541180156127b25750600b5442115b6127f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e890615083565b60405180910390fd5b60005b815181101561295957818181518110612836577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151602001516009600082825461285391906154b5565b925050819055506201000060095411156128a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289990615063565b60405180910390fd5b6129468282815181106128de577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600001516001848481518110612925577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516020015160405180602001604052806000815250612fc8565b8080612951906156f5565b9150506127f4565b5050565b600a5481565b610400610d20620100006129779190615596565b6129819190615596565b81565b600f5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612a26612df6565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480612a6c5750612a6b85612a66612df6565b61298a565b5b612aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa290615043565b60405180910390fd5b612ab8858585858561315f565b5050505050565b612ac7612df6565b73ffffffffffffffffffffffffffffffffffffffff16612ae5611c05565b73ffffffffffffffffffffffffffffffffffffffff1614612b3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3290615183565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba290615003565b60405180910390fd5b612bb481612f02565b50565b612c4d81604051602401612bcb9190614f81565b6040516020818303038152906040527f41304fac000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506131d4565b50565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612d1b57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612d2b5750612d2a82612d32565b5b9050919050565b60007f553e757e000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612da55750612da4826131fd565b5b9050919050565b6000612dd4836000018373ffffffffffffffffffffffffffffffffffffffff1660001b613267565b905092915050565b8060069080519060200190612df2929190613f79565b5050565b600033905090565b6000612e26836000018373ffffffffffffffffffffffffffffffffffffffff1660001b61328a565b905092915050565b610400610d2062010000612e429190615596565b612e4c9190615596565b60095414612e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e86906150a3565b60405180910390fd5b612e9c8585858585613410565b5050505050565b6000612eb182600001613773565b9050919050565b6000612ec78360000183613784565b60001c905092915050565b6000612efa836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6137d5565b905092915050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302f90615243565b60405180910390fd5b6000613042612df6565b90506130638160008761305488613845565b61305d88613845565b8761390b565b826004600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130c391906154b5565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161314192919061529e565b60405180910390a461315881600087878787613913565b5050505050565b610400610d20620100006131739190615596565b61317d9190615596565b600954146131c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b7906150a3565b60405180910390fd5b6131cd8585858585613afa565b5050505050565b60008151905060006a636f6e736f6c652e6c6f679050602083016000808483855afa5050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600080836001016000848152602001908152602001600020541415905092915050565b600080836001016000848152602001908152602001600020549050600081146134045760006001826132bc9190615596565b90506000600186600001805490506132d49190615596565b905081811461338f57600086600001828154811061331b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080876000018481548110613365577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b856000018054806133c9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505061340a565b60009150505b92915050565b8151835114613454576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161344b90615223565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156134c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134bb906150c3565b60405180910390fd5b60006134ce612df6565b90506134de81878787878761390b565b60005b84518110156136de576000858281518110613525577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600085838151811061356a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060006004600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561360c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161360390615143565b60405180910390fd5b8181036004600085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816004600085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546136c391906154b5565b92505081905550505050806136d7906156f5565b90506134e1565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051613755929190614f2f565b60405180910390a461376b818787878787613d7f565b505050505050565b600081600001805490509050919050565b60008260000182815481106137c2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b60006137e18383613267565b61383a57826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905061383f565b600090505b92915050565b60606000600167ffffffffffffffff81111561388a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156138b85781602001602082028036833780820191505090505b50905082816000815181106138f6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b505050505050565b6139328473ffffffffffffffffffffffffffffffffffffffff16613f66565b15613af2578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401613978959493929190614e0f565b602060405180830381600087803b15801561399257600080fd5b505af19250505080156139c357506040513d601f19601f820116820180604052508101906139c091906146ca565b60015b613a69576139cf6157fa565b806308c379a01415613a2c57506139e4615db1565b806139ef5750613a2e565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a239190614f81565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a6090614fa3565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ae790614fc3565b60405180910390fd5b505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b61906150c3565b60405180910390fd5b6000613b74612df6565b9050613b94818787613b8588613845565b613b8e88613845565b8761390b565b60006004600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015613c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c2390615143565b60405180910390fd5b8381036004600087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550836004600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613ce391906154b5565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051613d6092919061529e565b60405180910390a4613d76828888888888613913565b50505050505050565b613d9e8473ffffffffffffffffffffffffffffffffffffffff16613f66565b15613f5e578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401613de4959493929190614da7565b602060405180830381600087803b158015613dfe57600080fd5b505af1925050508015613e2f57506040513d601f19601f82011682018060405250810190613e2c91906146ca565b60015b613ed557613e3b6157fa565b806308c379a01415613e985750613e50615db1565b80613e5b5750613e9a565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e8f9190614f81565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ecc90614fa3565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613f5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f5390614fc3565b60405180910390fd5b505b505050505050565b600080823b905060008111915050919050565b828054613f8590615692565b90600052602060002090601f016020900481019282613fa75760008555613fee565b82601f10613fc057805160ff1916838001178555613fee565b82800160010185558215613fee579182015b82811115613fed578251825591602001919060010190613fd2565b5b509050613ffb9190613fff565b5090565b5b80821115614018576000816000905550600101614000565b5090565b600061402f61402a846152ec565b6152c7565b9050808382526020820190508285602086028201111561404e57600080fd5b60005b8581101561407e578161406488826141dc565b845260208401935060208301925050600181019050614051565b5050509392505050565b600061409b61409684615318565b6152c7565b905080838252602082019050828560408602820111156140ba57600080fd5b60005b858110156140ea57816140d08882614317565b8452602084019350604083019250506001810190506140bd565b5050509392505050565b600061410761410284615344565b6152c7565b9050808382526020820190508285602086028201111561412657600080fd5b60005b85811015614156578161413c8882614363565b845260208401935060208301925050600181019050614129565b5050509392505050565b600061417361416e84615370565b6152c7565b90508281526020810184848401111561418b57600080fd5b614196848285615650565b509392505050565b60006141b16141ac846153a1565b6152c7565b9050828152602081018484840111156141c957600080fd5b6141d4848285615650565b509392505050565b6000813590506141eb81615e47565b92915050565b60008135905061420081615e5e565b92915050565b600082601f83011261421757600080fd5b813561422784826020860161401c565b91505092915050565b600082601f83011261424157600080fd5b8135614251848260208601614088565b91505092915050565b600082601f83011261426b57600080fd5b813561427b8482602086016140f4565b91505092915050565b60008135905061429381615e75565b92915050565b6000813590506142a881615e8c565b92915050565b6000815190506142bd81615e8c565b92915050565b600082601f8301126142d457600080fd5b81356142e4848260208601614160565b91505092915050565b600082601f8301126142fe57600080fd5b813561430e84826020860161419e565b91505092915050565b60006040828403121561432957600080fd5b61433360406152c7565b90506000614343848285016141dc565b600083015250602061435784828501614363565b60208301525092915050565b60008135905061437281615ea3565b92915050565b60008151905061438781615ea3565b92915050565b60006020828403121561439f57600080fd5b60006143ad848285016141dc565b91505092915050565b600080604083850312156143c957600080fd5b60006143d7858286016141f1565b92505060206143e885828601614363565b9150509250929050565b6000806040838503121561440557600080fd5b6000614413858286016141dc565b9250506020614424858286016141dc565b9150509250929050565b600080600080600060a0868803121561444657600080fd5b6000614454888289016141dc565b9550506020614465888289016141dc565b945050604086013567ffffffffffffffff81111561448257600080fd5b61448e8882890161425a565b935050606086013567ffffffffffffffff8111156144ab57600080fd5b6144b78882890161425a565b925050608086013567ffffffffffffffff8111156144d457600080fd5b6144e0888289016142c3565b9150509295509295909350565b600080600080600060a0868803121561450557600080fd5b6000614513888289016141dc565b9550506020614524888289016141dc565b945050604061453588828901614363565b935050606061454688828901614363565b925050608086013567ffffffffffffffff81111561456357600080fd5b61456f888289016142c3565b9150509295509295909350565b6000806040838503121561458f57600080fd5b600061459d858286016141dc565b92505060206145ae85828601614284565b9150509250929050565b600080604083850312156145cb57600080fd5b60006145d9858286016141dc565b92505060206145ea85828601614363565b9150509250929050565b6000806040838503121561460757600080fd5b600083013567ffffffffffffffff81111561462157600080fd5b61462d85828601614206565b925050602083013567ffffffffffffffff81111561464a57600080fd5b6146568582860161425a565b9150509250929050565b60006020828403121561467257600080fd5b600082013567ffffffffffffffff81111561468c57600080fd5b61469884828501614230565b91505092915050565b6000602082840312156146b357600080fd5b60006146c184828501614299565b91505092915050565b6000602082840312156146dc57600080fd5b60006146ea848285016142ae565b91505092915050565b60006020828403121561470557600080fd5b600082013567ffffffffffffffff81111561471f57600080fd5b61472b848285016142ed565b91505092915050565b60006020828403121561474657600080fd5b600061475484828501614363565b91505092915050565b60006020828403121561476f57600080fd5b600061477d84828501614378565b91505092915050565b6000806040838503121561479957600080fd5b60006147a785828601614363565b92505060206147b885828601614363565b9150509250929050565b600080600080600060a086880312156147da57600080fd5b60006147e888828901614363565b95505060206147f988828901614363565b945050604061480a888289016141dc565b935050606061481b88828901614363565b925050608061482c88828901614363565b9150509295509295909350565b60006148458383614881565b60208301905092915050565b600061485d8383614890565b60208301905092915050565b60006148758383614d6e565b60208301905092915050565b61488a816155dc565b82525050565b614899816155ca565b82525050565b6148a8816155ca565b82525050565b60006148b982615402565b6148c38185615460565b93506148ce836153d2565b8060005b838110156148ff5781516148e68882614851565b97506148f183615439565b9250506001810190506148d2565b5085935050505092915050565b60006149178261540d565b6149218185615471565b935061492c836153e2565b8060005b8381101561495d5781516149448882614839565b975061494f83615446565b925050600181019050614930565b5085935050505092915050565b600061497582615418565b61497f8185615482565b935061498a836153f2565b8060005b838110156149bb5781516149a28882614869565b97506149ad83615453565b92505060018101905061498e565b5085935050505092915050565b6149d1816155ee565b82525050565b60006149e282615423565b6149ec8185615493565b93506149fc81856020860161565f565b614a058161581c565b840191505092915050565b6000614a1b8261542e565b614a2581856154a4565b9350614a3581856020860161565f565b614a3e8161581c565b840191505092915050565b6000614a566034836154a4565b9150614a618261583a565b604082019050919050565b6000614a796028836154a4565b9150614a8482615889565b604082019050919050565b6000614a9c602b836154a4565b9150614aa7826158d8565b604082019050919050565b6000614abf6026836154a4565b9150614aca82615927565b604082019050919050565b6000614ae2601c836154a4565b9150614aed82615976565b602082019050919050565b6000614b056029836154a4565b9150614b108261599f565b604082019050919050565b6000614b286012836154a4565b9150614b33826159ee565b602082019050919050565b6000614b4b601b836154a4565b9150614b5682615a17565b602082019050919050565b6000614b6e600f836154a4565b9150614b7982615a40565b602082019050919050565b6000614b916025836154a4565b9150614b9c82615a69565b604082019050919050565b6000614bb46032836154a4565b9150614bbf82615ab8565b604082019050919050565b6000614bd7601a836154a4565b9150614be282615b07565b602082019050919050565b6000614bfa6008836154a4565b9150614c0582615b30565b602082019050919050565b6000614c1d602a836154a4565b9150614c2882615b59565b604082019050919050565b6000614c40601a836154a4565b9150614c4b82615ba8565b602082019050919050565b6000614c636020836154a4565b9150614c6e82615bd1565b602082019050919050565b6000614c86600e836154a4565b9150614c9182615bfa565b602082019050919050565b6000614ca96010836154a4565b9150614cb482615c23565b602082019050919050565b6000614ccc6029836154a4565b9150614cd782615c4c565b604082019050919050565b6000614cef6029836154a4565b9150614cfa82615c9b565b604082019050919050565b6000614d126028836154a4565b9150614d1d82615cea565b604082019050919050565b6000614d356021836154a4565b9150614d4082615d39565b604082019050919050565b6000614d58601f836154a4565b9150614d6382615d88565b602082019050919050565b614d7781615646565b82525050565b614d8681615646565b82525050565b6000602082019050614da1600083018461489f565b92915050565b600060a082019050614dbc600083018861489f565b614dc9602083018761489f565b8181036040830152614ddb818661496a565b90508181036060830152614def818561496a565b90508181036080830152614e0381846149d7565b90509695505050505050565b600060a082019050614e24600083018861489f565b614e31602083018761489f565b614e3e6040830186614d7d565b614e4b6060830185614d7d565b8181036080830152614e5d81846149d7565b90509695505050505050565b6000604082019050614e7e600083018561489f565b614e8b6020830184614d7d565b9392505050565b60006020820190508181036000830152614eac81846148ae565b905092915050565b60006020820190508181036000830152614ece818461490c565b905092915050565b60006040820190508181036000830152614ef0818561490c565b90508181036020830152614f04818461496a565b90509392505050565b60006020820190508181036000830152614f27818461496a565b905092915050565b60006040820190508181036000830152614f49818561496a565b90508181036020830152614f5d818461496a565b90509392505050565b6000602082019050614f7b60008301846149c8565b92915050565b60006020820190508181036000830152614f9b8184614a10565b905092915050565b60006020820190508181036000830152614fbc81614a49565b9050919050565b60006020820190508181036000830152614fdc81614a6c565b9050919050565b60006020820190508181036000830152614ffc81614a8f565b9050919050565b6000602082019050818103600083015261501c81614ab2565b9050919050565b6000602082019050818103600083015261503c81614ad5565b9050919050565b6000602082019050818103600083015261505c81614af8565b9050919050565b6000602082019050818103600083015261507c81614b1b565b9050919050565b6000602082019050818103600083015261509c81614b3e565b9050919050565b600060208201905081810360008301526150bc81614b61565b9050919050565b600060208201905081810360008301526150dc81614b84565b9050919050565b600060208201905081810360008301526150fc81614ba7565b9050919050565b6000602082019050818103600083015261511c81614bca565b9050919050565b6000602082019050818103600083015261513c81614bed565b9050919050565b6000602082019050818103600083015261515c81614c10565b9050919050565b6000602082019050818103600083015261517c81614c33565b9050919050565b6000602082019050818103600083015261519c81614c56565b9050919050565b600060208201905081810360008301526151bc81614c79565b9050919050565b600060208201905081810360008301526151dc81614c9c565b9050919050565b600060208201905081810360008301526151fc81614cbf565b9050919050565b6000602082019050818103600083015261521c81614ce2565b9050919050565b6000602082019050818103600083015261523c81614d05565b9050919050565b6000602082019050818103600083015261525c81614d28565b9050919050565b6000602082019050818103600083015261527c81614d4b565b9050919050565b60006020820190506152986000830184614d7d565b92915050565b60006040820190506152b36000830185614d7d565b6152c06020830184614d7d565b9392505050565b60006152d16152e2565b90506152dd82826156c4565b919050565b6000604051905090565b600067ffffffffffffffff821115615307576153066157cb565b5b602082029050602081019050919050565b600067ffffffffffffffff821115615333576153326157cb565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561535f5761535e6157cb565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561538b5761538a6157cb565b5b6153948261581c565b9050602081019050919050565b600067ffffffffffffffff8211156153bc576153bb6157cb565b5b6153c58261581c565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b60006154c082615646565b91506154cb83615646565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615500576154ff61573e565b5b828201905092915050565b600061551682615646565b915061552183615646565b9250826155315761553061576d565b5b828204905092915050565b600061554782615646565b915061555283615646565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561558b5761558a61573e565b5b828202905092915050565b60006155a182615646565b91506155ac83615646565b9250828210156155bf576155be61573e565b5b828203905092915050565b60006155d582615626565b9050919050565b60006155e782615626565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561567d578082015181840152602081019050615662565b8381111561568c576000848401525b50505050565b600060028204905060018216806156aa57607f821691505b602082108114156156be576156bd61579c565b5b50919050565b6156cd8261581c565b810181811067ffffffffffffffff821117156156ec576156eb6157cb565b5b80604052505050565b600061570082615646565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156157335761573261573e565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156158195760046000803e61581660005161582d565b90505b90565b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656c696769626c6520666f72207468652070726573616c6500000000600082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f546f6f206d616e79207265717565737465640000000000000000000000000000600082015250565b7f43616e2072756e206f6e6c792061667465722073616c6520656e640000000000600082015250565b7f5472616e73666572206c6f636b65640000000000000000000000000000000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f4d7573742073657420726f79616c747920726563697069656e74000000000000600082015250565b7f496e616374697665000000000000000000000000000000000000000000000000600082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f41433a204d757374206265206f776e6572206f722061646d696e000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f416c726561647920616374697665000000000000000000000000000000000000600082015250565b7f496e76616c6964206574682073656e7400000000000000000000000000000000600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600060443d1015615dc157615e44565b615dc96152e2565b60043d036004823e80513d602482011167ffffffffffffffff82111715615df1575050615e44565b808201805167ffffffffffffffff811115615e0f5750505050615e44565b80602083010160043d038501811115615e2c575050505050615e44565b615e3b826020018501866156c4565b82955050505050505b90565b615e50816155ca565b8114615e5b57600080fd5b50565b615e67816155dc565b8114615e7257600080fd5b50565b615e7e816155ee565b8114615e8957600080fd5b50565b615e95816155fa565b8114615ea057600080fd5b50565b615eac81615646565b8114615eb757600080fd5b5056fea264697066735822122047ede09436ee1f3d8e9710c6d8682234a445f699290a7541b3cf511fa06db08064736f6c63430008040033

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.