ETH Price: $3,453.37 (-0.97%)
Gas: 3 Gwei

Token

 

Overview

Max Total Supply

8,371

Holders

8,314

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

0x7b75b51f2101b9752c2e0c2effcb27f0e4f9313c
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xe010Ae0d...A9cc4092a
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
CharaDaoEventNft

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : CharaDaoEventNft.sol
// SPDX-License-Identifier: MIT
// Copyright (c) 2022 Eiba

pragma solidity ^0.8.4;

import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/utils/Counters.sol";

contract CharaDaoEventNft is ERC1155, AccessControl {
    using Counters for Counters.Counter;

    bytes32 public ADMIN = "ADMIN";

    modifier onlyAdmin() {
        if (!hasRole(ADMIN, msg.sender)) revert("not admin");
        _;
    }

    Counters.Counter private _tokenCounter;

    struct Nft {
        string name;
        string uri;
        uint16 tokenMax;
        uint256 minimumPrice;
        Counters.Counter amount;
        address payable creator;
    }

    bool public paused = false;

    mapping(uint256 => Nft) public nfts;
    mapping(address => uint256[]) public MintCount;

    constructor(address[] memory admins) ERC1155("") {
        _setRoleAdmin(ADMIN, DEFAULT_ADMIN_ROLE);
        for (uint256 i = 0; i < admins.length; i++) {
            _setupRole(ADMIN, admins[i]);
        }
        _tokenCounter.reset();
    }

    function createNft(
        string memory _name,
        string memory _uri,
        uint16 _tokenMax,
        uint16 _mintForCreator,
        uint256 _minimumPrice,
        address payable _creator
    ) public onlyAdmin {
        _tokenCounter.increment();
        Counters.Counter memory _amount;
        nfts[_tokenCounter.current()] = Nft(
            _name,
            _uri,
            _tokenMax,
            _minimumPrice,
            _amount,
            _creator
        );

        if (_mintForCreator > 0) {
            _mint(_creator, _tokenCounter.current(), _mintForCreator, "");
            for (uint16 i = 0; i < _mintForCreator; i++) {
                nfts[_tokenCounter.current()].amount.increment();
            }
        }
    }

    function mint(uint256 _tokenId) public payable {
        if (nfts[_tokenId].tokenMax == 0) revert("_tokenId is not exists");

        for (uint256 i = 0; i < MintCount[msg.sender].length; i++) {
            if (_tokenId == MintCount[msg.sender][i])
                revert("can mint only one token");
        }

        if (nfts[_tokenId].amount.current() + 1 > nfts[_tokenId].tokenMax)
            revert("tokenId had reached max count");
        if (
            nfts[_tokenId].minimumPrice > 0 &&
            msg.value < nfts[_tokenId].minimumPrice
        ) revert("Insufficient payment");

        _mint(msg.sender, _tokenId, 1, "");
        nfts[_tokenId].amount.increment();
        MintCount[msg.sender].push(_tokenId);

        if (msg.value > 0) {
            nfts[_tokenId].creator.transfer(msg.value);
        }
    }

    // adminmint
    function adminMint(uint256 _tokenId, uint16 _amount) public onlyAdmin {
        if (nfts[_tokenId].tokenMax == 0) revert("_tokenId is not exists");
        if (nfts[_tokenId].amount.current() + 1 > nfts[_tokenId].tokenMax)
            revert("tokenId had reached max count");

        _mint(nfts[_tokenId].creator, _tokenId, _amount, "");

        for (uint16 i = 0; i < _amount; i++) {
            nfts[_tokenCounter.current()].amount.increment();
        }
    }

    function uri(uint256 _id) public view override returns (string memory) {
        return nfts[_id].uri;
    }

    function setUri(uint256 _id, string memory _uri) public onlyAdmin {
        nfts[_id].uri = _uri;
    }

    function name(uint256 _id) public view returns (string memory) {
        return nfts[_id].name;
    }

    function setName(uint256 _id, string memory _name) public onlyAdmin {
        nfts[_id].name = _name;
    }

    function tokenMax(uint256 _id) public view returns (uint16) {
        return nfts[_id].tokenMax;
    }

    function setTokenMax(uint256 _id, uint16 _tokenMax) public onlyAdmin {
        nfts[_id].tokenMax = _tokenMax;
    }

    function minimumPrice(uint256 _id) public view returns (uint256) {
        return nfts[_id].minimumPrice;
    }

    function setTokenMax(uint256 _id, uint256 _minimumPrice) public onlyAdmin {
        nfts[_id].minimumPrice = _minimumPrice;
    }

    function creator(uint256 _id) public view returns (address) {
        return nfts[_id].creator;
    }

    function setCreator(uint256 _id, address payable _creator)
        public
        onlyAdmin
    {
        nfts[_id].creator = _creator;
    }

    function amount(uint256 _id) public view returns (uint256) {
        return nfts[_id].amount.current();
    }

    function pause(bool _state) public onlyAdmin {
        paused = _state;
    }

    function burn(uint256 _id, uint256 _amount) public {
        _burn(msg.sender, _id, _amount);
    }

    function withdraw() public payable onlyAdmin {
        (bool os, ) = payable(msg.sender).call{value: address(this).balance}(
            ""
        );
        require(os);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC1155, AccessControl)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
}

File 2 of 13 : ERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

        return batchBalances;
    }

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not token 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: caller is not token 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();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, to, ids, amounts, 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);

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

        _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);

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

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

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

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

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

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

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

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

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

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * 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 _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);

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

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

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

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

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

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

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

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

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

        address operator = _msgSender();

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

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

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

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

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `ids` and `amounts` 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 {}

    /**
     * @dev Hook that is called after 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 _afterTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

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

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

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

        return array;
    }
}

File 3 of 13 : AccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;

import "./IAccessControl.sol";
import "../utils/Context.sol";
import "../utils/Strings.sol";
import "../utils/introspection/ERC165.sol";

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role);
        _;
    }

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleGranted} event.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleRevoked} event.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     *
     * May emit a {RoleRevoked} event.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * May emit a {RoleGranted} event.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleGranted} event.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleRevoked} event.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 5 of 13 : IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must 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 13 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;

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

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

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

File 7 of 13 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 8 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 9 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

import "../IERC1155.sol";

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

File 11 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

File 13 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address[]","name":"admins","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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":"ADMIN","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"MintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint16","name":"_amount","type":"uint16"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"amount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_uri","type":"string"},{"internalType":"uint16","name":"_tokenMax","type":"uint16"},{"internalType":"uint16","name":"_mintForCreator","type":"uint16"},{"internalType":"uint256","name":"_minimumPrice","type":"uint256"},{"internalType":"address payable","name":"_creator","type":"address"}],"name":"createNft","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"creator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","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":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"minimumPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"nfts","outputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"uri","type":"string"},{"internalType":"uint16","name":"tokenMax","type":"uint16"},{"internalType":"uint256","name":"minimumPrice","type":"uint256"},{"components":[{"internalType":"uint256","name":"_value","type":"uint256"}],"internalType":"struct Counters.Counter","name":"amount","type":"tuple"},{"internalType":"address payable","name":"creator","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"address payable","name":"_creator","type":"address"}],"name":"setCreator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"string","name":"_name","type":"string"}],"name":"setName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_minimumPrice","type":"uint256"}],"name":"setTokenMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint16","name":"_tokenMax","type":"uint16"}],"name":"setTokenMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"}],"name":"setUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"tokenMax","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040527f41444d494e0000000000000000000000000000000000000000000000000000006004556000600660006101000a81548160ff0219169083151502179055503480156200005057600080fd5b5060405162005a3038038062005a308339818101604052810190620000769190620004d7565b6040518060200160405280600081525062000097816200014660201b60201c565b50620000af6004546000801b6200016260201b60201c565b60005b8151811015620001275762000111600454838381518110620000fd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151620001c660201b60201c565b80806200011e906200061e565b915050620000b2565b506200013f6005620001dc60201b62001d9d1760201c565b5062000724565b80600290805190602001906200015e9291906200036e565b5050565b60006200017583620001e960201b60201c565b90508160036000858152602001908152602001600020600101819055508181847fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff60405160405180910390a4505050565b620001d882826200020960201b60201c565b5050565b6000816000018190555050565b600060036000838152602001908152602001600020600101549050919050565b6200021b8282620002fb60201b60201c565b620002f75760016003600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200029c6200036660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006003600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b8280546200037c90620005b2565b90600052602060002090601f016020900481019282620003a05760008555620003ec565b82601f10620003bb57805160ff1916838001178555620003ec565b82800160010185558215620003ec579182015b82811115620003eb578251825591602001919060010190620003ce565b5b509050620003fb9190620003ff565b5090565b5b808211156200041a57600081600090555060010162000400565b5090565b6000620004356200042f8462000545565b6200051c565b905080838252602082019050828560208602820111156200045557600080fd5b60005b858110156200048957816200046e888262000493565b84526020840193506020830192505060018101905062000458565b5050509392505050565b600081519050620004a4816200070a565b92915050565b600082601f830112620004bc57600080fd5b8151620004ce8482602086016200041e565b91505092915050565b600060208284031215620004ea57600080fd5b600082015167ffffffffffffffff8111156200050557600080fd5b6200051384828501620004aa565b91505092915050565b6000620005286200053b565b9050620005368282620005e8565b919050565b6000604051905090565b600067ffffffffffffffff821115620005635762000562620006ca565b5b602082029050602081019050919050565b6000620005818262000588565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006002820490506001821680620005cb57607f821691505b60208210811415620005e257620005e16200069b565b5b50919050565b620005f382620006f9565b810181811067ffffffffffffffff82111715620006155762000614620006ca565b5b80604052505050565b60006200062b82620005a8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156200066157620006606200066c565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b620007158162000574565b81146200072157600080fd5b50565b6152fc80620007346000396000f3fe6080604052600436106101f75760003560e01c806352add30d1161010d578063a0712d68116100a0578063b390c0ab1161006f578063b390c0ab14610784578063d547741f146107ad578063e985e9c5146107d6578063f242432a14610813578063fe55932a1461083c576101f7565b8063a0712d68146106eb578063a217fddf14610707578063a22cb46514610732578063a67cd0321461075b576101f7565b80637cb09dc8116100dc5780637cb09dc81461061f5780638b0d02581461064857806391686f531461068557806391d14854146106ae576101f7565b806352add30d146105515780635c975abb1461058e57806362f8a855146105b9578063782f08ae146105f6576101f7565b80632a0acc6a1161019057806336bfa9fa1161015f57806336bfa9fa1461047b5780633ccfd60b146104a45780634a99c3a8146104ae5780634e1273f4146104d7578063510b515814610514576101f7565b80632a0acc6a146103d55780632eb2c2d6146104005780632f2ff15d1461042957806336568abe14610452576101f7565b80630dad90f2116101cc5780630dad90f2146102dc5780630e89341c14610319578063248a9ca314610356578063265aa62114610393576101f7565b8062ad800c146101fc578062fdd58e1461023957806301ffc9a71461027657806302329a29146102b3575b600080fd5b34801561020857600080fd5b50610223600480360381019061021e9190613ca1565b610865565b604051610230919061442d565b60405180910390f35b34801561024557600080fd5b50610260600480360381019061025b9190613a60565b61090d565b60405161026d9190614739565b60405180910390f35b34801561028257600080fd5b5061029d60048036038101906102989190613b96565b6109d6565b6040516102aa91906143f7565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613b08565b6109e8565b005b3480156102e857600080fd5b5061030360048036038101906102fe9190613ca1565b610a50565b604051610310919061471e565b60405180910390f35b34801561032557600080fd5b50610340600480360381019061033b9190613ca1565b610a7e565b60405161034d919061442d565b60405180910390f35b34801561036257600080fd5b5061037d60048036038101906103789190613b31565b610b26565b60405161038a9190614412565b60405180910390f35b34801561039f57600080fd5b506103ba60048036038101906103b59190613ca1565b610b46565b6040516103cc9695949392919061444f565b60405180910390f35b3480156103e157600080fd5b506103ea610cd4565b6040516103f79190614412565b60405180910390f35b34801561040c57600080fd5b50610427600480360381019061042291906138d6565b610cda565b005b34801561043557600080fd5b50610450600480360381019061044b9190613b5a565b610d7b565b005b34801561045e57600080fd5b5061047960048036038101906104749190613b5a565b610d9c565b005b34801561048757600080fd5b506104a2600480360381019061049d9190613be8565b610e1f565b005b6104ac611032565b005b3480156104ba57600080fd5b506104d560048036038101906104d09190613d5a565b6110f6565b005b3480156104e357600080fd5b506104fe60048036038101906104f99190613a9c565b6112e8565b60405161050b919061439e565b60405180910390f35b34801561052057600080fd5b5061053b60048036038101906105369190613ca1565b611499565b60405161054891906142c1565b60405180910390f35b34801561055d57600080fd5b5061057860048036038101906105739190613a60565b6114d9565b6040516105859190614739565b60405180910390f35b34801561059a57600080fd5b506105a361150a565b6040516105b091906143f7565b60405180910390f35b3480156105c557600080fd5b506105e060048036038101906105db9190613ca1565b61151d565b6040516105ed9190614739565b60405180910390f35b34801561060257600080fd5b5061061d60048036038101906106189190613d06565b61153d565b005b34801561062b57600080fd5b5061064660048036038101906106419190613d96565b6115b7565b005b34801561065457600080fd5b5061066f600480360381019061066a9190613ca1565b611621565b60405161067c9190614739565b60405180910390f35b34801561069157600080fd5b506106ac60048036038101906106a79190613cca565b611648565b005b3480156106ba57600080fd5b506106d560048036038101906106d09190613b5a565b6116ec565b6040516106e291906143f7565b60405180910390f35b61070560048036038101906107009190613ca1565b611757565b005b34801561071357600080fd5b5061071c611b21565b6040516107299190614412565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190613a24565b611b28565b005b34801561076757600080fd5b50610782600480360381019061077d9190613d5a565b611b3e565b005b34801561079057600080fd5b506107ab60048036038101906107a69190613d96565b611bbe565b005b3480156107b957600080fd5b506107d460048036038101906107cf9190613b5a565b611bcd565b005b3480156107e257600080fd5b506107fd60048036038101906107f8919061389a565b611bee565b60405161080a91906143f7565b60405180910390f35b34801561081f57600080fd5b5061083a60048036038101906108359190613995565b611c82565b005b34801561084857600080fd5b50610863600480360381019061085e9190613d06565b611d23565b005b606060076000838152602001908152602001600020600001805461088890614a9d565b80601f01602080910402602001604051908101604052809291908181526020018280546108b490614a9d565b80156109015780601f106108d657610100808354040283529160200191610901565b820191906000526020600020905b8154815290600101906020018083116108e457829003601f168201915b50505050509050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561097e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109759061455e565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60006109e182611daa565b9050919050565b6109f4600454336116ec565b610a33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2a9061469e565b60405180910390fd5b80600660006101000a81548160ff02191690831515021790555050565b60006007600083815260200190815260200160002060020160009054906101000a900461ffff169050919050565b6060600760008381526020019081526020016000206001018054610aa190614a9d565b80601f0160208091040260200160405190810160405280929190818152602001828054610acd90614a9d565b8015610b1a5780601f10610aef57610100808354040283529160200191610b1a565b820191906000526020600020905b815481529060010190602001808311610afd57829003601f168201915b50505050509050919050565b600060036000838152602001908152602001600020600101549050919050565b6007602052806000526040600020600091509050806000018054610b6990614a9d565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9590614a9d565b8015610be25780601f10610bb757610100808354040283529160200191610be2565b820191906000526020600020905b815481529060010190602001808311610bc557829003601f168201915b505050505090806001018054610bf790614a9d565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2390614a9d565b8015610c705780601f10610c4557610100808354040283529160200191610c70565b820191906000526020600020905b815481529060010190602001808311610c5357829003601f168201915b5050505050908060020160009054906101000a900461ffff169080600301549080600401604051806020016040529081600082015481525050908060050160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905086565b60045481565b610ce2611e24565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610d285750610d2785610d22611e24565b611bee565b5b610d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5e906144de565b60405180910390fd5b610d748585858585611e2c565b5050505050565b610d8482610b26565b610d8d8161219a565b610d9783836121ae565b505050565b610da4611e24565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e08906146fe565b60405180910390fd5b610e1b828261228f565b5050565b610e2b600454336116ec565b610e6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e619061469e565b60405180910390fd5b610e746005612371565b610e7c613540565b6040518060c001604052808881526020018781526020018661ffff1681526020018481526020018281526020018373ffffffffffffffffffffffffffffffffffffffff1681525060076000610ed16005612387565b81526020019081526020016000206000820151816000019080519060200190610efb929190613553565b506020820151816001019080519060200190610f18929190613553565b5060408201518160020160006101000a81548161ffff021916908361ffff1602179055506060820151816003015560808201518160040160008201518160000155505060a08201518160050160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555090505060008461ffff16111561102957610fda82610fc06005612387565b8661ffff1660405180602001604052806000815250612395565b60005b8461ffff168161ffff1610156110275761101460076000610ffe6005612387565b8152602001908152602001600020600401612371565b808061101f90614b00565b915050610fdd565b505b50505050505050565b61103e600454336116ec565b61107d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110749061469e565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516110a390614272565b60006040518083038185875af1925050503d80600081146110e0576040519150601f19603f3d011682016040523d82523d6000602084013e6110e5565b606091505b50509050806110f357600080fd5b50565b611102600454336116ec565b611141576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111389061469e565b60405180910390fd5b60006007600084815260200190815260200160002060020160009054906101000a900461ffff1661ffff1614156111ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a49061467e565b60405180910390fd5b6007600083815260200190815260200160002060020160009054906101000a900461ffff1661ffff1660016111f660076000868152602001908152602001600020600401612387565b61120091906148e3565b1115611241576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112389061461e565b60405180910390fd5b6112966007600084815260200190815260200160002060050160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16838361ffff1660405180602001604052806000815250612395565b60005b8161ffff168161ffff1610156112e3576112d0600760006112ba6005612387565b8152602001908152602001600020600401612371565b80806112db90614b00565b915050611299565b505050565b6060815183511461132e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113259061465e565b60405180910390fd5b6000835167ffffffffffffffff811115611371577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561139f5781602001602082028036833780820191505090505b50905060005b845181101561148e576114388582815181106113ea577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015185838151811061142b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015161090d565b828281518110611471577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508061148790614b2b565b90506113a5565b508091505092915050565b60006007600083815260200190815260200160002060050160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600860205281600052604060002081815481106114f557600080fd5b90600052602060002001600091509150505481565b600660009054906101000a900460ff1681565b600060076000838152602001908152602001600020600301549050919050565b611549600454336116ec565b611588576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157f9061469e565b60405180910390fd5b806007600084815260200190815260200160002060010190805190602001906115b2929190613553565b505050565b6115c3600454336116ec565b611602576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f99061469e565b60405180910390fd5b8060076000848152602001908152602001600020600301819055505050565b600061164160076000848152602001908152602001600020600401612387565b9050919050565b611654600454336116ec565b611693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168a9061469e565b60405180910390fd5b806007600084815260200190815260200160002060050160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60006003600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60006007600083815260200190815260200160002060020160009054906101000a900461ffff1661ffff1614156117c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ba9061467e565b60405180910390fd5b60005b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490508110156118e757600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208181548110611887577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001548214156118d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cb906145fe565b60405180910390fd5b80806118df90614b2b565b9150506117c6565b506007600082815260200190815260200160002060020160009054906101000a900461ffff1661ffff16600161193160076000858152602001908152602001600020600401612387565b61193b91906148e3565b111561197c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119739061461e565b60405180910390fd5b600060076000838152602001908152602001600020600301541180156119b75750600760008281526020019081526020016000206003015434105b156119f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ee906145de565b60405180910390fd5b611a133382600160405180602001604052806000815250612395565b611a3160076000838152602001908152602001600020600401612371565b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190806001815401808255809150506001900390600052602060002001600090919091909150556000341115611b1e576007600082815260200190815260200160002060050160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015611b1c573d6000803e3d6000fd5b505b50565b6000801b81565b611b3a611b33611e24565b8383612546565b5050565b611b4a600454336116ec565b611b89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b809061469e565b60405180910390fd5b806007600084815260200190815260200160002060020160006101000a81548161ffff021916908361ffff1602179055505050565b611bc93383836126b3565b5050565b611bd682610b26565b611bdf8161219a565b611be9838361228f565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c8a611e24565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611cd05750611ccf85611cca611e24565b611bee565b5b611d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d06906144de565b60405180910390fd5b611d1c85858585856128fa565b5050505050565b611d2f600454336116ec565b611d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d659061469e565b60405180910390fd5b80600760008481526020019081526020016000206000019080519060200190611d98929190613553565b505050565b6000816000018190555050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e1d5750611e1c82612b96565b5b9050919050565b600033905090565b8151835114611e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e67906146be565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ee0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed79061457e565b60405180910390fd5b6000611eea611e24565b9050611efa818787878787612c78565b60005b84518110156120f7576000858281518110611f41577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000858381518110611f86577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201e906145be565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120dc91906148e3565b92505081905550505050806120f090614b2b565b9050611efd565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161216e9291906143c0565b60405180910390a4612184818787878787612c80565b612192818787878787612c88565b505050505050565b6121ab816121a6611e24565b612e6f565b50565b6121b882826116ec565b61228b5760016003600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612230611e24565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61229982826116ec565b1561236d5760006003600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612312611e24565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6001816000016000828254019250508190555050565b600081600001549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612405576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fc906146de565b60405180910390fd5b600061240f611e24565b9050600061241c85612f0c565b9050600061242985612f0c565b905061243a83600089858589612c78565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461249991906148e3565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051612517929190614754565b60405180910390a461252e83600089858589612c80565b61253d83600089898989612fd2565b50505050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156125b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ac9061463e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516126a691906143f7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271a9061459e565b60405180910390fd5b600061272d611e24565b9050600061273a84612f0c565b9050600061274784612f0c565b905061276783876000858560405180602001604052806000815250612c78565b600080600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050848110156127fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f59061453e565b60405180910390fd5b84810360008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516128cb929190614754565b60405180910390a46128f184886000868660405180602001604052806000815250612c80565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561296a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129619061457e565b60405180910390fd5b6000612974611e24565b9050600061298185612f0c565b9050600061298e85612f0c565b905061299e838989858589612c78565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015612a35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2c906145be565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612aea91906148e3565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a604051612b67929190614754565b60405180910390a4612b7d848a8a86868a612c80565b612b8b848a8a8a8a8a612fd2565b505050505050505050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612c6157507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612c715750612c70826131b9565b5b9050919050565b505050505050565b505050505050565b612ca78473ffffffffffffffffffffffffffffffffffffffff16613223565b15612e67578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612ced9594939291906142dc565b602060405180830381600087803b158015612d0757600080fd5b505af1925050508015612d3857506040513d601f19601f82011682018060405250810190612d359190613bbf565b60015b612dde57612d44614c01565b806308c379a01415612da15750612d5961518f565b80612d645750612da3565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d98919061442d565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd5906144be565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5c9061451e565b60405180910390fd5b505b505050505050565b612e7982826116ec565b612f0857612e9e8173ffffffffffffffffffffffffffffffffffffffff166014613246565b612eac8360001c6020613246565b604051602001612ebd929190614287565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eff919061442d565b60405180910390fd5b5050565b60606000600167ffffffffffffffff811115612f51577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015612f7f5781602001602082028036833780820191505090505b5090508281600081518110612fbd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b612ff18473ffffffffffffffffffffffffffffffffffffffff16613223565b156131b1578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401613037959493929190614344565b602060405180830381600087803b15801561305157600080fd5b505af192505050801561308257506040513d601f19601f8201168201806040525081019061307f9190613bbf565b60015b6131285761308e614c01565b806308c379a014156130eb57506130a361518f565b806130ae57506130ed565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130e2919061442d565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161311f906144be565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146131af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131a69061451e565b60405180910390fd5b505b505050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6060600060028360026132599190614939565b61326391906148e3565b67ffffffffffffffff8111156132a2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156132d45781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110613332577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106133bc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026133fc9190614939565b61340691906148e3565b90505b60018111156134f2577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061346e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b8282815181106134ab577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806134eb90614a73565b9050613409565b5060008414613536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161352d906144fe565b60405180910390fd5b8091505092915050565b6040518060200160405280600081525090565b82805461355f90614a9d565b90600052602060002090601f01602090048101928261358157600085556135c8565b82601f1061359a57805160ff19168380011785556135c8565b828001600101855582156135c8579182015b828111156135c75782518255916020019190600101906135ac565b5b5090506135d591906135d9565b5090565b5b808211156135f25760008160009055506001016135da565b5090565b6000613609613604846147a2565b61477d565b9050808382526020820190508285602086028201111561362857600080fd5b60005b85811015613658578161363e888261374a565b84526020840193506020830192505060018101905061362b565b5050509392505050565b6000613675613670846147ce565b61477d565b9050808382526020820190508285602086028201111561369457600080fd5b60005b858110156136c457816136aa8882613885565b845260208401935060208301925050600181019050613697565b5050509392505050565b60006136e16136dc846147fa565b61477d565b9050828152602081018484840111156136f957600080fd5b613704848285614a31565b509392505050565b600061371f61371a8461482b565b61477d565b90508281526020810184848401111561373757600080fd5b613742848285614a31565b509392505050565b60008135905061375981615225565b92915050565b60008135905061376e8161523c565b92915050565b600082601f83011261378557600080fd5b81356137958482602086016135f6565b91505092915050565b600082601f8301126137af57600080fd5b81356137bf848260208601613662565b91505092915050565b6000813590506137d781615253565b92915050565b6000813590506137ec8161526a565b92915050565b60008135905061380181615281565b92915050565b60008151905061381681615281565b92915050565b600082601f83011261382d57600080fd5b813561383d8482602086016136ce565b91505092915050565b600082601f83011261385757600080fd5b813561386784826020860161370c565b91505092915050565b60008135905061387f81615298565b92915050565b600081359050613894816152af565b92915050565b600080604083850312156138ad57600080fd5b60006138bb8582860161374a565b92505060206138cc8582860161374a565b9150509250929050565b600080600080600060a086880312156138ee57600080fd5b60006138fc8882890161374a565b955050602061390d8882890161374a565b945050604086013567ffffffffffffffff81111561392a57600080fd5b6139368882890161379e565b935050606086013567ffffffffffffffff81111561395357600080fd5b61395f8882890161379e565b925050608086013567ffffffffffffffff81111561397c57600080fd5b6139888882890161381c565b9150509295509295909350565b600080600080600060a086880312156139ad57600080fd5b60006139bb8882890161374a565b95505060206139cc8882890161374a565b94505060406139dd88828901613885565b93505060606139ee88828901613885565b925050608086013567ffffffffffffffff811115613a0b57600080fd5b613a178882890161381c565b9150509295509295909350565b60008060408385031215613a3757600080fd5b6000613a458582860161374a565b9250506020613a56858286016137c8565b9150509250929050565b60008060408385031215613a7357600080fd5b6000613a818582860161374a565b9250506020613a9285828601613885565b9150509250929050565b60008060408385031215613aaf57600080fd5b600083013567ffffffffffffffff811115613ac957600080fd5b613ad585828601613774565b925050602083013567ffffffffffffffff811115613af257600080fd5b613afe8582860161379e565b9150509250929050565b600060208284031215613b1a57600080fd5b6000613b28848285016137c8565b91505092915050565b600060208284031215613b4357600080fd5b6000613b51848285016137dd565b91505092915050565b60008060408385031215613b6d57600080fd5b6000613b7b858286016137dd565b9250506020613b8c8582860161374a565b9150509250929050565b600060208284031215613ba857600080fd5b6000613bb6848285016137f2565b91505092915050565b600060208284031215613bd157600080fd5b6000613bdf84828501613807565b91505092915050565b60008060008060008060c08789031215613c0157600080fd5b600087013567ffffffffffffffff811115613c1b57600080fd5b613c2789828a01613846565b965050602087013567ffffffffffffffff811115613c4457600080fd5b613c5089828a01613846565b9550506040613c6189828a01613870565b9450506060613c7289828a01613870565b9350506080613c8389828a01613885565b92505060a0613c9489828a0161375f565b9150509295509295509295565b600060208284031215613cb357600080fd5b6000613cc184828501613885565b91505092915050565b60008060408385031215613cdd57600080fd5b6000613ceb85828601613885565b9250506020613cfc8582860161375f565b9150509250929050565b60008060408385031215613d1957600080fd5b6000613d2785828601613885565b925050602083013567ffffffffffffffff811115613d4457600080fd5b613d5085828601613846565b9150509250929050565b60008060408385031215613d6d57600080fd5b6000613d7b85828601613885565b9250506020613d8c85828601613870565b9150509250929050565b60008060408385031215613da957600080fd5b6000613db785828601613885565b9250506020613dc885828601613885565b9150509250929050565b6000613dde8383614254565b60208301905092915050565b613df3816149a5565b82525050565b613e0281614993565b82525050565b6000613e138261486c565b613e1d818561489a565b9350613e288361485c565b8060005b83811015613e59578151613e408882613dd2565b9750613e4b8361488d565b925050600181019050613e2c565b5085935050505092915050565b613e6f816149b7565b82525050565b613e7e816149c3565b82525050565b6000613e8f82614877565b613e9981856148ab565b9350613ea9818560208601614a40565b613eb281614c23565b840191505092915050565b6000613ec882614882565b613ed281856148c7565b9350613ee2818560208601614a40565b613eeb81614c23565b840191505092915050565b6000613f0182614882565b613f0b81856148d8565b9350613f1b818560208601614a40565b80840191505092915050565b6000613f346034836148c7565b9150613f3f82614c41565b604082019050919050565b6000613f57602f836148c7565b9150613f6282614c90565b604082019050919050565b6000613f7a6020836148c7565b9150613f8582614cdf565b602082019050919050565b6000613f9d6028836148c7565b9150613fa882614d08565b604082019050919050565b6000613fc06024836148c7565b9150613fcb82614d57565b604082019050919050565b6000613fe3602a836148c7565b9150613fee82614da6565b604082019050919050565b60006140066025836148c7565b915061401182614df5565b604082019050919050565b60006140296023836148c7565b915061403482614e44565b604082019050919050565b600061404c602a836148c7565b915061405782614e93565b604082019050919050565b600061406f6014836148c7565b915061407a82614ee2565b602082019050919050565b60006140926017836148c7565b915061409d82614f0b565b602082019050919050565b60006140b56000836148bc565b91506140c082614f34565b600082019050919050565b60006140d8601d836148c7565b91506140e382614f37565b602082019050919050565b60006140fb6017836148d8565b915061410682614f60565b601782019050919050565b600061411e6029836148c7565b915061412982614f89565b604082019050919050565b60006141416029836148c7565b915061414c82614fd8565b604082019050919050565b60006141646016836148c7565b915061416f82615027565b602082019050919050565b60006141876009836148c7565b915061419282615050565b602082019050919050565b60006141aa6028836148c7565b91506141b582615079565b604082019050919050565b60006141cd6021836148c7565b91506141d8826150c8565b604082019050919050565b60006141f06011836148d8565b91506141fb82615117565b601182019050919050565b6000614213602f836148c7565b915061421e82615140565b604082019050919050565b60208201600082015161423f6000850182614254565b50505050565b61424e816149f9565b82525050565b61425d81614a27565b82525050565b61426c81614a27565b82525050565b600061427d826140a8565b9150819050919050565b6000614292826140ee565b915061429e8285613ef6565b91506142a9826141e3565b91506142b58284613ef6565b91508190509392505050565b60006020820190506142d66000830184613df9565b92915050565b600060a0820190506142f16000830188613df9565b6142fe6020830187613df9565b81810360408301526143108186613e08565b905081810360608301526143248185613e08565b905081810360808301526143388184613e84565b90509695505050505050565b600060a0820190506143596000830188613df9565b6143666020830187613df9565b6143736040830186614263565b6143806060830185614263565b81810360808301526143928184613e84565b90509695505050505050565b600060208201905081810360008301526143b88184613e08565b905092915050565b600060408201905081810360008301526143da8185613e08565b905081810360208301526143ee8184613e08565b90509392505050565b600060208201905061440c6000830184613e66565b92915050565b60006020820190506144276000830184613e75565b92915050565b600060208201905081810360008301526144478184613ebd565b905092915050565b600060c08201905081810360008301526144698189613ebd565b9050818103602083015261447d8188613ebd565b905061448c6040830187614245565b6144996060830186614263565b6144a66080830185614229565b6144b360a0830184613dea565b979650505050505050565b600060208201905081810360008301526144d781613f27565b9050919050565b600060208201905081810360008301526144f781613f4a565b9050919050565b6000602082019050818103600083015261451781613f6d565b9050919050565b6000602082019050818103600083015261453781613f90565b9050919050565b6000602082019050818103600083015261455781613fb3565b9050919050565b6000602082019050818103600083015261457781613fd6565b9050919050565b6000602082019050818103600083015261459781613ff9565b9050919050565b600060208201905081810360008301526145b78161401c565b9050919050565b600060208201905081810360008301526145d78161403f565b9050919050565b600060208201905081810360008301526145f781614062565b9050919050565b6000602082019050818103600083015261461781614085565b9050919050565b60006020820190508181036000830152614637816140cb565b9050919050565b6000602082019050818103600083015261465781614111565b9050919050565b6000602082019050818103600083015261467781614134565b9050919050565b6000602082019050818103600083015261469781614157565b9050919050565b600060208201905081810360008301526146b78161417a565b9050919050565b600060208201905081810360008301526146d78161419d565b9050919050565b600060208201905081810360008301526146f7816141c0565b9050919050565b6000602082019050818103600083015261471781614206565b9050919050565b60006020820190506147336000830184614245565b92915050565b600060208201905061474e6000830184614263565b92915050565b60006040820190506147696000830185614263565b6147766020830184614263565b9392505050565b6000614787614798565b90506147938282614acf565b919050565b6000604051905090565b600067ffffffffffffffff8211156147bd576147bc614bd2565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156147e9576147e8614bd2565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561481557614814614bd2565b5b61481e82614c23565b9050602081019050919050565b600067ffffffffffffffff82111561484657614845614bd2565b5b61484f82614c23565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006148ee82614a27565b91506148f983614a27565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561492e5761492d614b74565b5b828201905092915050565b600061494482614a27565b915061494f83614a27565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561498857614987614b74565b5b828202905092915050565b600061499e82614a07565b9050919050565b60006149b082614a07565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614a5e578082015181840152602081019050614a43565b83811115614a6d576000848401525b50505050565b6000614a7e82614a27565b91506000821415614a9257614a91614b74565b5b600182039050919050565b60006002820490506001821680614ab557607f821691505b60208210811415614ac957614ac8614ba3565b5b50919050565b614ad882614c23565b810181811067ffffffffffffffff82111715614af757614af6614bd2565b5b80604052505050565b6000614b0b826149f9565b915061ffff821415614b2057614b1f614b74565b5b600182019050919050565b6000614b3682614a27565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b6957614b68614b74565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d1115614c205760046000803e614c1d600051614c34565b90505b90565b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206e6f7220617070726f7665640000000000000000000000000000000000602082015250565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e74207061796d656e74000000000000000000000000600082015250565b7f63616e206d696e74206f6e6c79206f6e6520746f6b656e000000000000000000600082015250565b50565b7f746f6b656e4964206861642072656163686564206d617820636f756e74000000600082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f5f746f6b656e4964206973206e6f742065786973747300000000000000000000600082015250565b7f6e6f742061646d696e0000000000000000000000000000000000000000000000600082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b600060443d101561519f57615222565b6151a7614798565b60043d036004823e80513d602482011167ffffffffffffffff821117156151cf575050615222565b808201805167ffffffffffffffff8111156151ed5750505050615222565b80602083010160043d03850181111561520a575050505050615222565b61521982602001850186614acf565b82955050505050505b90565b61522e81614993565b811461523957600080fd5b50565b615245816149a5565b811461525057600080fd5b50565b61525c816149b7565b811461526757600080fd5b50565b615273816149c3565b811461527e57600080fd5b50565b61528a816149cd565b811461529557600080fd5b50565b6152a1816149f9565b81146152ac57600080fd5b50565b6152b881614a27565b81146152c357600080fd5b5056fea264697066735822122042550231a0b5cb5d4b30ce225f9b0cdd456627f9d24c21d698cbb6f7389541ab64736f6c634300080400330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000200000000000000000000000052a76a606ac925f7113b4cc8605fe6bcad431ebb000000000000000000000000480d565527086dc3dc2262648194e1e9ccab70ef

Deployed Bytecode

0x6080604052600436106101f75760003560e01c806352add30d1161010d578063a0712d68116100a0578063b390c0ab1161006f578063b390c0ab14610784578063d547741f146107ad578063e985e9c5146107d6578063f242432a14610813578063fe55932a1461083c576101f7565b8063a0712d68146106eb578063a217fddf14610707578063a22cb46514610732578063a67cd0321461075b576101f7565b80637cb09dc8116100dc5780637cb09dc81461061f5780638b0d02581461064857806391686f531461068557806391d14854146106ae576101f7565b806352add30d146105515780635c975abb1461058e57806362f8a855146105b9578063782f08ae146105f6576101f7565b80632a0acc6a1161019057806336bfa9fa1161015f57806336bfa9fa1461047b5780633ccfd60b146104a45780634a99c3a8146104ae5780634e1273f4146104d7578063510b515814610514576101f7565b80632a0acc6a146103d55780632eb2c2d6146104005780632f2ff15d1461042957806336568abe14610452576101f7565b80630dad90f2116101cc5780630dad90f2146102dc5780630e89341c14610319578063248a9ca314610356578063265aa62114610393576101f7565b8062ad800c146101fc578062fdd58e1461023957806301ffc9a71461027657806302329a29146102b3575b600080fd5b34801561020857600080fd5b50610223600480360381019061021e9190613ca1565b610865565b604051610230919061442d565b60405180910390f35b34801561024557600080fd5b50610260600480360381019061025b9190613a60565b61090d565b60405161026d9190614739565b60405180910390f35b34801561028257600080fd5b5061029d60048036038101906102989190613b96565b6109d6565b6040516102aa91906143f7565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613b08565b6109e8565b005b3480156102e857600080fd5b5061030360048036038101906102fe9190613ca1565b610a50565b604051610310919061471e565b60405180910390f35b34801561032557600080fd5b50610340600480360381019061033b9190613ca1565b610a7e565b60405161034d919061442d565b60405180910390f35b34801561036257600080fd5b5061037d60048036038101906103789190613b31565b610b26565b60405161038a9190614412565b60405180910390f35b34801561039f57600080fd5b506103ba60048036038101906103b59190613ca1565b610b46565b6040516103cc9695949392919061444f565b60405180910390f35b3480156103e157600080fd5b506103ea610cd4565b6040516103f79190614412565b60405180910390f35b34801561040c57600080fd5b50610427600480360381019061042291906138d6565b610cda565b005b34801561043557600080fd5b50610450600480360381019061044b9190613b5a565b610d7b565b005b34801561045e57600080fd5b5061047960048036038101906104749190613b5a565b610d9c565b005b34801561048757600080fd5b506104a2600480360381019061049d9190613be8565b610e1f565b005b6104ac611032565b005b3480156104ba57600080fd5b506104d560048036038101906104d09190613d5a565b6110f6565b005b3480156104e357600080fd5b506104fe60048036038101906104f99190613a9c565b6112e8565b60405161050b919061439e565b60405180910390f35b34801561052057600080fd5b5061053b60048036038101906105369190613ca1565b611499565b60405161054891906142c1565b60405180910390f35b34801561055d57600080fd5b5061057860048036038101906105739190613a60565b6114d9565b6040516105859190614739565b60405180910390f35b34801561059a57600080fd5b506105a361150a565b6040516105b091906143f7565b60405180910390f35b3480156105c557600080fd5b506105e060048036038101906105db9190613ca1565b61151d565b6040516105ed9190614739565b60405180910390f35b34801561060257600080fd5b5061061d60048036038101906106189190613d06565b61153d565b005b34801561062b57600080fd5b5061064660048036038101906106419190613d96565b6115b7565b005b34801561065457600080fd5b5061066f600480360381019061066a9190613ca1565b611621565b60405161067c9190614739565b60405180910390f35b34801561069157600080fd5b506106ac60048036038101906106a79190613cca565b611648565b005b3480156106ba57600080fd5b506106d560048036038101906106d09190613b5a565b6116ec565b6040516106e291906143f7565b60405180910390f35b61070560048036038101906107009190613ca1565b611757565b005b34801561071357600080fd5b5061071c611b21565b6040516107299190614412565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190613a24565b611b28565b005b34801561076757600080fd5b50610782600480360381019061077d9190613d5a565b611b3e565b005b34801561079057600080fd5b506107ab60048036038101906107a69190613d96565b611bbe565b005b3480156107b957600080fd5b506107d460048036038101906107cf9190613b5a565b611bcd565b005b3480156107e257600080fd5b506107fd60048036038101906107f8919061389a565b611bee565b60405161080a91906143f7565b60405180910390f35b34801561081f57600080fd5b5061083a60048036038101906108359190613995565b611c82565b005b34801561084857600080fd5b50610863600480360381019061085e9190613d06565b611d23565b005b606060076000838152602001908152602001600020600001805461088890614a9d565b80601f01602080910402602001604051908101604052809291908181526020018280546108b490614a9d565b80156109015780601f106108d657610100808354040283529160200191610901565b820191906000526020600020905b8154815290600101906020018083116108e457829003601f168201915b50505050509050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561097e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109759061455e565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60006109e182611daa565b9050919050565b6109f4600454336116ec565b610a33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2a9061469e565b60405180910390fd5b80600660006101000a81548160ff02191690831515021790555050565b60006007600083815260200190815260200160002060020160009054906101000a900461ffff169050919050565b6060600760008381526020019081526020016000206001018054610aa190614a9d565b80601f0160208091040260200160405190810160405280929190818152602001828054610acd90614a9d565b8015610b1a5780601f10610aef57610100808354040283529160200191610b1a565b820191906000526020600020905b815481529060010190602001808311610afd57829003601f168201915b50505050509050919050565b600060036000838152602001908152602001600020600101549050919050565b6007602052806000526040600020600091509050806000018054610b6990614a9d565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9590614a9d565b8015610be25780601f10610bb757610100808354040283529160200191610be2565b820191906000526020600020905b815481529060010190602001808311610bc557829003601f168201915b505050505090806001018054610bf790614a9d565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2390614a9d565b8015610c705780601f10610c4557610100808354040283529160200191610c70565b820191906000526020600020905b815481529060010190602001808311610c5357829003601f168201915b5050505050908060020160009054906101000a900461ffff169080600301549080600401604051806020016040529081600082015481525050908060050160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905086565b60045481565b610ce2611e24565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610d285750610d2785610d22611e24565b611bee565b5b610d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5e906144de565b60405180910390fd5b610d748585858585611e2c565b5050505050565b610d8482610b26565b610d8d8161219a565b610d9783836121ae565b505050565b610da4611e24565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e08906146fe565b60405180910390fd5b610e1b828261228f565b5050565b610e2b600454336116ec565b610e6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e619061469e565b60405180910390fd5b610e746005612371565b610e7c613540565b6040518060c001604052808881526020018781526020018661ffff1681526020018481526020018281526020018373ffffffffffffffffffffffffffffffffffffffff1681525060076000610ed16005612387565b81526020019081526020016000206000820151816000019080519060200190610efb929190613553565b506020820151816001019080519060200190610f18929190613553565b5060408201518160020160006101000a81548161ffff021916908361ffff1602179055506060820151816003015560808201518160040160008201518160000155505060a08201518160050160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555090505060008461ffff16111561102957610fda82610fc06005612387565b8661ffff1660405180602001604052806000815250612395565b60005b8461ffff168161ffff1610156110275761101460076000610ffe6005612387565b8152602001908152602001600020600401612371565b808061101f90614b00565b915050610fdd565b505b50505050505050565b61103e600454336116ec565b61107d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110749061469e565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516110a390614272565b60006040518083038185875af1925050503d80600081146110e0576040519150601f19603f3d011682016040523d82523d6000602084013e6110e5565b606091505b50509050806110f357600080fd5b50565b611102600454336116ec565b611141576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111389061469e565b60405180910390fd5b60006007600084815260200190815260200160002060020160009054906101000a900461ffff1661ffff1614156111ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a49061467e565b60405180910390fd5b6007600083815260200190815260200160002060020160009054906101000a900461ffff1661ffff1660016111f660076000868152602001908152602001600020600401612387565b61120091906148e3565b1115611241576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112389061461e565b60405180910390fd5b6112966007600084815260200190815260200160002060050160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16838361ffff1660405180602001604052806000815250612395565b60005b8161ffff168161ffff1610156112e3576112d0600760006112ba6005612387565b8152602001908152602001600020600401612371565b80806112db90614b00565b915050611299565b505050565b6060815183511461132e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113259061465e565b60405180910390fd5b6000835167ffffffffffffffff811115611371577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561139f5781602001602082028036833780820191505090505b50905060005b845181101561148e576114388582815181106113ea577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015185838151811061142b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015161090d565b828281518110611471577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508061148790614b2b565b90506113a5565b508091505092915050565b60006007600083815260200190815260200160002060050160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600860205281600052604060002081815481106114f557600080fd5b90600052602060002001600091509150505481565b600660009054906101000a900460ff1681565b600060076000838152602001908152602001600020600301549050919050565b611549600454336116ec565b611588576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157f9061469e565b60405180910390fd5b806007600084815260200190815260200160002060010190805190602001906115b2929190613553565b505050565b6115c3600454336116ec565b611602576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f99061469e565b60405180910390fd5b8060076000848152602001908152602001600020600301819055505050565b600061164160076000848152602001908152602001600020600401612387565b9050919050565b611654600454336116ec565b611693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168a9061469e565b60405180910390fd5b806007600084815260200190815260200160002060050160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60006003600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60006007600083815260200190815260200160002060020160009054906101000a900461ffff1661ffff1614156117c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ba9061467e565b60405180910390fd5b60005b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490508110156118e757600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208181548110611887577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001548214156118d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cb906145fe565b60405180910390fd5b80806118df90614b2b565b9150506117c6565b506007600082815260200190815260200160002060020160009054906101000a900461ffff1661ffff16600161193160076000858152602001908152602001600020600401612387565b61193b91906148e3565b111561197c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119739061461e565b60405180910390fd5b600060076000838152602001908152602001600020600301541180156119b75750600760008281526020019081526020016000206003015434105b156119f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ee906145de565b60405180910390fd5b611a133382600160405180602001604052806000815250612395565b611a3160076000838152602001908152602001600020600401612371565b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190806001815401808255809150506001900390600052602060002001600090919091909150556000341115611b1e576007600082815260200190815260200160002060050160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015611b1c573d6000803e3d6000fd5b505b50565b6000801b81565b611b3a611b33611e24565b8383612546565b5050565b611b4a600454336116ec565b611b89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b809061469e565b60405180910390fd5b806007600084815260200190815260200160002060020160006101000a81548161ffff021916908361ffff1602179055505050565b611bc93383836126b3565b5050565b611bd682610b26565b611bdf8161219a565b611be9838361228f565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c8a611e24565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611cd05750611ccf85611cca611e24565b611bee565b5b611d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d06906144de565b60405180910390fd5b611d1c85858585856128fa565b5050505050565b611d2f600454336116ec565b611d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d659061469e565b60405180910390fd5b80600760008481526020019081526020016000206000019080519060200190611d98929190613553565b505050565b6000816000018190555050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e1d5750611e1c82612b96565b5b9050919050565b600033905090565b8151835114611e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e67906146be565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ee0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed79061457e565b60405180910390fd5b6000611eea611e24565b9050611efa818787878787612c78565b60005b84518110156120f7576000858281518110611f41577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000858381518110611f86577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201e906145be565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120dc91906148e3565b92505081905550505050806120f090614b2b565b9050611efd565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161216e9291906143c0565b60405180910390a4612184818787878787612c80565b612192818787878787612c88565b505050505050565b6121ab816121a6611e24565b612e6f565b50565b6121b882826116ec565b61228b5760016003600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612230611e24565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61229982826116ec565b1561236d5760006003600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612312611e24565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6001816000016000828254019250508190555050565b600081600001549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612405576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fc906146de565b60405180910390fd5b600061240f611e24565b9050600061241c85612f0c565b9050600061242985612f0c565b905061243a83600089858589612c78565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461249991906148e3565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051612517929190614754565b60405180910390a461252e83600089858589612c80565b61253d83600089898989612fd2565b50505050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156125b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ac9061463e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516126a691906143f7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271a9061459e565b60405180910390fd5b600061272d611e24565b9050600061273a84612f0c565b9050600061274784612f0c565b905061276783876000858560405180602001604052806000815250612c78565b600080600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050848110156127fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f59061453e565b60405180910390fd5b84810360008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516128cb929190614754565b60405180910390a46128f184886000868660405180602001604052806000815250612c80565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561296a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129619061457e565b60405180910390fd5b6000612974611e24565b9050600061298185612f0c565b9050600061298e85612f0c565b905061299e838989858589612c78565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015612a35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2c906145be565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612aea91906148e3565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a604051612b67929190614754565b60405180910390a4612b7d848a8a86868a612c80565b612b8b848a8a8a8a8a612fd2565b505050505050505050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612c6157507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612c715750612c70826131b9565b5b9050919050565b505050505050565b505050505050565b612ca78473ffffffffffffffffffffffffffffffffffffffff16613223565b15612e67578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612ced9594939291906142dc565b602060405180830381600087803b158015612d0757600080fd5b505af1925050508015612d3857506040513d601f19601f82011682018060405250810190612d359190613bbf565b60015b612dde57612d44614c01565b806308c379a01415612da15750612d5961518f565b80612d645750612da3565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d98919061442d565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd5906144be565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5c9061451e565b60405180910390fd5b505b505050505050565b612e7982826116ec565b612f0857612e9e8173ffffffffffffffffffffffffffffffffffffffff166014613246565b612eac8360001c6020613246565b604051602001612ebd929190614287565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eff919061442d565b60405180910390fd5b5050565b60606000600167ffffffffffffffff811115612f51577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015612f7f5781602001602082028036833780820191505090505b5090508281600081518110612fbd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b612ff18473ffffffffffffffffffffffffffffffffffffffff16613223565b156131b1578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401613037959493929190614344565b602060405180830381600087803b15801561305157600080fd5b505af192505050801561308257506040513d601f19601f8201168201806040525081019061307f9190613bbf565b60015b6131285761308e614c01565b806308c379a014156130eb57506130a361518f565b806130ae57506130ed565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130e2919061442d565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161311f906144be565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146131af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131a69061451e565b60405180910390fd5b505b505050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6060600060028360026132599190614939565b61326391906148e3565b67ffffffffffffffff8111156132a2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156132d45781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110613332577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106133bc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026133fc9190614939565b61340691906148e3565b90505b60018111156134f2577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061346e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b8282815181106134ab577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806134eb90614a73565b9050613409565b5060008414613536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161352d906144fe565b60405180910390fd5b8091505092915050565b6040518060200160405280600081525090565b82805461355f90614a9d565b90600052602060002090601f01602090048101928261358157600085556135c8565b82601f1061359a57805160ff19168380011785556135c8565b828001600101855582156135c8579182015b828111156135c75782518255916020019190600101906135ac565b5b5090506135d591906135d9565b5090565b5b808211156135f25760008160009055506001016135da565b5090565b6000613609613604846147a2565b61477d565b9050808382526020820190508285602086028201111561362857600080fd5b60005b85811015613658578161363e888261374a565b84526020840193506020830192505060018101905061362b565b5050509392505050565b6000613675613670846147ce565b61477d565b9050808382526020820190508285602086028201111561369457600080fd5b60005b858110156136c457816136aa8882613885565b845260208401935060208301925050600181019050613697565b5050509392505050565b60006136e16136dc846147fa565b61477d565b9050828152602081018484840111156136f957600080fd5b613704848285614a31565b509392505050565b600061371f61371a8461482b565b61477d565b90508281526020810184848401111561373757600080fd5b613742848285614a31565b509392505050565b60008135905061375981615225565b92915050565b60008135905061376e8161523c565b92915050565b600082601f83011261378557600080fd5b81356137958482602086016135f6565b91505092915050565b600082601f8301126137af57600080fd5b81356137bf848260208601613662565b91505092915050565b6000813590506137d781615253565b92915050565b6000813590506137ec8161526a565b92915050565b60008135905061380181615281565b92915050565b60008151905061381681615281565b92915050565b600082601f83011261382d57600080fd5b813561383d8482602086016136ce565b91505092915050565b600082601f83011261385757600080fd5b813561386784826020860161370c565b91505092915050565b60008135905061387f81615298565b92915050565b600081359050613894816152af565b92915050565b600080604083850312156138ad57600080fd5b60006138bb8582860161374a565b92505060206138cc8582860161374a565b9150509250929050565b600080600080600060a086880312156138ee57600080fd5b60006138fc8882890161374a565b955050602061390d8882890161374a565b945050604086013567ffffffffffffffff81111561392a57600080fd5b6139368882890161379e565b935050606086013567ffffffffffffffff81111561395357600080fd5b61395f8882890161379e565b925050608086013567ffffffffffffffff81111561397c57600080fd5b6139888882890161381c565b9150509295509295909350565b600080600080600060a086880312156139ad57600080fd5b60006139bb8882890161374a565b95505060206139cc8882890161374a565b94505060406139dd88828901613885565b93505060606139ee88828901613885565b925050608086013567ffffffffffffffff811115613a0b57600080fd5b613a178882890161381c565b9150509295509295909350565b60008060408385031215613a3757600080fd5b6000613a458582860161374a565b9250506020613a56858286016137c8565b9150509250929050565b60008060408385031215613a7357600080fd5b6000613a818582860161374a565b9250506020613a9285828601613885565b9150509250929050565b60008060408385031215613aaf57600080fd5b600083013567ffffffffffffffff811115613ac957600080fd5b613ad585828601613774565b925050602083013567ffffffffffffffff811115613af257600080fd5b613afe8582860161379e565b9150509250929050565b600060208284031215613b1a57600080fd5b6000613b28848285016137c8565b91505092915050565b600060208284031215613b4357600080fd5b6000613b51848285016137dd565b91505092915050565b60008060408385031215613b6d57600080fd5b6000613b7b858286016137dd565b9250506020613b8c8582860161374a565b9150509250929050565b600060208284031215613ba857600080fd5b6000613bb6848285016137f2565b91505092915050565b600060208284031215613bd157600080fd5b6000613bdf84828501613807565b91505092915050565b60008060008060008060c08789031215613c0157600080fd5b600087013567ffffffffffffffff811115613c1b57600080fd5b613c2789828a01613846565b965050602087013567ffffffffffffffff811115613c4457600080fd5b613c5089828a01613846565b9550506040613c6189828a01613870565b9450506060613c7289828a01613870565b9350506080613c8389828a01613885565b92505060a0613c9489828a0161375f565b9150509295509295509295565b600060208284031215613cb357600080fd5b6000613cc184828501613885565b91505092915050565b60008060408385031215613cdd57600080fd5b6000613ceb85828601613885565b9250506020613cfc8582860161375f565b9150509250929050565b60008060408385031215613d1957600080fd5b6000613d2785828601613885565b925050602083013567ffffffffffffffff811115613d4457600080fd5b613d5085828601613846565b9150509250929050565b60008060408385031215613d6d57600080fd5b6000613d7b85828601613885565b9250506020613d8c85828601613870565b9150509250929050565b60008060408385031215613da957600080fd5b6000613db785828601613885565b9250506020613dc885828601613885565b9150509250929050565b6000613dde8383614254565b60208301905092915050565b613df3816149a5565b82525050565b613e0281614993565b82525050565b6000613e138261486c565b613e1d818561489a565b9350613e288361485c565b8060005b83811015613e59578151613e408882613dd2565b9750613e4b8361488d565b925050600181019050613e2c565b5085935050505092915050565b613e6f816149b7565b82525050565b613e7e816149c3565b82525050565b6000613e8f82614877565b613e9981856148ab565b9350613ea9818560208601614a40565b613eb281614c23565b840191505092915050565b6000613ec882614882565b613ed281856148c7565b9350613ee2818560208601614a40565b613eeb81614c23565b840191505092915050565b6000613f0182614882565b613f0b81856148d8565b9350613f1b818560208601614a40565b80840191505092915050565b6000613f346034836148c7565b9150613f3f82614c41565b604082019050919050565b6000613f57602f836148c7565b9150613f6282614c90565b604082019050919050565b6000613f7a6020836148c7565b9150613f8582614cdf565b602082019050919050565b6000613f9d6028836148c7565b9150613fa882614d08565b604082019050919050565b6000613fc06024836148c7565b9150613fcb82614d57565b604082019050919050565b6000613fe3602a836148c7565b9150613fee82614da6565b604082019050919050565b60006140066025836148c7565b915061401182614df5565b604082019050919050565b60006140296023836148c7565b915061403482614e44565b604082019050919050565b600061404c602a836148c7565b915061405782614e93565b604082019050919050565b600061406f6014836148c7565b915061407a82614ee2565b602082019050919050565b60006140926017836148c7565b915061409d82614f0b565b602082019050919050565b60006140b56000836148bc565b91506140c082614f34565b600082019050919050565b60006140d8601d836148c7565b91506140e382614f37565b602082019050919050565b60006140fb6017836148d8565b915061410682614f60565b601782019050919050565b600061411e6029836148c7565b915061412982614f89565b604082019050919050565b60006141416029836148c7565b915061414c82614fd8565b604082019050919050565b60006141646016836148c7565b915061416f82615027565b602082019050919050565b60006141876009836148c7565b915061419282615050565b602082019050919050565b60006141aa6028836148c7565b91506141b582615079565b604082019050919050565b60006141cd6021836148c7565b91506141d8826150c8565b604082019050919050565b60006141f06011836148d8565b91506141fb82615117565b601182019050919050565b6000614213602f836148c7565b915061421e82615140565b604082019050919050565b60208201600082015161423f6000850182614254565b50505050565b61424e816149f9565b82525050565b61425d81614a27565b82525050565b61426c81614a27565b82525050565b600061427d826140a8565b9150819050919050565b6000614292826140ee565b915061429e8285613ef6565b91506142a9826141e3565b91506142b58284613ef6565b91508190509392505050565b60006020820190506142d66000830184613df9565b92915050565b600060a0820190506142f16000830188613df9565b6142fe6020830187613df9565b81810360408301526143108186613e08565b905081810360608301526143248185613e08565b905081810360808301526143388184613e84565b90509695505050505050565b600060a0820190506143596000830188613df9565b6143666020830187613df9565b6143736040830186614263565b6143806060830185614263565b81810360808301526143928184613e84565b90509695505050505050565b600060208201905081810360008301526143b88184613e08565b905092915050565b600060408201905081810360008301526143da8185613e08565b905081810360208301526143ee8184613e08565b90509392505050565b600060208201905061440c6000830184613e66565b92915050565b60006020820190506144276000830184613e75565b92915050565b600060208201905081810360008301526144478184613ebd565b905092915050565b600060c08201905081810360008301526144698189613ebd565b9050818103602083015261447d8188613ebd565b905061448c6040830187614245565b6144996060830186614263565b6144a66080830185614229565b6144b360a0830184613dea565b979650505050505050565b600060208201905081810360008301526144d781613f27565b9050919050565b600060208201905081810360008301526144f781613f4a565b9050919050565b6000602082019050818103600083015261451781613f6d565b9050919050565b6000602082019050818103600083015261453781613f90565b9050919050565b6000602082019050818103600083015261455781613fb3565b9050919050565b6000602082019050818103600083015261457781613fd6565b9050919050565b6000602082019050818103600083015261459781613ff9565b9050919050565b600060208201905081810360008301526145b78161401c565b9050919050565b600060208201905081810360008301526145d78161403f565b9050919050565b600060208201905081810360008301526145f781614062565b9050919050565b6000602082019050818103600083015261461781614085565b9050919050565b60006020820190508181036000830152614637816140cb565b9050919050565b6000602082019050818103600083015261465781614111565b9050919050565b6000602082019050818103600083015261467781614134565b9050919050565b6000602082019050818103600083015261469781614157565b9050919050565b600060208201905081810360008301526146b78161417a565b9050919050565b600060208201905081810360008301526146d78161419d565b9050919050565b600060208201905081810360008301526146f7816141c0565b9050919050565b6000602082019050818103600083015261471781614206565b9050919050565b60006020820190506147336000830184614245565b92915050565b600060208201905061474e6000830184614263565b92915050565b60006040820190506147696000830185614263565b6147766020830184614263565b9392505050565b6000614787614798565b90506147938282614acf565b919050565b6000604051905090565b600067ffffffffffffffff8211156147bd576147bc614bd2565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156147e9576147e8614bd2565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561481557614814614bd2565b5b61481e82614c23565b9050602081019050919050565b600067ffffffffffffffff82111561484657614845614bd2565b5b61484f82614c23565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006148ee82614a27565b91506148f983614a27565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561492e5761492d614b74565b5b828201905092915050565b600061494482614a27565b915061494f83614a27565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561498857614987614b74565b5b828202905092915050565b600061499e82614a07565b9050919050565b60006149b082614a07565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614a5e578082015181840152602081019050614a43565b83811115614a6d576000848401525b50505050565b6000614a7e82614a27565b91506000821415614a9257614a91614b74565b5b600182039050919050565b60006002820490506001821680614ab557607f821691505b60208210811415614ac957614ac8614ba3565b5b50919050565b614ad882614c23565b810181811067ffffffffffffffff82111715614af757614af6614bd2565b5b80604052505050565b6000614b0b826149f9565b915061ffff821415614b2057614b1f614b74565b5b600182019050919050565b6000614b3682614a27565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b6957614b68614b74565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d1115614c205760046000803e614c1d600051614c34565b90505b90565b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206e6f7220617070726f7665640000000000000000000000000000000000602082015250565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e74207061796d656e74000000000000000000000000600082015250565b7f63616e206d696e74206f6e6c79206f6e6520746f6b656e000000000000000000600082015250565b50565b7f746f6b656e4964206861642072656163686564206d617820636f756e74000000600082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f5f746f6b656e4964206973206e6f742065786973747300000000000000000000600082015250565b7f6e6f742061646d696e0000000000000000000000000000000000000000000000600082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b600060443d101561519f57615222565b6151a7614798565b60043d036004823e80513d602482011167ffffffffffffffff821117156151cf575050615222565b808201805167ffffffffffffffff8111156151ed5750505050615222565b80602083010160043d03850181111561520a575050505050615222565b61521982602001850186614acf565b82955050505050505b90565b61522e81614993565b811461523957600080fd5b50565b615245816149a5565b811461525057600080fd5b50565b61525c816149b7565b811461526757600080fd5b50565b615273816149c3565b811461527e57600080fd5b50565b61528a816149cd565b811461529557600080fd5b50565b6152a1816149f9565b81146152ac57600080fd5b50565b6152b881614a27565b81146152c357600080fd5b5056fea264697066735822122042550231a0b5cb5d4b30ce225f9b0cdd456627f9d24c21d698cbb6f7389541ab64736f6c63430008040033

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.