ETH Price: $3,480.19 (+1.66%)
Gas: 13 Gwei

Token

CASETiFY Collects: Proofs (PROOF)
 

Overview

Max Total Supply

1,433 PROOF

Holders

1,222

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0x8d5708e6682b63b7b200923a26f04387bb3c9a85
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:
CASETiFYCollectsProofs

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 2 of 10 : ERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

        return batchBalances;
    }

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

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

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

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

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

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

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

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

        return array;
    }
}

File 3 of 10 : 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 4 of 10 : IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

File 5 of 10 : 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 6 of 10 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 8 of 10 : 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 9 of 10 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 10 of 10 : CASETiFYCollectsProofs.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

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

error ZeroInput();
error MismatchedArrays();
error SoulboundTokenNotTransferable();

contract CASETiFYCollectsProofs is ERC1155, Ownable {
    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    constructor(string memory name_, string memory symbol_, string memory tokenuri_) ERC1155(tokenuri_) {
        _name = name_;
        _symbol = symbol_;
    }

    function name() public view virtual returns (string memory) {
        return _name;
    }

    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    function setURI(string calldata newuri) public onlyOwner {
        _setURI(newuri);
    }

	function airDrop(address to, uint256 id, uint256 quantity) public onlyOwner {
        if (quantity == 0) revert ZeroInput();
        
		_mint(to, id, quantity, "");
    }

	function airDropBatch(address to, uint256[] calldata ids, uint256[] calldata quantity) public onlyOwner {
        _mintBatch(to, ids, quantity, "");
    }

	function bulkAirDrop(address[] calldata recipients, uint256 id) public onlyOwner {
        if (recipients.length == 0) revert ZeroInput();
        
        for (uint256 i = 0; i < recipients.length;) {
            _mint(recipients[i], id, 1, "");
            unchecked {
                ++i;
            }
        }
	}

	function bulkAirDropBatch(address[] calldata recipients, uint256[] calldata ids) public onlyOwner {
        if (recipients.length == 0) revert ZeroInput();
        if (recipients.length != ids.length) revert MismatchedArrays();
        
        for (uint256 i = 0; i < recipients.length;) {
            _mint(recipients[i], ids[i], 1, "");
            unchecked {
                ++i;
            }
        }
	}

    function setApprovalForAll(address, bool) public pure override {
        revert SoulboundTokenNotTransferable();
    }

    function safeTransferFrom(address, address, uint256, uint256, bytes memory) public pure override {
        revert SoulboundTokenNotTransferable();
    }

    function safeBatchTransferFrom(address, address, uint256[] memory, uint256[] memory, bytes memory) public pure override {
        revert SoulboundTokenNotTransferable();
    }
}

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":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"string","name":"tokenuri_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"MismatchedArrays","type":"error"},{"inputs":[],"name":"SoulboundTokenNotTransferable","type":"error"},{"inputs":[],"name":"ZeroInput","type":"error"},{"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":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"quantity","type":"uint256[]"}],"name":"airDropBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"bulkAirDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"bulkAirDropBatch","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"bool","name":"","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5060405162003188380380620031888339818101604052810190620000379190620003dc565b806200004981620000a560201b60201c565b506200006a6200005e620000c160201b60201c565b620000c960201b60201c565b8260049080519060200190620000829291906200018f565b5081600590805190602001906200009b9291906200018f565b50505050620004fa565b8060029080519060200190620000bd9291906200018f565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200019d90620004c4565b90600052602060002090601f016020900481019282620001c157600085556200020d565b82601f10620001dc57805160ff19168380011785556200020d565b828001600101855582156200020d579182015b828111156200020c578251825591602001919060010190620001ef565b5b5090506200021c919062000220565b5090565b5b808211156200023b57600081600090555060010162000221565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620002a8826200025d565b810181811067ffffffffffffffff82111715620002ca57620002c96200026e565b5b80604052505050565b6000620002df6200023f565b9050620002ed82826200029d565b919050565b600067ffffffffffffffff82111562000310576200030f6200026e565b5b6200031b826200025d565b9050602081019050919050565b60005b83811015620003485780820151818401526020810190506200032b565b8381111562000358576000848401525b50505050565b6000620003756200036f84620002f2565b620002d3565b90508281526020810184848401111562000394576200039362000258565b5b620003a184828562000328565b509392505050565b600082601f830112620003c157620003c062000253565b5b8151620003d38482602086016200035e565b91505092915050565b600080600060608486031215620003f857620003f762000249565b5b600084015167ffffffffffffffff8111156200041957620004186200024e565b5b6200042786828701620003a9565b935050602084015167ffffffffffffffff8111156200044b576200044a6200024e565b5b6200045986828701620003a9565b925050604084015167ffffffffffffffff8111156200047d576200047c6200024e565b5b6200048b86828701620003a9565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004dd57607f821691505b60208210811415620004f457620004f362000495565b5b50919050565b612c7e806200050a6000396000f3fe608060405234801561001057600080fd5b50600436106101155760003560e01c8063715018a6116100a2578063c697373311610071578063c6973733146102ca578063e985e9c5146102e6578063f242432a14610316578063f2fde38b14610332578063fe1c947c1461034e57610115565b8063715018a6146102685780638da5cb5b1461027257806395d89b4114610290578063a22cb465146102ae57610115565b80630e89341c116100e95780630e89341c146101b4578063127ce3ce146101e45780632eb2c2d6146102005780634e1273f41461021c57806368f24c781461024c57610115565b8062fdd58e1461011a57806301ffc9a71461014a57806302fe53051461017a57806306fdde0314610196575b600080fd5b610134600480360381019061012f9190611857565b61036a565b60405161014191906118a6565b60405180910390f35b610164600480360381019061015f9190611919565b610433565b6040516101719190611961565b60405180910390f35b610194600480360381019061018f91906119e1565b610515565b005b61019e61056e565b6040516101ab9190611ac7565b60405180910390f35b6101ce60048036038101906101c99190611ae9565b610600565b6040516101db9190611ac7565b60405180910390f35b6101fe60048036038101906101f99190611b6c565b610694565b005b61021a60048036038101906102159190611df4565b610740565b005b61023660048036038101906102319190611f86565b610772565b60405161024391906120bc565b60405180910390f35b61026660048036038101906102619190612134565b61088b565b005b610270610933565b005b61027a610947565b60405161028791906121a3565b60405180910390f35b610298610971565b6040516102a59190611ac7565b60405180910390f35b6102c860048036038101906102c391906121ea565b610a03565b005b6102e460048036038101906102df919061222a565b610a35565b005b61030060048036038101906102fb91906122ab565b610b36565b60405161030d9190611961565b60405180910390f35b610330600480360381019061032b91906122eb565b610bca565b005b61034c60048036038101906103479190612382565b610bfc565b005b610368600480360381019061036391906123af565b610c80565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156103db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103d290612474565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104fe57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061050e575061050d82610ce3565b5b9050919050565b61051d610d4d565b61056a82828080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050610dcb565b5050565b60606004805461057d906124c3565b80601f01602080910402602001604051908101604052809291908181526020018280546105a9906124c3565b80156105f65780601f106105cb576101008083540402835291602001916105f6565b820191906000526020600020905b8154815290600101906020018083116105d957829003601f168201915b5050505050905090565b60606002805461060f906124c3565b80601f016020809104026020016040519081016040528092919081815260200182805461063b906124c3565b80156106885780601f1061065d57610100808354040283529160200191610688565b820191906000526020600020905b81548152906001019060200180831161066b57829003601f168201915b50505050509050919050565b61069c610d4d565b61073985858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060405180602001604052806000815250610de5565b5050505050565b6040517fbaeee62600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b606081518351146107b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107af90612567565b60405180910390fd5b6000835167ffffffffffffffff8111156107d5576107d4611c01565b5b6040519080825280602002602001820160405280156108035781602001602082028036833780820191505090505b50905060005b84518110156108805761085085828151811061082857610827612587565b5b602002602001015185838151811061084357610842612587565b5b602002602001015161036a565b82828151811061086357610862612587565b5b60200260200101818152505080610879906125e5565b9050610809565b508091505092915050565b610893610d4d565b60008383905014156108d1576040517faf458c0700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b8383905081101561092d576109228484838181106108f5576108f4612587565b5b905060200201602081019061090a9190612382565b83600160405180602001604052806000815250611012565b8060010190506108d4565b50505050565b61093b610d4d565b61094560006111c3565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610980906124c3565b80601f01602080910402602001604051908101604052809291908181526020018280546109ac906124c3565b80156109f95780601f106109ce576101008083540402835291602001916109f9565b820191906000526020600020905b8154815290600101906020018083116109dc57829003601f168201915b5050505050905090565b6040517fbaeee62600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a3d610d4d565b6000848490501415610a7b576040517faf458c0700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818190508484905014610aba576040517fa121188700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b84849050811015610b2f57610b24858583818110610ade57610add612587565b5b9050602002016020810190610af39190612382565b848484818110610b0657610b05612587565b5b90506020020135600160405180602001604052806000815250611012565b806001019050610abd565b5050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6040517fbaeee62600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c04610d4d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6b906126a0565b60405180910390fd5b610c7d816111c3565b50565b610c88610d4d565b6000811415610cc3576040517faf458c0700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cde83838360405180602001604052806000815250611012565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610d55611289565b73ffffffffffffffffffffffffffffffffffffffff16610d73610947565b73ffffffffffffffffffffffffffffffffffffffff1614610dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc09061270c565b60405180910390fd5b565b8060029080519060200190610de192919061170c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415610e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4c9061279e565b60405180910390fd5b8151835114610e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9090612830565b60405180910390fd5b6000610ea3611289565b9050610eb481600087878787611291565b60005b8451811015610f6d57838181518110610ed357610ed2612587565b5b6020026020010151600080878481518110610ef157610ef0612587565b5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f539190612850565b925050819055508080610f65906125e5565b915050610eb7565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610fe59291906128a6565b60405180910390a4610ffc81600087878787611299565b61100b816000878787876112a1565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611082576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110799061279e565b60405180910390fd5b600061108c611289565b9050600061109985611488565b905060006110a685611488565b90506110b783600089858589611291565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111169190612850565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516111949291906128dd565b60405180910390a46111ab83600089858589611299565b6111ba83600089898989611502565b50505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b505050505050565b505050505050565b6112c08473ffffffffffffffffffffffffffffffffffffffff166116e9565b15611480578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b815260040161130695949392919061295b565b602060405180830381600087803b15801561132057600080fd5b505af192505050801561135157506040513d601f19601f8201168201806040525081019061134e91906129d8565b60015b6113f75761135d612a12565b806308c379a014156113ba5750611372612a34565b8061137d57506113bc565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b19190611ac7565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ee90612b3c565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461147e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147590612bce565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff8111156114a7576114a6611c01565b5b6040519080825280602002602001820160405280156114d55781602001602082028036833780820191505090505b50905082816000815181106114ed576114ec612587565b5b60200260200101818152505080915050919050565b6115218473ffffffffffffffffffffffffffffffffffffffff166116e9565b156116e1578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611567959493929190612bee565b602060405180830381600087803b15801561158157600080fd5b505af19250505080156115b257506040513d601f19601f820116820180604052508101906115af91906129d8565b60015b611658576115be612a12565b806308c379a0141561161b57506115d3612a34565b806115de575061161d565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116129190611ac7565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164f90612b3c565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146116df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d690612bce565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054611718906124c3565b90600052602060002090601f01602090048101928261173a5760008555611781565b82601f1061175357805160ff1916838001178555611781565b82800160010185558215611781579182015b82811115611780578251825591602001919060010190611765565b5b50905061178e9190611792565b5090565b5b808211156117ab576000816000905550600101611793565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006117ee826117c3565b9050919050565b6117fe816117e3565b811461180957600080fd5b50565b60008135905061181b816117f5565b92915050565b6000819050919050565b61183481611821565b811461183f57600080fd5b50565b6000813590506118518161182b565b92915050565b6000806040838503121561186e5761186d6117b9565b5b600061187c8582860161180c565b925050602061188d85828601611842565b9150509250929050565b6118a081611821565b82525050565b60006020820190506118bb6000830184611897565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6118f6816118c1565b811461190157600080fd5b50565b600081359050611913816118ed565b92915050565b60006020828403121561192f5761192e6117b9565b5b600061193d84828501611904565b91505092915050565b60008115159050919050565b61195b81611946565b82525050565b60006020820190506119766000830184611952565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126119a1576119a061197c565b5b8235905067ffffffffffffffff8111156119be576119bd611981565b5b6020830191508360018202830111156119da576119d9611986565b5b9250929050565b600080602083850312156119f8576119f76117b9565b5b600083013567ffffffffffffffff811115611a1657611a156117be565b5b611a228582860161198b565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611a68578082015181840152602081019050611a4d565b83811115611a77576000848401525b50505050565b6000601f19601f8301169050919050565b6000611a9982611a2e565b611aa38185611a39565b9350611ab3818560208601611a4a565b611abc81611a7d565b840191505092915050565b60006020820190508181036000830152611ae18184611a8e565b905092915050565b600060208284031215611aff57611afe6117b9565b5b6000611b0d84828501611842565b91505092915050565b60008083601f840112611b2c57611b2b61197c565b5b8235905067ffffffffffffffff811115611b4957611b48611981565b5b602083019150836020820283011115611b6557611b64611986565b5b9250929050565b600080600080600060608688031215611b8857611b876117b9565b5b6000611b968882890161180c565b955050602086013567ffffffffffffffff811115611bb757611bb66117be565b5b611bc388828901611b16565b9450945050604086013567ffffffffffffffff811115611be657611be56117be565b5b611bf288828901611b16565b92509250509295509295909350565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611c3982611a7d565b810181811067ffffffffffffffff82111715611c5857611c57611c01565b5b80604052505050565b6000611c6b6117af565b9050611c778282611c30565b919050565b600067ffffffffffffffff821115611c9757611c96611c01565b5b602082029050602081019050919050565b6000611cbb611cb684611c7c565b611c61565b90508083825260208201905060208402830185811115611cde57611cdd611986565b5b835b81811015611d075780611cf38882611842565b845260208401935050602081019050611ce0565b5050509392505050565b600082601f830112611d2657611d2561197c565b5b8135611d36848260208601611ca8565b91505092915050565b600080fd5b600067ffffffffffffffff821115611d5f57611d5e611c01565b5b611d6882611a7d565b9050602081019050919050565b82818337600083830152505050565b6000611d97611d9284611d44565b611c61565b905082815260208101848484011115611db357611db2611d3f565b5b611dbe848285611d75565b509392505050565b600082601f830112611ddb57611dda61197c565b5b8135611deb848260208601611d84565b91505092915050565b600080600080600060a08688031215611e1057611e0f6117b9565b5b6000611e1e8882890161180c565b9550506020611e2f8882890161180c565b945050604086013567ffffffffffffffff811115611e5057611e4f6117be565b5b611e5c88828901611d11565b935050606086013567ffffffffffffffff811115611e7d57611e7c6117be565b5b611e8988828901611d11565b925050608086013567ffffffffffffffff811115611eaa57611ea96117be565b5b611eb688828901611dc6565b9150509295509295909350565b600067ffffffffffffffff821115611ede57611edd611c01565b5b602082029050602081019050919050565b6000611f02611efd84611ec3565b611c61565b90508083825260208201905060208402830185811115611f2557611f24611986565b5b835b81811015611f4e5780611f3a888261180c565b845260208401935050602081019050611f27565b5050509392505050565b600082601f830112611f6d57611f6c61197c565b5b8135611f7d848260208601611eef565b91505092915050565b60008060408385031215611f9d57611f9c6117b9565b5b600083013567ffffffffffffffff811115611fbb57611fba6117be565b5b611fc785828601611f58565b925050602083013567ffffffffffffffff811115611fe857611fe76117be565b5b611ff485828601611d11565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61203381611821565b82525050565b6000612045838361202a565b60208301905092915050565b6000602082019050919050565b600061206982611ffe565b6120738185612009565b935061207e8361201a565b8060005b838110156120af5781516120968882612039565b97506120a183612051565b925050600181019050612082565b5085935050505092915050565b600060208201905081810360008301526120d6818461205e565b905092915050565b60008083601f8401126120f4576120f361197c565b5b8235905067ffffffffffffffff81111561211157612110611981565b5b60208301915083602082028301111561212d5761212c611986565b5b9250929050565b60008060006040848603121561214d5761214c6117b9565b5b600084013567ffffffffffffffff81111561216b5761216a6117be565b5b612177868287016120de565b9350935050602061218a86828701611842565b9150509250925092565b61219d816117e3565b82525050565b60006020820190506121b86000830184612194565b92915050565b6121c781611946565b81146121d257600080fd5b50565b6000813590506121e4816121be565b92915050565b60008060408385031215612201576122006117b9565b5b600061220f8582860161180c565b9250506020612220858286016121d5565b9150509250929050565b60008060008060408587031215612244576122436117b9565b5b600085013567ffffffffffffffff811115612262576122616117be565b5b61226e878288016120de565b9450945050602085013567ffffffffffffffff811115612291576122906117be565b5b61229d87828801611b16565b925092505092959194509250565b600080604083850312156122c2576122c16117b9565b5b60006122d08582860161180c565b92505060206122e18582860161180c565b9150509250929050565b600080600080600060a08688031215612307576123066117b9565b5b60006123158882890161180c565b95505060206123268882890161180c565b945050604061233788828901611842565b935050606061234888828901611842565b925050608086013567ffffffffffffffff811115612369576123686117be565b5b61237588828901611dc6565b9150509295509295909350565b600060208284031215612398576123976117b9565b5b60006123a68482850161180c565b91505092915050565b6000806000606084860312156123c8576123c76117b9565b5b60006123d68682870161180c565b93505060206123e786828701611842565b92505060406123f886828701611842565b9150509250925092565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b600061245e602a83611a39565b915061246982612402565b604082019050919050565b6000602082019050818103600083015261248d81612451565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806124db57607f821691505b602082108114156124ef576124ee612494565b5b50919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000612551602983611a39565b915061255c826124f5565b604082019050919050565b6000602082019050818103600083015261258081612544565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006125f082611821565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612623576126226125b6565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061268a602683611a39565b91506126958261262e565b604082019050919050565b600060208201905081810360008301526126b98161267d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006126f6602083611a39565b9150612701826126c0565b602082019050919050565b60006020820190508181036000830152612725816126e9565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612788602183611a39565b91506127938261272c565b604082019050919050565b600060208201905081810360008301526127b78161277b565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b600061281a602883611a39565b9150612825826127be565b604082019050919050565b600060208201905081810360008301526128498161280d565b9050919050565b600061285b82611821565b915061286683611821565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561289b5761289a6125b6565b5b828201905092915050565b600060408201905081810360008301526128c0818561205e565b905081810360208301526128d4818461205e565b90509392505050565b60006040820190506128f26000830185611897565b6128ff6020830184611897565b9392505050565b600081519050919050565b600082825260208201905092915050565b600061292d82612906565b6129378185612911565b9350612947818560208601611a4a565b61295081611a7d565b840191505092915050565b600060a0820190506129706000830188612194565b61297d6020830187612194565b818103604083015261298f818661205e565b905081810360608301526129a3818561205e565b905081810360808301526129b78184612922565b90509695505050505050565b6000815190506129d2816118ed565b92915050565b6000602082840312156129ee576129ed6117b9565b5b60006129fc848285016129c3565b91505092915050565b60008160e01c9050919050565b600060033d1115612a315760046000803e612a2e600051612a05565b90505b90565b600060443d1015612a4457612ac7565b612a4c6117af565b60043d036004823e80513d602482011167ffffffffffffffff82111715612a74575050612ac7565b808201805167ffffffffffffffff811115612a925750505050612ac7565b80602083010160043d038501811115612aaf575050505050612ac7565b612abe82602001850186611c30565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000612b26603483611a39565b9150612b3182612aca565b604082019050919050565b60006020820190508181036000830152612b5581612b19565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000612bb8602883611a39565b9150612bc382612b5c565b604082019050919050565b60006020820190508181036000830152612be781612bab565b9050919050565b600060a082019050612c036000830188612194565b612c106020830187612194565b612c1d6040830186611897565b612c2a6060830185611897565b8181036080830152612c3c8184612922565b9050969550505050505056fea2646970667358221220aadbcca1ec5e73933ec3effbec1aae023b258cc8078c64200e0a7b1e5e6260f364736f6c63430008090033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000019434153455469465920436f6c6c656374733a2050726f6f667300000000000000000000000000000000000000000000000000000000000000000000000000000550524f4f460000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101155760003560e01c8063715018a6116100a2578063c697373311610071578063c6973733146102ca578063e985e9c5146102e6578063f242432a14610316578063f2fde38b14610332578063fe1c947c1461034e57610115565b8063715018a6146102685780638da5cb5b1461027257806395d89b4114610290578063a22cb465146102ae57610115565b80630e89341c116100e95780630e89341c146101b4578063127ce3ce146101e45780632eb2c2d6146102005780634e1273f41461021c57806368f24c781461024c57610115565b8062fdd58e1461011a57806301ffc9a71461014a57806302fe53051461017a57806306fdde0314610196575b600080fd5b610134600480360381019061012f9190611857565b61036a565b60405161014191906118a6565b60405180910390f35b610164600480360381019061015f9190611919565b610433565b6040516101719190611961565b60405180910390f35b610194600480360381019061018f91906119e1565b610515565b005b61019e61056e565b6040516101ab9190611ac7565b60405180910390f35b6101ce60048036038101906101c99190611ae9565b610600565b6040516101db9190611ac7565b60405180910390f35b6101fe60048036038101906101f99190611b6c565b610694565b005b61021a60048036038101906102159190611df4565b610740565b005b61023660048036038101906102319190611f86565b610772565b60405161024391906120bc565b60405180910390f35b61026660048036038101906102619190612134565b61088b565b005b610270610933565b005b61027a610947565b60405161028791906121a3565b60405180910390f35b610298610971565b6040516102a59190611ac7565b60405180910390f35b6102c860048036038101906102c391906121ea565b610a03565b005b6102e460048036038101906102df919061222a565b610a35565b005b61030060048036038101906102fb91906122ab565b610b36565b60405161030d9190611961565b60405180910390f35b610330600480360381019061032b91906122eb565b610bca565b005b61034c60048036038101906103479190612382565b610bfc565b005b610368600480360381019061036391906123af565b610c80565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156103db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103d290612474565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104fe57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061050e575061050d82610ce3565b5b9050919050565b61051d610d4d565b61056a82828080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050610dcb565b5050565b60606004805461057d906124c3565b80601f01602080910402602001604051908101604052809291908181526020018280546105a9906124c3565b80156105f65780601f106105cb576101008083540402835291602001916105f6565b820191906000526020600020905b8154815290600101906020018083116105d957829003601f168201915b5050505050905090565b60606002805461060f906124c3565b80601f016020809104026020016040519081016040528092919081815260200182805461063b906124c3565b80156106885780601f1061065d57610100808354040283529160200191610688565b820191906000526020600020905b81548152906001019060200180831161066b57829003601f168201915b50505050509050919050565b61069c610d4d565b61073985858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060405180602001604052806000815250610de5565b5050505050565b6040517fbaeee62600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b606081518351146107b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107af90612567565b60405180910390fd5b6000835167ffffffffffffffff8111156107d5576107d4611c01565b5b6040519080825280602002602001820160405280156108035781602001602082028036833780820191505090505b50905060005b84518110156108805761085085828151811061082857610827612587565b5b602002602001015185838151811061084357610842612587565b5b602002602001015161036a565b82828151811061086357610862612587565b5b60200260200101818152505080610879906125e5565b9050610809565b508091505092915050565b610893610d4d565b60008383905014156108d1576040517faf458c0700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b8383905081101561092d576109228484838181106108f5576108f4612587565b5b905060200201602081019061090a9190612382565b83600160405180602001604052806000815250611012565b8060010190506108d4565b50505050565b61093b610d4d565b61094560006111c3565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610980906124c3565b80601f01602080910402602001604051908101604052809291908181526020018280546109ac906124c3565b80156109f95780601f106109ce576101008083540402835291602001916109f9565b820191906000526020600020905b8154815290600101906020018083116109dc57829003601f168201915b5050505050905090565b6040517fbaeee62600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a3d610d4d565b6000848490501415610a7b576040517faf458c0700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818190508484905014610aba576040517fa121188700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b84849050811015610b2f57610b24858583818110610ade57610add612587565b5b9050602002016020810190610af39190612382565b848484818110610b0657610b05612587565b5b90506020020135600160405180602001604052806000815250611012565b806001019050610abd565b5050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6040517fbaeee62600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c04610d4d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6b906126a0565b60405180910390fd5b610c7d816111c3565b50565b610c88610d4d565b6000811415610cc3576040517faf458c0700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cde83838360405180602001604052806000815250611012565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610d55611289565b73ffffffffffffffffffffffffffffffffffffffff16610d73610947565b73ffffffffffffffffffffffffffffffffffffffff1614610dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc09061270c565b60405180910390fd5b565b8060029080519060200190610de192919061170c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415610e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4c9061279e565b60405180910390fd5b8151835114610e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9090612830565b60405180910390fd5b6000610ea3611289565b9050610eb481600087878787611291565b60005b8451811015610f6d57838181518110610ed357610ed2612587565b5b6020026020010151600080878481518110610ef157610ef0612587565b5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f539190612850565b925050819055508080610f65906125e5565b915050610eb7565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610fe59291906128a6565b60405180910390a4610ffc81600087878787611299565b61100b816000878787876112a1565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611082576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110799061279e565b60405180910390fd5b600061108c611289565b9050600061109985611488565b905060006110a685611488565b90506110b783600089858589611291565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111169190612850565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516111949291906128dd565b60405180910390a46111ab83600089858589611299565b6111ba83600089898989611502565b50505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b505050505050565b505050505050565b6112c08473ffffffffffffffffffffffffffffffffffffffff166116e9565b15611480578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b815260040161130695949392919061295b565b602060405180830381600087803b15801561132057600080fd5b505af192505050801561135157506040513d601f19601f8201168201806040525081019061134e91906129d8565b60015b6113f75761135d612a12565b806308c379a014156113ba5750611372612a34565b8061137d57506113bc565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b19190611ac7565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ee90612b3c565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461147e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147590612bce565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff8111156114a7576114a6611c01565b5b6040519080825280602002602001820160405280156114d55781602001602082028036833780820191505090505b50905082816000815181106114ed576114ec612587565b5b60200260200101818152505080915050919050565b6115218473ffffffffffffffffffffffffffffffffffffffff166116e9565b156116e1578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611567959493929190612bee565b602060405180830381600087803b15801561158157600080fd5b505af19250505080156115b257506040513d601f19601f820116820180604052508101906115af91906129d8565b60015b611658576115be612a12565b806308c379a0141561161b57506115d3612a34565b806115de575061161d565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116129190611ac7565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164f90612b3c565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146116df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d690612bce565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054611718906124c3565b90600052602060002090601f01602090048101928261173a5760008555611781565b82601f1061175357805160ff1916838001178555611781565b82800160010185558215611781579182015b82811115611780578251825591602001919060010190611765565b5b50905061178e9190611792565b5090565b5b808211156117ab576000816000905550600101611793565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006117ee826117c3565b9050919050565b6117fe816117e3565b811461180957600080fd5b50565b60008135905061181b816117f5565b92915050565b6000819050919050565b61183481611821565b811461183f57600080fd5b50565b6000813590506118518161182b565b92915050565b6000806040838503121561186e5761186d6117b9565b5b600061187c8582860161180c565b925050602061188d85828601611842565b9150509250929050565b6118a081611821565b82525050565b60006020820190506118bb6000830184611897565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6118f6816118c1565b811461190157600080fd5b50565b600081359050611913816118ed565b92915050565b60006020828403121561192f5761192e6117b9565b5b600061193d84828501611904565b91505092915050565b60008115159050919050565b61195b81611946565b82525050565b60006020820190506119766000830184611952565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126119a1576119a061197c565b5b8235905067ffffffffffffffff8111156119be576119bd611981565b5b6020830191508360018202830111156119da576119d9611986565b5b9250929050565b600080602083850312156119f8576119f76117b9565b5b600083013567ffffffffffffffff811115611a1657611a156117be565b5b611a228582860161198b565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611a68578082015181840152602081019050611a4d565b83811115611a77576000848401525b50505050565b6000601f19601f8301169050919050565b6000611a9982611a2e565b611aa38185611a39565b9350611ab3818560208601611a4a565b611abc81611a7d565b840191505092915050565b60006020820190508181036000830152611ae18184611a8e565b905092915050565b600060208284031215611aff57611afe6117b9565b5b6000611b0d84828501611842565b91505092915050565b60008083601f840112611b2c57611b2b61197c565b5b8235905067ffffffffffffffff811115611b4957611b48611981565b5b602083019150836020820283011115611b6557611b64611986565b5b9250929050565b600080600080600060608688031215611b8857611b876117b9565b5b6000611b968882890161180c565b955050602086013567ffffffffffffffff811115611bb757611bb66117be565b5b611bc388828901611b16565b9450945050604086013567ffffffffffffffff811115611be657611be56117be565b5b611bf288828901611b16565b92509250509295509295909350565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611c3982611a7d565b810181811067ffffffffffffffff82111715611c5857611c57611c01565b5b80604052505050565b6000611c6b6117af565b9050611c778282611c30565b919050565b600067ffffffffffffffff821115611c9757611c96611c01565b5b602082029050602081019050919050565b6000611cbb611cb684611c7c565b611c61565b90508083825260208201905060208402830185811115611cde57611cdd611986565b5b835b81811015611d075780611cf38882611842565b845260208401935050602081019050611ce0565b5050509392505050565b600082601f830112611d2657611d2561197c565b5b8135611d36848260208601611ca8565b91505092915050565b600080fd5b600067ffffffffffffffff821115611d5f57611d5e611c01565b5b611d6882611a7d565b9050602081019050919050565b82818337600083830152505050565b6000611d97611d9284611d44565b611c61565b905082815260208101848484011115611db357611db2611d3f565b5b611dbe848285611d75565b509392505050565b600082601f830112611ddb57611dda61197c565b5b8135611deb848260208601611d84565b91505092915050565b600080600080600060a08688031215611e1057611e0f6117b9565b5b6000611e1e8882890161180c565b9550506020611e2f8882890161180c565b945050604086013567ffffffffffffffff811115611e5057611e4f6117be565b5b611e5c88828901611d11565b935050606086013567ffffffffffffffff811115611e7d57611e7c6117be565b5b611e8988828901611d11565b925050608086013567ffffffffffffffff811115611eaa57611ea96117be565b5b611eb688828901611dc6565b9150509295509295909350565b600067ffffffffffffffff821115611ede57611edd611c01565b5b602082029050602081019050919050565b6000611f02611efd84611ec3565b611c61565b90508083825260208201905060208402830185811115611f2557611f24611986565b5b835b81811015611f4e5780611f3a888261180c565b845260208401935050602081019050611f27565b5050509392505050565b600082601f830112611f6d57611f6c61197c565b5b8135611f7d848260208601611eef565b91505092915050565b60008060408385031215611f9d57611f9c6117b9565b5b600083013567ffffffffffffffff811115611fbb57611fba6117be565b5b611fc785828601611f58565b925050602083013567ffffffffffffffff811115611fe857611fe76117be565b5b611ff485828601611d11565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61203381611821565b82525050565b6000612045838361202a565b60208301905092915050565b6000602082019050919050565b600061206982611ffe565b6120738185612009565b935061207e8361201a565b8060005b838110156120af5781516120968882612039565b97506120a183612051565b925050600181019050612082565b5085935050505092915050565b600060208201905081810360008301526120d6818461205e565b905092915050565b60008083601f8401126120f4576120f361197c565b5b8235905067ffffffffffffffff81111561211157612110611981565b5b60208301915083602082028301111561212d5761212c611986565b5b9250929050565b60008060006040848603121561214d5761214c6117b9565b5b600084013567ffffffffffffffff81111561216b5761216a6117be565b5b612177868287016120de565b9350935050602061218a86828701611842565b9150509250925092565b61219d816117e3565b82525050565b60006020820190506121b86000830184612194565b92915050565b6121c781611946565b81146121d257600080fd5b50565b6000813590506121e4816121be565b92915050565b60008060408385031215612201576122006117b9565b5b600061220f8582860161180c565b9250506020612220858286016121d5565b9150509250929050565b60008060008060408587031215612244576122436117b9565b5b600085013567ffffffffffffffff811115612262576122616117be565b5b61226e878288016120de565b9450945050602085013567ffffffffffffffff811115612291576122906117be565b5b61229d87828801611b16565b925092505092959194509250565b600080604083850312156122c2576122c16117b9565b5b60006122d08582860161180c565b92505060206122e18582860161180c565b9150509250929050565b600080600080600060a08688031215612307576123066117b9565b5b60006123158882890161180c565b95505060206123268882890161180c565b945050604061233788828901611842565b935050606061234888828901611842565b925050608086013567ffffffffffffffff811115612369576123686117be565b5b61237588828901611dc6565b9150509295509295909350565b600060208284031215612398576123976117b9565b5b60006123a68482850161180c565b91505092915050565b6000806000606084860312156123c8576123c76117b9565b5b60006123d68682870161180c565b93505060206123e786828701611842565b92505060406123f886828701611842565b9150509250925092565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b600061245e602a83611a39565b915061246982612402565b604082019050919050565b6000602082019050818103600083015261248d81612451565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806124db57607f821691505b602082108114156124ef576124ee612494565b5b50919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000612551602983611a39565b915061255c826124f5565b604082019050919050565b6000602082019050818103600083015261258081612544565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006125f082611821565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612623576126226125b6565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061268a602683611a39565b91506126958261262e565b604082019050919050565b600060208201905081810360008301526126b98161267d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006126f6602083611a39565b9150612701826126c0565b602082019050919050565b60006020820190508181036000830152612725816126e9565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612788602183611a39565b91506127938261272c565b604082019050919050565b600060208201905081810360008301526127b78161277b565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b600061281a602883611a39565b9150612825826127be565b604082019050919050565b600060208201905081810360008301526128498161280d565b9050919050565b600061285b82611821565b915061286683611821565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561289b5761289a6125b6565b5b828201905092915050565b600060408201905081810360008301526128c0818561205e565b905081810360208301526128d4818461205e565b90509392505050565b60006040820190506128f26000830185611897565b6128ff6020830184611897565b9392505050565b600081519050919050565b600082825260208201905092915050565b600061292d82612906565b6129378185612911565b9350612947818560208601611a4a565b61295081611a7d565b840191505092915050565b600060a0820190506129706000830188612194565b61297d6020830187612194565b818103604083015261298f818661205e565b905081810360608301526129a3818561205e565b905081810360808301526129b78184612922565b90509695505050505050565b6000815190506129d2816118ed565b92915050565b6000602082840312156129ee576129ed6117b9565b5b60006129fc848285016129c3565b91505092915050565b60008160e01c9050919050565b600060033d1115612a315760046000803e612a2e600051612a05565b90505b90565b600060443d1015612a4457612ac7565b612a4c6117af565b60043d036004823e80513d602482011167ffffffffffffffff82111715612a74575050612ac7565b808201805167ffffffffffffffff811115612a925750505050612ac7565b80602083010160043d038501811115612aaf575050505050612ac7565b612abe82602001850186611c30565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000612b26603483611a39565b9150612b3182612aca565b604082019050919050565b60006020820190508181036000830152612b5581612b19565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000612bb8602883611a39565b9150612bc382612b5c565b604082019050919050565b60006020820190508181036000830152612be781612bab565b9050919050565b600060a082019050612c036000830188612194565b612c106020830187612194565b612c1d6040830186611897565b612c2a6060830185611897565b8181036080830152612c3c8184612922565b9050969550505050505056fea2646970667358221220aadbcca1ec5e73933ec3effbec1aae023b258cc8078c64200e0a7b1e5e6260f364736f6c63430008090033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000019434153455469465920436f6c6c656374733a2050726f6f667300000000000000000000000000000000000000000000000000000000000000000000000000000550524f4f460000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): CASETiFY Collects: Proofs
Arg [1] : symbol_ (string): PROOF
Arg [2] : tokenuri_ (string):

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000019
Arg [4] : 434153455469465920436f6c6c656374733a2050726f6f667300000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 50524f4f46000000000000000000000000000000000000000000000000000000
Arg [7] : 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.