ETH Price: $3,461.94 (+1.58%)
Gas: 6 Gwei

Token

 

Overview

Max Total Supply

1,479

Holders

1,432

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0x4b5f0eabd5e03778e3d034ca2c8ceee3301da505
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Dynamic1155

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : Dynamic1155.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

contract Dynamic1155 is ERC1155Burnable, Ownable {
    // whether minting by owner is allowed
    bool public manualMintAllowed = true;
    // individual uri per type
    mapping (uint256 => string) public typeToUri;
    // whether main uri is freezed
    bool public isUriFreezed;
    // whether each individual uri is freezed
    mapping (uint256 => bool) public typeIsUriFreezed;
    
    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory _uri)
        ERC1155(_uri)
    {}
    
    /**
     * @dev Lock further manual minting by owner
     */
    function disableManualMint() public onlyOwner {
        manualMintAllowed = false;
    }
            
    /**
     * @dev Airdrop tokens to owners
     */
    function mintOwner(address[] calldata owners, uint256[] calldata types, uint256[] calldata counts) public onlyOwner {
      require(manualMintAllowed, "Not allowed");
      require(owners.length == types.length && types.length == counts.length, "Bad array lengths");
         
      for (uint256 i = 0; i < owners.length; i++) {
        _mint(owners[i], types[i], counts[i], "");
      }
    }

    /**
     * @dev Airdrop single tokens to owners
     */
    function mintOwnerOneToken(address[] calldata owners, uint256 typeId) public onlyOwner {
      require(manualMintAllowed, "Not allowed");
         
      for (uint256 i = 0; i < owners.length; i++) {
        _mint(owners[i], typeId, 1, "");
      }
    }

    function uri(uint256 typeId) public view override returns (string memory) {
        string memory typeUri = typeToUri[typeId];
        if (bytes(typeUri).length == 0) {
            return super.uri(typeId);
        } else {
            return typeUri;
        }
    }
   
    /**
     * @dev Updates the metadata URI
     */
    function updateUri(string calldata newUri) public onlyOwner {
        require(!isUriFreezed, "Freezed");
        _setURI(newUri);
    }

    /**
     * @dev Freezes the metadata URI
     */
    function freezeUri() public onlyOwner {
        isUriFreezed = true;
    }

    /**
     * @dev Updates and freezes the metadata URI
     */
    function permanentSetUri(string calldata newUri) public onlyOwner {
        updateUri(newUri);
        freezeUri();
    }

    /**
     * @dev Updates the metadata URI for a specific type
     */
    function updateUriForType(string calldata newUri, uint256 typeId) public onlyOwner {
        require(!typeIsUriFreezed[typeId], "Freezed");
        typeToUri[typeId] = newUri;
    }

    /**
     * @dev Freezes the metadata URI
     */
    function freezeUriForType(uint256 typeId) public onlyOwner {
        typeIsUriFreezed[typeId] = true;
    }

    /**
     * @dev Updates and freezes the metadata URI
     */
    function permanentSetUriForType(string calldata newUri, uint256 typeId) public onlyOwner {
        updateUriForType(newUri, typeId);
        freezeUriForType(typeId);
    }
}

File 2 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

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() {
        _transferOwnership(_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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 11 : ERC1155Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/ERC1155Burnable.sol)

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 4 of 11 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 5 of 11 : ERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: 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 {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

        return array;
    }
}

File 6 of 11 : IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 11 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

import "../IERC1155.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"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":[],"name":"disableManualMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freezeUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"typeId","type":"uint256"}],"name":"freezeUriForType","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isUriFreezed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualMintAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"owners","type":"address[]"},{"internalType":"uint256[]","name":"types","type":"uint256[]"},{"internalType":"uint256[]","name":"counts","type":"uint256[]"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"owners","type":"address[]"},{"internalType":"uint256","name":"typeId","type":"uint256"}],"name":"mintOwnerOneToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"newUri","type":"string"}],"name":"permanentSetUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newUri","type":"string"},{"internalType":"uint256","name":"typeId","type":"uint256"}],"name":"permanentSetUriForType","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"typeIsUriFreezed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"typeToUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"newUri","type":"string"}],"name":"updateUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newUri","type":"string"},{"internalType":"uint256","name":"typeId","type":"uint256"}],"name":"updateUriForType","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"typeId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040526001600360146101000a81548160ff0219169083151502179055503480156200002c57600080fd5b5060405162004e0938038062004e09833981810160405281019062000052919062000302565b8062000064816200008c60201b60201c565b506200008562000079620000a160201b60201c565b620000a960201b60201c565b5062000685565b80600290816200009d91906200059e565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620001d8826200018d565b810181811067ffffffffffffffff82111715620001fa57620001f96200019e565b5b80604052505050565b60006200020f6200016f565b90506200021d8282620001cd565b919050565b600067ffffffffffffffff82111562000240576200023f6200019e565b5b6200024b826200018d565b9050602081019050919050565b60005b83811015620002785780820151818401526020810190506200025b565b60008484015250505050565b60006200029b620002958462000222565b62000203565b905082815260208101848484011115620002ba57620002b962000188565b5b620002c784828562000258565b509392505050565b600082601f830112620002e757620002e662000183565b5b8151620002f984826020860162000284565b91505092915050565b6000602082840312156200031b576200031a62000179565b5b600082015167ffffffffffffffff8111156200033c576200033b6200017e565b5b6200034a84828501620002cf565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003a657607f821691505b602082108103620003bc57620003bb6200035e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004267fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003e7565b620004328683620003e7565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200047f6200047962000473846200044a565b62000454565b6200044a565b9050919050565b6000819050919050565b6200049b836200045e565b620004b3620004aa8262000486565b848454620003f4565b825550505050565b600090565b620004ca620004bb565b620004d781848462000490565b505050565b5b81811015620004ff57620004f3600082620004c0565b600181019050620004dd565b5050565b601f8211156200054e576200051881620003c2565b6200052384620003d7565b8101602085101562000533578190505b6200054b6200054285620003d7565b830182620004dc565b50505b505050565b600082821c905092915050565b6000620005736000198460080262000553565b1980831691505092915050565b60006200058e838362000560565b9150826002028217905092915050565b620005a98262000353565b67ffffffffffffffff811115620005c557620005c46200019e565b5b620005d182546200038d565b620005de82828562000503565b600060209050601f83116001811462000616576000841562000601578287015190505b6200060d858262000580565b8655506200067d565b601f1984166200062686620003c2565b60005b82811015620006505784890151825560018201915060208501945060208101905062000629565b868310156200067057848901516200066c601f89168262000560565b8355505b6001600288020188555050505b505050505050565b61477480620006956000396000f3fe608060405234801561001057600080fd5b506004361061018d5760003560e01c80636b20c454116100de578063abff7f6e11610097578063e985e9c511610071578063e985e9c514610442578063f242432a14610472578063f2fde38b1461048e578063f5298aca146104aa5761018d565b8063abff7f6e146103ee578063c30f3bb11461040a578063c75e25e1146104265761018d565b80636b20c45414610354578063715018a6146103705780638da5cb5b1461037a57806395d34d9e14610398578063a22cb465146103b4578063ab05ff41146103d05761018d565b80632094aacc1161014b5780632be9279d116101255780632be9279d146102ce5780632eb2c2d6146102ec5780634e1273f414610308578063570b3c6a146103385761018d565b80632094aacc14610252578063267f8640146102825780632768d709146102b25761018d565b8062fdd58e1461019257806301ffc9a7146101c2578063086cb785146101f257806308b58c1d146101fc5780630e89341c146102185780630f52b76e14610248575b600080fd5b6101ac60048036038101906101a79190612a5c565b6104c6565b6040516101b99190612aab565b60405180910390f35b6101dc60048036038101906101d79190612b1e565b61058e565b6040516101e99190612b66565b60405180910390f35b6101fa610670565b005b61021660048036038101906102119190612be6565b610709565b005b610232600480360381019061022d9190612c46565b61079e565b60405161023f9190612d03565b60405180910390f35b610250610864565b005b61026c60048036038101906102679190612c46565b6108fd565b6040516102799190612d03565b60405180910390f35b61029c60048036038101906102979190612c46565b61099d565b6040516102a99190612b66565b60405180910390f35b6102cc60048036038101906102c79190612dd1565b6109bd565b005b6102d6610b7f565b6040516102e39190612b66565b60405180910390f35b61030660048036038101906103019190613078565b610b92565b005b610322600480360381019061031d919061320a565b610c33565b60405161032f9190613340565b60405180910390f35b610352600480360381019061034d9190613362565b610d4c565b005b61036e600480360381019061036991906133af565b610e69565b005b610378610f06565b005b610382610f8e565b60405161038f9190613449565b60405180910390f35b6103b260048036038101906103ad9190612be6565b610fb8565b005b6103ce60048036038101906103c99190613490565b6110bd565b005b6103d86110d3565b6040516103e59190612b66565b60405180910390f35b61040860048036038101906104039190613362565b6110e6565b005b610424600480360381019061041f9190612c46565b611178565b005b610440600480360381019061043b91906134d0565b611223565b005b61045c60048036038101906104579190613530565b611358565b6040516104699190612b66565b60405180910390f35b61048c60048036038101906104879190613570565b6113ec565b005b6104a860048036038101906104a39190613607565b61148d565b005b6104c460048036038101906104bf9190613634565b611584565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052d906136f9565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061065957507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610669575061066882611621565b5b9050919050565b61067861168b565b73ffffffffffffffffffffffffffffffffffffffff16610696610f8e565b73ffffffffffffffffffffffffffffffffffffffff16146106ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e390613765565b60405180910390fd5b6001600560006101000a81548160ff021916908315150217905550565b61071161168b565b73ffffffffffffffffffffffffffffffffffffffff1661072f610f8e565b73ffffffffffffffffffffffffffffffffffffffff1614610785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077c90613765565b60405180910390fd5b610790838383610fb8565b61079981611178565b505050565b606060006004600084815260200190815260200160002080546107c0906137b4565b80601f01602080910402602001604051908101604052809291908181526020018280546107ec906137b4565b80156108395780601f1061080e57610100808354040283529160200191610839565b820191906000526020600020905b81548152906001019060200180831161081c57829003601f168201915b50505050509050600081510361085a5761085283611693565b91505061085f565b809150505b919050565b61086c61168b565b73ffffffffffffffffffffffffffffffffffffffff1661088a610f8e565b73ffffffffffffffffffffffffffffffffffffffff16146108e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d790613765565b60405180910390fd5b6000600360146101000a81548160ff021916908315150217905550565b6004602052806000526040600020600091509050805461091c906137b4565b80601f0160208091040260200160405190810160405280929190818152602001828054610948906137b4565b80156109955780601f1061096a57610100808354040283529160200191610995565b820191906000526020600020905b81548152906001019060200180831161097857829003601f168201915b505050505081565b60066020528060005260406000206000915054906101000a900460ff1681565b6109c561168b565b73ffffffffffffffffffffffffffffffffffffffff166109e3610f8e565b73ffffffffffffffffffffffffffffffffffffffff1614610a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3090613765565b60405180910390fd5b600360149054906101000a900460ff16610a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7f90613831565b60405180910390fd5b8383905086869050148015610aa257508181905084849050145b610ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad89061389d565b60405180910390fd5b60005b86869050811015610b7657610b63878783818110610b0557610b046138bd565b5b9050602002016020810190610b1a9190613607565b868684818110610b2d57610b2c6138bd565b5b90506020020135858585818110610b4757610b466138bd565b5b9050602002013560405180602001604052806000815250611727565b8080610b6e9061391b565b915050610ae4565b50505050505050565b600360149054906101000a900460ff1681565b610b9a61168b565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610be05750610bdf85610bda61168b565b611358565b5b610c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c16906139d5565b60405180910390fd5b610c2c85858585856118bc565b5050505050565b60608151835114610c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7090613a67565b60405180910390fd5b6000835167ffffffffffffffff811115610c9657610c95612e85565b5b604051908082528060200260200182016040528015610cc45781602001602082028036833780820191505090505b50905060005b8451811015610d4157610d11858281518110610ce957610ce86138bd565b5b6020026020010151858381518110610d0457610d036138bd565b5b60200260200101516104c6565b828281518110610d2457610d236138bd565b5b60200260200101818152505080610d3a9061391b565b9050610cca565b508091505092915050565b610d5461168b565b73ffffffffffffffffffffffffffffffffffffffff16610d72610f8e565b73ffffffffffffffffffffffffffffffffffffffff1614610dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbf90613765565b60405180910390fd5b600560009054906101000a900460ff1615610e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0f90613ad3565b60405180910390fd5b610e6582828080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611bcf565b5050565b610e7161168b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610eb75750610eb683610eb161168b565b611358565b5b610ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eed90613b65565b60405180910390fd5b610f01838383611be2565b505050565b610f0e61168b565b73ffffffffffffffffffffffffffffffffffffffff16610f2c610f8e565b73ffffffffffffffffffffffffffffffffffffffff1614610f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7990613765565b60405180910390fd5b610f8c6000611e92565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610fc061168b565b73ffffffffffffffffffffffffffffffffffffffff16610fde610f8e565b73ffffffffffffffffffffffffffffffffffffffff1614611034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102b90613765565b60405180910390fd5b6006600082815260200190815260200160002060009054906101000a900460ff1615611095576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108c90613ad3565b60405180910390fd5b82826004600084815260200190815260200160002091826110b7929190613d3c565b50505050565b6110cf6110c861168b565b8383611f58565b5050565b600560009054906101000a900460ff1681565b6110ee61168b565b73ffffffffffffffffffffffffffffffffffffffff1661110c610f8e565b73ffffffffffffffffffffffffffffffffffffffff1614611162576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115990613765565b60405180910390fd5b61116c8282610d4c565b611174610670565b5050565b61118061168b565b73ffffffffffffffffffffffffffffffffffffffff1661119e610f8e565b73ffffffffffffffffffffffffffffffffffffffff16146111f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111eb90613765565b60405180910390fd5b60016006600083815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61122b61168b565b73ffffffffffffffffffffffffffffffffffffffff16611249610f8e565b73ffffffffffffffffffffffffffffffffffffffff161461129f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129690613765565b60405180910390fd5b600360149054906101000a900460ff166112ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e590613831565b60405180910390fd5b60005b838390508110156113525761133f848483818110611312576113116138bd565b5b90506020020160208101906113279190613607565b83600160405180602001604052806000815250611727565b808061134a9061391b565b9150506112f1565b50505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113f461168b565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061143a57506114398561143461168b565b611358565b5b611479576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147090613b65565b60405180910390fd5b61148685858585856120c4565b5050505050565b61149561168b565b73ffffffffffffffffffffffffffffffffffffffff166114b3610f8e565b73ffffffffffffffffffffffffffffffffffffffff1614611509576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150090613765565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156f90613e7e565b60405180910390fd5b61158181611e92565b50565b61158c61168b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806115d257506115d1836115cc61168b565b611358565b5b611611576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160890613b65565b60405180910390fd5b61161c838383612345565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6060600280546116a2906137b4565b80601f01602080910402602001604051908101604052809291908181526020018280546116ce906137b4565b801561171b5780601f106116f05761010080835404028352916020019161171b565b820191906000526020600020905b8154815290600101906020018083116116fe57829003601f168201915b50505050509050919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611796576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178d90613f10565b60405180910390fd5b60006117a061168b565b90506117c1816000876117b288612561565b6117bb88612561565b876125db565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118209190613f30565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161189e929190613f64565b60405180910390a46118b5816000878787876125e3565b5050505050565b8151835114611900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f790613fff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361196f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196690614091565b60405180910390fd5b600061197961168b565b90506119898187878787876125db565b60005b8451811015611b3a5760008582815181106119aa576119a96138bd565b5b6020026020010151905060008583815181106119c9576119c86138bd565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6190614123565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b1f9190613f30565b9250508190555050505080611b339061391b565b905061198c565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611bb1929190614143565b60405180910390a4611bc78187878787876127ba565b505050505050565b8060029081611bde919061417a565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c48906142be565b60405180910390fd5b8051825114611c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8c90613fff565b60405180910390fd5b6000611c9f61168b565b9050611cbf818560008686604051806020016040528060008152506125db565b60005b8351811015611e0c576000848281518110611ce057611cdf6138bd565b5b602002602001015190506000848381518110611cff57611cfe6138bd565b5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9790614350565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050508080611e049061391b565b915050611cc2565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611e84929190614143565b60405180910390a450505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbd906143e2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120b79190612b66565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212a90614091565b60405180910390fd5b600061213d61168b565b905061215d81878761214e88612561565b61215788612561565b876125db565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156121f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121eb90614123565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122a99190613f30565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051612326929190613f64565b60405180910390a461233c8288888888886125e3565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036123b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ab906142be565b60405180910390fd5b60006123be61168b565b90506123ee818560006123d087612561565b6123d987612561565b604051806020016040528060008152506125db565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015612485576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247c90614350565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612552929190613f64565b60405180910390a45050505050565b60606000600167ffffffffffffffff8111156125805761257f612e85565b5b6040519080825280602002602001820160405280156125ae5781602001602082028036833780820191505090505b50905082816000815181106125c6576125c56138bd565b5b60200260200101818152505080915050919050565b505050505050565b6126028473ffffffffffffffffffffffffffffffffffffffff16612991565b156127b2578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612648959493929190614457565b6020604051808303816000875af192505050801561268457506040513d601f19601f8201168201806040525081019061268191906144c6565b60015b61272957612690614500565b806308c379a0036126ec57506126a4614522565b806126af57506126ee565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e39190612d03565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272090614624565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146127b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a7906146b6565b60405180910390fd5b505b505050505050565b6127d98473ffffffffffffffffffffffffffffffffffffffff16612991565b15612989578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b815260040161281f9594939291906146d6565b6020604051808303816000875af192505050801561285b57506040513d601f19601f8201168201806040525081019061285891906144c6565b60015b61290057612867614500565b806308c379a0036128c3575061287b614522565b8061288657506128c5565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ba9190612d03565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f790614624565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297e906146b6565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129f3826129c8565b9050919050565b612a03816129e8565b8114612a0e57600080fd5b50565b600081359050612a20816129fa565b92915050565b6000819050919050565b612a3981612a26565b8114612a4457600080fd5b50565b600081359050612a5681612a30565b92915050565b60008060408385031215612a7357612a726129be565b5b6000612a8185828601612a11565b9250506020612a9285828601612a47565b9150509250929050565b612aa581612a26565b82525050565b6000602082019050612ac06000830184612a9c565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612afb81612ac6565b8114612b0657600080fd5b50565b600081359050612b1881612af2565b92915050565b600060208284031215612b3457612b336129be565b5b6000612b4284828501612b09565b91505092915050565b60008115159050919050565b612b6081612b4b565b82525050565b6000602082019050612b7b6000830184612b57565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112612ba657612ba5612b81565b5b8235905067ffffffffffffffff811115612bc357612bc2612b86565b5b602083019150836001820283011115612bdf57612bde612b8b565b5b9250929050565b600080600060408486031215612bff57612bfe6129be565b5b600084013567ffffffffffffffff811115612c1d57612c1c6129c3565b5b612c2986828701612b90565b93509350506020612c3c86828701612a47565b9150509250925092565b600060208284031215612c5c57612c5b6129be565b5b6000612c6a84828501612a47565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612cad578082015181840152602081019050612c92565b60008484015250505050565b6000601f19601f8301169050919050565b6000612cd582612c73565b612cdf8185612c7e565b9350612cef818560208601612c8f565b612cf881612cb9565b840191505092915050565b60006020820190508181036000830152612d1d8184612cca565b905092915050565b60008083601f840112612d3b57612d3a612b81565b5b8235905067ffffffffffffffff811115612d5857612d57612b86565b5b602083019150836020820283011115612d7457612d73612b8b565b5b9250929050565b60008083601f840112612d9157612d90612b81565b5b8235905067ffffffffffffffff811115612dae57612dad612b86565b5b602083019150836020820283011115612dca57612dc9612b8b565b5b9250929050565b60008060008060008060608789031215612dee57612ded6129be565b5b600087013567ffffffffffffffff811115612e0c57612e0b6129c3565b5b612e1889828a01612d25565b9650965050602087013567ffffffffffffffff811115612e3b57612e3a6129c3565b5b612e4789828a01612d7b565b9450945050604087013567ffffffffffffffff811115612e6a57612e696129c3565b5b612e7689828a01612d7b565b92509250509295509295509295565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ebd82612cb9565b810181811067ffffffffffffffff82111715612edc57612edb612e85565b5b80604052505050565b6000612eef6129b4565b9050612efb8282612eb4565b919050565b600067ffffffffffffffff821115612f1b57612f1a612e85565b5b602082029050602081019050919050565b6000612f3f612f3a84612f00565b612ee5565b90508083825260208201905060208402830185811115612f6257612f61612b8b565b5b835b81811015612f8b5780612f778882612a47565b845260208401935050602081019050612f64565b5050509392505050565b600082601f830112612faa57612fa9612b81565b5b8135612fba848260208601612f2c565b91505092915050565b600080fd5b600067ffffffffffffffff821115612fe357612fe2612e85565b5b612fec82612cb9565b9050602081019050919050565b82818337600083830152505050565b600061301b61301684612fc8565b612ee5565b90508281526020810184848401111561303757613036612fc3565b5b613042848285612ff9565b509392505050565b600082601f83011261305f5761305e612b81565b5b813561306f848260208601613008565b91505092915050565b600080600080600060a08688031215613094576130936129be565b5b60006130a288828901612a11565b95505060206130b388828901612a11565b945050604086013567ffffffffffffffff8111156130d4576130d36129c3565b5b6130e088828901612f95565b935050606086013567ffffffffffffffff811115613101576131006129c3565b5b61310d88828901612f95565b925050608086013567ffffffffffffffff81111561312e5761312d6129c3565b5b61313a8882890161304a565b9150509295509295909350565b600067ffffffffffffffff82111561316257613161612e85565b5b602082029050602081019050919050565b600061318661318184613147565b612ee5565b905080838252602082019050602084028301858111156131a9576131a8612b8b565b5b835b818110156131d257806131be8882612a11565b8452602084019350506020810190506131ab565b5050509392505050565b600082601f8301126131f1576131f0612b81565b5b8135613201848260208601613173565b91505092915050565b60008060408385031215613221576132206129be565b5b600083013567ffffffffffffffff81111561323f5761323e6129c3565b5b61324b858286016131dc565b925050602083013567ffffffffffffffff81111561326c5761326b6129c3565b5b61327885828601612f95565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6132b781612a26565b82525050565b60006132c983836132ae565b60208301905092915050565b6000602082019050919050565b60006132ed82613282565b6132f7818561328d565b93506133028361329e565b8060005b8381101561333357815161331a88826132bd565b9750613325836132d5565b925050600181019050613306565b5085935050505092915050565b6000602082019050818103600083015261335a81846132e2565b905092915050565b60008060208385031215613379576133786129be565b5b600083013567ffffffffffffffff811115613397576133966129c3565b5b6133a385828601612b90565b92509250509250929050565b6000806000606084860312156133c8576133c76129be565b5b60006133d686828701612a11565b935050602084013567ffffffffffffffff8111156133f7576133f66129c3565b5b61340386828701612f95565b925050604084013567ffffffffffffffff811115613424576134236129c3565b5b61343086828701612f95565b9150509250925092565b613443816129e8565b82525050565b600060208201905061345e600083018461343a565b92915050565b61346d81612b4b565b811461347857600080fd5b50565b60008135905061348a81613464565b92915050565b600080604083850312156134a7576134a66129be565b5b60006134b585828601612a11565b92505060206134c68582860161347b565b9150509250929050565b6000806000604084860312156134e9576134e86129be565b5b600084013567ffffffffffffffff811115613507576135066129c3565b5b61351386828701612d25565b9350935050602061352686828701612a47565b9150509250925092565b60008060408385031215613547576135466129be565b5b600061355585828601612a11565b925050602061356685828601612a11565b9150509250929050565b600080600080600060a0868803121561358c5761358b6129be565b5b600061359a88828901612a11565b95505060206135ab88828901612a11565b94505060406135bc88828901612a47565b93505060606135cd88828901612a47565b925050608086013567ffffffffffffffff8111156135ee576135ed6129c3565b5b6135fa8882890161304a565b9150509295509295909350565b60006020828403121561361d5761361c6129be565b5b600061362b84828501612a11565b91505092915050565b60008060006060848603121561364d5761364c6129be565b5b600061365b86828701612a11565b935050602061366c86828701612a47565b925050604061367d86828701612a47565b9150509250925092565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006136e3602b83612c7e565b91506136ee82613687565b604082019050919050565b60006020820190508181036000830152613712816136d6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061374f602083612c7e565b915061375a82613719565b602082019050919050565b6000602082019050818103600083015261377e81613742565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806137cc57607f821691505b6020821081036137df576137de613785565b5b50919050565b7f4e6f7420616c6c6f776564000000000000000000000000000000000000000000600082015250565b600061381b600b83612c7e565b9150613826826137e5565b602082019050919050565b6000602082019050818103600083015261384a8161380e565b9050919050565b7f426164206172726179206c656e67746873000000000000000000000000000000600082015250565b6000613887601183612c7e565b915061389282613851565b602082019050919050565b600060208201905081810360008301526138b68161387a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061392682612a26565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613958576139576138ec565b5b600182019050919050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006139bf603283612c7e565b91506139ca82613963565b604082019050919050565b600060208201905081810360008301526139ee816139b2565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000613a51602983612c7e565b9150613a5c826139f5565b604082019050919050565b60006020820190508181036000830152613a8081613a44565b9050919050565b7f467265657a656400000000000000000000000000000000000000000000000000600082015250565b6000613abd600783612c7e565b9150613ac882613a87565b602082019050919050565b60006020820190508181036000830152613aec81613ab0565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b6000613b4f602983612c7e565b9150613b5a82613af3565b604082019050919050565b60006020820190508181036000830152613b7e81613b42565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613bf27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613bb5565b613bfc8683613bb5565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613c39613c34613c2f84612a26565b613c14565b612a26565b9050919050565b6000819050919050565b613c5383613c1e565b613c67613c5f82613c40565b848454613bc2565b825550505050565b600090565b613c7c613c6f565b613c87818484613c4a565b505050565b5b81811015613cab57613ca0600082613c74565b600181019050613c8d565b5050565b601f821115613cf057613cc181613b90565b613cca84613ba5565b81016020851015613cd9578190505b613ced613ce585613ba5565b830182613c8c565b50505b505050565b600082821c905092915050565b6000613d1360001984600802613cf5565b1980831691505092915050565b6000613d2c8383613d02565b9150826002028217905092915050565b613d468383613b85565b67ffffffffffffffff811115613d5f57613d5e612e85565b5b613d6982546137b4565b613d74828285613caf565b6000601f831160018114613da35760008415613d91578287013590505b613d9b8582613d20565b865550613e03565b601f198416613db186613b90565b60005b82811015613dd957848901358255600182019150602085019450602081019050613db4565b86831015613df65784890135613df2601f891682613d02565b8355505b6001600288020188555050505b50505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613e68602683612c7e565b9150613e7382613e0c565b604082019050919050565b60006020820190508181036000830152613e9781613e5b565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613efa602183612c7e565b9150613f0582613e9e565b604082019050919050565b60006020820190508181036000830152613f2981613eed565b9050919050565b6000613f3b82612a26565b9150613f4683612a26565b9250828201905080821115613f5e57613f5d6138ec565b5b92915050565b6000604082019050613f796000830185612a9c565b613f866020830184612a9c565b9392505050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000613fe9602883612c7e565b9150613ff482613f8d565b604082019050919050565b6000602082019050818103600083015261401881613fdc565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061407b602583612c7e565b91506140868261401f565b604082019050919050565b600060208201905081810360008301526140aa8161406e565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b600061410d602a83612c7e565b9150614118826140b1565b604082019050919050565b6000602082019050818103600083015261413c81614100565b9050919050565b6000604082019050818103600083015261415d81856132e2565b9050818103602083015261417181846132e2565b90509392505050565b61418382612c73565b67ffffffffffffffff81111561419c5761419b612e85565b5b6141a682546137b4565b6141b1828285613caf565b600060209050601f8311600181146141e457600084156141d2578287015190505b6141dc8582613d20565b865550614244565b601f1984166141f286613b90565b60005b8281101561421a578489015182556001820191506020850194506020810190506141f5565b868310156142375784890151614233601f891682613d02565b8355505b6001600288020188555050505b505050505050565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006142a8602383612c7e565b91506142b38261424c565b604082019050919050565b600060208201905081810360008301526142d78161429b565b9050919050565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b600061433a602483612c7e565b9150614345826142de565b604082019050919050565b600060208201905081810360008301526143698161432d565b9050919050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b60006143cc602983612c7e565b91506143d782614370565b604082019050919050565b600060208201905081810360008301526143fb816143bf565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061442982614402565b614433818561440d565b9350614443818560208601612c8f565b61444c81612cb9565b840191505092915050565b600060a08201905061446c600083018861343a565b614479602083018761343a565b6144866040830186612a9c565b6144936060830185612a9c565b81810360808301526144a5818461441e565b90509695505050505050565b6000815190506144c081612af2565b92915050565b6000602082840312156144dc576144db6129be565b5b60006144ea848285016144b1565b91505092915050565b60008160e01c9050919050565b600060033d111561451f5760046000803e61451c6000516144f3565b90505b90565b600060443d106145af576145346129b4565b60043d036004823e80513d602482011167ffffffffffffffff8211171561455c5750506145af565b808201805167ffffffffffffffff81111561457a57505050506145af565b80602083010160043d0385018111156145975750505050506145af565b6145a682602001850186612eb4565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b600061460e603483612c7e565b9150614619826145b2565b604082019050919050565b6000602082019050818103600083015261463d81614601565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b60006146a0602883612c7e565b91506146ab82614644565b604082019050919050565b600060208201905081810360008301526146cf81614693565b9050919050565b600060a0820190506146eb600083018861343a565b6146f8602083018761343a565b818103604083015261470a81866132e2565b9050818103606083015261471e81856132e2565b90508181036080830152614732818461441e565b9050969550505050505056fea2646970667358221220c513d085927946948a43c5c51a9a7842cddc0d0b0cc89f32cd13ff1a4fde183664736f6c6343000811003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018d5760003560e01c80636b20c454116100de578063abff7f6e11610097578063e985e9c511610071578063e985e9c514610442578063f242432a14610472578063f2fde38b1461048e578063f5298aca146104aa5761018d565b8063abff7f6e146103ee578063c30f3bb11461040a578063c75e25e1146104265761018d565b80636b20c45414610354578063715018a6146103705780638da5cb5b1461037a57806395d34d9e14610398578063a22cb465146103b4578063ab05ff41146103d05761018d565b80632094aacc1161014b5780632be9279d116101255780632be9279d146102ce5780632eb2c2d6146102ec5780634e1273f414610308578063570b3c6a146103385761018d565b80632094aacc14610252578063267f8640146102825780632768d709146102b25761018d565b8062fdd58e1461019257806301ffc9a7146101c2578063086cb785146101f257806308b58c1d146101fc5780630e89341c146102185780630f52b76e14610248575b600080fd5b6101ac60048036038101906101a79190612a5c565b6104c6565b6040516101b99190612aab565b60405180910390f35b6101dc60048036038101906101d79190612b1e565b61058e565b6040516101e99190612b66565b60405180910390f35b6101fa610670565b005b61021660048036038101906102119190612be6565b610709565b005b610232600480360381019061022d9190612c46565b61079e565b60405161023f9190612d03565b60405180910390f35b610250610864565b005b61026c60048036038101906102679190612c46565b6108fd565b6040516102799190612d03565b60405180910390f35b61029c60048036038101906102979190612c46565b61099d565b6040516102a99190612b66565b60405180910390f35b6102cc60048036038101906102c79190612dd1565b6109bd565b005b6102d6610b7f565b6040516102e39190612b66565b60405180910390f35b61030660048036038101906103019190613078565b610b92565b005b610322600480360381019061031d919061320a565b610c33565b60405161032f9190613340565b60405180910390f35b610352600480360381019061034d9190613362565b610d4c565b005b61036e600480360381019061036991906133af565b610e69565b005b610378610f06565b005b610382610f8e565b60405161038f9190613449565b60405180910390f35b6103b260048036038101906103ad9190612be6565b610fb8565b005b6103ce60048036038101906103c99190613490565b6110bd565b005b6103d86110d3565b6040516103e59190612b66565b60405180910390f35b61040860048036038101906104039190613362565b6110e6565b005b610424600480360381019061041f9190612c46565b611178565b005b610440600480360381019061043b91906134d0565b611223565b005b61045c60048036038101906104579190613530565b611358565b6040516104699190612b66565b60405180910390f35b61048c60048036038101906104879190613570565b6113ec565b005b6104a860048036038101906104a39190613607565b61148d565b005b6104c460048036038101906104bf9190613634565b611584565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052d906136f9565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061065957507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610669575061066882611621565b5b9050919050565b61067861168b565b73ffffffffffffffffffffffffffffffffffffffff16610696610f8e565b73ffffffffffffffffffffffffffffffffffffffff16146106ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e390613765565b60405180910390fd5b6001600560006101000a81548160ff021916908315150217905550565b61071161168b565b73ffffffffffffffffffffffffffffffffffffffff1661072f610f8e565b73ffffffffffffffffffffffffffffffffffffffff1614610785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077c90613765565b60405180910390fd5b610790838383610fb8565b61079981611178565b505050565b606060006004600084815260200190815260200160002080546107c0906137b4565b80601f01602080910402602001604051908101604052809291908181526020018280546107ec906137b4565b80156108395780601f1061080e57610100808354040283529160200191610839565b820191906000526020600020905b81548152906001019060200180831161081c57829003601f168201915b50505050509050600081510361085a5761085283611693565b91505061085f565b809150505b919050565b61086c61168b565b73ffffffffffffffffffffffffffffffffffffffff1661088a610f8e565b73ffffffffffffffffffffffffffffffffffffffff16146108e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d790613765565b60405180910390fd5b6000600360146101000a81548160ff021916908315150217905550565b6004602052806000526040600020600091509050805461091c906137b4565b80601f0160208091040260200160405190810160405280929190818152602001828054610948906137b4565b80156109955780601f1061096a57610100808354040283529160200191610995565b820191906000526020600020905b81548152906001019060200180831161097857829003601f168201915b505050505081565b60066020528060005260406000206000915054906101000a900460ff1681565b6109c561168b565b73ffffffffffffffffffffffffffffffffffffffff166109e3610f8e565b73ffffffffffffffffffffffffffffffffffffffff1614610a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3090613765565b60405180910390fd5b600360149054906101000a900460ff16610a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7f90613831565b60405180910390fd5b8383905086869050148015610aa257508181905084849050145b610ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad89061389d565b60405180910390fd5b60005b86869050811015610b7657610b63878783818110610b0557610b046138bd565b5b9050602002016020810190610b1a9190613607565b868684818110610b2d57610b2c6138bd565b5b90506020020135858585818110610b4757610b466138bd565b5b9050602002013560405180602001604052806000815250611727565b8080610b6e9061391b565b915050610ae4565b50505050505050565b600360149054906101000a900460ff1681565b610b9a61168b565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610be05750610bdf85610bda61168b565b611358565b5b610c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c16906139d5565b60405180910390fd5b610c2c85858585856118bc565b5050505050565b60608151835114610c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7090613a67565b60405180910390fd5b6000835167ffffffffffffffff811115610c9657610c95612e85565b5b604051908082528060200260200182016040528015610cc45781602001602082028036833780820191505090505b50905060005b8451811015610d4157610d11858281518110610ce957610ce86138bd565b5b6020026020010151858381518110610d0457610d036138bd565b5b60200260200101516104c6565b828281518110610d2457610d236138bd565b5b60200260200101818152505080610d3a9061391b565b9050610cca565b508091505092915050565b610d5461168b565b73ffffffffffffffffffffffffffffffffffffffff16610d72610f8e565b73ffffffffffffffffffffffffffffffffffffffff1614610dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbf90613765565b60405180910390fd5b600560009054906101000a900460ff1615610e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0f90613ad3565b60405180910390fd5b610e6582828080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611bcf565b5050565b610e7161168b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610eb75750610eb683610eb161168b565b611358565b5b610ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eed90613b65565b60405180910390fd5b610f01838383611be2565b505050565b610f0e61168b565b73ffffffffffffffffffffffffffffffffffffffff16610f2c610f8e565b73ffffffffffffffffffffffffffffffffffffffff1614610f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7990613765565b60405180910390fd5b610f8c6000611e92565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610fc061168b565b73ffffffffffffffffffffffffffffffffffffffff16610fde610f8e565b73ffffffffffffffffffffffffffffffffffffffff1614611034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102b90613765565b60405180910390fd5b6006600082815260200190815260200160002060009054906101000a900460ff1615611095576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108c90613ad3565b60405180910390fd5b82826004600084815260200190815260200160002091826110b7929190613d3c565b50505050565b6110cf6110c861168b565b8383611f58565b5050565b600560009054906101000a900460ff1681565b6110ee61168b565b73ffffffffffffffffffffffffffffffffffffffff1661110c610f8e565b73ffffffffffffffffffffffffffffffffffffffff1614611162576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115990613765565b60405180910390fd5b61116c8282610d4c565b611174610670565b5050565b61118061168b565b73ffffffffffffffffffffffffffffffffffffffff1661119e610f8e565b73ffffffffffffffffffffffffffffffffffffffff16146111f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111eb90613765565b60405180910390fd5b60016006600083815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61122b61168b565b73ffffffffffffffffffffffffffffffffffffffff16611249610f8e565b73ffffffffffffffffffffffffffffffffffffffff161461129f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129690613765565b60405180910390fd5b600360149054906101000a900460ff166112ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e590613831565b60405180910390fd5b60005b838390508110156113525761133f848483818110611312576113116138bd565b5b90506020020160208101906113279190613607565b83600160405180602001604052806000815250611727565b808061134a9061391b565b9150506112f1565b50505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113f461168b565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061143a57506114398561143461168b565b611358565b5b611479576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147090613b65565b60405180910390fd5b61148685858585856120c4565b5050505050565b61149561168b565b73ffffffffffffffffffffffffffffffffffffffff166114b3610f8e565b73ffffffffffffffffffffffffffffffffffffffff1614611509576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150090613765565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156f90613e7e565b60405180910390fd5b61158181611e92565b50565b61158c61168b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806115d257506115d1836115cc61168b565b611358565b5b611611576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160890613b65565b60405180910390fd5b61161c838383612345565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6060600280546116a2906137b4565b80601f01602080910402602001604051908101604052809291908181526020018280546116ce906137b4565b801561171b5780601f106116f05761010080835404028352916020019161171b565b820191906000526020600020905b8154815290600101906020018083116116fe57829003601f168201915b50505050509050919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611796576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178d90613f10565b60405180910390fd5b60006117a061168b565b90506117c1816000876117b288612561565b6117bb88612561565b876125db565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118209190613f30565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161189e929190613f64565b60405180910390a46118b5816000878787876125e3565b5050505050565b8151835114611900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f790613fff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361196f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196690614091565b60405180910390fd5b600061197961168b565b90506119898187878787876125db565b60005b8451811015611b3a5760008582815181106119aa576119a96138bd565b5b6020026020010151905060008583815181106119c9576119c86138bd565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6190614123565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b1f9190613f30565b9250508190555050505080611b339061391b565b905061198c565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611bb1929190614143565b60405180910390a4611bc78187878787876127ba565b505050505050565b8060029081611bde919061417a565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c48906142be565b60405180910390fd5b8051825114611c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8c90613fff565b60405180910390fd5b6000611c9f61168b565b9050611cbf818560008686604051806020016040528060008152506125db565b60005b8351811015611e0c576000848281518110611ce057611cdf6138bd565b5b602002602001015190506000848381518110611cff57611cfe6138bd565b5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9790614350565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050508080611e049061391b565b915050611cc2565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611e84929190614143565b60405180910390a450505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbd906143e2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120b79190612b66565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212a90614091565b60405180910390fd5b600061213d61168b565b905061215d81878761214e88612561565b61215788612561565b876125db565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156121f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121eb90614123565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122a99190613f30565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051612326929190613f64565b60405180910390a461233c8288888888886125e3565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036123b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ab906142be565b60405180910390fd5b60006123be61168b565b90506123ee818560006123d087612561565b6123d987612561565b604051806020016040528060008152506125db565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015612485576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247c90614350565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612552929190613f64565b60405180910390a45050505050565b60606000600167ffffffffffffffff8111156125805761257f612e85565b5b6040519080825280602002602001820160405280156125ae5781602001602082028036833780820191505090505b50905082816000815181106125c6576125c56138bd565b5b60200260200101818152505080915050919050565b505050505050565b6126028473ffffffffffffffffffffffffffffffffffffffff16612991565b156127b2578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612648959493929190614457565b6020604051808303816000875af192505050801561268457506040513d601f19601f8201168201806040525081019061268191906144c6565b60015b61272957612690614500565b806308c379a0036126ec57506126a4614522565b806126af57506126ee565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e39190612d03565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272090614624565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146127b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a7906146b6565b60405180910390fd5b505b505050505050565b6127d98473ffffffffffffffffffffffffffffffffffffffff16612991565b15612989578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b815260040161281f9594939291906146d6565b6020604051808303816000875af192505050801561285b57506040513d601f19601f8201168201806040525081019061285891906144c6565b60015b61290057612867614500565b806308c379a0036128c3575061287b614522565b8061288657506128c5565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ba9190612d03565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f790614624565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297e906146b6565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129f3826129c8565b9050919050565b612a03816129e8565b8114612a0e57600080fd5b50565b600081359050612a20816129fa565b92915050565b6000819050919050565b612a3981612a26565b8114612a4457600080fd5b50565b600081359050612a5681612a30565b92915050565b60008060408385031215612a7357612a726129be565b5b6000612a8185828601612a11565b9250506020612a9285828601612a47565b9150509250929050565b612aa581612a26565b82525050565b6000602082019050612ac06000830184612a9c565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612afb81612ac6565b8114612b0657600080fd5b50565b600081359050612b1881612af2565b92915050565b600060208284031215612b3457612b336129be565b5b6000612b4284828501612b09565b91505092915050565b60008115159050919050565b612b6081612b4b565b82525050565b6000602082019050612b7b6000830184612b57565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112612ba657612ba5612b81565b5b8235905067ffffffffffffffff811115612bc357612bc2612b86565b5b602083019150836001820283011115612bdf57612bde612b8b565b5b9250929050565b600080600060408486031215612bff57612bfe6129be565b5b600084013567ffffffffffffffff811115612c1d57612c1c6129c3565b5b612c2986828701612b90565b93509350506020612c3c86828701612a47565b9150509250925092565b600060208284031215612c5c57612c5b6129be565b5b6000612c6a84828501612a47565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612cad578082015181840152602081019050612c92565b60008484015250505050565b6000601f19601f8301169050919050565b6000612cd582612c73565b612cdf8185612c7e565b9350612cef818560208601612c8f565b612cf881612cb9565b840191505092915050565b60006020820190508181036000830152612d1d8184612cca565b905092915050565b60008083601f840112612d3b57612d3a612b81565b5b8235905067ffffffffffffffff811115612d5857612d57612b86565b5b602083019150836020820283011115612d7457612d73612b8b565b5b9250929050565b60008083601f840112612d9157612d90612b81565b5b8235905067ffffffffffffffff811115612dae57612dad612b86565b5b602083019150836020820283011115612dca57612dc9612b8b565b5b9250929050565b60008060008060008060608789031215612dee57612ded6129be565b5b600087013567ffffffffffffffff811115612e0c57612e0b6129c3565b5b612e1889828a01612d25565b9650965050602087013567ffffffffffffffff811115612e3b57612e3a6129c3565b5b612e4789828a01612d7b565b9450945050604087013567ffffffffffffffff811115612e6a57612e696129c3565b5b612e7689828a01612d7b565b92509250509295509295509295565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ebd82612cb9565b810181811067ffffffffffffffff82111715612edc57612edb612e85565b5b80604052505050565b6000612eef6129b4565b9050612efb8282612eb4565b919050565b600067ffffffffffffffff821115612f1b57612f1a612e85565b5b602082029050602081019050919050565b6000612f3f612f3a84612f00565b612ee5565b90508083825260208201905060208402830185811115612f6257612f61612b8b565b5b835b81811015612f8b5780612f778882612a47565b845260208401935050602081019050612f64565b5050509392505050565b600082601f830112612faa57612fa9612b81565b5b8135612fba848260208601612f2c565b91505092915050565b600080fd5b600067ffffffffffffffff821115612fe357612fe2612e85565b5b612fec82612cb9565b9050602081019050919050565b82818337600083830152505050565b600061301b61301684612fc8565b612ee5565b90508281526020810184848401111561303757613036612fc3565b5b613042848285612ff9565b509392505050565b600082601f83011261305f5761305e612b81565b5b813561306f848260208601613008565b91505092915050565b600080600080600060a08688031215613094576130936129be565b5b60006130a288828901612a11565b95505060206130b388828901612a11565b945050604086013567ffffffffffffffff8111156130d4576130d36129c3565b5b6130e088828901612f95565b935050606086013567ffffffffffffffff811115613101576131006129c3565b5b61310d88828901612f95565b925050608086013567ffffffffffffffff81111561312e5761312d6129c3565b5b61313a8882890161304a565b9150509295509295909350565b600067ffffffffffffffff82111561316257613161612e85565b5b602082029050602081019050919050565b600061318661318184613147565b612ee5565b905080838252602082019050602084028301858111156131a9576131a8612b8b565b5b835b818110156131d257806131be8882612a11565b8452602084019350506020810190506131ab565b5050509392505050565b600082601f8301126131f1576131f0612b81565b5b8135613201848260208601613173565b91505092915050565b60008060408385031215613221576132206129be565b5b600083013567ffffffffffffffff81111561323f5761323e6129c3565b5b61324b858286016131dc565b925050602083013567ffffffffffffffff81111561326c5761326b6129c3565b5b61327885828601612f95565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6132b781612a26565b82525050565b60006132c983836132ae565b60208301905092915050565b6000602082019050919050565b60006132ed82613282565b6132f7818561328d565b93506133028361329e565b8060005b8381101561333357815161331a88826132bd565b9750613325836132d5565b925050600181019050613306565b5085935050505092915050565b6000602082019050818103600083015261335a81846132e2565b905092915050565b60008060208385031215613379576133786129be565b5b600083013567ffffffffffffffff811115613397576133966129c3565b5b6133a385828601612b90565b92509250509250929050565b6000806000606084860312156133c8576133c76129be565b5b60006133d686828701612a11565b935050602084013567ffffffffffffffff8111156133f7576133f66129c3565b5b61340386828701612f95565b925050604084013567ffffffffffffffff811115613424576134236129c3565b5b61343086828701612f95565b9150509250925092565b613443816129e8565b82525050565b600060208201905061345e600083018461343a565b92915050565b61346d81612b4b565b811461347857600080fd5b50565b60008135905061348a81613464565b92915050565b600080604083850312156134a7576134a66129be565b5b60006134b585828601612a11565b92505060206134c68582860161347b565b9150509250929050565b6000806000604084860312156134e9576134e86129be565b5b600084013567ffffffffffffffff811115613507576135066129c3565b5b61351386828701612d25565b9350935050602061352686828701612a47565b9150509250925092565b60008060408385031215613547576135466129be565b5b600061355585828601612a11565b925050602061356685828601612a11565b9150509250929050565b600080600080600060a0868803121561358c5761358b6129be565b5b600061359a88828901612a11565b95505060206135ab88828901612a11565b94505060406135bc88828901612a47565b93505060606135cd88828901612a47565b925050608086013567ffffffffffffffff8111156135ee576135ed6129c3565b5b6135fa8882890161304a565b9150509295509295909350565b60006020828403121561361d5761361c6129be565b5b600061362b84828501612a11565b91505092915050565b60008060006060848603121561364d5761364c6129be565b5b600061365b86828701612a11565b935050602061366c86828701612a47565b925050604061367d86828701612a47565b9150509250925092565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006136e3602b83612c7e565b91506136ee82613687565b604082019050919050565b60006020820190508181036000830152613712816136d6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061374f602083612c7e565b915061375a82613719565b602082019050919050565b6000602082019050818103600083015261377e81613742565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806137cc57607f821691505b6020821081036137df576137de613785565b5b50919050565b7f4e6f7420616c6c6f776564000000000000000000000000000000000000000000600082015250565b600061381b600b83612c7e565b9150613826826137e5565b602082019050919050565b6000602082019050818103600083015261384a8161380e565b9050919050565b7f426164206172726179206c656e67746873000000000000000000000000000000600082015250565b6000613887601183612c7e565b915061389282613851565b602082019050919050565b600060208201905081810360008301526138b68161387a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061392682612a26565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613958576139576138ec565b5b600182019050919050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006139bf603283612c7e565b91506139ca82613963565b604082019050919050565b600060208201905081810360008301526139ee816139b2565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000613a51602983612c7e565b9150613a5c826139f5565b604082019050919050565b60006020820190508181036000830152613a8081613a44565b9050919050565b7f467265657a656400000000000000000000000000000000000000000000000000600082015250565b6000613abd600783612c7e565b9150613ac882613a87565b602082019050919050565b60006020820190508181036000830152613aec81613ab0565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b6000613b4f602983612c7e565b9150613b5a82613af3565b604082019050919050565b60006020820190508181036000830152613b7e81613b42565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613bf27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613bb5565b613bfc8683613bb5565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613c39613c34613c2f84612a26565b613c14565b612a26565b9050919050565b6000819050919050565b613c5383613c1e565b613c67613c5f82613c40565b848454613bc2565b825550505050565b600090565b613c7c613c6f565b613c87818484613c4a565b505050565b5b81811015613cab57613ca0600082613c74565b600181019050613c8d565b5050565b601f821115613cf057613cc181613b90565b613cca84613ba5565b81016020851015613cd9578190505b613ced613ce585613ba5565b830182613c8c565b50505b505050565b600082821c905092915050565b6000613d1360001984600802613cf5565b1980831691505092915050565b6000613d2c8383613d02565b9150826002028217905092915050565b613d468383613b85565b67ffffffffffffffff811115613d5f57613d5e612e85565b5b613d6982546137b4565b613d74828285613caf565b6000601f831160018114613da35760008415613d91578287013590505b613d9b8582613d20565b865550613e03565b601f198416613db186613b90565b60005b82811015613dd957848901358255600182019150602085019450602081019050613db4565b86831015613df65784890135613df2601f891682613d02565b8355505b6001600288020188555050505b50505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613e68602683612c7e565b9150613e7382613e0c565b604082019050919050565b60006020820190508181036000830152613e9781613e5b565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613efa602183612c7e565b9150613f0582613e9e565b604082019050919050565b60006020820190508181036000830152613f2981613eed565b9050919050565b6000613f3b82612a26565b9150613f4683612a26565b9250828201905080821115613f5e57613f5d6138ec565b5b92915050565b6000604082019050613f796000830185612a9c565b613f866020830184612a9c565b9392505050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000613fe9602883612c7e565b9150613ff482613f8d565b604082019050919050565b6000602082019050818103600083015261401881613fdc565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061407b602583612c7e565b91506140868261401f565b604082019050919050565b600060208201905081810360008301526140aa8161406e565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b600061410d602a83612c7e565b9150614118826140b1565b604082019050919050565b6000602082019050818103600083015261413c81614100565b9050919050565b6000604082019050818103600083015261415d81856132e2565b9050818103602083015261417181846132e2565b90509392505050565b61418382612c73565b67ffffffffffffffff81111561419c5761419b612e85565b5b6141a682546137b4565b6141b1828285613caf565b600060209050601f8311600181146141e457600084156141d2578287015190505b6141dc8582613d20565b865550614244565b601f1984166141f286613b90565b60005b8281101561421a578489015182556001820191506020850194506020810190506141f5565b868310156142375784890151614233601f891682613d02565b8355505b6001600288020188555050505b505050505050565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006142a8602383612c7e565b91506142b38261424c565b604082019050919050565b600060208201905081810360008301526142d78161429b565b9050919050565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b600061433a602483612c7e565b9150614345826142de565b604082019050919050565b600060208201905081810360008301526143698161432d565b9050919050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b60006143cc602983612c7e565b91506143d782614370565b604082019050919050565b600060208201905081810360008301526143fb816143bf565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061442982614402565b614433818561440d565b9350614443818560208601612c8f565b61444c81612cb9565b840191505092915050565b600060a08201905061446c600083018861343a565b614479602083018761343a565b6144866040830186612a9c565b6144936060830185612a9c565b81810360808301526144a5818461441e565b90509695505050505050565b6000815190506144c081612af2565b92915050565b6000602082840312156144dc576144db6129be565b5b60006144ea848285016144b1565b91505092915050565b60008160e01c9050919050565b600060033d111561451f5760046000803e61451c6000516144f3565b90505b90565b600060443d106145af576145346129b4565b60043d036004823e80513d602482011167ffffffffffffffff8211171561455c5750506145af565b808201805167ffffffffffffffff81111561457a57505050506145af565b80602083010160043d0385018111156145975750505050506145af565b6145a682602001850186612eb4565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b600061460e603483612c7e565b9150614619826145b2565b604082019050919050565b6000602082019050818103600083015261463d81614601565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b60006146a0602883612c7e565b91506146ab82614644565b604082019050919050565b600060208201905081810360008301526146cf81614693565b9050919050565b600060a0820190506146eb600083018861343a565b6146f8602083018761343a565b818103604083015261470a81866132e2565b9050818103606083015261471e81856132e2565b90508181036080830152614732818461441e565b9050969550505050505056fea2646970667358221220c513d085927946948a43c5c51a9a7842cddc0d0b0cc89f32cd13ff1a4fde183664736f6c63430008110033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _uri (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


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.