ETH Price: $2,660.12 (+1.29%)

Token

RussianChecks (RUSCHK)
 

Overview

Max Total Supply

0 RUSCHK

Holders

43

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

0xf54e19e28b10fb45573b6050d268833eec0302f4
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:
RussianChecks

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 1000000 runs

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

import {ERC1155} from "openzeppelin/token/ERC1155/ERC1155.sol";
import {Ownable} from "openzeppelin/access/Ownable.sol";
import {LibPRNG} from "solady/utils/LibPRNG.sol";
import {Strings} from "openzeppelin/utils/Strings.sol";
import {Base64} from "openzeppelin/utils/Base64.sol";

/// @author SEIZOR (https://twitter.com/artseizor)
contract RussianChecks is ERC1155, Ownable {
    using Strings for uint256;

    string public name = "RussianChecks";
    string public symbol = "RUSCHK";

    constructor(string memory _uri, uint256 _oeEndDate) ERC1155(_uri) {
        oeEndDate = _oeEndDate;
        uint256[] memory ids = new uint256[](80);
        uint256[] memory amounts = new uint256[](80);

        for (uint256 i = 0; i < 80; i++) {
            ids[i] = i;
            amounts[i] = 1;
        }

        _mintBatch(msg.sender, ids, amounts, "");
    }

    /*//////////////////////////////////////////////////////////////
                                STORAGE
    //////////////////////////////////////////////////////////////*/

    mapping(address => uint256) public numberMinted;

    /*//////////////////////////////////////////////////////////////
                                 CONFIG
    //////////////////////////////////////////////////////////////*/

    uint256 public maxPerWallet = 10;
    uint256 public oeEndDate;

    function setMaxPerWallet(uint256 _maxPerWallet) public onlyOwner {
        maxPerWallet = _maxPerWallet;
    }

    function setOeEndDate(uint256 _oeEndDate) public onlyOwner {
        oeEndDate = _oeEndDate;
    }

    function setUri(string memory _uri) public onlyOwner {
        _setURI(_uri);
    }

    /*//////////////////////////////////////////////////////////////
                                  BURN
    //////////////////////////////////////////////////////////////*/

    function burn(
        address from,
        uint256 id,
        uint256 amount
    ) public {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not token owner or approved"
        );
        _burn(from, id, amount);
    }

    function burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) public {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not token owner or approved"
        );
        _burnBatch(from, ids, amounts);
    }

    /*//////////////////////////////////////////////////////////////
                                  MINT
    //////////////////////////////////////////////////////////////*/

    function ownerMint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public onlyOwner {
        require(amount > 0, "Amount must be greater than 0");
        _mint(to, id, amount, data);
    }

    function ownerMintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public onlyOwner {
        uint256 idsLength = ids.length;
        for (uint256 i = 0; i < idsLength; i++) {
            if (amounts[i] == 0) {
                revert("Amounts must be greater than 0");
            }
        }
        _mintBatch(to, ids, amounts, data);
    }

    function openEditionMint(uint256 amount) public payable {
        require(amount > 0, "Amount must be greater than 0");
        numberMinted[_msgSender()] += amount;
        require(
            numberMinted[_msgSender()] <= maxPerWallet,
            "Max per wallet exceeded"
        );
        require(block.timestamp <= oeEndDate, "Open edition minting has ended");
        _mint(_msgSender(), 0, amount, "");
    }

    /*//////////////////////////////////////////////////////////////
                                 LOGIC
    //////////////////////////////////////////////////////////////*/

    function _afterTokenTransfer(
        address,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory
    ) internal virtual override {
        if (from == address(0)) {
            return;
        }

        if (to == address(0)) {
            return;
        }

        uint256[] memory idsToMint = new uint256[](ids.length);
        uint256[] memory amountsToMint = new uint256[](ids.length);
        uint256[] memory idsToBurn = new uint256[](ids.length);
        uint256[] memory amountsToBurn = new uint256[](ids.length);

        uint256 idsLength = ids.length;
        for (uint256 i = 0; i < idsLength; i++) {
            if (ids[i] >= 79) {
                continue;
            }

            idsToBurn[i] = ids[i];

            uint256 amount = amounts[i];
            amountsToBurn[i] = amount;

            uint256 mintCount = 0;
            for (uint256 j = 0; j < amount; j++) {
                mintCount += _roulette(to, ids[i]);
            }

            idsToMint[i] = ids[i] + 1;
            amountsToMint[i] = mintCount;
        }

        _burnBatch(to, idsToBurn, amountsToBurn);
        _mintBatch(to, idsToMint, amountsToMint, "");
    }

    function _roulette(address to, uint256 id) private view returns (uint256) {
        uint256 _hash = uint256(blockhash(block.number - 1)) +
            uint256(uint160(to)) +
            id;
        LibPRNG.PRNG memory prng;
        LibPRNG.seed(prng, _hash);
        uint256 randomResult = LibPRNG.uniform(prng, 1000);
        if (randomResult < 500) {
            return 0;
        } else {
            return 1;
        }
    }

    function uri(uint256 id)
        public
        view
        virtual
        override
        returns (string memory)
    {
        return string.concat(super.uri(id), id.toString());
    }
}

File 2 of 14 : 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 3 of 14 : ERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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 or 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 or 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 4 of 14 : 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 14 : 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 14 : 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 7 of 14 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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 8 of 14 : Base64.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Base64.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides a set of functions to operate with Base64 strings.
 *
 * _Available since v4.5._
 */
library Base64 {
    /**
     * @dev Base64 Encoding/Decoding Table
     */
    string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /**
     * @dev Converts a `bytes` to its Bytes64 `string` representation.
     */
    function encode(bytes memory data) internal pure returns (string memory) {
        /**
         * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence
         * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol
         */
        if (data.length == 0) return "";

        // Loads the table into memory
        string memory table = _TABLE;

        // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter
        // and split into 4 numbers of 6 bits.
        // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up
        // - `data.length + 2`  -> Round up
        // - `/ 3`              -> Number of 3-bytes chunks
        // - `4 *`              -> 4 characters for each chunk
        string memory result = new string(4 * ((data.length + 2) / 3));

        /// @solidity memory-safe-assembly
        assembly {
            // Prepare the lookup table (skip the first "length" byte)
            let tablePtr := add(table, 1)

            // Prepare result pointer, jump over length
            let resultPtr := add(result, 32)

            // Run over the input, 3 bytes at a time
            for {
                let dataPtr := data
                let endPtr := add(data, mload(data))
            } lt(dataPtr, endPtr) {

            } {
                // Advance 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // To write each character, shift the 3 bytes (18 bits) chunk
                // 4 times in blocks of 6 bits for each character (18, 12, 6, 0)
                // and apply logical AND with 0x3F which is the number of
                // the previous character in the ASCII table prior to the Base64 Table
                // The result is then added to the table to get the character to write,
                // and finally write it in the result pointer but with a left shift
                // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits

                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance
            }

            // When data `bytes` is not exactly 3 bytes long
            // it is padded with `=` characters at the end
            switch mod(mload(data), 3)
            case 1 {
                mstore8(sub(resultPtr, 1), 0x3d)
                mstore8(sub(resultPtr, 2), 0x3d)
            }
            case 2 {
                mstore8(sub(resultPtr, 1), 0x3d)
            }
        }

        return result;
    }
}

File 9 of 14 : 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 10 of 14 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

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

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

File 11 of 14 : 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 12 of 14 : 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 13 of 14 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

File 14 of 14 : LibPRNG.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

/// @notice Library for generating psuedorandom numbers.
/// @author Solady (https://github.com/vectorized/solady/blob/main/src/utils/LibPRNG.sol)
library LibPRNG {
    /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
    /*                          STRUCTS                           */
    /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

    /// @dev A psuedorandom number state in memory.
    struct PRNG {
        uint256 state;
    }

    /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
    /*                         OPERATIONS                         */
    /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

    /// @dev Seeds the `prng` with `state`.
    function seed(PRNG memory prng, uint256 state) internal pure {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(prng, state)
        }
    }

    /// @dev Returns the next psuedorandom uint256.
    /// All bits of the returned uint256 pass the NIST Statistical Test Suite.
    function next(PRNG memory prng) internal pure returns (uint256 result) {
        // We simply use `keccak256` for a great balance between
        // runtime gas costs, bytecode size, and statistical properties.
        //
        // A high-quality LCG with a 32-byte state
        // is only about 30% more gas efficient during runtime,
        // but requires a 32-byte multiplier, which can cause bytecode bloat
        // when this function is inlined.
        //
        // Using this method is about 2x more efficient than
        // `nextRandomness = uint256(keccak256(abi.encode(randomness)))`.
        /// @solidity memory-safe-assembly
        assembly {
            result := keccak256(prng, 0x20)
            mstore(prng, result)
        }
    }

    /// @dev Returns a psuedorandom uint256, uniformly distributed
    /// between 0 (inclusive) and `upper` (exclusive).
    /// If your modulus is big, this method is recommended
    /// for uniform sampling to avoid modulo bias.
    /// For uniform sampling across all uint256 values,
    /// or for small enough moduli such that the bias is neligible,
    /// use {next} instead.
    function uniform(PRNG memory prng, uint256 upper) internal pure returns (uint256 result) {
        /// @solidity memory-safe-assembly
        assembly {
            for {} 1 {} {
                result := keccak256(prng, 0x20)
                mstore(prng, result)
                if iszero(lt(result, mod(sub(0, upper), upper))) { break }
            }
            result := mod(result, upper)
        }
    }

    /// @dev Shuffles the array in-place with Fisher-Yates shuffle.
    function shuffle(PRNG memory prng, uint256[] memory a) internal pure {
        /// @solidity memory-safe-assembly
        assembly {
            let n := mload(a)
            let w := not(0)
            let mask := shr(128, w)
            if n {
                for { a := add(a, 0x20) } 1 {} {
                    // We can just directly use `keccak256`, cuz
                    // the other approaches don't save much.
                    let r := keccak256(prng, 0x20)
                    mstore(prng, r)

                    // Note that there will be a very tiny modulo bias
                    // if the length of the array is not a power of 2.
                    // For all practical purposes, it is negligible
                    // and will not be a fairness or security concern.
                    {
                        let j := add(a, shl(5, mod(shr(128, r), n)))
                        n := add(n, w) // `sub(n, 1)`.
                        if iszero(n) { break }

                        let i := add(a, shl(5, n))
                        let t := mload(i)
                        mstore(i, mload(j))
                        mstore(j, t)
                    }

                    {
                        let j := add(a, shl(5, mod(and(r, mask), n)))
                        n := add(n, w) // `sub(n, 1)`.
                        if iszero(n) { break }

                        let i := add(a, shl(5, n))
                        let t := mload(i)
                        mstore(i, mload(j))
                        mstore(j, t)
                    }
                }
            }
        }
    }
}

Settings
{
  "remappings": [
    "@ensdomains/=lib/erc721a/node_modules/@ensdomains/",
    "chainlink-brownie-contracts/=lib/chainlink-brownie-contracts/contracts/src/v0.8/dev/vendor/@arbitrum/nitro-contracts/src/",
    "chainlink/=lib/chainlink-brownie-contracts/contracts/src/",
    "ds-test/=lib/forge-std/lib/ds-test/src/",
    "erc721a/=lib/erc721a/contracts/",
    "eth-gas-reporter/=lib/erc721a/node_modules/eth-gas-reporter/",
    "forge-std/=lib/forge-std/src/",
    "hardhat/=lib/erc721a/node_modules/hardhat/",
    "openzeppelin-contracts/=lib/openzeppelin-contracts/",
    "openzeppelin/=lib/openzeppelin-contracts/contracts/",
    "solady/=lib/solady/src/",
    "solarray/=lib/solarray/src/",
    "solmate/=lib/solmate/src/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 1000000
  },
  "metadata": {
    "bytecodeHash": "ipfs"
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "evmVersion": "london",
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_uri","type":"string"},{"internalType":"uint256","name":"_oeEndDate","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"burnBatch","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":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oeEndDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"openEditionMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"ownerMintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_oeEndDate","type":"uint256"}],"name":"setOeEndDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60c0604052600d60809081526c5275737369616e436865636b7360981b60a0526004906200002e908262000ca6565b5060408051808201909152600681526552555343484b60d01b60208201526005906200005b908262000ca6565b50600a6007553480156200006e57600080fd5b50604051620048ad380380620048ad833981016040819052620000919162000dc7565b816200009d816200018d565b50620000a9336200019f565b6008819055604080516050808252610a20820190925260009160208201610a00803683375050604080516050808252610a208201909252929350600092915060208201610a008036833701905050905060005b60508110156200015f57808382815181106200011c576200011c62000e73565b60200260200101818152505060018282815181106200013f576200013f62000e73565b602090810291909101015280620001568162000e9f565b915050620000fc565b506200018333838360405180602001604052806000815250620001f160201b60201c565b50505050620010dc565b60026200019b828262000ca6565b5050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038416620002575760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084015b60405180910390fd5b8151835114620002aa5760405162461bcd60e51b815260206004820152602860248201526000805160206200488d8339815191526044820152670dad2e6dac2e8c6d60c31b60648201526084016200024e565b3360005b84518110156200035257838181518110620002cd57620002cd62000e73565b6020026020010151600080878481518110620002ed57620002ed62000e73565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b03168152602001908152602001600020600082825462000337919062000ebb565b90915550819050620003498162000e9f565b915050620002ae565b50846001600160a01b031660006001600160a01b0316826001600160a01b03166000805160206200486d83398151915287876040516200039492919062000f0e565b60405180910390a4620003ad81600087878787620003cd565b620003be81600087878787620006f2565b5050505050565b505050505050565b6001600160a01b03851615620003c5576001600160a01b03841615620003c557600083516001600160401b038111156200040b576200040b62000c05565b60405190808252806020026020018201604052801562000435578160200160208202803683370190505b509050600084516001600160401b0381111562000456576200045662000c05565b60405190808252806020026020018201604052801562000480578160200160208202803683370190505b509050600085516001600160401b03811115620004a157620004a162000c05565b604051908082528060200260200182016040528015620004cb578160200160208202803683370190505b509050600086516001600160401b03811115620004ec57620004ec62000c05565b60405190808252806020026020018201604052801562000516578160200160208202803683370190505b50875190915060005b81811015620006b457604f8982815181106200053f576200053f62000e73565b602002602001015110156200069f5788818151811062000563576200056362000e73565b602002602001015184828151811062000580576200058062000e73565b6020026020010181815250506000888281518110620005a357620005a362000e73565b6020026020010151905080848381518110620005c357620005c362000e73565b6020026020010181815250506000805b828110156200062d576200060a8d8d8681518110620005f657620005f662000e73565b6020026020010151620008c760201b60201c565b62000616908362000ebb565b915080620006248162000e9f565b915050620005d3565b508a838151811062000643576200064362000e73565b6020026020010151600162000659919062000ebb565b8884815181106200066e576200066e62000e73565b6020026020010181815250508087848151811062000690576200069062000e73565b60200260200101818152505050505b80620006ab8162000e9f565b9150506200051f565b50620006c28984846200096e565b620006e589868660405180602001604052806000815250620001f160201b60201c565b5050505050505050505050565b62000711846001600160a01b031662000bd360201b62000fb61760201c565b15620003c55760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906200074d908990899088908890889060040162000f6e565b6020604051808303816000875af19250505080156200078b575060408051601f3d908101601f19168201909252620007889181019062000fd2565b60015b6200084b576200079a62001005565b806308c379a003620007da5750620007b162001022565b80620007be5750620007dc565b8060405162461bcd60e51b81526004016200024e9190620010b1565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e2d4552433131353560448201527f526563656976657220696d706c656d656e74657200000000000000000000000060648201526084016200024e565b6001600160e01b0319811663bc197c8160e01b14620008be5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a656374656044820152676420746f6b656e7360c01b60648201526084016200024e565b50505050505050565b600080826001600160a01b038516620008e2600143620010c6565b620008ef91904062000ebb565b620008fb919062000ebb565b9050620009146040518060200160405280600081525090565b6200092b818362000be260201b62000fd21760201c565b600062000946826103e862000be660201b62000fd61760201c565b90506101f481101562000960576000935050505062000968565b600193505050505b92915050565b6001600160a01b038316620009d25760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b60648201526084016200024e565b805182511462000a255760405162461bcd60e51b815260206004820152602860248201526000805160206200488d8339815191526044820152670dad2e6dac2e8c6d60c31b60648201526084016200024e565b600033905062000a5081856000868660405180602001604052806000815250620003c560201b60201c565b60005b835181101562000b5d57600084828151811062000a745762000a7462000e73565b60200260200101519050600084838151811062000a955762000a9562000e73565b602090810291909101810151600084815280835260408082206001600160a01b038c16835290935291909120549091508181101562000b235760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604482015263616e636560e01b60648201526084016200024e565b6000928352602083815260408085206001600160a01b038b168652909152909220910390558062000b548162000e9f565b91505062000a53565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03166000805160206200486d833981519152868660405162000b9f92919062000f0e565b60405180910390a462000bcd81856000868660405180602001604052806000815250620003cd60201b60201c565b50505050565b6001600160a01b03163b151590565b9052565b60005b602083209050808352818260000306811062000be95706919050565b634e487b7160e01b600052604160045260246000fd5b600181811c9082168062000c3057607f821691505b60208210810362000c5157634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000ca157600081815260208120601f850160051c8101602086101562000c805750805b601f850160051c820191505b81811015620003c55782815560010162000c8c565b505050565b81516001600160401b0381111562000cc25762000cc262000c05565b62000cda8162000cd3845462000c1b565b8462000c57565b602080601f83116001811462000d12576000841562000cf95750858301515b600019600386901b1c1916600185901b178555620003c5565b600085815260208120601f198616915b8281101562000d435788860151825594840194600190910190840162000d22565b508582101562000d625787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b601f8201601f191681016001600160401b038111828210171562000d9a5762000d9a62000c05565b6040525050565b60005b8381101562000dbe57818101518382015260200162000da4565b50506000910152565b6000806040838503121562000ddb57600080fd5b82516001600160401b038082111562000df357600080fd5b818501915085601f83011262000e0857600080fd5b81518181111562000e1d5762000e1d62000c05565b604051915062000e38601f8201601f19166020018362000d72565b80825286602082850101111562000e4e57600080fd5b62000e6181602084016020860162000da1565b50602094909401519395939450505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820162000eb45762000eb462000e89565b5060010190565b8082018082111562000968576200096862000e89565b600081518084526020808501945080840160005b8381101562000f035781518752958201959082019060010162000ee5565b509495945050505050565b60408152600062000f23604083018562000ed1565b828103602084015262000f37818562000ed1565b95945050505050565b6000815180845262000f5a81602086016020860162000da1565b601f01601f19169290920160200192915050565b6001600160a01b0386811682528516602082015260a06040820181905260009062000f9c9083018662000ed1565b828103606084015262000fb0818662000ed1565b9050828103608084015262000fc6818562000f40565b98975050505050505050565b60006020828403121562000fe557600080fd5b81516001600160e01b03198116811462000ffe57600080fd5b9392505050565b600060033d11156200101f5760046000803e5060005160e01c5b90565b600060443d1015620010315790565b6040516003193d81016004833e81513d6001600160401b0380831160248401831017156200106157505050505090565b82850191508151818111156200107a5750505050505090565b843d8701016020828501011115620010955750505050505090565b620010a66020828601018762000d72565b509095945050505050565b60208152600062000ffe602083018462000f40565b8181038181111562000968576200096862000e89565b61378180620010ec6000396000f3fe60806040526004361061018a5760003560e01c80639b642de1116100d6578063e8e2b0311161007f578063f2fde38b11610059578063f2fde38b14610484578063f5298aca146104a4578063fc1ae255146104c457600080fd5b8063e8e2b031146103ee578063e985e9c51461040e578063f242432a1461046457600080fd5b8063dc33e681116100b0578063dc33e6811461038e578063e0bd9096146103bb578063e268e4d3146103ce57600080fd5b80639b642de114610338578063a22cb46514610358578063bde10e5a1461037857600080fd5b80634e1273f411610138578063715018a611610112578063715018a6146102d95780638da5cb5b146102ee57806395d89b411461032357600080fd5b80634e1273f41461026c57806353de2a76146102995780636b20c454146102b957600080fd5b80630e89341c116101695780630e89341c146102145780632eb2c2d614610234578063453c23101461025657600080fd5b8062fdd58e1461018f57806301ffc9a7146101c257806306fdde03146101f2575b600080fd5b34801561019b57600080fd5b506101af6101aa366004612b8a565b6104e4565b6040519081526020015b60405180910390f35b3480156101ce57600080fd5b506101e26101dd366004612be2565b6105c4565b60405190151581526020016101b9565b3480156101fe57600080fd5b506102076106a7565b6040516101b99190612c74565b34801561022057600080fd5b5061020761022f366004612c87565b610735565b34801561024057600080fd5b5061025461024f366004612e4b565b610770565b005b34801561026257600080fd5b506101af60075481565b34801561027857600080fd5b5061028c610287366004612ef5565b610839565b6040516101b99190612ffb565b3480156102a557600080fd5b506102546102b4366004612c87565b610991565b3480156102c557600080fd5b506102546102d436600461300e565b61099e565b3480156102e557600080fd5b50610254610a63565b3480156102fa57600080fd5b5060035460405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101b9565b34801561032f57600080fd5b50610207610a77565b34801561034457600080fd5b50610254610353366004613082565b610a84565b34801561036457600080fd5b506102546103733660046130d3565b610a98565b34801561038457600080fd5b506101af60085481565b34801561039a57600080fd5b506101af6103a936600461310f565b60066020526000908152604090205481565b6102546103c9366004612c87565b610aa7565b3480156103da57600080fd5b506102546103e9366004612c87565b610c38565b3480156103fa57600080fd5b5061025461040936600461312a565b610c45565b34801561041a57600080fd5b506101e26104293660046131c3565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561047057600080fd5b5061025461047f3660046131f6565b610cfc565b34801561049057600080fd5b5061025461049f36600461310f565b610dbe565b3480156104b057600080fd5b506102546104bf36600461325b565b610e72565b3480156104d057600080fd5b506102546104df36600461328e565b610f32565b600073ffffffffffffffffffffffffffffffffffffffff831661058e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201527f616c6964206f776e65720000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060008181526020818152604080832073ffffffffffffffffffffffffffffffffffffffff861684529091529020545b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167fd9b67a2600000000000000000000000000000000000000000000000000000000148061065757507fffffffff0000000000000000000000000000000000000000000000000000000082167f0e89341c00000000000000000000000000000000000000000000000000000000145b806105be57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146105be565b600480546106b4906132e3565b80601f01602080910402602001604051908101604052809291908181526020018280546106e0906132e3565b801561072d5780601f106107025761010080835404028352916020019161072d565b820191906000526020600020905b81548152906001019060200180831161071057829003601f168201915b505050505081565b606061074082610ff4565b61074983611088565b60405160200161075a929190613336565b6040516020818303038152906040529050919050565b73ffffffffffffffffffffffffffffffffffffffff851633148061079957506107998533610429565b610825576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60448201527f6572206f7220617070726f7665640000000000000000000000000000000000006064820152608401610585565b6108328585858585611146565b5050505050565b606081518351146108cc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e67746860448201527f206d69736d6174636800000000000000000000000000000000000000000000006064820152608401610585565b6000835167ffffffffffffffff8111156108e8576108e8612ca0565b604051908082528060200260200182016040528015610911578160200160208202803683370190505b50905060005b84518110156109895761095c85828151811061093557610935613365565b602002602001015185838151811061094f5761094f613365565b60200260200101516104e4565b82828151811061096e5761096e613365565b6020908102919091010152610982816133c3565b9050610917565b509392505050565b61099961148e565b600855565b73ffffffffffffffffffffffffffffffffffffffff83163314806109c757506109c78333610429565b610a53576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60448201527f6572206f7220617070726f7665640000000000000000000000000000000000006064820152608401610585565b610a5e83838361150f565b505050565b610a6b61148e565b610a756000611840565b565b600580546106b4906132e3565b610a8c61148e565b610a95816118b7565b50565b610aa33383836118c3565b5050565b60008111610b11576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610585565b3360009081526006602052604081208054839290610b309084906133fb565b9091555050600754336000908152600660205260409020541115610bb0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4d6178207065722077616c6c65742065786365656465640000000000000000006044820152606401610585565b600854421115610c1c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f4f70656e2065646974696f6e206d696e74696e672068617320656e64656400006044820152606401610585565b610a953360008360405180602001604052806000815250611a16565b610c4061148e565b600755565b610c4d61148e565b825160005b81811015610cef57838181518110610c6c57610c6c613365565b6020026020010151600003610cdd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f416d6f756e7473206d7573742062652067726561746572207468616e203000006044820152606401610585565b80610ce7816133c3565b915050610c52565b5061083285858585611b96565b73ffffffffffffffffffffffffffffffffffffffff8516331480610d255750610d258533610429565b610db1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60448201527f6572206f7220617070726f7665640000000000000000000000000000000000006064820152608401610585565b6108328585858585611e1e565b610dc661148e565b73ffffffffffffffffffffffffffffffffffffffff8116610e69576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610585565b610a9581611840565b73ffffffffffffffffffffffffffffffffffffffff8316331480610e9b5750610e9b8333610429565b610f27576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60448201527f6572206f7220617070726f7665640000000000000000000000000000000000006064820152608401610585565b610a5e83838361206a565b610f3a61148e565b60008211610fa4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610585565b610fb084848484611a16565b50505050565b73ffffffffffffffffffffffffffffffffffffffff163b151590565b9052565b60005b6020832090508083528182600003068110610fd95706919050565b606060028054611003906132e3565b80601f016020809104026020016040519081016040528092919081815260200182805461102f906132e3565b801561107c5780601f106110515761010080835404028352916020019161107c565b820191906000526020600020905b81548152906001019060200180831161105f57829003601f168201915b50505050509050919050565b606060006110958361227e565b600101905060008167ffffffffffffffff8111156110b5576110b5612ca0565b6040519080825280601f01601f1916602001820160405280156110df576020820181803683370190505b5090508181016020015b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85049450846110e957509392505050565b81518351146111d7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d617463680000000000000000000000000000000000000000000000006064820152608401610585565b73ffffffffffffffffffffffffffffffffffffffff841661127a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610585565b3360005b84518110156113eb57600085828151811061129b5761129b613365565b6020026020010151905060008583815181106112b9576112b9613365565b6020908102919091018101516000848152808352604080822073ffffffffffffffffffffffffffffffffffffffff8e168352909352919091205490915081811015611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e73666572000000000000000000000000000000000000000000006064820152608401610585565b60008381526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8e8116855292528083208585039055908b168252812080548492906113d09084906133fb565b92505081905550505050806113e4906133c3565b905061127e565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161146292919061340e565b60405180910390a4611478818787878787612360565b611486818787878787612657565b505050505050565b60035473ffffffffffffffffffffffffffffffffffffffff163314610a75576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610585565b73ffffffffffffffffffffffffffffffffffffffff83166115b2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610585565b8051825114611643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d617463680000000000000000000000000000000000000000000000006064820152608401610585565b604080516020810190915260009081905233905b83518110156117a257600084828151811061167457611674613365565b60200260200101519050600084838151811061169257611692613365565b6020908102919091018101516000848152808352604080822073ffffffffffffffffffffffffffffffffffffffff8c16835290935291909120549091508181101561175e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c60448201527f616e6365000000000000000000000000000000000000000000000000000000006064820152608401610585565b60009283526020838152604080852073ffffffffffffffffffffffffffffffffffffffff8b168652909152909220910390558061179a816133c3565b915050611657565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb868660405161181a92919061340e565b60405180910390a4610fb081856000868660405180602001604052806000815250612360565b6003805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6002610aa38282613482565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361197e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c2073746174757360448201527f20666f722073656c6600000000000000000000000000000000000000000000006064820152608401610585565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8416611ab9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610585565b336000611ac5856128e1565b90506000611ad2856128e1565b905060008681526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8b16845290915281208054879290611b119084906133fb565b9091555050604080518781526020810187905273ffffffffffffffffffffffffffffffffffffffff808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611b7e83600089858589612360565b611b8d8360008989898961292c565b50505050505050565b73ffffffffffffffffffffffffffffffffffffffff8416611c39576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610585565b8151835114611cca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d617463680000000000000000000000000000000000000000000000006064820152608401610585565b3360005b8451811015611d8057838181518110611ce957611ce9613365565b6020026020010151600080878481518110611d0657611d06613365565b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d6891906133fb565b90915550819050611d78816133c3565b915050611cce565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611df892919061340e565b60405180910390a4611e0f81600087878787612360565b61083281600087878787612657565b73ffffffffffffffffffffffffffffffffffffffff8416611ec1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610585565b336000611ecd856128e1565b90506000611eda856128e1565b905060008681526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8c16845290915290205485811015611f9a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e73666572000000000000000000000000000000000000000000006064820152608401610585565b60008781526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8d8116855292528083208985039055908a16825281208054889290611fe49084906133fb565b9091555050604080518881526020810188905273ffffffffffffffffffffffffffffffffffffffff808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4612051848a8a86868a612360565b61205f848a8a8a8a8a61292c565b505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff831661210d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610585565b336000612119846128e1565b90506000612126846128e1565b604080516020808201835260009182905288825281815282822073ffffffffffffffffffffffffffffffffffffffff8b16835290522054909150848110156121ef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c60448201527f616e6365000000000000000000000000000000000000000000000000000000006064820152608401610585565b60008681526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611b8d84886000868660405180602001604052806000815250612360565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106122c7577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef810000000083106122f3576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061231157662386f26fc10000830492506010015b6305f5e1008310612329576305f5e100830492506008015b612710831061233d57612710830492506004015b6064831061234f576064830492506002015b600a83106105be5760010192915050565b73ffffffffffffffffffffffffffffffffffffffff8516156114865773ffffffffffffffffffffffffffffffffffffffff841615611486576000835167ffffffffffffffff8111156123b4576123b4612ca0565b6040519080825280602002602001820160405280156123dd578160200160208202803683370190505b5090506000845167ffffffffffffffff8111156123fc576123fc612ca0565b604051908082528060200260200182016040528015612425578160200160208202803683370190505b5090506000855167ffffffffffffffff81111561244457612444612ca0565b60405190808252806020026020018201604052801561246d578160200160208202803683370190505b5090506000865167ffffffffffffffff81111561248c5761248c612ca0565b6040519080825280602002602001820160405280156124b5578160200160208202803683370190505b50875190915060005b8181101561262357604f8982815181106124da576124da613365565b60200260200101511015612611578881815181106124fa576124fa613365565b602002602001015184828151811061251457612514613365565b602002602001018181525050600088828151811061253457612534613365565b602002602001015190508084838151811061255157612551613365565b6020026020010181815250506000805b828110156125aa5761258c8d8d868151811061257f5761257f613365565b6020026020010151612ad9565b61259690836133fb565b9150806125a2816133c3565b915050612561565b508a83815181106125bd576125bd613365565b602002602001015160016125d191906133fb565b8884815181106125e3576125e3613365565b6020026020010181815250508087848151811061260257612602613365565b60200260200101818152505050505b8061261b816133c3565b9150506124be565b5061262f89848461150f565b61264a89868660405180602001604052806000815250611b96565b5050505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff84163b15611486576040517fbc197c8100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063bc197c81906126ce908990899088908890889060040161359c565b6020604051808303816000875af1925050508015612727575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261272491810190613607565b60015b61281057612733613624565b806308c379a0036127865750612747613640565b806127525750612788565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105859190612c74565b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e2d4552433131353560448201527f526563656976657220696d706c656d656e7465720000000000000000000000006064820152608401610585565b7fffffffff0000000000000000000000000000000000000000000000000000000081167fbc197c810000000000000000000000000000000000000000000000000000000014611b8d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e730000000000000000000000000000000000000000000000006064820152608401610585565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061291b5761291b613365565b602090810291909101015292915050565b73ffffffffffffffffffffffffffffffffffffffff84163b15611486576040517ff23a6e6100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063f23a6e61906129a390899089908890889088906004016136e8565b6020604051808303816000875af19250505080156129fc575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526129f991810190613607565b60015b612a0857612733613624565b7fffffffff0000000000000000000000000000000000000000000000000000000081167ff23a6e610000000000000000000000000000000000000000000000000000000014611b8d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e730000000000000000000000000000000000000000000000006064820152608401610585565b6000808273ffffffffffffffffffffffffffffffffffffffff8516612aff600143613738565b612b0a9190406133fb565b612b1491906133fb565b9050612b2c6040518060200160405280600081525090565b8181526000612b3d826103e8610fd6565b90506101f4811015612b5557600093505050506105be565b600193505050506105be565b803573ffffffffffffffffffffffffffffffffffffffff81168114612b8557600080fd5b919050565b60008060408385031215612b9d57600080fd5b612ba683612b61565b946020939093013593505050565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610a9557600080fd5b600060208284031215612bf457600080fd5b8135612bff81612bb4565b9392505050565b60005b83811015612c21578181015183820152602001612c09565b50506000910152565b60008151808452612c42816020860160208601612c06565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000612bff6020830184612c2a565b600060208284031215612c9957600080fd5b5035919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f830116810181811067ffffffffffffffff82111715612d1357612d13612ca0565b6040525050565b600067ffffffffffffffff821115612d3457612d34612ca0565b5060051b60200190565b600082601f830112612d4f57600080fd5b81356020612d5c82612d1a565b604051612d698282612ccf565b83815260059390931b8501820192828101915086841115612d8957600080fd5b8286015b84811015612da45780358352918301918301612d8d565b509695505050505050565b600067ffffffffffffffff831115612dc957612dc9612ca0565b604051612dfe60207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8701160182612ccf565b809150838152848484011115612e1357600080fd5b83836020830137600060208583010152509392505050565b600082601f830112612e3c57600080fd5b612bff83833560208501612daf565b600080600080600060a08688031215612e6357600080fd5b612e6c86612b61565b9450612e7a60208701612b61565b9350604086013567ffffffffffffffff80821115612e9757600080fd5b612ea389838a01612d3e565b94506060880135915080821115612eb957600080fd5b612ec589838a01612d3e565b93506080880135915080821115612edb57600080fd5b50612ee888828901612e2b565b9150509295509295909350565b60008060408385031215612f0857600080fd5b823567ffffffffffffffff80821115612f2057600080fd5b818501915085601f830112612f3457600080fd5b81356020612f4182612d1a565b604051612f4e8282612ccf565b83815260059390931b8501820192828101915089841115612f6e57600080fd5b948201945b83861015612f9357612f8486612b61565b82529482019490820190612f73565b96505086013592505080821115612fa957600080fd5b50612fb685828601612d3e565b9150509250929050565b600081518084526020808501945080840160005b83811015612ff057815187529582019590820190600101612fd4565b509495945050505050565b602081526000612bff6020830184612fc0565b60008060006060848603121561302357600080fd5b61302c84612b61565b9250602084013567ffffffffffffffff8082111561304957600080fd5b61305587838801612d3e565b9350604086013591508082111561306b57600080fd5b5061307886828701612d3e565b9150509250925092565b60006020828403121561309457600080fd5b813567ffffffffffffffff8111156130ab57600080fd5b8201601f810184136130bc57600080fd5b6130cb84823560208401612daf565b949350505050565b600080604083850312156130e657600080fd5b6130ef83612b61565b91506020830135801515811461310457600080fd5b809150509250929050565b60006020828403121561312157600080fd5b612bff82612b61565b6000806000806080858703121561314057600080fd5b61314985612b61565b9350602085013567ffffffffffffffff8082111561316657600080fd5b61317288838901612d3e565b9450604087013591508082111561318857600080fd5b61319488838901612d3e565b935060608701359150808211156131aa57600080fd5b506131b787828801612e2b565b91505092959194509250565b600080604083850312156131d657600080fd5b6131df83612b61565b91506131ed60208401612b61565b90509250929050565b600080600080600060a0868803121561320e57600080fd5b61321786612b61565b945061322560208701612b61565b93506040860135925060608601359150608086013567ffffffffffffffff81111561324f57600080fd5b612ee888828901612e2b565b60008060006060848603121561327057600080fd5b61327984612b61565b95602085013595506040909401359392505050565b600080600080608085870312156132a457600080fd5b6132ad85612b61565b93506020850135925060408501359150606085013567ffffffffffffffff8111156132d757600080fd5b6131b787828801612e2b565b600181811c908216806132f757607f821691505b602082108103613330577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60008351613348818460208801612c06565b83519083019061335c818360208801612c06565b01949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036133f4576133f4613394565b5060010190565b808201808211156105be576105be613394565b6040815260006134216040830185612fc0565b82810360208401526134338185612fc0565b95945050505050565b601f821115610a5e57600081815260208120601f850160051c810160208610156134635750805b601f850160051c820191505b818110156114865782815560010161346f565b815167ffffffffffffffff81111561349c5761349c612ca0565b6134b0816134aa84546132e3565b8461343c565b602080601f83116001811461350357600084156134cd5750858301515b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600386901b1c1916600185901b178555611486565b6000858152602081207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08616915b8281101561355057888601518255948401946001909101908401613531565b508582101561358c57878501517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600388901b60f8161c191681555b5050505050600190811b01905550565b600073ffffffffffffffffffffffffffffffffffffffff808816835280871660208401525060a060408301526135d560a0830186612fc0565b82810360608401526135e78186612fc0565b905082810360808401526135fb8185612c2a565b98975050505050505050565b60006020828403121561361957600080fd5b8151612bff81612bb4565b600060033d111561363d5760046000803e5060005160e01c5b90565b600060443d101561364e5790565b6040517ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc803d016004833e81513d67ffffffffffffffff816024840111818411171561369c57505050505090565b82850191508151818111156136b45750505050505090565b843d87010160208285010111156136ce5750505050505090565b6136dd60208286010187612ccf565b509095945050505050565b600073ffffffffffffffffffffffffffffffffffffffff808816835280871660208401525084604083015283606083015260a0608083015261372d60a0830184612c2a565b979650505050505050565b818103818111156105be576105be61339456fea26469706673582212204f3b31a8f363128a9999f470f14b5b90031e9e1bbf5baf32f2d38379cced757a64736f6c634300081100334a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb455243313135353a2069647320616e6420616d6f756e7473206c656e6774682000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000063e3b8f00000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656964737a7637726478336c6c6f7a353535653679696a6a7233717262786d7561716f6d666c646169727166626169636b6a6f6634692f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061018a5760003560e01c80639b642de1116100d6578063e8e2b0311161007f578063f2fde38b11610059578063f2fde38b14610484578063f5298aca146104a4578063fc1ae255146104c457600080fd5b8063e8e2b031146103ee578063e985e9c51461040e578063f242432a1461046457600080fd5b8063dc33e681116100b0578063dc33e6811461038e578063e0bd9096146103bb578063e268e4d3146103ce57600080fd5b80639b642de114610338578063a22cb46514610358578063bde10e5a1461037857600080fd5b80634e1273f411610138578063715018a611610112578063715018a6146102d95780638da5cb5b146102ee57806395d89b411461032357600080fd5b80634e1273f41461026c57806353de2a76146102995780636b20c454146102b957600080fd5b80630e89341c116101695780630e89341c146102145780632eb2c2d614610234578063453c23101461025657600080fd5b8062fdd58e1461018f57806301ffc9a7146101c257806306fdde03146101f2575b600080fd5b34801561019b57600080fd5b506101af6101aa366004612b8a565b6104e4565b6040519081526020015b60405180910390f35b3480156101ce57600080fd5b506101e26101dd366004612be2565b6105c4565b60405190151581526020016101b9565b3480156101fe57600080fd5b506102076106a7565b6040516101b99190612c74565b34801561022057600080fd5b5061020761022f366004612c87565b610735565b34801561024057600080fd5b5061025461024f366004612e4b565b610770565b005b34801561026257600080fd5b506101af60075481565b34801561027857600080fd5b5061028c610287366004612ef5565b610839565b6040516101b99190612ffb565b3480156102a557600080fd5b506102546102b4366004612c87565b610991565b3480156102c557600080fd5b506102546102d436600461300e565b61099e565b3480156102e557600080fd5b50610254610a63565b3480156102fa57600080fd5b5060035460405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101b9565b34801561032f57600080fd5b50610207610a77565b34801561034457600080fd5b50610254610353366004613082565b610a84565b34801561036457600080fd5b506102546103733660046130d3565b610a98565b34801561038457600080fd5b506101af60085481565b34801561039a57600080fd5b506101af6103a936600461310f565b60066020526000908152604090205481565b6102546103c9366004612c87565b610aa7565b3480156103da57600080fd5b506102546103e9366004612c87565b610c38565b3480156103fa57600080fd5b5061025461040936600461312a565b610c45565b34801561041a57600080fd5b506101e26104293660046131c3565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561047057600080fd5b5061025461047f3660046131f6565b610cfc565b34801561049057600080fd5b5061025461049f36600461310f565b610dbe565b3480156104b057600080fd5b506102546104bf36600461325b565b610e72565b3480156104d057600080fd5b506102546104df36600461328e565b610f32565b600073ffffffffffffffffffffffffffffffffffffffff831661058e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201527f616c6964206f776e65720000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060008181526020818152604080832073ffffffffffffffffffffffffffffffffffffffff861684529091529020545b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167fd9b67a2600000000000000000000000000000000000000000000000000000000148061065757507fffffffff0000000000000000000000000000000000000000000000000000000082167f0e89341c00000000000000000000000000000000000000000000000000000000145b806105be57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146105be565b600480546106b4906132e3565b80601f01602080910402602001604051908101604052809291908181526020018280546106e0906132e3565b801561072d5780601f106107025761010080835404028352916020019161072d565b820191906000526020600020905b81548152906001019060200180831161071057829003601f168201915b505050505081565b606061074082610ff4565b61074983611088565b60405160200161075a929190613336565b6040516020818303038152906040529050919050565b73ffffffffffffffffffffffffffffffffffffffff851633148061079957506107998533610429565b610825576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60448201527f6572206f7220617070726f7665640000000000000000000000000000000000006064820152608401610585565b6108328585858585611146565b5050505050565b606081518351146108cc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e67746860448201527f206d69736d6174636800000000000000000000000000000000000000000000006064820152608401610585565b6000835167ffffffffffffffff8111156108e8576108e8612ca0565b604051908082528060200260200182016040528015610911578160200160208202803683370190505b50905060005b84518110156109895761095c85828151811061093557610935613365565b602002602001015185838151811061094f5761094f613365565b60200260200101516104e4565b82828151811061096e5761096e613365565b6020908102919091010152610982816133c3565b9050610917565b509392505050565b61099961148e565b600855565b73ffffffffffffffffffffffffffffffffffffffff83163314806109c757506109c78333610429565b610a53576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60448201527f6572206f7220617070726f7665640000000000000000000000000000000000006064820152608401610585565b610a5e83838361150f565b505050565b610a6b61148e565b610a756000611840565b565b600580546106b4906132e3565b610a8c61148e565b610a95816118b7565b50565b610aa33383836118c3565b5050565b60008111610b11576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610585565b3360009081526006602052604081208054839290610b309084906133fb565b9091555050600754336000908152600660205260409020541115610bb0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4d6178207065722077616c6c65742065786365656465640000000000000000006044820152606401610585565b600854421115610c1c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f4f70656e2065646974696f6e206d696e74696e672068617320656e64656400006044820152606401610585565b610a953360008360405180602001604052806000815250611a16565b610c4061148e565b600755565b610c4d61148e565b825160005b81811015610cef57838181518110610c6c57610c6c613365565b6020026020010151600003610cdd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f416d6f756e7473206d7573742062652067726561746572207468616e203000006044820152606401610585565b80610ce7816133c3565b915050610c52565b5061083285858585611b96565b73ffffffffffffffffffffffffffffffffffffffff8516331480610d255750610d258533610429565b610db1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60448201527f6572206f7220617070726f7665640000000000000000000000000000000000006064820152608401610585565b6108328585858585611e1e565b610dc661148e565b73ffffffffffffffffffffffffffffffffffffffff8116610e69576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610585565b610a9581611840565b73ffffffffffffffffffffffffffffffffffffffff8316331480610e9b5750610e9b8333610429565b610f27576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60448201527f6572206f7220617070726f7665640000000000000000000000000000000000006064820152608401610585565b610a5e83838361206a565b610f3a61148e565b60008211610fa4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610585565b610fb084848484611a16565b50505050565b73ffffffffffffffffffffffffffffffffffffffff163b151590565b9052565b60005b6020832090508083528182600003068110610fd95706919050565b606060028054611003906132e3565b80601f016020809104026020016040519081016040528092919081815260200182805461102f906132e3565b801561107c5780601f106110515761010080835404028352916020019161107c565b820191906000526020600020905b81548152906001019060200180831161105f57829003601f168201915b50505050509050919050565b606060006110958361227e565b600101905060008167ffffffffffffffff8111156110b5576110b5612ca0565b6040519080825280601f01601f1916602001820160405280156110df576020820181803683370190505b5090508181016020015b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85049450846110e957509392505050565b81518351146111d7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d617463680000000000000000000000000000000000000000000000006064820152608401610585565b73ffffffffffffffffffffffffffffffffffffffff841661127a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610585565b3360005b84518110156113eb57600085828151811061129b5761129b613365565b6020026020010151905060008583815181106112b9576112b9613365565b6020908102919091018101516000848152808352604080822073ffffffffffffffffffffffffffffffffffffffff8e168352909352919091205490915081811015611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e73666572000000000000000000000000000000000000000000006064820152608401610585565b60008381526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8e8116855292528083208585039055908b168252812080548492906113d09084906133fb565b92505081905550505050806113e4906133c3565b905061127e565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161146292919061340e565b60405180910390a4611478818787878787612360565b611486818787878787612657565b505050505050565b60035473ffffffffffffffffffffffffffffffffffffffff163314610a75576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610585565b73ffffffffffffffffffffffffffffffffffffffff83166115b2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610585565b8051825114611643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d617463680000000000000000000000000000000000000000000000006064820152608401610585565b604080516020810190915260009081905233905b83518110156117a257600084828151811061167457611674613365565b60200260200101519050600084838151811061169257611692613365565b6020908102919091018101516000848152808352604080822073ffffffffffffffffffffffffffffffffffffffff8c16835290935291909120549091508181101561175e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c60448201527f616e6365000000000000000000000000000000000000000000000000000000006064820152608401610585565b60009283526020838152604080852073ffffffffffffffffffffffffffffffffffffffff8b168652909152909220910390558061179a816133c3565b915050611657565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb868660405161181a92919061340e565b60405180910390a4610fb081856000868660405180602001604052806000815250612360565b6003805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6002610aa38282613482565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361197e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c2073746174757360448201527f20666f722073656c6600000000000000000000000000000000000000000000006064820152608401610585565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8416611ab9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610585565b336000611ac5856128e1565b90506000611ad2856128e1565b905060008681526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8b16845290915281208054879290611b119084906133fb565b9091555050604080518781526020810187905273ffffffffffffffffffffffffffffffffffffffff808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611b7e83600089858589612360565b611b8d8360008989898961292c565b50505050505050565b73ffffffffffffffffffffffffffffffffffffffff8416611c39576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610585565b8151835114611cca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d617463680000000000000000000000000000000000000000000000006064820152608401610585565b3360005b8451811015611d8057838181518110611ce957611ce9613365565b6020026020010151600080878481518110611d0657611d06613365565b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d6891906133fb565b90915550819050611d78816133c3565b915050611cce565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611df892919061340e565b60405180910390a4611e0f81600087878787612360565b61083281600087878787612657565b73ffffffffffffffffffffffffffffffffffffffff8416611ec1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610585565b336000611ecd856128e1565b90506000611eda856128e1565b905060008681526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8c16845290915290205485811015611f9a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e73666572000000000000000000000000000000000000000000006064820152608401610585565b60008781526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8d8116855292528083208985039055908a16825281208054889290611fe49084906133fb565b9091555050604080518881526020810188905273ffffffffffffffffffffffffffffffffffffffff808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4612051848a8a86868a612360565b61205f848a8a8a8a8a61292c565b505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff831661210d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610585565b336000612119846128e1565b90506000612126846128e1565b604080516020808201835260009182905288825281815282822073ffffffffffffffffffffffffffffffffffffffff8b16835290522054909150848110156121ef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c60448201527f616e6365000000000000000000000000000000000000000000000000000000006064820152608401610585565b60008681526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611b8d84886000868660405180602001604052806000815250612360565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106122c7577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef810000000083106122f3576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061231157662386f26fc10000830492506010015b6305f5e1008310612329576305f5e100830492506008015b612710831061233d57612710830492506004015b6064831061234f576064830492506002015b600a83106105be5760010192915050565b73ffffffffffffffffffffffffffffffffffffffff8516156114865773ffffffffffffffffffffffffffffffffffffffff841615611486576000835167ffffffffffffffff8111156123b4576123b4612ca0565b6040519080825280602002602001820160405280156123dd578160200160208202803683370190505b5090506000845167ffffffffffffffff8111156123fc576123fc612ca0565b604051908082528060200260200182016040528015612425578160200160208202803683370190505b5090506000855167ffffffffffffffff81111561244457612444612ca0565b60405190808252806020026020018201604052801561246d578160200160208202803683370190505b5090506000865167ffffffffffffffff81111561248c5761248c612ca0565b6040519080825280602002602001820160405280156124b5578160200160208202803683370190505b50875190915060005b8181101561262357604f8982815181106124da576124da613365565b60200260200101511015612611578881815181106124fa576124fa613365565b602002602001015184828151811061251457612514613365565b602002602001018181525050600088828151811061253457612534613365565b602002602001015190508084838151811061255157612551613365565b6020026020010181815250506000805b828110156125aa5761258c8d8d868151811061257f5761257f613365565b6020026020010151612ad9565b61259690836133fb565b9150806125a2816133c3565b915050612561565b508a83815181106125bd576125bd613365565b602002602001015160016125d191906133fb565b8884815181106125e3576125e3613365565b6020026020010181815250508087848151811061260257612602613365565b60200260200101818152505050505b8061261b816133c3565b9150506124be565b5061262f89848461150f565b61264a89868660405180602001604052806000815250611b96565b5050505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff84163b15611486576040517fbc197c8100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063bc197c81906126ce908990899088908890889060040161359c565b6020604051808303816000875af1925050508015612727575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261272491810190613607565b60015b61281057612733613624565b806308c379a0036127865750612747613640565b806127525750612788565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105859190612c74565b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e2d4552433131353560448201527f526563656976657220696d706c656d656e7465720000000000000000000000006064820152608401610585565b7fffffffff0000000000000000000000000000000000000000000000000000000081167fbc197c810000000000000000000000000000000000000000000000000000000014611b8d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e730000000000000000000000000000000000000000000000006064820152608401610585565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061291b5761291b613365565b602090810291909101015292915050565b73ffffffffffffffffffffffffffffffffffffffff84163b15611486576040517ff23a6e6100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063f23a6e61906129a390899089908890889088906004016136e8565b6020604051808303816000875af19250505080156129fc575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526129f991810190613607565b60015b612a0857612733613624565b7fffffffff0000000000000000000000000000000000000000000000000000000081167ff23a6e610000000000000000000000000000000000000000000000000000000014611b8d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e730000000000000000000000000000000000000000000000006064820152608401610585565b6000808273ffffffffffffffffffffffffffffffffffffffff8516612aff600143613738565b612b0a9190406133fb565b612b1491906133fb565b9050612b2c6040518060200160405280600081525090565b8181526000612b3d826103e8610fd6565b90506101f4811015612b5557600093505050506105be565b600193505050506105be565b803573ffffffffffffffffffffffffffffffffffffffff81168114612b8557600080fd5b919050565b60008060408385031215612b9d57600080fd5b612ba683612b61565b946020939093013593505050565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610a9557600080fd5b600060208284031215612bf457600080fd5b8135612bff81612bb4565b9392505050565b60005b83811015612c21578181015183820152602001612c09565b50506000910152565b60008151808452612c42816020860160208601612c06565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000612bff6020830184612c2a565b600060208284031215612c9957600080fd5b5035919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f830116810181811067ffffffffffffffff82111715612d1357612d13612ca0565b6040525050565b600067ffffffffffffffff821115612d3457612d34612ca0565b5060051b60200190565b600082601f830112612d4f57600080fd5b81356020612d5c82612d1a565b604051612d698282612ccf565b83815260059390931b8501820192828101915086841115612d8957600080fd5b8286015b84811015612da45780358352918301918301612d8d565b509695505050505050565b600067ffffffffffffffff831115612dc957612dc9612ca0565b604051612dfe60207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8701160182612ccf565b809150838152848484011115612e1357600080fd5b83836020830137600060208583010152509392505050565b600082601f830112612e3c57600080fd5b612bff83833560208501612daf565b600080600080600060a08688031215612e6357600080fd5b612e6c86612b61565b9450612e7a60208701612b61565b9350604086013567ffffffffffffffff80821115612e9757600080fd5b612ea389838a01612d3e565b94506060880135915080821115612eb957600080fd5b612ec589838a01612d3e565b93506080880135915080821115612edb57600080fd5b50612ee888828901612e2b565b9150509295509295909350565b60008060408385031215612f0857600080fd5b823567ffffffffffffffff80821115612f2057600080fd5b818501915085601f830112612f3457600080fd5b81356020612f4182612d1a565b604051612f4e8282612ccf565b83815260059390931b8501820192828101915089841115612f6e57600080fd5b948201945b83861015612f9357612f8486612b61565b82529482019490820190612f73565b96505086013592505080821115612fa957600080fd5b50612fb685828601612d3e565b9150509250929050565b600081518084526020808501945080840160005b83811015612ff057815187529582019590820190600101612fd4565b509495945050505050565b602081526000612bff6020830184612fc0565b60008060006060848603121561302357600080fd5b61302c84612b61565b9250602084013567ffffffffffffffff8082111561304957600080fd5b61305587838801612d3e565b9350604086013591508082111561306b57600080fd5b5061307886828701612d3e565b9150509250925092565b60006020828403121561309457600080fd5b813567ffffffffffffffff8111156130ab57600080fd5b8201601f810184136130bc57600080fd5b6130cb84823560208401612daf565b949350505050565b600080604083850312156130e657600080fd5b6130ef83612b61565b91506020830135801515811461310457600080fd5b809150509250929050565b60006020828403121561312157600080fd5b612bff82612b61565b6000806000806080858703121561314057600080fd5b61314985612b61565b9350602085013567ffffffffffffffff8082111561316657600080fd5b61317288838901612d3e565b9450604087013591508082111561318857600080fd5b61319488838901612d3e565b935060608701359150808211156131aa57600080fd5b506131b787828801612e2b565b91505092959194509250565b600080604083850312156131d657600080fd5b6131df83612b61565b91506131ed60208401612b61565b90509250929050565b600080600080600060a0868803121561320e57600080fd5b61321786612b61565b945061322560208701612b61565b93506040860135925060608601359150608086013567ffffffffffffffff81111561324f57600080fd5b612ee888828901612e2b565b60008060006060848603121561327057600080fd5b61327984612b61565b95602085013595506040909401359392505050565b600080600080608085870312156132a457600080fd5b6132ad85612b61565b93506020850135925060408501359150606085013567ffffffffffffffff8111156132d757600080fd5b6131b787828801612e2b565b600181811c908216806132f757607f821691505b602082108103613330577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60008351613348818460208801612c06565b83519083019061335c818360208801612c06565b01949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036133f4576133f4613394565b5060010190565b808201808211156105be576105be613394565b6040815260006134216040830185612fc0565b82810360208401526134338185612fc0565b95945050505050565b601f821115610a5e57600081815260208120601f850160051c810160208610156134635750805b601f850160051c820191505b818110156114865782815560010161346f565b815167ffffffffffffffff81111561349c5761349c612ca0565b6134b0816134aa84546132e3565b8461343c565b602080601f83116001811461350357600084156134cd5750858301515b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600386901b1c1916600185901b178555611486565b6000858152602081207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08616915b8281101561355057888601518255948401946001909101908401613531565b508582101561358c57878501517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600388901b60f8161c191681555b5050505050600190811b01905550565b600073ffffffffffffffffffffffffffffffffffffffff808816835280871660208401525060a060408301526135d560a0830186612fc0565b82810360608401526135e78186612fc0565b905082810360808401526135fb8185612c2a565b98975050505050505050565b60006020828403121561361957600080fd5b8151612bff81612bb4565b600060033d111561363d5760046000803e5060005160e01c5b90565b600060443d101561364e5790565b6040517ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc803d016004833e81513d67ffffffffffffffff816024840111818411171561369c57505050505090565b82850191508151818111156136b45750505050505090565b843d87010160208285010111156136ce5750505050505090565b6136dd60208286010187612ccf565b509095945050505050565b600073ffffffffffffffffffffffffffffffffffffffff808816835280871660208401525084604083015283606083015260a0608083015261372d60a0830184612c2a565b979650505050505050565b818103818111156105be576105be61339456fea26469706673582212204f3b31a8f363128a9999f470f14b5b90031e9e1bbf5baf32f2d38379cced757a64736f6c63430008110033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000063e3b8f00000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656964737a7637726478336c6c6f7a353535653679696a6a7233717262786d7561716f6d666c646169727166626169636b6a6f6634692f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _uri (string): ipfs://bafybeidszv7rdx3lloz555e6yijjr3qrbxmuaqomfldairqfbaickjof4i/
Arg [1] : _oeEndDate (uint256): 1675868400

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000063e3b8f0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [3] : 697066733a2f2f6261667962656964737a7637726478336c6c6f7a3535356536
Arg [4] : 79696a6a7233717262786d7561716f6d666c646169727166626169636b6a6f66
Arg [5] : 34692f0000000000000000000000000000000000000000000000000000000000


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.