ETH Price: $2,604.39 (+0.16%)
Gas: 1 Gwei

Token

 

Overview

Max Total Supply

23

Holders

22

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
joshglobal.eth
0x1B366f42D0478aFf04C77105B4E994fa574DAdcA
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Dosa1

Compiler Version
v0.8.2+commit.661d1103

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : dosa1.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

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

contract Dosa1 is ERC1155, Ownable {

    address public constant HANDAO = 0xe189a4C9F6468dFb7bBcFf246fa358CdEEAe2071;

    uint256 public constant LO = 0;
    uint256 public constant LK = 1;
    uint256 public constant DH = 2;
    uint256 public constant SH = 3;
    uint256 public constant KK = 4;
    uint256 public constant JG = 5;
    uint256 public constant JM = 6;
    uint256 public constant MM = 7;
    uint256 public constant JL = 8;
    uint256 public constant DK = 9;
    uint256 public constant HJ = 10;
    uint256 public constant YK = 11;
    uint256 public constant YL = 12;
    uint256 public constant JP = 13;
    uint256 public constant DL = 14;
    uint256 public constant SY = 15;
    uint256 public constant WJ = 16;
    uint256 public constant MH = 17;
    uint256 public constant BG = 18;
    uint256 public constant JY = 19;
    uint256 public constant JH = 20;
    uint256 public constant EL = 21;
    uint256 public constant JO = 22;


    mapping (uint256 => string) private _uris;

    constructor() ERC1155("https://2miziqycmdjpozf7oucf73aswbogpddkv5y7m65u5ogk2wpt6nla.arweave.net/0xGUQwJg0vdkv3UEX-wSsFxnjGqvcfZ7tOuMrVnz81Y/{id}.json") {
      _mint(HANDAO, LO, 1, "");
      _mint(HANDAO, LK, 1, "");
      _mint(HANDAO, DH, 1, "");
      _mint(HANDAO, SH, 1, "");
      _mint(HANDAO, KK, 1, "");
      _mint(HANDAO, JG, 1, "");
      _mint(HANDAO, JM, 1, "");
      _mint(HANDAO, MM, 1, "");
      _mint(HANDAO, JL, 1, "");
      _mint(HANDAO, DK, 1, "");
      _mint(HANDAO, HJ, 1, "");
      _mint(HANDAO, YK, 1, "");
      _mint(HANDAO, YL, 1, "");
      _mint(HANDAO, JP, 1, "");
      _mint(HANDAO, DL, 1, "");
      _mint(HANDAO, SY, 1, "");
      _mint(HANDAO, WJ, 1, "");
      _mint(HANDAO, MH, 1, "");
      _mint(HANDAO, BG, 1, "");
      _mint(HANDAO, JY, 1, "");
      _mint(HANDAO, JH, 1, "");
      _mint(HANDAO, EL, 1, "");
      _mint(HANDAO, JO, 1, "");

    }

    function uri(uint256 tokenId) override public view returns (string memory) {
      return(
        string(abi.encodePacked(
          "https://2miziqycmdjpozf7oucf73aswbogpddkv5y7m65u5ogk2wpt6nla.arweave.net/0xGUQwJg0vdkv3UEX-wSsFxnjGqvcfZ7tOuMrVnz81Y/",
          Strings.toString(tokenId),
          ".json"
          ))
        );
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(_msgSender() != operator, "ERC1155: setting approval status for self");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

        return array;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC1155.sol";

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"BG","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DK","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"HANDAO","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"HJ","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"JG","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"JH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"JL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"JM","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"JO","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"JP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"JY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"KK","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LK","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LO","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MM","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WJ","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"YK","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"YL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506040518060a00160405280607e8152602001620044b5607e91396200003d816200058260201b60201c565b506200005e620000526200059e60201b60201c565b620005a660201b60201c565b6200009773e189a4c9f6468dfb7bbcff246fa358cdeeae207160006001604051806020016040528060008152506200066c60201b60201c565b620000cf73e189a4c9f6468dfb7bbcff246fa358cdeeae2071600180604051806020016040528060008152506200066c60201b60201c565b6200010873e189a4c9f6468dfb7bbcff246fa358cdeeae207160026001604051806020016040528060008152506200066c60201b60201c565b6200014173e189a4c9f6468dfb7bbcff246fa358cdeeae207160036001604051806020016040528060008152506200066c60201b60201c565b6200017a73e189a4c9f6468dfb7bbcff246fa358cdeeae207160046001604051806020016040528060008152506200066c60201b60201c565b620001b373e189a4c9f6468dfb7bbcff246fa358cdeeae207160056001604051806020016040528060008152506200066c60201b60201c565b620001ec73e189a4c9f6468dfb7bbcff246fa358cdeeae207160066001604051806020016040528060008152506200066c60201b60201c565b6200022573e189a4c9f6468dfb7bbcff246fa358cdeeae207160076001604051806020016040528060008152506200066c60201b60201c565b6200025e73e189a4c9f6468dfb7bbcff246fa358cdeeae207160086001604051806020016040528060008152506200066c60201b60201c565b6200029773e189a4c9f6468dfb7bbcff246fa358cdeeae207160096001604051806020016040528060008152506200066c60201b60201c565b620002d073e189a4c9f6468dfb7bbcff246fa358cdeeae2071600a6001604051806020016040528060008152506200066c60201b60201c565b6200030973e189a4c9f6468dfb7bbcff246fa358cdeeae2071600b6001604051806020016040528060008152506200066c60201b60201c565b6200034273e189a4c9f6468dfb7bbcff246fa358cdeeae2071600c6001604051806020016040528060008152506200066c60201b60201c565b6200037b73e189a4c9f6468dfb7bbcff246fa358cdeeae2071600d6001604051806020016040528060008152506200066c60201b60201c565b620003b473e189a4c9f6468dfb7bbcff246fa358cdeeae2071600e6001604051806020016040528060008152506200066c60201b60201c565b620003ed73e189a4c9f6468dfb7bbcff246fa358cdeeae2071600f6001604051806020016040528060008152506200066c60201b60201c565b6200042673e189a4c9f6468dfb7bbcff246fa358cdeeae207160106001604051806020016040528060008152506200066c60201b60201c565b6200045f73e189a4c9f6468dfb7bbcff246fa358cdeeae207160116001604051806020016040528060008152506200066c60201b60201c565b6200049873e189a4c9f6468dfb7bbcff246fa358cdeeae207160126001604051806020016040528060008152506200066c60201b60201c565b620004d173e189a4c9f6468dfb7bbcff246fa358cdeeae207160136001604051806020016040528060008152506200066c60201b60201c565b6200050a73e189a4c9f6468dfb7bbcff246fa358cdeeae207160146001604051806020016040528060008152506200066c60201b60201c565b6200054373e189a4c9f6468dfb7bbcff246fa358cdeeae207160156001604051806020016040528060008152506200066c60201b60201c565b6200057c73e189a4c9f6468dfb7bbcff246fa358cdeeae207160166001604051806020016040528060008152506200066c60201b60201c565b6200126a565b80600290805190602001906200059a92919062000b1f565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415620006df576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006d69062000df7565b60405180910390fd5b6000620006f16200059e60201b60201c565b90506200072a816000876200070c886200083160201b60201c565b6200071d886200083160201b60201c565b87620008fa60201b60201c565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200078b919062000e88565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516200080b92919062000e19565b60405180910390a46200082a816000878787876200090260201b60201c565b5050505050565b60606000600167ffffffffffffffff81111562000877577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015620008a65781602001602082028036833780820191505090505b5090508281600081518110620008e5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b505050505050565b6200092e8473ffffffffffffffffffffffffffffffffffffffff1662000b0c60201b62000f861760201c565b1562000b04578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016200097795949392919062000d2b565b602060405180830381600087803b1580156200099257600080fd5b505af1925050508015620009c657506040513d601f19601f82011682018060405250810190620009c3919062000be6565b60015b62000a7857620009d56200107e565b806308c379a0141562000a395750620009ed620011ae565b80620009fa575062000a3b565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a30919062000d8f565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a6f9062000db3565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161462000b02576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000af99062000dd5565b60405180910390fd5b505b505050505050565b600080823b905060008111915050919050565b82805462000b2d9062000f85565b90600052602060002090601f01602090048101928262000b51576000855562000b9d565b82601f1062000b6c57805160ff191683800117855562000b9d565b8280016001018555821562000b9d579182015b8281111562000b9c57825182559160200191906001019062000b7f565b5b50905062000bac919062000bb0565b5090565b5b8082111562000bcb57600081600090555060010162000bb1565b5090565b60008151905062000be08162001250565b92915050565b60006020828403121562000bf957600080fd5b600062000c098482850162000bcf565b91505092915050565b62000c1d8162000ee5565b82525050565b600062000c308262000e50565b62000c3c818562000e66565b935062000c4e81856020860162000f4f565b62000c5981620010a3565b840191505092915050565b600062000c718262000e5b565b62000c7d818562000e77565b935062000c8f81856020860162000f4f565b62000c9a81620010a3565b840191505092915050565b600062000cb460348362000e77565b915062000cc182620010c1565b604082019050919050565b600062000cdb60288362000e77565b915062000ce88262001110565b604082019050919050565b600062000d0260218362000e77565b915062000d0f826200115f565b604082019050919050565b62000d258162000f45565b82525050565b600060a08201905062000d42600083018862000c12565b62000d51602083018762000c12565b62000d60604083018662000d1a565b62000d6f606083018562000d1a565b818103608083015262000d83818462000c23565b90509695505050505050565b6000602082019050818103600083015262000dab818462000c64565b905092915050565b6000602082019050818103600083015262000dce8162000ca5565b9050919050565b6000602082019050818103600083015262000df08162000ccc565b9050919050565b6000602082019050818103600083015262000e128162000cf3565b9050919050565b600060408201905062000e30600083018562000d1a565b62000e3f602083018462000d1a565b9392505050565b6000604051905090565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000e958262000f45565b915062000ea28362000f45565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000eda5762000ed962000ff1565b5b828201905092915050565b600062000ef28262000f25565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000f6f57808201518184015260208101905062000f52565b8381111562000f7f576000848401525b50505050565b6000600282049050600182168062000f9e57607f821691505b6020821081141562000fb55762000fb462001020565b5b50919050565b62000fc682620010a3565b810181811067ffffffffffffffff8211171562000fe85762000fe76200104f565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d1115620010a05760046000803e6200109d600051620010b4565b90505b90565b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d1015620011c0576200124d565b620011ca62000e46565b60043d036004823e80513d602482011167ffffffffffffffff82111715620011f45750506200124d565b808201805167ffffffffffffffff8111156200121457505050506200124d565b80602083010160043d038501811115620012335750505050506200124d565b620012448260200185018662000fbb565b82955050505050505b90565b6200125b8162000ef9565b81146200126757600080fd5b50565b61323b806200127a6000396000f3fe608060405234801561001057600080fd5b50600436106102105760003560e01c806386333d5b11610125578063d4ed3aac116100ad578063f242432a1161007c578063f242432a146105db578063f2fde38b146105f7578063fc025c9914610613578063fd37cb4614610631578063fd4aac091461064f57610210565b8063d4ed3aac14610551578063e788796a1461056f578063e985e9c51461058d578063eebcc26d146105bd57610210565b8063974db6b2116100f4578063974db6b2146104bd578063a22cb465146104db578063afd27bf5146104f7578063b7e467cb14610515578063be5607901461053357610210565b806386333d5b146104455780638add4977146104635780638afc8e8a146104815780638da5cb5b1461049f57610210565b80633a21c719116101a85780636eb0343a116101775780636eb0343a146103c3578063715018a6146103e157806375b839d0146103eb578063778a73a414610409578063825063e31461042757610210565b80633a21c7191461033957806347a9a87a146103575780634e1273f41461037557806368d2be8f146103a557610210565b806326d59288116101e457806326d59288146102c35780632da65486146102e15780632eb2c2d6146102ff5780632f176c1f1461031b57610210565b8062fdd58e1461021557806301ffc9a7146102455780630e89341c146102755780630fab1884146102a5575b600080fd5b61022f600480360381019061022a91906120e8565b61066d565b60405161023c919061286a565b60405180910390f35b61025f600480360381019061025a9190612190565b610736565b60405161026c91906126ad565b60405180910390f35b61028f600480360381019061028a91906121e2565b610818565b60405161029c91906126c8565b60405180910390f35b6102ad610849565b6040516102ba919061286a565b60405180910390f35b6102cb61084e565b6040516102d8919061286a565b60405180910390f35b6102e9610853565b6040516102f69190612577565b60405180910390f35b61031960048036038101906103149190611f5e565b61086b565b005b61032361090c565b604051610330919061286a565b60405180910390f35b610341610911565b60405161034e919061286a565b60405180910390f35b61035f610916565b60405161036c919061286a565b60405180910390f35b61038f600480360381019061038a9190612124565b61091b565b60405161039c9190612654565b60405180910390f35b6103ad610acc565b6040516103ba919061286a565b60405180910390f35b6103cb610ad1565b6040516103d8919061286a565b60405180910390f35b6103e9610ad6565b005b6103f3610b5e565b604051610400919061286a565b60405180910390f35b610411610b63565b60405161041e919061286a565b60405180910390f35b61042f610b68565b60405161043c919061286a565b60405180910390f35b61044d610b6d565b60405161045a919061286a565b60405180910390f35b61046b610b72565b604051610478919061286a565b60405180910390f35b610489610b77565b604051610496919061286a565b60405180910390f35b6104a7610b7c565b6040516104b49190612577565b60405180910390f35b6104c5610ba6565b6040516104d2919061286a565b60405180910390f35b6104f560048036038101906104f091906120ac565b610bab565b005b6104ff610d2c565b60405161050c919061286a565b60405180910390f35b61051d610d31565b60405161052a919061286a565b60405180910390f35b61053b610d36565b604051610548919061286a565b60405180910390f35b610559610d3b565b604051610566919061286a565b60405180910390f35b610577610d40565b604051610584919061286a565b60405180910390f35b6105a760048036038101906105a29190611f22565b610d45565b6040516105b491906126ad565b60405180910390f35b6105c5610dd9565b6040516105d2919061286a565b60405180910390f35b6105f560048036038101906105f0919061201d565b610dde565b005b610611600480360381019061060c9190611ef9565b610e7f565b005b61061b610f77565b604051610628919061286a565b60405180910390f35b610639610f7c565b604051610646919061286a565b60405180910390f35b610657610f81565b604051610664919061286a565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d59061272a565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061080157507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610811575061081082610f99565b5b9050919050565b606061082382611003565b604051602001610833919061254a565b6040516020818303038152906040529050919050565b600b81565b601681565b73e189a4c9f6468dfb7bbcff246fa358cdeeae207181565b6108736111b0565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806108b957506108b8856108b36111b0565b610d45565b5b6108f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ef906127aa565b60405180910390fd5b61090585858585856111b8565b5050505050565b601581565b600781565b600381565b60608151835114610961576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109589061282a565b60405180910390fd5b6000835167ffffffffffffffff8111156109a4577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156109d25781602001602082028036833780820191505090505b50905060005b8451811015610ac157610a6b858281518110610a1d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110610a5e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015161066d565b828281518110610aa4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080610aba90612b7a565b90506109d8565b508091505092915050565b600081565b600881565b610ade6111b0565b73ffffffffffffffffffffffffffffffffffffffff16610afc610b7c565b73ffffffffffffffffffffffffffffffffffffffff1614610b52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b49906127ea565b60405180910390fd5b610b5c6000611518565b565b600981565b600a81565b600481565b601381565b600581565b601181565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601081565b8173ffffffffffffffffffffffffffffffffffffffff16610bca6111b0565b73ffffffffffffffffffffffffffffffffffffffff161415610c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c189061280a565b60405180910390fd5b8060016000610c2e6111b0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610cdb6111b0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610d2091906126ad565b60405180910390a35050565b600f81565b600281565b601281565b600d81565b600681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601481565b610de66111b0565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610e2c5750610e2b85610e266111b0565b610d45565b5b610e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e629061276a565b60405180910390fd5b610e7885858585856115de565b5050505050565b610e876111b0565b73ffffffffffffffffffffffffffffffffffffffff16610ea5610b7c565b73ffffffffffffffffffffffffffffffffffffffff1614610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef2906127ea565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f629061274a565b60405180910390fd5b610f7481611518565b50565b600181565b600e81565b600c81565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6060600082141561104b576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506111ab565b600082905060005b6000821461107d57808061106690612b7a565b915050600a826110769190612a2e565b9150611053565b60008167ffffffffffffffff8111156110bf577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156110f15781602001600182028036833780820191505090505b5090505b600085146111a45760018261110a9190612a5f565b9150600a856111199190612bc3565b603061112591906129d8565b60f81b818381518110611161577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561119d9190612a2e565b94506110f5565b8093505050505b919050565b600033905090565b81518351146111fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f39061284a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561126c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112639061278a565b60405180910390fd5b60006112766111b0565b9050611286818787878787611860565b60005b84518110156114835760008582815181106112cd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000858381518110611312577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113aa906127ca565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461146891906129d8565b925050819055505050508061147c90612b7a565b9050611289565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516114fa929190612676565b60405180910390a4611510818787878787611868565b505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561164e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116459061278a565b60405180910390fd5b60006116586111b0565b905061167881878761166988611a4f565b61167288611a4f565b87611860565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508381101561170f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611706906127ca565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117c491906129d8565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051611841929190612885565b60405180910390a4611857828888888888611b15565b50505050505050565b505050505050565b6118878473ffffffffffffffffffffffffffffffffffffffff16610f86565b15611a47578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016118cd959493929190612592565b602060405180830381600087803b1580156118e757600080fd5b505af192505050801561191857506040513d601f19601f8201168201806040525081019061191591906121b9565b60015b6119be57611924612c81565b806308c379a014156119815750611939613113565b806119445750611983565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197891906126c8565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b5906126ea565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3c9061270a565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115611a94577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611ac25781602001602082028036833780820191505090505b5090508281600081518110611b00577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b611b348473ffffffffffffffffffffffffffffffffffffffff16610f86565b15611cf4578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611b7a9594939291906125fa565b602060405180830381600087803b158015611b9457600080fd5b505af1925050508015611bc557506040513d601f19601f82011682018060405250810190611bc291906121b9565b60015b611c6b57611bd1612c81565b806308c379a01415611c2e5750611be6613113565b80611bf15750611c30565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2591906126c8565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c62906126ea565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce99061270a565b60405180910390fd5b505b505050505050565b6000611d0f611d0a846128d3565b6128ae565b90508083825260208201905082856020860282011115611d2e57600080fd5b60005b85811015611d5e5781611d448882611e12565b845260208401935060208301925050600181019050611d31565b5050509392505050565b6000611d7b611d76846128ff565b6128ae565b90508083825260208201905082856020860282011115611d9a57600080fd5b60005b85811015611dca5781611db08882611ee4565b845260208401935060208301925050600181019050611d9d565b5050509392505050565b6000611de7611de28461292b565b6128ae565b905082815260208101848484011115611dff57600080fd5b611e0a848285612b07565b509392505050565b600081359050611e21816131a9565b92915050565b600082601f830112611e3857600080fd5b8135611e48848260208601611cfc565b91505092915050565b600082601f830112611e6257600080fd5b8135611e72848260208601611d68565b91505092915050565b600081359050611e8a816131c0565b92915050565b600081359050611e9f816131d7565b92915050565b600081519050611eb4816131d7565b92915050565b600082601f830112611ecb57600080fd5b8135611edb848260208601611dd4565b91505092915050565b600081359050611ef3816131ee565b92915050565b600060208284031215611f0b57600080fd5b6000611f1984828501611e12565b91505092915050565b60008060408385031215611f3557600080fd5b6000611f4385828601611e12565b9250506020611f5485828601611e12565b9150509250929050565b600080600080600060a08688031215611f7657600080fd5b6000611f8488828901611e12565b9550506020611f9588828901611e12565b945050604086013567ffffffffffffffff811115611fb257600080fd5b611fbe88828901611e51565b935050606086013567ffffffffffffffff811115611fdb57600080fd5b611fe788828901611e51565b925050608086013567ffffffffffffffff81111561200457600080fd5b61201088828901611eba565b9150509295509295909350565b600080600080600060a0868803121561203557600080fd5b600061204388828901611e12565b955050602061205488828901611e12565b945050604061206588828901611ee4565b935050606061207688828901611ee4565b925050608086013567ffffffffffffffff81111561209357600080fd5b61209f88828901611eba565b9150509295509295909350565b600080604083850312156120bf57600080fd5b60006120cd85828601611e12565b92505060206120de85828601611e7b565b9150509250929050565b600080604083850312156120fb57600080fd5b600061210985828601611e12565b925050602061211a85828601611ee4565b9150509250929050565b6000806040838503121561213757600080fd5b600083013567ffffffffffffffff81111561215157600080fd5b61215d85828601611e27565b925050602083013567ffffffffffffffff81111561217a57600080fd5b61218685828601611e51565b9150509250929050565b6000602082840312156121a257600080fd5b60006121b084828501611e90565b91505092915050565b6000602082840312156121cb57600080fd5b60006121d984828501611ea5565b91505092915050565b6000602082840312156121f457600080fd5b600061220284828501611ee4565b91505092915050565b6000612217838361252c565b60208301905092915050565b61222c81612a93565b82525050565b600061223d8261296c565b612247818561299a565b93506122528361295c565b8060005b8381101561228357815161226a888261220b565b97506122758361298d565b925050600181019050612256565b5085935050505092915050565b61229981612aa5565b82525050565b60006122aa82612977565b6122b481856129ab565b93506122c4818560208601612b16565b6122cd81612ca3565b840191505092915050565b60006122e382612982565b6122ed81856129bc565b93506122fd818560208601612b16565b61230681612ca3565b840191505092915050565b600061231c82612982565b61232681856129cd565b9350612336818560208601612b16565b80840191505092915050565b600061234f6034836129bc565b915061235a82612cc1565b604082019050919050565b60006123726028836129bc565b915061237d82612d10565b604082019050919050565b60006123956075836129cd565b91506123a082612d5f565b607582019050919050565b60006123b8602b836129bc565b91506123c382612dfa565b604082019050919050565b60006123db6026836129bc565b91506123e682612e49565b604082019050919050565b60006123fe6029836129bc565b915061240982612e98565b604082019050919050565b60006124216025836129bc565b915061242c82612ee7565b604082019050919050565b60006124446032836129bc565b915061244f82612f36565b604082019050919050565b6000612467602a836129bc565b915061247282612f85565b604082019050919050565b600061248a6005836129cd565b915061249582612fd4565b600582019050919050565b60006124ad6020836129bc565b91506124b882612ffd565b602082019050919050565b60006124d06029836129bc565b91506124db82613026565b604082019050919050565b60006124f36029836129bc565b91506124fe82613075565b604082019050919050565b60006125166028836129bc565b9150612521826130c4565b604082019050919050565b61253581612afd565b82525050565b61254481612afd565b82525050565b600061255582612388565b91506125618284612311565b915061256c8261247d565b915081905092915050565b600060208201905061258c6000830184612223565b92915050565b600060a0820190506125a76000830188612223565b6125b46020830187612223565b81810360408301526125c68186612232565b905081810360608301526125da8185612232565b905081810360808301526125ee818461229f565b90509695505050505050565b600060a08201905061260f6000830188612223565b61261c6020830187612223565b612629604083018661253b565b612636606083018561253b565b8181036080830152612648818461229f565b90509695505050505050565b6000602082019050818103600083015261266e8184612232565b905092915050565b600060408201905081810360008301526126908185612232565b905081810360208301526126a48184612232565b90509392505050565b60006020820190506126c26000830184612290565b92915050565b600060208201905081810360008301526126e281846122d8565b905092915050565b6000602082019050818103600083015261270381612342565b9050919050565b6000602082019050818103600083015261272381612365565b9050919050565b60006020820190508181036000830152612743816123ab565b9050919050565b60006020820190508181036000830152612763816123ce565b9050919050565b60006020820190508181036000830152612783816123f1565b9050919050565b600060208201905081810360008301526127a381612414565b9050919050565b600060208201905081810360008301526127c381612437565b9050919050565b600060208201905081810360008301526127e38161245a565b9050919050565b60006020820190508181036000830152612803816124a0565b9050919050565b60006020820190508181036000830152612823816124c3565b9050919050565b60006020820190508181036000830152612843816124e6565b9050919050565b6000602082019050818103600083015261286381612509565b9050919050565b600060208201905061287f600083018461253b565b92915050565b600060408201905061289a600083018561253b565b6128a7602083018461253b565b9392505050565b60006128b86128c9565b90506128c48282612b49565b919050565b6000604051905090565b600067ffffffffffffffff8211156128ee576128ed612c52565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561291a57612919612c52565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561294657612945612c52565b5b61294f82612ca3565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006129e382612afd565b91506129ee83612afd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612a2357612a22612bf4565b5b828201905092915050565b6000612a3982612afd565b9150612a4483612afd565b925082612a5457612a53612c23565b5b828204905092915050565b6000612a6a82612afd565b9150612a7583612afd565b925082821015612a8857612a87612bf4565b5b828203905092915050565b6000612a9e82612add565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612b34578082015181840152602081019050612b19565b83811115612b43576000848401525b50505050565b612b5282612ca3565b810181811067ffffffffffffffff82111715612b7157612b70612c52565b5b80604052505050565b6000612b8582612afd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612bb857612bb7612bf4565b5b600182019050919050565b6000612bce82612afd565b9150612bd983612afd565b925082612be957612be8612c23565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d1115612ca05760046000803e612c9d600051612cb4565b90505b90565b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f68747470733a2f2f326d697a697179636d646a706f7a66376f7563663733617360008201527f77626f677064646b763579376d363575356f676b32777074366e6c612e61727760208201527f656176652e6e65742f3078475551774a673076646b76335545582d775373467860408201527f6e6a47717663665a37744f754d72566e7a3831592f0000000000000000000000606082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b600060443d1015613123576131a6565b61312b6128c9565b60043d036004823e80513d602482011167ffffffffffffffff821117156131535750506131a6565b808201805167ffffffffffffffff81111561317157505050506131a6565b80602083010160043d03850181111561318e5750505050506131a6565b61319d82602001850186612b49565b82955050505050505b90565b6131b281612a93565b81146131bd57600080fd5b50565b6131c981612aa5565b81146131d457600080fd5b50565b6131e081612ab1565b81146131eb57600080fd5b50565b6131f781612afd565b811461320257600080fd5b5056fea26469706673582212205e3315484845cd0021aad39ce23915b70abd234ea00d60df88104421024ee66164736f6c6343000802003368747470733a2f2f326d697a697179636d646a706f7a66376f7563663733617377626f677064646b763579376d363575356f676b32777074366e6c612e617277656176652e6e65742f3078475551774a673076646b76335545582d77537346786e6a47717663665a37744f754d72566e7a3831592f7b69647d2e6a736f6e

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102105760003560e01c806386333d5b11610125578063d4ed3aac116100ad578063f242432a1161007c578063f242432a146105db578063f2fde38b146105f7578063fc025c9914610613578063fd37cb4614610631578063fd4aac091461064f57610210565b8063d4ed3aac14610551578063e788796a1461056f578063e985e9c51461058d578063eebcc26d146105bd57610210565b8063974db6b2116100f4578063974db6b2146104bd578063a22cb465146104db578063afd27bf5146104f7578063b7e467cb14610515578063be5607901461053357610210565b806386333d5b146104455780638add4977146104635780638afc8e8a146104815780638da5cb5b1461049f57610210565b80633a21c719116101a85780636eb0343a116101775780636eb0343a146103c3578063715018a6146103e157806375b839d0146103eb578063778a73a414610409578063825063e31461042757610210565b80633a21c7191461033957806347a9a87a146103575780634e1273f41461037557806368d2be8f146103a557610210565b806326d59288116101e457806326d59288146102c35780632da65486146102e15780632eb2c2d6146102ff5780632f176c1f1461031b57610210565b8062fdd58e1461021557806301ffc9a7146102455780630e89341c146102755780630fab1884146102a5575b600080fd5b61022f600480360381019061022a91906120e8565b61066d565b60405161023c919061286a565b60405180910390f35b61025f600480360381019061025a9190612190565b610736565b60405161026c91906126ad565b60405180910390f35b61028f600480360381019061028a91906121e2565b610818565b60405161029c91906126c8565b60405180910390f35b6102ad610849565b6040516102ba919061286a565b60405180910390f35b6102cb61084e565b6040516102d8919061286a565b60405180910390f35b6102e9610853565b6040516102f69190612577565b60405180910390f35b61031960048036038101906103149190611f5e565b61086b565b005b61032361090c565b604051610330919061286a565b60405180910390f35b610341610911565b60405161034e919061286a565b60405180910390f35b61035f610916565b60405161036c919061286a565b60405180910390f35b61038f600480360381019061038a9190612124565b61091b565b60405161039c9190612654565b60405180910390f35b6103ad610acc565b6040516103ba919061286a565b60405180910390f35b6103cb610ad1565b6040516103d8919061286a565b60405180910390f35b6103e9610ad6565b005b6103f3610b5e565b604051610400919061286a565b60405180910390f35b610411610b63565b60405161041e919061286a565b60405180910390f35b61042f610b68565b60405161043c919061286a565b60405180910390f35b61044d610b6d565b60405161045a919061286a565b60405180910390f35b61046b610b72565b604051610478919061286a565b60405180910390f35b610489610b77565b604051610496919061286a565b60405180910390f35b6104a7610b7c565b6040516104b49190612577565b60405180910390f35b6104c5610ba6565b6040516104d2919061286a565b60405180910390f35b6104f560048036038101906104f091906120ac565b610bab565b005b6104ff610d2c565b60405161050c919061286a565b60405180910390f35b61051d610d31565b60405161052a919061286a565b60405180910390f35b61053b610d36565b604051610548919061286a565b60405180910390f35b610559610d3b565b604051610566919061286a565b60405180910390f35b610577610d40565b604051610584919061286a565b60405180910390f35b6105a760048036038101906105a29190611f22565b610d45565b6040516105b491906126ad565b60405180910390f35b6105c5610dd9565b6040516105d2919061286a565b60405180910390f35b6105f560048036038101906105f0919061201d565b610dde565b005b610611600480360381019061060c9190611ef9565b610e7f565b005b61061b610f77565b604051610628919061286a565b60405180910390f35b610639610f7c565b604051610646919061286a565b60405180910390f35b610657610f81565b604051610664919061286a565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d59061272a565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061080157507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610811575061081082610f99565b5b9050919050565b606061082382611003565b604051602001610833919061254a565b6040516020818303038152906040529050919050565b600b81565b601681565b73e189a4c9f6468dfb7bbcff246fa358cdeeae207181565b6108736111b0565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806108b957506108b8856108b36111b0565b610d45565b5b6108f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ef906127aa565b60405180910390fd5b61090585858585856111b8565b5050505050565b601581565b600781565b600381565b60608151835114610961576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109589061282a565b60405180910390fd5b6000835167ffffffffffffffff8111156109a4577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156109d25781602001602082028036833780820191505090505b50905060005b8451811015610ac157610a6b858281518110610a1d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110610a5e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015161066d565b828281518110610aa4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080610aba90612b7a565b90506109d8565b508091505092915050565b600081565b600881565b610ade6111b0565b73ffffffffffffffffffffffffffffffffffffffff16610afc610b7c565b73ffffffffffffffffffffffffffffffffffffffff1614610b52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b49906127ea565b60405180910390fd5b610b5c6000611518565b565b600981565b600a81565b600481565b601381565b600581565b601181565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601081565b8173ffffffffffffffffffffffffffffffffffffffff16610bca6111b0565b73ffffffffffffffffffffffffffffffffffffffff161415610c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c189061280a565b60405180910390fd5b8060016000610c2e6111b0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610cdb6111b0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610d2091906126ad565b60405180910390a35050565b600f81565b600281565b601281565b600d81565b600681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601481565b610de66111b0565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610e2c5750610e2b85610e266111b0565b610d45565b5b610e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e629061276a565b60405180910390fd5b610e7885858585856115de565b5050505050565b610e876111b0565b73ffffffffffffffffffffffffffffffffffffffff16610ea5610b7c565b73ffffffffffffffffffffffffffffffffffffffff1614610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef2906127ea565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f629061274a565b60405180910390fd5b610f7481611518565b50565b600181565b600e81565b600c81565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6060600082141561104b576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506111ab565b600082905060005b6000821461107d57808061106690612b7a565b915050600a826110769190612a2e565b9150611053565b60008167ffffffffffffffff8111156110bf577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156110f15781602001600182028036833780820191505090505b5090505b600085146111a45760018261110a9190612a5f565b9150600a856111199190612bc3565b603061112591906129d8565b60f81b818381518110611161577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561119d9190612a2e565b94506110f5565b8093505050505b919050565b600033905090565b81518351146111fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f39061284a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561126c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112639061278a565b60405180910390fd5b60006112766111b0565b9050611286818787878787611860565b60005b84518110156114835760008582815181106112cd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000858381518110611312577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113aa906127ca565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461146891906129d8565b925050819055505050508061147c90612b7a565b9050611289565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516114fa929190612676565b60405180910390a4611510818787878787611868565b505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561164e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116459061278a565b60405180910390fd5b60006116586111b0565b905061167881878761166988611a4f565b61167288611a4f565b87611860565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508381101561170f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611706906127ca565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117c491906129d8565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051611841929190612885565b60405180910390a4611857828888888888611b15565b50505050505050565b505050505050565b6118878473ffffffffffffffffffffffffffffffffffffffff16610f86565b15611a47578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016118cd959493929190612592565b602060405180830381600087803b1580156118e757600080fd5b505af192505050801561191857506040513d601f19601f8201168201806040525081019061191591906121b9565b60015b6119be57611924612c81565b806308c379a014156119815750611939613113565b806119445750611983565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197891906126c8565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b5906126ea565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3c9061270a565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115611a94577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611ac25781602001602082028036833780820191505090505b5090508281600081518110611b00577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b611b348473ffffffffffffffffffffffffffffffffffffffff16610f86565b15611cf4578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611b7a9594939291906125fa565b602060405180830381600087803b158015611b9457600080fd5b505af1925050508015611bc557506040513d601f19601f82011682018060405250810190611bc291906121b9565b60015b611c6b57611bd1612c81565b806308c379a01415611c2e5750611be6613113565b80611bf15750611c30565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2591906126c8565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c62906126ea565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce99061270a565b60405180910390fd5b505b505050505050565b6000611d0f611d0a846128d3565b6128ae565b90508083825260208201905082856020860282011115611d2e57600080fd5b60005b85811015611d5e5781611d448882611e12565b845260208401935060208301925050600181019050611d31565b5050509392505050565b6000611d7b611d76846128ff565b6128ae565b90508083825260208201905082856020860282011115611d9a57600080fd5b60005b85811015611dca5781611db08882611ee4565b845260208401935060208301925050600181019050611d9d565b5050509392505050565b6000611de7611de28461292b565b6128ae565b905082815260208101848484011115611dff57600080fd5b611e0a848285612b07565b509392505050565b600081359050611e21816131a9565b92915050565b600082601f830112611e3857600080fd5b8135611e48848260208601611cfc565b91505092915050565b600082601f830112611e6257600080fd5b8135611e72848260208601611d68565b91505092915050565b600081359050611e8a816131c0565b92915050565b600081359050611e9f816131d7565b92915050565b600081519050611eb4816131d7565b92915050565b600082601f830112611ecb57600080fd5b8135611edb848260208601611dd4565b91505092915050565b600081359050611ef3816131ee565b92915050565b600060208284031215611f0b57600080fd5b6000611f1984828501611e12565b91505092915050565b60008060408385031215611f3557600080fd5b6000611f4385828601611e12565b9250506020611f5485828601611e12565b9150509250929050565b600080600080600060a08688031215611f7657600080fd5b6000611f8488828901611e12565b9550506020611f9588828901611e12565b945050604086013567ffffffffffffffff811115611fb257600080fd5b611fbe88828901611e51565b935050606086013567ffffffffffffffff811115611fdb57600080fd5b611fe788828901611e51565b925050608086013567ffffffffffffffff81111561200457600080fd5b61201088828901611eba565b9150509295509295909350565b600080600080600060a0868803121561203557600080fd5b600061204388828901611e12565b955050602061205488828901611e12565b945050604061206588828901611ee4565b935050606061207688828901611ee4565b925050608086013567ffffffffffffffff81111561209357600080fd5b61209f88828901611eba565b9150509295509295909350565b600080604083850312156120bf57600080fd5b60006120cd85828601611e12565b92505060206120de85828601611e7b565b9150509250929050565b600080604083850312156120fb57600080fd5b600061210985828601611e12565b925050602061211a85828601611ee4565b9150509250929050565b6000806040838503121561213757600080fd5b600083013567ffffffffffffffff81111561215157600080fd5b61215d85828601611e27565b925050602083013567ffffffffffffffff81111561217a57600080fd5b61218685828601611e51565b9150509250929050565b6000602082840312156121a257600080fd5b60006121b084828501611e90565b91505092915050565b6000602082840312156121cb57600080fd5b60006121d984828501611ea5565b91505092915050565b6000602082840312156121f457600080fd5b600061220284828501611ee4565b91505092915050565b6000612217838361252c565b60208301905092915050565b61222c81612a93565b82525050565b600061223d8261296c565b612247818561299a565b93506122528361295c565b8060005b8381101561228357815161226a888261220b565b97506122758361298d565b925050600181019050612256565b5085935050505092915050565b61229981612aa5565b82525050565b60006122aa82612977565b6122b481856129ab565b93506122c4818560208601612b16565b6122cd81612ca3565b840191505092915050565b60006122e382612982565b6122ed81856129bc565b93506122fd818560208601612b16565b61230681612ca3565b840191505092915050565b600061231c82612982565b61232681856129cd565b9350612336818560208601612b16565b80840191505092915050565b600061234f6034836129bc565b915061235a82612cc1565b604082019050919050565b60006123726028836129bc565b915061237d82612d10565b604082019050919050565b60006123956075836129cd565b91506123a082612d5f565b607582019050919050565b60006123b8602b836129bc565b91506123c382612dfa565b604082019050919050565b60006123db6026836129bc565b91506123e682612e49565b604082019050919050565b60006123fe6029836129bc565b915061240982612e98565b604082019050919050565b60006124216025836129bc565b915061242c82612ee7565b604082019050919050565b60006124446032836129bc565b915061244f82612f36565b604082019050919050565b6000612467602a836129bc565b915061247282612f85565b604082019050919050565b600061248a6005836129cd565b915061249582612fd4565b600582019050919050565b60006124ad6020836129bc565b91506124b882612ffd565b602082019050919050565b60006124d06029836129bc565b91506124db82613026565b604082019050919050565b60006124f36029836129bc565b91506124fe82613075565b604082019050919050565b60006125166028836129bc565b9150612521826130c4565b604082019050919050565b61253581612afd565b82525050565b61254481612afd565b82525050565b600061255582612388565b91506125618284612311565b915061256c8261247d565b915081905092915050565b600060208201905061258c6000830184612223565b92915050565b600060a0820190506125a76000830188612223565b6125b46020830187612223565b81810360408301526125c68186612232565b905081810360608301526125da8185612232565b905081810360808301526125ee818461229f565b90509695505050505050565b600060a08201905061260f6000830188612223565b61261c6020830187612223565b612629604083018661253b565b612636606083018561253b565b8181036080830152612648818461229f565b90509695505050505050565b6000602082019050818103600083015261266e8184612232565b905092915050565b600060408201905081810360008301526126908185612232565b905081810360208301526126a48184612232565b90509392505050565b60006020820190506126c26000830184612290565b92915050565b600060208201905081810360008301526126e281846122d8565b905092915050565b6000602082019050818103600083015261270381612342565b9050919050565b6000602082019050818103600083015261272381612365565b9050919050565b60006020820190508181036000830152612743816123ab565b9050919050565b60006020820190508181036000830152612763816123ce565b9050919050565b60006020820190508181036000830152612783816123f1565b9050919050565b600060208201905081810360008301526127a381612414565b9050919050565b600060208201905081810360008301526127c381612437565b9050919050565b600060208201905081810360008301526127e38161245a565b9050919050565b60006020820190508181036000830152612803816124a0565b9050919050565b60006020820190508181036000830152612823816124c3565b9050919050565b60006020820190508181036000830152612843816124e6565b9050919050565b6000602082019050818103600083015261286381612509565b9050919050565b600060208201905061287f600083018461253b565b92915050565b600060408201905061289a600083018561253b565b6128a7602083018461253b565b9392505050565b60006128b86128c9565b90506128c48282612b49565b919050565b6000604051905090565b600067ffffffffffffffff8211156128ee576128ed612c52565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561291a57612919612c52565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561294657612945612c52565b5b61294f82612ca3565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006129e382612afd565b91506129ee83612afd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612a2357612a22612bf4565b5b828201905092915050565b6000612a3982612afd565b9150612a4483612afd565b925082612a5457612a53612c23565b5b828204905092915050565b6000612a6a82612afd565b9150612a7583612afd565b925082821015612a8857612a87612bf4565b5b828203905092915050565b6000612a9e82612add565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612b34578082015181840152602081019050612b19565b83811115612b43576000848401525b50505050565b612b5282612ca3565b810181811067ffffffffffffffff82111715612b7157612b70612c52565b5b80604052505050565b6000612b8582612afd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612bb857612bb7612bf4565b5b600182019050919050565b6000612bce82612afd565b9150612bd983612afd565b925082612be957612be8612c23565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d1115612ca05760046000803e612c9d600051612cb4565b90505b90565b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f68747470733a2f2f326d697a697179636d646a706f7a66376f7563663733617360008201527f77626f677064646b763579376d363575356f676b32777074366e6c612e61727760208201527f656176652e6e65742f3078475551774a673076646b76335545582d775373467860408201527f6e6a47717663665a37744f754d72566e7a3831592f0000000000000000000000606082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b600060443d1015613123576131a6565b61312b6128c9565b60043d036004823e80513d602482011167ffffffffffffffff821117156131535750506131a6565b808201805167ffffffffffffffff81111561317157505050506131a6565b80602083010160043d03850181111561318e5750505050506131a6565b61319d82602001850186612b49565b82955050505050505b90565b6131b281612a93565b81146131bd57600080fd5b50565b6131c981612aa5565b81146131d457600080fd5b50565b6131e081612ab1565b81146131eb57600080fd5b50565b6131f781612afd565b811461320257600080fd5b5056fea26469706673582212205e3315484845cd0021aad39ce23915b70abd234ea00d60df88104421024ee66164736f6c63430008020033

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.