ETH Price: $3,364.64 (-1.52%)
Gas: 6 Gwei

Token

Paladin Pandas ()
 

Overview

Max Total Supply

0

Holders

2,155

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
bullishbearvault.eth
0xbfb4377dc4ad72f7f2505400666bc657e438cd6f
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

20% Staked - Staked NFT count: 1,962 (last updated 31/08/2022) Paladin Pandas is a collection of 10,000 hand-drawn NFT digital identities, granting you the chance to fight and farm $BAMB in Space Expedition, the Play-to-Earn and Rogue-like PvE game and Panda v. Panda, the 3D PvP action game of paladin pandas. The full game is playable now on [Paladin Pandas](https://paladinpandas.com). ERC-20 token $BAMB is listed and tradable on [Uniswap](https://app.uniswap.org/#/swap?inputCurrency=eth&outputCurrency=0x3703F712945f8111fE2C5f9aE155A52560e2065c&chain=mainnet). [Power Raffle](https://www.powerraffle.io/index) is openly accessible for winning blue chip NFTs with minimum entry fee.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
NFT

Compiler Version
v0.8.2+commit.661d1103

Optimization Enabled:
No with 200 runs

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

import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol";

contract NFT is ERC1155,Ownable, AccessControl, Pausable, ERC1155Burnable {
    bytes32 public constant URI_SETTER_ROLE = keccak256("URI_SETTER_ROLE");
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    string public name = "Paladin Pandas";
    uint256 internal nftId = 9001;

    constructor() ERC1155("https://item.ohdat.net/main-body/beastbox/") {
        _setupRole(DEFAULT_ADMIN_ROLE, msg.sender);
        _setupRole(URI_SETTER_ROLE, msg.sender);
        _setupRole(MINTER_ROLE, msg.sender);
    }


    function uri(uint256 _id)public override  view returns (string memory) {
        string memory id = uint2str(_id);
        string memory baseURI = super.uri(_id);
        return string(abi.encodePacked(baseURI,id));
    }
    function uint2str(uint _i) internal pure returns (string memory _uintAsString) {
        if (_i == 0) {
            return "0";
        }
        uint j = _i;
        uint len;
        while (j != 0) {
            len++;
            j /= 10;
        }
        bytes memory bstr = new bytes(len);
        uint k = len;
        while (_i != 0) {
            k = k-1;
            uint8 temp = (48 + uint8(_i - _i / 10 * 10));
            bytes1 b1 = bytes1(temp);
            bstr[k] = b1;
            _i /= 10;
        }
        return string(bstr);
    }


    function setURI(string memory newuri) public onlyRole(URI_SETTER_ROLE) {
        _setURI(newuri);
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function mint(address account, uint256 id, uint256 amount, bytes memory data)
    public
    onlyRole(MINTER_ROLE)
    {
        _mint(account, id, amount, data);
    }

    function mintBatch(address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data)
    public
    onlyRole(MINTER_ROLE)
    {
        _mintBatch(to, ids, amounts, data);
    }

    function mintForBatch(address[] memory _toArray,bytes memory data) public onlyRole(MINTER_ROLE){
        for (uint256 i = 0; i < _toArray.length; i++){
            _mint(_toArray[i], nftId, 1, data);
            nftId++;
        }
    }

    function _beforeTokenTransfer(address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data)
    internal
    whenNotPaused
    override
    {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);
    }

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

File 2 of 14 : ERC1155Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC1155.sol";

/**
 * @dev Extension of {ERC1155} that allows token holders to destroy both their
 * own tokens and those that they have been approved to use.
 *
 * _Available since v3.1._
 */
abstract contract ERC1155Burnable is ERC1155 {
    function burn(
        address account,
        uint256 id,
        uint256 value
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        _burn(account, id, value);
    }

    function burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory values
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        _burnBatch(account, ids, values);
    }
}

File 3 of 14 : Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

    bool private _paused;

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

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

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

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

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

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

File 4 of 14 : 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 5 of 14 : AccessControl.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    function hasRole(bytes32 role, address account) external view returns (bool);
    function getRoleAdmin(bytes32 role) external view returns (bytes32);
    function grantRole(bytes32 role, address account) external;
    function revokeRole(bytes32 role, address account) external;
    function renounceRole(bytes32 role, address account) external;
}

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

    mapping (bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

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

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

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

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

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

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

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

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

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

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

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

        _revokeRole(role, account);
    }

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

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

    function _grantRole(bytes32 role, address account) private {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

File 6 of 14 : 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(to != address(0), "ERC1155: transfer to the zero address");
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        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");
        _balances[id][from] = fromBalance - amount;
        _balances[id][to] += amount;

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

        _doSafeTransferAcceptanceCheck(operator, 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(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );

        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");
            _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 (uint 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");
        _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 (uint 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");
            _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(to).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(to).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 7 of 14 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 8 of 14 : 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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 9 of 14 : 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;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 10 of 14 : 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 11 of 14 : 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 12 of 14 : 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 13 of 14 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

File 14 of 14 : 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",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"URI_SETTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_toArray","type":"address[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mintForBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040526040518060400160405280600e81526020017f50616c6164696e2050616e6461730000000000000000000000000000000000008152506006908051906020019062000051929190620003a9565b506123296007553480156200006557600080fd5b506040518060600160405280602a815260200162005603602a913962000091816200014c60201b60201c565b50620000b2620000a66200016860201b60201c565b6200017060201b60201c565b6000600560006101000a81548160ff021916908315150217905550620000e26000801b336200023660201b60201c565b620001147f7804d923f43a17d325d77e781528e0793b2edd9890ab45fc64efd7b4b427744c336200023660201b60201c565b620001467f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6336200023660201b60201c565b620004be565b806002908051906020019062000164929190620003a9565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200024882826200024c60201b60201c565b5050565b6200025e82826200033e60201b60201c565b6200033a5760016004600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620002df6200016860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006004600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b828054620003b79062000459565b90600052602060002090601f016020900481019282620003db576000855562000427565b82601f10620003f657805160ff191683800117855562000427565b8280016001018555821562000427579182015b828111156200042657825182559160200191906001019062000409565b5b5090506200043691906200043a565b5090565b5b80821115620004555760008160009055506001016200043b565b5090565b600060028204905060018216806200047257607f821691505b602082108114156200048957620004886200048f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61513580620004ce6000396000f3fe608060405234801561001057600080fd5b50600436106101ce5760003560e01c8063715018a611610104578063a22cb465116100a2578063e985e9c511610071578063e985e9c5146104dd578063f242432a1461050d578063f2fde38b14610529578063f5298aca14610545576101ce565b8063a22cb4651461046b578063c3c2cf5e14610487578063d5391393146104a3578063d547741f146104c1576101ce565b80638456cb59116100de5780638456cb59146103f55780638da5cb5b146103ff57806391d148541461041d578063a217fddf1461044d576101ce565b8063715018a6146103b1578063731133e9146103bb5780637f345710146103d7576101ce565b80632eb2c2d6116101715780633f4ba83a1161014b5780633f4ba83a1461033d5780634e1273f4146103475780635c975abb146103775780636b20c45414610395576101ce565b80632eb2c2d6146102e95780632f2ff15d1461030557806336568abe14610321576101ce565b806306fdde03116101ad57806306fdde031461024f5780630e89341c1461026d5780631f7fdffa1461029d578063248a9ca3146102b9576101ce565b8062fdd58e146101d357806301ffc9a71461020357806302fe530514610233575b600080fd5b6101ed60048036038101906101e89190613947565b610561565b6040516101fa91906144d5565b60405180910390f35b61021d60048036038101906102189190613b8a565b61062a565b60405161022a919061421d565b60405180910390f35b61024d60048036038101906102489190613bdc565b61063c565b005b61025761067b565b6040516102649190614253565b60405180910390f35b61028760048036038101906102829190613c1d565b610709565b6040516102949190614253565b60405180910390f35b6102b760048036038101906102b29190613860565b610750565b005b6102d360048036038101906102ce9190613b25565b610795565b6040516102e09190614238565b60405180910390f35b61030360048036038101906102fe9190613693565b6107b5565b005b61031f600480360381019061031a9190613b4e565b610bab565b005b61033b60048036038101906103369190613b4e565b610bd4565b005b610345610c57565b005b610361600480360381019061035c9190613a4d565b610cdd565b60405161036e91906141c4565b60405180910390f35b61037f610e8e565b60405161038c919061421d565b60405180910390f35b6103af60048036038101906103aa91906137e1565b610ea5565b005b6103b9610f42565b005b6103d560048036038101906103d091906139d2565b610fca565b005b6103df61100f565b6040516103ec9190614238565b60405180910390f35b6103fd611033565b005b6104076110b9565b60405161041491906140e7565b60405180910390f35b61043760048036038101906104329190613b4e565b6110e3565b604051610444919061421d565b60405180910390f35b61045561114e565b6040516104629190614238565b60405180910390f35b6104856004803603810190610480919061390b565b611155565b005b6104a1600480360381019061049c9190613ab9565b6112d6565b005b6104ab611394565b6040516104b89190614238565b60405180910390f35b6104db60048036038101906104d69190613b4e565b6113b8565b005b6104f760048036038101906104f29190613657565b6113e1565b604051610504919061421d565b60405180910390f35b61052760048036038101906105229190613752565b611475565b005b610543600480360381019061053e919061362e565b61178d565b005b61055f600480360381019061055a9190613983565b611885565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156105d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c9906142f5565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600061063582611922565b9050919050565b7f7804d923f43a17d325d77e781528e0793b2edd9890ab45fc64efd7b4b427744c61066e8161066961199c565b6119a4565b61067782611a41565b5050565b60068054610688906148b7565b80601f01602080910402602001604051908101604052809291908181526020018280546106b4906148b7565b80156107015780601f106106d657610100808354040283529160200191610701565b820191906000526020600020905b8154815290600101906020018083116106e457829003601f168201915b505050505081565b6060600061071683611a5b565b9050600061072384611c30565b90508082604051602001610738929190614089565b60405160208183030381529060405292505050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66107828161077d61199c565b6119a4565b61078e85858585611cc4565b5050505050565b600060046000838152602001908152602001600020600101549050919050565b81518351146107f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f090614475565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415610869576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086090614395565b60405180910390fd5b61087161199c565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806108b757506108b6856108b161199c565b6113e1565b5b6108f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ed906143b5565b60405180910390fd5b600061090061199c565b9050610910818787878787611f2e565b60005b8451811015610b16576000858281518110610957577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600085838151811061099c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a34906143f5565b60405180910390fd5b8181610a49919061478c565b60008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610afb9190614674565b9250508190555050505080610b0f9061491a565b9050610913565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610b8d9291906141e6565b60405180910390a4610ba3818787878787611f8c565b505050505050565b610bb482610795565b610bc581610bc061199c565b6119a4565b610bcf8383612173565b505050565b610bdc61199c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c40906144b5565b60405180910390fd5b610c538282612254565b5050565b610c5f61199c565b73ffffffffffffffffffffffffffffffffffffffff16610c7d6110b9565b73ffffffffffffffffffffffffffffffffffffffff1614610cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cca90614415565b60405180910390fd5b610cdb612336565b565b60608151835114610d23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1a90614455565b60405180910390fd5b6000835167ffffffffffffffff811115610d66577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610d945781602001602082028036833780820191505090505b50905060005b8451811015610e8357610e2d858281518110610ddf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110610e20577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151610561565b828281518110610e66577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080610e7c9061491a565b9050610d9a565b508091505092915050565b6000600560009054906101000a900460ff16905090565b610ead61199c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610ef35750610ef283610eed61199c565b6113e1565b5b610f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2990614355565b60405180910390fd5b610f3d8383836123d8565b505050565b610f4a61199c565b73ffffffffffffffffffffffffffffffffffffffff16610f686110b9565b73ffffffffffffffffffffffffffffffffffffffff1614610fbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb590614415565b60405180910390fd5b610fc860006126de565b565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610ffc81610ff761199c565b6119a4565b611008858585856127a4565b5050505050565b7f7804d923f43a17d325d77e781528e0793b2edd9890ab45fc64efd7b4b427744c81565b61103b61199c565b73ffffffffffffffffffffffffffffffffffffffff166110596110b9565b73ffffffffffffffffffffffffffffffffffffffff16146110af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a690614415565b60405180910390fd5b6110b761293a565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006004600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000801b81565b8173ffffffffffffffffffffffffffffffffffffffff1661117461199c565b73ffffffffffffffffffffffffffffffffffffffff1614156111cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c290614435565b60405180910390fd5b80600160006111d861199c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661128561199c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112ca919061421d565b60405180910390a35050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66113088161130361199c565b6119a4565b60005b835181101561138e57611363848281518110611350577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516007546001866127a4565b600760008154809291906113769061491a565b919050555080806113869061491a565b91505061130b565b50505050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6113c182610795565b6113d2816113cd61199c565b6119a4565b6113dc8383612254565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156114e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114dc90614395565b60405180910390fd5b6114ed61199c565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061153357506115328561152d61199c565b6113e1565b5b611572576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156990614355565b60405180910390fd5b600061157c61199c565b905061159c81878761158d886129dd565b611596886129dd565b87611f2e565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162a906143f5565b60405180910390fd5b838161163f919061478c565b60008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116f19190614674565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62888860405161176e9291906144f0565b60405180910390a4611784828888888888612aa3565b50505050505050565b61179561199c565b73ffffffffffffffffffffffffffffffffffffffff166117b36110b9565b73ffffffffffffffffffffffffffffffffffffffff1614611809576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180090614415565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611879576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187090614315565b60405180910390fd5b611882816126de565b50565b61188d61199c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806118d357506118d2836118cd61199c565b6113e1565b5b611912576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190990614355565b60405180910390fd5b61191d838383612c8a565b505050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611995575061199482612eb0565b5b9050919050565b600033905090565b6119ae82826110e3565b611a3d576119d38173ffffffffffffffffffffffffffffffffffffffff166014612f92565b6119e18360001c6020612f92565b6040516020016119f29291906140ad565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a349190614253565b60405180910390fd5b5050565b8060029080519060200190611a57929190613311565b5050565b60606000821415611aa3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611c2b565b600082905060005b60008214611ad5578080611abe9061491a565b915050600a82611ace9190614701565b9150611aab565b60008167ffffffffffffffff811115611b17577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611b495781602001600182028036833780820191505090505b50905060008290505b60008614611c2357600181611b67919061478c565b90506000600a8088611b799190614701565b611b839190614732565b87611b8e919061478c565b6030611b9a91906146ca565b905060008160f81b905080848481518110611bde577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a88611c1a9190614701565b97505050611b52565b819450505050505b919050565b606060028054611c3f906148b7565b80601f0160208091040260200160405190810160405280929190818152602001828054611c6b906148b7565b8015611cb85780601f10611c8d57610100808354040283529160200191611cb8565b820191906000526020600020905b815481529060010190602001808311611c9b57829003601f168201915b50505050509050919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2b90614495565b60405180910390fd5b8151835114611d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6f90614475565b60405180910390fd5b6000611d8261199c565b9050611d9381600087878787611f2e565b60005b8451811015611e9857838181518110611dd8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600080878481518110611e1c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e7e9190614674565b925050819055508080611e909061491a565b915050611d96565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611f109291906141e6565b60405180910390a4611f2781600087878787611f8c565b5050505050565b611f36610e8e565b15611f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6d90614375565b60405180910390fd5b611f8486868686868661328c565b505050505050565b611fab8473ffffffffffffffffffffffffffffffffffffffff16613294565b1561216b578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611ff1959493929190614102565b602060405180830381600087803b15801561200b57600080fd5b505af192505050801561203c57506040513d601f19601f820116820180604052508101906120399190613bb3565b60015b6120e257612048614a1f565b806308c379a014156120a5575061205d614ff6565b8061206857506120a7565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209c9190614253565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d990614275565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612169576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612160906142b5565b60405180910390fd5b505b505050505050565b61217d82826110e3565b6122505760016004600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506121f561199c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61225e82826110e3565b156123325760006004600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506122d761199c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b61233e610e8e565b61237d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612374906142d5565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6123c161199c565b6040516123ce91906140e7565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612448576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243f906143d5565b60405180910390fd5b805182511461248c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248390614475565b60405180910390fd5b600061249661199c565b90506124b681856000868660405180602001604052806000815250611f2e565b60005b83518110156126585760008482815181106124fd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000848381518110612542577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156125e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125da90614335565b60405180910390fd5b81816125ef919061478c565b60008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505080806126509061491a565b9150506124b9565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516126d09291906141e6565b60405180910390a450505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612814576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280b90614495565b60405180910390fd5b600061281e61199c565b905061283f81600087612830886129dd565b612839886129dd565b87611f2e565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461289e9190614674565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161291c9291906144f0565b60405180910390a461293381600087878787612aa3565b5050505050565b612942610e8e565b15612982576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297990614375565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586129c661199c565b6040516129d391906140e7565b60405180910390a1565b60606000600167ffffffffffffffff811115612a22577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015612a505781602001602082028036833780820191505090505b5090508281600081518110612a8e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b612ac28473ffffffffffffffffffffffffffffffffffffffff16613294565b15612c82578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612b0895949392919061416a565b602060405180830381600087803b158015612b2257600080fd5b505af1925050508015612b5357506040513d601f19601f82011682018060405250810190612b509190613bb3565b60015b612bf957612b5f614a1f565b806308c379a01415612bbc5750612b74614ff6565b80612b7f5750612bbe565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb39190614253565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf090614275565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c77906142b5565b60405180910390fd5b505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cf1906143d5565b60405180910390fd5b6000612d0461199c565b9050612d3481856000612d16876129dd565b612d1f876129dd565b60405180602001604052806000815250611f2e565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015612dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc290614335565b60405180910390fd5b8281612dd7919061478c565b60008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612ea19291906144f0565b60405180910390a45050505050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612f7b57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612f8b5750612f8a826132a7565b5b9050919050565b606060006002836002612fa59190614732565b612faf9190614674565b67ffffffffffffffff811115612fee577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156130205781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061307e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110613108577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026131489190614732565b6131529190614674565b90505b600181111561323e577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106131ba577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b8282815181106131f7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806132379061488d565b9050613155565b5060008414613282576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327990614295565b60405180910390fd5b8091505092915050565b505050505050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b82805461331d906148b7565b90600052602060002090601f01602090048101928261333f5760008555613386565b82601f1061335857805160ff1916838001178555613386565b82800160010185558215613386579182015b8281111561338557825182559160200191906001019061336a565b5b5090506133939190613397565b5090565b5b808211156133b0576000816000905550600101613398565b5090565b60006133c76133c28461453e565b614519565b905080838252602082019050828560208602820111156133e657600080fd5b60005b8581101561341657816133fc8882613508565b8452602084019350602083019250506001810190506133e9565b5050509392505050565b600061343361342e8461456a565b614519565b9050808382526020820190508285602086028201111561345257600080fd5b60005b8581101561348257816134688882613619565b845260208401935060208301925050600181019050613455565b5050509392505050565b600061349f61349a84614596565b614519565b9050828152602081018484840111156134b757600080fd5b6134c284828561484b565b509392505050565b60006134dd6134d8846145c7565b614519565b9050828152602081018484840111156134f557600080fd5b61350084828561484b565b509392505050565b6000813590506135178161508c565b92915050565b600082601f83011261352e57600080fd5b813561353e8482602086016133b4565b91505092915050565b600082601f83011261355857600080fd5b8135613568848260208601613420565b91505092915050565b600081359050613580816150a3565b92915050565b600081359050613595816150ba565b92915050565b6000813590506135aa816150d1565b92915050565b6000815190506135bf816150d1565b92915050565b600082601f8301126135d657600080fd5b81356135e684826020860161348c565b91505092915050565b600082601f83011261360057600080fd5b81356136108482602086016134ca565b91505092915050565b600081359050613628816150e8565b92915050565b60006020828403121561364057600080fd5b600061364e84828501613508565b91505092915050565b6000806040838503121561366a57600080fd5b600061367885828601613508565b925050602061368985828601613508565b9150509250929050565b600080600080600060a086880312156136ab57600080fd5b60006136b988828901613508565b95505060206136ca88828901613508565b945050604086013567ffffffffffffffff8111156136e757600080fd5b6136f388828901613547565b935050606086013567ffffffffffffffff81111561371057600080fd5b61371c88828901613547565b925050608086013567ffffffffffffffff81111561373957600080fd5b613745888289016135c5565b9150509295509295909350565b600080600080600060a0868803121561376a57600080fd5b600061377888828901613508565b955050602061378988828901613508565b945050604061379a88828901613619565b93505060606137ab88828901613619565b925050608086013567ffffffffffffffff8111156137c857600080fd5b6137d4888289016135c5565b9150509295509295909350565b6000806000606084860312156137f657600080fd5b600061380486828701613508565b935050602084013567ffffffffffffffff81111561382157600080fd5b61382d86828701613547565b925050604084013567ffffffffffffffff81111561384a57600080fd5b61385686828701613547565b9150509250925092565b6000806000806080858703121561387657600080fd5b600061388487828801613508565b945050602085013567ffffffffffffffff8111156138a157600080fd5b6138ad87828801613547565b935050604085013567ffffffffffffffff8111156138ca57600080fd5b6138d687828801613547565b925050606085013567ffffffffffffffff8111156138f357600080fd5b6138ff878288016135c5565b91505092959194509250565b6000806040838503121561391e57600080fd5b600061392c85828601613508565b925050602061393d85828601613571565b9150509250929050565b6000806040838503121561395a57600080fd5b600061396885828601613508565b925050602061397985828601613619565b9150509250929050565b60008060006060848603121561399857600080fd5b60006139a686828701613508565b93505060206139b786828701613619565b92505060406139c886828701613619565b9150509250925092565b600080600080608085870312156139e857600080fd5b60006139f687828801613508565b9450506020613a0787828801613619565b9350506040613a1887828801613619565b925050606085013567ffffffffffffffff811115613a3557600080fd5b613a41878288016135c5565b91505092959194509250565b60008060408385031215613a6057600080fd5b600083013567ffffffffffffffff811115613a7a57600080fd5b613a868582860161351d565b925050602083013567ffffffffffffffff811115613aa357600080fd5b613aaf85828601613547565b9150509250929050565b60008060408385031215613acc57600080fd5b600083013567ffffffffffffffff811115613ae657600080fd5b613af28582860161351d565b925050602083013567ffffffffffffffff811115613b0f57600080fd5b613b1b858286016135c5565b9150509250929050565b600060208284031215613b3757600080fd5b6000613b4584828501613586565b91505092915050565b60008060408385031215613b6157600080fd5b6000613b6f85828601613586565b9250506020613b8085828601613508565b9150509250929050565b600060208284031215613b9c57600080fd5b6000613baa8482850161359b565b91505092915050565b600060208284031215613bc557600080fd5b6000613bd3848285016135b0565b91505092915050565b600060208284031215613bee57600080fd5b600082013567ffffffffffffffff811115613c0857600080fd5b613c14848285016135ef565b91505092915050565b600060208284031215613c2f57600080fd5b6000613c3d84828501613619565b91505092915050565b6000613c52838361406b565b60208301905092915050565b613c67816147c0565b82525050565b6000613c7882614608565b613c828185614636565b9350613c8d836145f8565b8060005b83811015613cbe578151613ca58882613c46565b9750613cb083614629565b925050600181019050613c91565b5085935050505092915050565b613cd4816147d2565b82525050565b613ce3816147de565b82525050565b6000613cf482614613565b613cfe8185614647565b9350613d0e81856020860161485a565b613d1781614a41565b840191505092915050565b6000613d2d8261461e565b613d378185614658565b9350613d4781856020860161485a565b613d5081614a41565b840191505092915050565b6000613d668261461e565b613d708185614669565b9350613d8081856020860161485a565b80840191505092915050565b6000613d99603483614658565b9150613da482614a5f565b604082019050919050565b6000613dbc602083614658565b9150613dc782614aae565b602082019050919050565b6000613ddf602883614658565b9150613dea82614ad7565b604082019050919050565b6000613e02601483614658565b9150613e0d82614b26565b602082019050919050565b6000613e25602b83614658565b9150613e3082614b4f565b604082019050919050565b6000613e48602683614658565b9150613e5382614b9e565b604082019050919050565b6000613e6b602483614658565b9150613e7682614bed565b604082019050919050565b6000613e8e602983614658565b9150613e9982614c3c565b604082019050919050565b6000613eb1601083614658565b9150613ebc82614c8b565b602082019050919050565b6000613ed4602583614658565b9150613edf82614cb4565b604082019050919050565b6000613ef7603283614658565b9150613f0282614d03565b604082019050919050565b6000613f1a602383614658565b9150613f2582614d52565b604082019050919050565b6000613f3d602a83614658565b9150613f4882614da1565b604082019050919050565b6000613f60602083614658565b9150613f6b82614df0565b602082019050919050565b6000613f83601783614669565b9150613f8e82614e19565b601782019050919050565b6000613fa6602983614658565b9150613fb182614e42565b604082019050919050565b6000613fc9602983614658565b9150613fd482614e91565b604082019050919050565b6000613fec602883614658565b9150613ff782614ee0565b604082019050919050565b600061400f602183614658565b915061401a82614f2f565b604082019050919050565b6000614032601183614669565b915061403d82614f7e565b601182019050919050565b6000614055602f83614658565b915061406082614fa7565b604082019050919050565b61407481614834565b82525050565b61408381614834565b82525050565b60006140958285613d5b565b91506140a18284613d5b565b91508190509392505050565b60006140b882613f76565b91506140c48285613d5b565b91506140cf82614025565b91506140db8284613d5b565b91508190509392505050565b60006020820190506140fc6000830184613c5e565b92915050565b600060a0820190506141176000830188613c5e565b6141246020830187613c5e565b81810360408301526141368186613c6d565b9050818103606083015261414a8185613c6d565b9050818103608083015261415e8184613ce9565b90509695505050505050565b600060a08201905061417f6000830188613c5e565b61418c6020830187613c5e565b614199604083018661407a565b6141a6606083018561407a565b81810360808301526141b88184613ce9565b90509695505050505050565b600060208201905081810360008301526141de8184613c6d565b905092915050565b600060408201905081810360008301526142008185613c6d565b905081810360208301526142148184613c6d565b90509392505050565b60006020820190506142326000830184613ccb565b92915050565b600060208201905061424d6000830184613cda565b92915050565b6000602082019050818103600083015261426d8184613d22565b905092915050565b6000602082019050818103600083015261428e81613d8c565b9050919050565b600060208201905081810360008301526142ae81613daf565b9050919050565b600060208201905081810360008301526142ce81613dd2565b9050919050565b600060208201905081810360008301526142ee81613df5565b9050919050565b6000602082019050818103600083015261430e81613e18565b9050919050565b6000602082019050818103600083015261432e81613e3b565b9050919050565b6000602082019050818103600083015261434e81613e5e565b9050919050565b6000602082019050818103600083015261436e81613e81565b9050919050565b6000602082019050818103600083015261438e81613ea4565b9050919050565b600060208201905081810360008301526143ae81613ec7565b9050919050565b600060208201905081810360008301526143ce81613eea565b9050919050565b600060208201905081810360008301526143ee81613f0d565b9050919050565b6000602082019050818103600083015261440e81613f30565b9050919050565b6000602082019050818103600083015261442e81613f53565b9050919050565b6000602082019050818103600083015261444e81613f99565b9050919050565b6000602082019050818103600083015261446e81613fbc565b9050919050565b6000602082019050818103600083015261448e81613fdf565b9050919050565b600060208201905081810360008301526144ae81614002565b9050919050565b600060208201905081810360008301526144ce81614048565b9050919050565b60006020820190506144ea600083018461407a565b92915050565b6000604082019050614505600083018561407a565b614512602083018461407a565b9392505050565b6000614523614534565b905061452f82826148e9565b919050565b6000604051905090565b600067ffffffffffffffff821115614559576145586149f0565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614585576145846149f0565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156145b1576145b06149f0565b5b6145ba82614a41565b9050602081019050919050565b600067ffffffffffffffff8211156145e2576145e16149f0565b5b6145eb82614a41565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061467f82614834565b915061468a83614834565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146bf576146be614963565b5b828201905092915050565b60006146d58261483e565b91506146e08361483e565b92508260ff038211156146f6576146f5614963565b5b828201905092915050565b600061470c82614834565b915061471783614834565b92508261472757614726614992565b5b828204905092915050565b600061473d82614834565b915061474883614834565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561478157614780614963565b5b828202905092915050565b600061479782614834565b91506147a283614834565b9250828210156147b5576147b4614963565b5b828203905092915050565b60006147cb82614814565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561487857808201518184015260208101905061485d565b83811115614887576000848401525b50505050565b600061489882614834565b915060008214156148ac576148ab614963565b5b600182039050919050565b600060028204905060018216806148cf57607f821691505b602082108114156148e3576148e26149c1565b5b50919050565b6148f282614a41565b810181811067ffffffffffffffff82111715614911576149106149f0565b5b80604052505050565b600061492582614834565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561495857614957614963565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d1115614a3e5760046000803e614a3b600051614a52565b90505b90565b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b600060443d101561500657615089565b61500e614534565b60043d036004823e80513d602482011167ffffffffffffffff82111715615036575050615089565b808201805167ffffffffffffffff8111156150545750505050615089565b80602083010160043d038501811115615071575050505050615089565b615080826020018501866148e9565b82955050505050505b90565b615095816147c0565b81146150a057600080fd5b50565b6150ac816147d2565b81146150b757600080fd5b50565b6150c3816147de565b81146150ce57600080fd5b50565b6150da816147e8565b81146150e557600080fd5b50565b6150f181614834565b81146150fc57600080fd5b5056fea2646970667358221220a382ffabf887e64c57e40090d6253ee5ac5e342c65244efdac8069fd5c15d5b864736f6c6343000802003368747470733a2f2f6974656d2e6f686461742e6e65742f6d61696e2d626f64792f6265617374626f782f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101ce5760003560e01c8063715018a611610104578063a22cb465116100a2578063e985e9c511610071578063e985e9c5146104dd578063f242432a1461050d578063f2fde38b14610529578063f5298aca14610545576101ce565b8063a22cb4651461046b578063c3c2cf5e14610487578063d5391393146104a3578063d547741f146104c1576101ce565b80638456cb59116100de5780638456cb59146103f55780638da5cb5b146103ff57806391d148541461041d578063a217fddf1461044d576101ce565b8063715018a6146103b1578063731133e9146103bb5780637f345710146103d7576101ce565b80632eb2c2d6116101715780633f4ba83a1161014b5780633f4ba83a1461033d5780634e1273f4146103475780635c975abb146103775780636b20c45414610395576101ce565b80632eb2c2d6146102e95780632f2ff15d1461030557806336568abe14610321576101ce565b806306fdde03116101ad57806306fdde031461024f5780630e89341c1461026d5780631f7fdffa1461029d578063248a9ca3146102b9576101ce565b8062fdd58e146101d357806301ffc9a71461020357806302fe530514610233575b600080fd5b6101ed60048036038101906101e89190613947565b610561565b6040516101fa91906144d5565b60405180910390f35b61021d60048036038101906102189190613b8a565b61062a565b60405161022a919061421d565b60405180910390f35b61024d60048036038101906102489190613bdc565b61063c565b005b61025761067b565b6040516102649190614253565b60405180910390f35b61028760048036038101906102829190613c1d565b610709565b6040516102949190614253565b60405180910390f35b6102b760048036038101906102b29190613860565b610750565b005b6102d360048036038101906102ce9190613b25565b610795565b6040516102e09190614238565b60405180910390f35b61030360048036038101906102fe9190613693565b6107b5565b005b61031f600480360381019061031a9190613b4e565b610bab565b005b61033b60048036038101906103369190613b4e565b610bd4565b005b610345610c57565b005b610361600480360381019061035c9190613a4d565b610cdd565b60405161036e91906141c4565b60405180910390f35b61037f610e8e565b60405161038c919061421d565b60405180910390f35b6103af60048036038101906103aa91906137e1565b610ea5565b005b6103b9610f42565b005b6103d560048036038101906103d091906139d2565b610fca565b005b6103df61100f565b6040516103ec9190614238565b60405180910390f35b6103fd611033565b005b6104076110b9565b60405161041491906140e7565b60405180910390f35b61043760048036038101906104329190613b4e565b6110e3565b604051610444919061421d565b60405180910390f35b61045561114e565b6040516104629190614238565b60405180910390f35b6104856004803603810190610480919061390b565b611155565b005b6104a1600480360381019061049c9190613ab9565b6112d6565b005b6104ab611394565b6040516104b89190614238565b60405180910390f35b6104db60048036038101906104d69190613b4e565b6113b8565b005b6104f760048036038101906104f29190613657565b6113e1565b604051610504919061421d565b60405180910390f35b61052760048036038101906105229190613752565b611475565b005b610543600480360381019061053e919061362e565b61178d565b005b61055f600480360381019061055a9190613983565b611885565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156105d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c9906142f5565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600061063582611922565b9050919050565b7f7804d923f43a17d325d77e781528e0793b2edd9890ab45fc64efd7b4b427744c61066e8161066961199c565b6119a4565b61067782611a41565b5050565b60068054610688906148b7565b80601f01602080910402602001604051908101604052809291908181526020018280546106b4906148b7565b80156107015780601f106106d657610100808354040283529160200191610701565b820191906000526020600020905b8154815290600101906020018083116106e457829003601f168201915b505050505081565b6060600061071683611a5b565b9050600061072384611c30565b90508082604051602001610738929190614089565b60405160208183030381529060405292505050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66107828161077d61199c565b6119a4565b61078e85858585611cc4565b5050505050565b600060046000838152602001908152602001600020600101549050919050565b81518351146107f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f090614475565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415610869576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086090614395565b60405180910390fd5b61087161199c565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806108b757506108b6856108b161199c565b6113e1565b5b6108f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ed906143b5565b60405180910390fd5b600061090061199c565b9050610910818787878787611f2e565b60005b8451811015610b16576000858281518110610957577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600085838151811061099c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a34906143f5565b60405180910390fd5b8181610a49919061478c565b60008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610afb9190614674565b9250508190555050505080610b0f9061491a565b9050610913565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610b8d9291906141e6565b60405180910390a4610ba3818787878787611f8c565b505050505050565b610bb482610795565b610bc581610bc061199c565b6119a4565b610bcf8383612173565b505050565b610bdc61199c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c40906144b5565b60405180910390fd5b610c538282612254565b5050565b610c5f61199c565b73ffffffffffffffffffffffffffffffffffffffff16610c7d6110b9565b73ffffffffffffffffffffffffffffffffffffffff1614610cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cca90614415565b60405180910390fd5b610cdb612336565b565b60608151835114610d23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1a90614455565b60405180910390fd5b6000835167ffffffffffffffff811115610d66577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610d945781602001602082028036833780820191505090505b50905060005b8451811015610e8357610e2d858281518110610ddf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110610e20577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151610561565b828281518110610e66577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080610e7c9061491a565b9050610d9a565b508091505092915050565b6000600560009054906101000a900460ff16905090565b610ead61199c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610ef35750610ef283610eed61199c565b6113e1565b5b610f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2990614355565b60405180910390fd5b610f3d8383836123d8565b505050565b610f4a61199c565b73ffffffffffffffffffffffffffffffffffffffff16610f686110b9565b73ffffffffffffffffffffffffffffffffffffffff1614610fbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb590614415565b60405180910390fd5b610fc860006126de565b565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610ffc81610ff761199c565b6119a4565b611008858585856127a4565b5050505050565b7f7804d923f43a17d325d77e781528e0793b2edd9890ab45fc64efd7b4b427744c81565b61103b61199c565b73ffffffffffffffffffffffffffffffffffffffff166110596110b9565b73ffffffffffffffffffffffffffffffffffffffff16146110af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a690614415565b60405180910390fd5b6110b761293a565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006004600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000801b81565b8173ffffffffffffffffffffffffffffffffffffffff1661117461199c565b73ffffffffffffffffffffffffffffffffffffffff1614156111cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c290614435565b60405180910390fd5b80600160006111d861199c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661128561199c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112ca919061421d565b60405180910390a35050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66113088161130361199c565b6119a4565b60005b835181101561138e57611363848281518110611350577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516007546001866127a4565b600760008154809291906113769061491a565b919050555080806113869061491a565b91505061130b565b50505050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6113c182610795565b6113d2816113cd61199c565b6119a4565b6113dc8383612254565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156114e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114dc90614395565b60405180910390fd5b6114ed61199c565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061153357506115328561152d61199c565b6113e1565b5b611572576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156990614355565b60405180910390fd5b600061157c61199c565b905061159c81878761158d886129dd565b611596886129dd565b87611f2e565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162a906143f5565b60405180910390fd5b838161163f919061478c565b60008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116f19190614674565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62888860405161176e9291906144f0565b60405180910390a4611784828888888888612aa3565b50505050505050565b61179561199c565b73ffffffffffffffffffffffffffffffffffffffff166117b36110b9565b73ffffffffffffffffffffffffffffffffffffffff1614611809576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180090614415565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611879576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187090614315565b60405180910390fd5b611882816126de565b50565b61188d61199c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806118d357506118d2836118cd61199c565b6113e1565b5b611912576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190990614355565b60405180910390fd5b61191d838383612c8a565b505050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611995575061199482612eb0565b5b9050919050565b600033905090565b6119ae82826110e3565b611a3d576119d38173ffffffffffffffffffffffffffffffffffffffff166014612f92565b6119e18360001c6020612f92565b6040516020016119f29291906140ad565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a349190614253565b60405180910390fd5b5050565b8060029080519060200190611a57929190613311565b5050565b60606000821415611aa3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611c2b565b600082905060005b60008214611ad5578080611abe9061491a565b915050600a82611ace9190614701565b9150611aab565b60008167ffffffffffffffff811115611b17577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611b495781602001600182028036833780820191505090505b50905060008290505b60008614611c2357600181611b67919061478c565b90506000600a8088611b799190614701565b611b839190614732565b87611b8e919061478c565b6030611b9a91906146ca565b905060008160f81b905080848481518110611bde577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a88611c1a9190614701565b97505050611b52565b819450505050505b919050565b606060028054611c3f906148b7565b80601f0160208091040260200160405190810160405280929190818152602001828054611c6b906148b7565b8015611cb85780601f10611c8d57610100808354040283529160200191611cb8565b820191906000526020600020905b815481529060010190602001808311611c9b57829003601f168201915b50505050509050919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2b90614495565b60405180910390fd5b8151835114611d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6f90614475565b60405180910390fd5b6000611d8261199c565b9050611d9381600087878787611f2e565b60005b8451811015611e9857838181518110611dd8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600080878481518110611e1c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e7e9190614674565b925050819055508080611e909061491a565b915050611d96565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611f109291906141e6565b60405180910390a4611f2781600087878787611f8c565b5050505050565b611f36610e8e565b15611f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6d90614375565b60405180910390fd5b611f8486868686868661328c565b505050505050565b611fab8473ffffffffffffffffffffffffffffffffffffffff16613294565b1561216b578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611ff1959493929190614102565b602060405180830381600087803b15801561200b57600080fd5b505af192505050801561203c57506040513d601f19601f820116820180604052508101906120399190613bb3565b60015b6120e257612048614a1f565b806308c379a014156120a5575061205d614ff6565b8061206857506120a7565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209c9190614253565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d990614275565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612169576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612160906142b5565b60405180910390fd5b505b505050505050565b61217d82826110e3565b6122505760016004600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506121f561199c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61225e82826110e3565b156123325760006004600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506122d761199c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b61233e610e8e565b61237d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612374906142d5565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6123c161199c565b6040516123ce91906140e7565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612448576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243f906143d5565b60405180910390fd5b805182511461248c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248390614475565b60405180910390fd5b600061249661199c565b90506124b681856000868660405180602001604052806000815250611f2e565b60005b83518110156126585760008482815181106124fd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000848381518110612542577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156125e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125da90614335565b60405180910390fd5b81816125ef919061478c565b60008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505080806126509061491a565b9150506124b9565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516126d09291906141e6565b60405180910390a450505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612814576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280b90614495565b60405180910390fd5b600061281e61199c565b905061283f81600087612830886129dd565b612839886129dd565b87611f2e565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461289e9190614674565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161291c9291906144f0565b60405180910390a461293381600087878787612aa3565b5050505050565b612942610e8e565b15612982576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297990614375565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586129c661199c565b6040516129d391906140e7565b60405180910390a1565b60606000600167ffffffffffffffff811115612a22577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015612a505781602001602082028036833780820191505090505b5090508281600081518110612a8e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b612ac28473ffffffffffffffffffffffffffffffffffffffff16613294565b15612c82578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612b0895949392919061416a565b602060405180830381600087803b158015612b2257600080fd5b505af1925050508015612b5357506040513d601f19601f82011682018060405250810190612b509190613bb3565b60015b612bf957612b5f614a1f565b806308c379a01415612bbc5750612b74614ff6565b80612b7f5750612bbe565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb39190614253565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf090614275565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c77906142b5565b60405180910390fd5b505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cf1906143d5565b60405180910390fd5b6000612d0461199c565b9050612d3481856000612d16876129dd565b612d1f876129dd565b60405180602001604052806000815250611f2e565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015612dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc290614335565b60405180910390fd5b8281612dd7919061478c565b60008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612ea19291906144f0565b60405180910390a45050505050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612f7b57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612f8b5750612f8a826132a7565b5b9050919050565b606060006002836002612fa59190614732565b612faf9190614674565b67ffffffffffffffff811115612fee577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156130205781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061307e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110613108577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026131489190614732565b6131529190614674565b90505b600181111561323e577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106131ba577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b8282815181106131f7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806132379061488d565b9050613155565b5060008414613282576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327990614295565b60405180910390fd5b8091505092915050565b505050505050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b82805461331d906148b7565b90600052602060002090601f01602090048101928261333f5760008555613386565b82601f1061335857805160ff1916838001178555613386565b82800160010185558215613386579182015b8281111561338557825182559160200191906001019061336a565b5b5090506133939190613397565b5090565b5b808211156133b0576000816000905550600101613398565b5090565b60006133c76133c28461453e565b614519565b905080838252602082019050828560208602820111156133e657600080fd5b60005b8581101561341657816133fc8882613508565b8452602084019350602083019250506001810190506133e9565b5050509392505050565b600061343361342e8461456a565b614519565b9050808382526020820190508285602086028201111561345257600080fd5b60005b8581101561348257816134688882613619565b845260208401935060208301925050600181019050613455565b5050509392505050565b600061349f61349a84614596565b614519565b9050828152602081018484840111156134b757600080fd5b6134c284828561484b565b509392505050565b60006134dd6134d8846145c7565b614519565b9050828152602081018484840111156134f557600080fd5b61350084828561484b565b509392505050565b6000813590506135178161508c565b92915050565b600082601f83011261352e57600080fd5b813561353e8482602086016133b4565b91505092915050565b600082601f83011261355857600080fd5b8135613568848260208601613420565b91505092915050565b600081359050613580816150a3565b92915050565b600081359050613595816150ba565b92915050565b6000813590506135aa816150d1565b92915050565b6000815190506135bf816150d1565b92915050565b600082601f8301126135d657600080fd5b81356135e684826020860161348c565b91505092915050565b600082601f83011261360057600080fd5b81356136108482602086016134ca565b91505092915050565b600081359050613628816150e8565b92915050565b60006020828403121561364057600080fd5b600061364e84828501613508565b91505092915050565b6000806040838503121561366a57600080fd5b600061367885828601613508565b925050602061368985828601613508565b9150509250929050565b600080600080600060a086880312156136ab57600080fd5b60006136b988828901613508565b95505060206136ca88828901613508565b945050604086013567ffffffffffffffff8111156136e757600080fd5b6136f388828901613547565b935050606086013567ffffffffffffffff81111561371057600080fd5b61371c88828901613547565b925050608086013567ffffffffffffffff81111561373957600080fd5b613745888289016135c5565b9150509295509295909350565b600080600080600060a0868803121561376a57600080fd5b600061377888828901613508565b955050602061378988828901613508565b945050604061379a88828901613619565b93505060606137ab88828901613619565b925050608086013567ffffffffffffffff8111156137c857600080fd5b6137d4888289016135c5565b9150509295509295909350565b6000806000606084860312156137f657600080fd5b600061380486828701613508565b935050602084013567ffffffffffffffff81111561382157600080fd5b61382d86828701613547565b925050604084013567ffffffffffffffff81111561384a57600080fd5b61385686828701613547565b9150509250925092565b6000806000806080858703121561387657600080fd5b600061388487828801613508565b945050602085013567ffffffffffffffff8111156138a157600080fd5b6138ad87828801613547565b935050604085013567ffffffffffffffff8111156138ca57600080fd5b6138d687828801613547565b925050606085013567ffffffffffffffff8111156138f357600080fd5b6138ff878288016135c5565b91505092959194509250565b6000806040838503121561391e57600080fd5b600061392c85828601613508565b925050602061393d85828601613571565b9150509250929050565b6000806040838503121561395a57600080fd5b600061396885828601613508565b925050602061397985828601613619565b9150509250929050565b60008060006060848603121561399857600080fd5b60006139a686828701613508565b93505060206139b786828701613619565b92505060406139c886828701613619565b9150509250925092565b600080600080608085870312156139e857600080fd5b60006139f687828801613508565b9450506020613a0787828801613619565b9350506040613a1887828801613619565b925050606085013567ffffffffffffffff811115613a3557600080fd5b613a41878288016135c5565b91505092959194509250565b60008060408385031215613a6057600080fd5b600083013567ffffffffffffffff811115613a7a57600080fd5b613a868582860161351d565b925050602083013567ffffffffffffffff811115613aa357600080fd5b613aaf85828601613547565b9150509250929050565b60008060408385031215613acc57600080fd5b600083013567ffffffffffffffff811115613ae657600080fd5b613af28582860161351d565b925050602083013567ffffffffffffffff811115613b0f57600080fd5b613b1b858286016135c5565b9150509250929050565b600060208284031215613b3757600080fd5b6000613b4584828501613586565b91505092915050565b60008060408385031215613b6157600080fd5b6000613b6f85828601613586565b9250506020613b8085828601613508565b9150509250929050565b600060208284031215613b9c57600080fd5b6000613baa8482850161359b565b91505092915050565b600060208284031215613bc557600080fd5b6000613bd3848285016135b0565b91505092915050565b600060208284031215613bee57600080fd5b600082013567ffffffffffffffff811115613c0857600080fd5b613c14848285016135ef565b91505092915050565b600060208284031215613c2f57600080fd5b6000613c3d84828501613619565b91505092915050565b6000613c52838361406b565b60208301905092915050565b613c67816147c0565b82525050565b6000613c7882614608565b613c828185614636565b9350613c8d836145f8565b8060005b83811015613cbe578151613ca58882613c46565b9750613cb083614629565b925050600181019050613c91565b5085935050505092915050565b613cd4816147d2565b82525050565b613ce3816147de565b82525050565b6000613cf482614613565b613cfe8185614647565b9350613d0e81856020860161485a565b613d1781614a41565b840191505092915050565b6000613d2d8261461e565b613d378185614658565b9350613d4781856020860161485a565b613d5081614a41565b840191505092915050565b6000613d668261461e565b613d708185614669565b9350613d8081856020860161485a565b80840191505092915050565b6000613d99603483614658565b9150613da482614a5f565b604082019050919050565b6000613dbc602083614658565b9150613dc782614aae565b602082019050919050565b6000613ddf602883614658565b9150613dea82614ad7565b604082019050919050565b6000613e02601483614658565b9150613e0d82614b26565b602082019050919050565b6000613e25602b83614658565b9150613e3082614b4f565b604082019050919050565b6000613e48602683614658565b9150613e5382614b9e565b604082019050919050565b6000613e6b602483614658565b9150613e7682614bed565b604082019050919050565b6000613e8e602983614658565b9150613e9982614c3c565b604082019050919050565b6000613eb1601083614658565b9150613ebc82614c8b565b602082019050919050565b6000613ed4602583614658565b9150613edf82614cb4565b604082019050919050565b6000613ef7603283614658565b9150613f0282614d03565b604082019050919050565b6000613f1a602383614658565b9150613f2582614d52565b604082019050919050565b6000613f3d602a83614658565b9150613f4882614da1565b604082019050919050565b6000613f60602083614658565b9150613f6b82614df0565b602082019050919050565b6000613f83601783614669565b9150613f8e82614e19565b601782019050919050565b6000613fa6602983614658565b9150613fb182614e42565b604082019050919050565b6000613fc9602983614658565b9150613fd482614e91565b604082019050919050565b6000613fec602883614658565b9150613ff782614ee0565b604082019050919050565b600061400f602183614658565b915061401a82614f2f565b604082019050919050565b6000614032601183614669565b915061403d82614f7e565b601182019050919050565b6000614055602f83614658565b915061406082614fa7565b604082019050919050565b61407481614834565b82525050565b61408381614834565b82525050565b60006140958285613d5b565b91506140a18284613d5b565b91508190509392505050565b60006140b882613f76565b91506140c48285613d5b565b91506140cf82614025565b91506140db8284613d5b565b91508190509392505050565b60006020820190506140fc6000830184613c5e565b92915050565b600060a0820190506141176000830188613c5e565b6141246020830187613c5e565b81810360408301526141368186613c6d565b9050818103606083015261414a8185613c6d565b9050818103608083015261415e8184613ce9565b90509695505050505050565b600060a08201905061417f6000830188613c5e565b61418c6020830187613c5e565b614199604083018661407a565b6141a6606083018561407a565b81810360808301526141b88184613ce9565b90509695505050505050565b600060208201905081810360008301526141de8184613c6d565b905092915050565b600060408201905081810360008301526142008185613c6d565b905081810360208301526142148184613c6d565b90509392505050565b60006020820190506142326000830184613ccb565b92915050565b600060208201905061424d6000830184613cda565b92915050565b6000602082019050818103600083015261426d8184613d22565b905092915050565b6000602082019050818103600083015261428e81613d8c565b9050919050565b600060208201905081810360008301526142ae81613daf565b9050919050565b600060208201905081810360008301526142ce81613dd2565b9050919050565b600060208201905081810360008301526142ee81613df5565b9050919050565b6000602082019050818103600083015261430e81613e18565b9050919050565b6000602082019050818103600083015261432e81613e3b565b9050919050565b6000602082019050818103600083015261434e81613e5e565b9050919050565b6000602082019050818103600083015261436e81613e81565b9050919050565b6000602082019050818103600083015261438e81613ea4565b9050919050565b600060208201905081810360008301526143ae81613ec7565b9050919050565b600060208201905081810360008301526143ce81613eea565b9050919050565b600060208201905081810360008301526143ee81613f0d565b9050919050565b6000602082019050818103600083015261440e81613f30565b9050919050565b6000602082019050818103600083015261442e81613f53565b9050919050565b6000602082019050818103600083015261444e81613f99565b9050919050565b6000602082019050818103600083015261446e81613fbc565b9050919050565b6000602082019050818103600083015261448e81613fdf565b9050919050565b600060208201905081810360008301526144ae81614002565b9050919050565b600060208201905081810360008301526144ce81614048565b9050919050565b60006020820190506144ea600083018461407a565b92915050565b6000604082019050614505600083018561407a565b614512602083018461407a565b9392505050565b6000614523614534565b905061452f82826148e9565b919050565b6000604051905090565b600067ffffffffffffffff821115614559576145586149f0565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614585576145846149f0565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156145b1576145b06149f0565b5b6145ba82614a41565b9050602081019050919050565b600067ffffffffffffffff8211156145e2576145e16149f0565b5b6145eb82614a41565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061467f82614834565b915061468a83614834565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146bf576146be614963565b5b828201905092915050565b60006146d58261483e565b91506146e08361483e565b92508260ff038211156146f6576146f5614963565b5b828201905092915050565b600061470c82614834565b915061471783614834565b92508261472757614726614992565b5b828204905092915050565b600061473d82614834565b915061474883614834565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561478157614780614963565b5b828202905092915050565b600061479782614834565b91506147a283614834565b9250828210156147b5576147b4614963565b5b828203905092915050565b60006147cb82614814565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561487857808201518184015260208101905061485d565b83811115614887576000848401525b50505050565b600061489882614834565b915060008214156148ac576148ab614963565b5b600182039050919050565b600060028204905060018216806148cf57607f821691505b602082108114156148e3576148e26149c1565b5b50919050565b6148f282614a41565b810181811067ffffffffffffffff82111715614911576149106149f0565b5b80604052505050565b600061492582614834565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561495857614957614963565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d1115614a3e5760046000803e614a3b600051614a52565b90505b90565b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b600060443d101561500657615089565b61500e614534565b60043d036004823e80513d602482011167ffffffffffffffff82111715615036575050615089565b808201805167ffffffffffffffff8111156150545750505050615089565b80602083010160043d038501811115615071575050505050615089565b615080826020018501866148e9565b82955050505050505b90565b615095816147c0565b81146150a057600080fd5b50565b6150ac816147d2565b81146150b757600080fd5b50565b6150c3816147de565b81146150ce57600080fd5b50565b6150da816147e8565b81146150e557600080fd5b50565b6150f181614834565b81146150fc57600080fd5b5056fea2646970667358221220a382ffabf887e64c57e40090d6253ee5ac5e342c65244efdac8069fd5c15d5b864736f6c63430008020033

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.