ETH Price: $2,620.63 (+1.18%)
Gas: 6.15 Gwei

Token

ShitPlunger ()
 

Overview

Max Total Supply

1,613

Holders

563

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0x5980b54470993afa71edcfdadac8d7ed35fafd8b
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The best shit plunger you can get on the market!

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ShitPlunger

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 10000 runs

Other Settings:
default evmVersion
File 1 of 15 : ShitPlunger.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

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

interface IRenderer {
    function render() external view returns (string memory);
}

contract ShitPlunger is ERC1155, ERC2981, Ownable {
    uint32 public constant MAX_SUPPLY = 8888;

    address public _renderer;
    uint32 public _minted = 0;
    address public _allowedMinter;
    address public _burner;

    constructor(address renderer) ERC1155("") {
        _renderer = renderer;
        setFeeNumerator(750);
    }

    function mint(address to, uint32 amount) external {
        require(_allowedMinter == msg.sender, "ShitPlunger: ?");
        require(amount + _minted <= MAX_SUPPLY, "ShitPlunger: Exceed max supply");

        _minted += amount;
        _mint(to, 0, amount, "");
    }

    function airdrop(address[] memory tos, uint32[] memory amounts) external onlyOwner {
        require(tos.length == amounts.length);
        for (uint256 i = 0; i < amounts.length; i++) {
            _minted += amounts[i];
            require(_minted <= MAX_SUPPLY, "ShitPlunger: Exceed max supply");

            _mint(tos[i], 0, amounts[i], "");
        }
    }

    function burn(address who, uint32 amount) external {
        require(msg.sender == _burner, "ShitPlunger: ?");

        _burn(who, 0, amount);
    }

    function uri(uint256 id) public view override returns (string memory) {
        return IRenderer(_renderer).render();
    }

    function setMinter(address minter) external onlyOwner {
        _allowedMinter = minter;
    }

    function setBurner(address burner) external onlyOwner {
        _burner = burner;
    }

    function setRenderer(address renderer) external onlyOwner {
        _renderer = renderer;
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC2981, ERC1155) returns (bool) {
        return
            interfaceId == type(IERC2981).interfaceId ||
            interfaceId == type(IERC1155).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    function setFeeNumerator(uint96 feeNumerator) public onlyOwner {
        _setDefaultRoyalty(owner(), feeNumerator);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

        return batchBalances;
    }

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

        return array;
    }
}

File 4 of 15 : ERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;

import "../../interfaces/IERC2981.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice)
        external
        view
        virtual
        override
        returns (address, uint256)
    {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `tokenId` must be already minted.
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

File 5 of 15 : ShitPlungerRenderer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "./Base64.sol";

contract ShitPlungerRenderer {
    string public constant IMAGE_DATA =
        "data:image/webp;base64,UklGRuooAABXRUJQVlA4TN4oAAAv/8V/Ac1IbBtJkiTk7O590vlvcD6VVRZE9H8C4hSQXoXP6QGlNiDqBVpFQC10i9pChc4dejOK0w2OoOAFYKKiegaglVKq3BC1GCql6gIogEkLpieAUibJqjeyzFWmC3JovlPrijfofo/ykYUylmsuCC7VSW0AXYrKCnDgDhOltnMjxIYFNvgAWDfZtQCwL9RrJJgIl0AVRLKAshOg1LJ7FI2c6l7pifdu7gi+dXfP9/QxOvMTNAj6xLj6TE8+ZxTsBKgegXdACwd5KQCs6X0A5fwG5lciMdH/voAZZLoWBUSa70VF5DeiIiJ+HonoImJlI8m17baRTmV2ZocF1P5X00vwsIa/k0AIBCeUgU91mlJyJMmRJAkKiYYv18OSOg57wPz/HfOA5Zw4Fs0n0ZCs2tqzJ4uXh48nRU1Phna9/8twXIePvetjfwkvP/2fAAuJBgQARCAQnLFGJbAA0UcIQJ3AgqgsiGWp2rUMqVh8XGQAFUBsRtPZbVnA1xVApT9LLBgQA0CVpDPj+zDTAACqvuKVFTYBm4WGZXgUlA32dxETvh/ikQUgXlkB2LktXFxBBG1YRCAVgNt9Ia7XNpegeusW8+2QFhzqdihYz99vziXIJmGZrwDEMsocATIhEB05B4AyjBRxyx71g02gABERr8gFwzAM3xPZ7yfL/9tmG66tlO+vxOl+R0gSroBaiY6kxLrHEKH0sj2qAP3zpZ3vVw4IlkUDEKUdziqm5QAXwm2P7fNuX3/1NcjLNcVAcgEAxO/Ax9tzv4iXR7cv4Lhy8vJ2aObw1QJcIZ2e4MTYPr/NFbMABPBiaCbhkQCVJIPbmEVsDdU60mHRcOn7o+Fot1u7PjEMAaIEkYLGQfv8sVeY/bh6fFZBeTzBuADt5heHhgH6u9i+1DCCDKaG38P3AK6AweD2eMpT3B/gbwAIALC8q4EgU3ytHSEADJbh9r2X4bFv3S+P5PGeY9rwO2GJK1hjeyC0kWDBsgBARFXf13g2RHE4XnDbTff1uJvviQBw/AGQ4RUQuKpQoovbTcINlRiY+QPQSKRwVQyt3s7p/lw+DDsslWGWNS2XWQvfERHBoSzC5H2FgAiuUnQWj49oWlO4XcExjYUUAFyAaELQxTOAQAAgyDsWlUBAAHZnQQQAjEUzH2U3BhvOtmhY02qZsL+QGlHToA+odULvwrJEBCrAwFqBQEQAy962LEAAWQSZVQAgCCCC5SIC8AcQQAQ4wSGNcBsWxIKcQgAR3x+BxmFwCbnCsggM2oBoig8BiAjEtmVgXFhp4jb8HoQpBvRVQrQmIKN/WjGM0GrGsPpl67fh90hrx/JzEP12KzY2AHLbACF+3RFG//orYEe/jP3Pm/12GGkW2QS2myChI/FK0IlKBdHy9WYOLZsQC/lW32X5fXwBoiMR/Dxf9oOI0YdhWJZgqWXBEPsShoHAK2WO7JFYsCystywLLDARzizLwknbIwgE1oksywKsM/3XciRJkhw3Uvj/n10gGkDPco2ICeggraUXtZNcQxVKyR1NmRW6TbWi6YaKjZQ7yYxGBTdatFZmh8lPKplnggiVkPWxlJkqm8cOR+eqFm3dtkqrztuJaDRdE32ZZ2Yam606VqVFCx9uRL6jcZSmsm7c1EqtpFyIUWlqPCtNXtDayB2lCq1d2oXx7p4X0DCehJ6Ujx7Z9RhKeabQw2Yvmkn6wAUy8515Y1mt6lYbhbK+E5IhlW7b7lVUelbPe+6/1nOtTY4k2bYlquaRtbK3IANr9RcBi6fFHuovEhYDGGOcHm4qTclfRL2gSXySIkmSJEnDYy5sy5/IfmcyPSk3kiRJkiTVi39aZ557pGVActtIksT6QFR1zTWiMnIZwBq2bYYkWV9EZFZVY3ePbdu2bdu2bdu2bdu2fYZrb6tSEfHz2Teyz78zV9LZ/tu07fzGGHPtfW5s22ZnO6lQ5jvoA6RMnTqp1Nu2jcq+5uZaa/wHHdt2HEnOBRCZPU2txQZ4xqLL/a9hXFpak6OnRQIRkCTJDdt0PgBLzJUQAZKH7/1nfNlwvVQYx9cI43hfYRyzgnHMgXEEYBx1wjhukuM8KoxjkB6H8RFxZV+OHpccR3IYRwTGsQjjOC2MYwDG0QeM404Yx4cRxvH/COP4vy+M4x7G5f/Cf/gP/+E//NfzDeQ4XpDrEByk5+EPCXmyeB4Aj9CsTz0e6b+7WchUXkdhIL83N+T3aGFc/i/8h//wX0uH/wzeryuQ7lbpeepDkeetn4QsoJx4nn3ZrPJxBkx06XEv0p9TMsjZoCH5OY6V/hxdkcfNjZAJGqT4e3WMy/+F//Af/mvR8J+B/3UFDLlOwAtyXBUbVYbnwd/uuUy26zOQR2hU/e8uPydHjiti9HUETPS45XHzrtLrKDzQ77Mf1CHAf/gP/7Vk+M/A/zoDE3mcAXNBM7ach8AXOa6Qw9+5r+fpL2eh1xUon5dAjstEjyv9PchGZpdsrPS6BxUt93XgJI5DHyf9YpwC+A//4b+WCv8Z/F5XYHu3Sh9nQCDkOAKQT/I890Ohw2RnpOftnxWaJs9zgHWQZaBEoqSR582fJce1SH+OxkLD0vP4T0JVjTxuzCf/HbiC+qL/n/WPugT4D//hvxYK/xn4X2cgCH/3f/o8Ah+PPM6ASciXPm++clyOi/MUFF8ngDEoeKJ5I++joATUDCfqCM5LMHrfgKfJv+MwuQ6BL7nug0uoi5DHlRkUDO+bILkuwEn+32W/6GMQ/sN/+K8lwn8G/tcZGMhxVOA45Lz8B3IcN9LnBcAvOc5JKJPIuOTftRQKpJxXYK0letr5P6A3vHuh7QXUFBQ1KLE4D4H+nuQ6CxPZuEIWgVLQx5UsQY7T+qTXJXD6SR0C/If/8F8LhP8M3q8zUD7OgJtH7kNQVeR55h2KxzWJ8/CnM8l55s3k+6650CqDzG7RRw65Q4dzoQYoeSKvkeftH8ji7yWzeF0G6b/LpL6OhXxfHul9Fhr0lzoE+G/yH/5refCfgf91Bmbp4wxIr0vgjfy7QwYKgc8VQPq8Apv0vvqnr8vP3CArxeepXxU0c8X7GuAc6lgoJn0f/8jvYUn+HYaV5/2fS47TPPI8BbiEhsC/s9/UIcB/k//wX0uD/wz8rzPggSpd6N1c+jwDHz75vg5CPkKOy0eiKpPr4lO+rn4W6fqCWiX6J9BJreS8AZ6NVoEeF9+jV+kZ2gaKumS+5Pcy59bn9S8fZ0Bgy3kHRsnPyWp43DxhHYLL/4X/Jv/hvxYG/xm8X7cgfZ56K5Z+TgDkuIZH34cAchxW5HUHuCDnFZgW8j05zrlCdr9QIuTv+t/UDfolN/K+/9wBsko0i0HvrGfyug6qanlcjSWvg6AMOc5xlZ+jEKHI4/LF0vdhWAZ6mN43of4wjgD8h//wX8uD/wz8H6fAMHlefQ/kdQTkCbmuQAehGYnmhBynp+S4PGfxvgWHjOJ18LmtkGlQSnLfAJa1ZKvk+x5qoVbkPAjeoTrwc9pu3wPbKB+XQF2QNXIeCj8WagRVlqjHoR91BcJ/+A//tTT4z8D/dQI6kOsMTOR9ABDY+j7zkfPeL4BWDKpZ8rz3uZIVfw4h6HUQSl/HP9FS3heflorP8589USTl7/Q3AoXK4n0bNvK/yz89TnvkOgK1BVqnUfALtSTqeujEjZvifSlw+ss6BsV/k//wX0uC/wz87yvQQDZK7tvP9Mh57ceQ4zIvNAvonUcWeuxOqFeiTMj7Gsgbua7/g/x9+yXHPTzb5al3n/ycD28oUnLffn3I6zDUSZ9X4VzkOgzVQKFBh/EcrTPo6UdDz59Dmxx8z0Hk7zvhftGXIPyH//BfC4L/DPwfZ8BArytQvm/ALEKPpH+Xv76PAOQ6Bjmgx22/ZIGQ6+wTGPl3O/JzNo/8O07yzwEgnd5X//Q4k8jnKnhc8nO194XWIz8HV1BvZAveyuc07KGHvo+MO1QxvC6D4uN+oa+boPw6BP1hXoLxH/7Dfy0E/jPwv86AZ+Q6AQUumUleR54Dis+bf4b8HA/S8/j3dqA2DrnPAcHI5xqswvj3Gmh6nYX5XnmefgflffxZTV93/3IcD+S+CD2qPM++Gfk9TwvNgJ6d5HMg9rL1A9qsJT/nykdeh0DvUMPS1xXQX/oShP/wH/5rEfCfgf91CSqgORdaQfHvrF8K6gQtF+et18/h//R1CeRQvK4/zsnPdQ45rkWDbod8Lr7dFOfNl5/rkBznIF95XQFHjuvR5LgWMhM5D8UD+bkPJHrGrkTPmkGbJDpNhzxOD2dQB7TJiSqn34PQ/aIvQfgP/+E//If/eoiJ/J32Z2zQeXmH1lgoCtoqaMMKLYGiKb6vQCtXfJ+BVuA45efuIau95bhryHHcIv1cfRtLz0sv9/0nB3nef79C0YrjlMdZhJwXoIPMK1Q7uY/EDeR9/9OO0KkLqI9CLVBQo7PS8jjbCej4FXRcHvL/3aOMy/+F//Af/sN/+K8HsZDz4K9OE73pivdlz5vfyvPE9wxKvpAluW6AJ5D3kPsEMGN4HQFyHKFGvvd+ZkBzJ+cZmNVwXPo6BZKf+0rp6/TTivxd/wu5jkBKcl6CoQa1VrzuBJmHXAegJeX33kLWcshxOhrNLNFVBT1s73eyu7azQF6Ly/+F//Af/pv8N/mvBzGTvyO/NagdoFcYeV51H+l9D/JARxfXEdDPHYj07/6vHZr7yPfkT3BynoJFjfweZqn4ugjMyefed1LedyAndL6Tz923V+R5B+4hz+OfBWVKfm4RKDFynwsygbxV8XHuID+nv8+gpxa0WQc6ej38nuV7HWjQP/oQhP/wH/5rGfCfgf/zDLwk541v85LrpJNoeV7+/yL3oSd78Tzw+r4Dle9zIuf1nzk0Z+S69riAnAYtgnxvP9RAcw36pOR1CloBdW3JfRH+E6G/E/o6oe8Q8kPO479K7iNQayUzG3kdBCkDJVtyHwqik+smtLQq3ufhZIWWLHTCeMp5EJZVaINTzuvhyl83QP3j3ILAf/gP/+E//NcjLEI9iXYodAqBvijyOe2NkPkinwtfG3fxPgMEn+J9BK4dmhe0MGgNaI1Bt7hH8boAWSWygG48TfSokwtZN8j5hbIWsqHQm//Y6Ad9IsuFLKb4uQf72rfk7+SPTl5XQk/K46YK8joVKhTvc3AHFLnkuHqg9Ud+zrP0cRD0h3EG4L/Jf/ivxcB/hsn/ewIuW8rzrC/7Ey1sUKqU5433tPyd/ybIPOTnVFfLeQhmjNz33znQgpbXFXCXBllL9Jlf35PP9dfOgdDf6iN5Xvkr3fwUvWkG/eTvRHf5NlGeJLr+EdDVbxyU1chpoau9uOXv6M/e8jiwBn3mq1s5L4NL8joS5pDHWVUt562wkA1ArZP/Lx/U7+uBfrMuQfHf5D/81xLgP8Pkfx8CElDPQk2R9xFoBeSUclzDk95HoCNL35dgR4Rm1fLvesBBF3rMndDjnxzkWehTDfqUnehL9q18z0Aff0J2hM5yaqAn3gU5bTmPgzm0l0E2LXme+l9uDvTpR6BnP/wxevKjB7rS7YM+c9JCD9gv0XveDH0fiMpx+Cj93ICl1wGY5MdRMA8Cl/8L/+E//If/Jv/1HFNy3vMoct93rRo5K1QTsuFLz7s+m55XXo4j2EIPP3Chx97R6K0vptw3gVs/EKg59RY94WTI9rPrdA5dazMUeujnN1/o3B3kB+hqm6GKQOe+/0QP3XWite3Qc22hZhz0SbuQ/xF66wLynjzO5HMaMCL9u/wtthsHxKRgHAKX/wv/4T/812LgP8Pkf92CzNLzojvyOfRz4+nOOaBJehwfjkZWgfb9B13v3hv0qP8CuSzZVb6Cfotd914GoV8cRbZCXvefJuiXxzVKbHTtHdAFToSGbqG73QjluxI98ZpEZoXePld8nB3kv9efOud+hNlHnIMQl/8L/+E//NdS4D8D/+sODPLPdWc9zu3zso8szssuC9XoPix04xl0Rgrd4oJE+4H+c2CgC9eg31xOZh5o/pL7EuSkx+Fc8TizY8XveYhrcKBf5qBMy+cw+PUfQx+1hTYh/+4VMq/4XIcor3MxPOV1DQYyUz8YhwD+w3/4r6XAfwb+z1OwS+hwn3rzJOySmUPZCvmM4n0YsIS+8jj0qCef8Hf7y/v+14kcZwqjnyOAa0bIdRL6hfA5ABidqVCcDgojNDg0LBb64uxAH1mRx4FTXkfD52TzveXjHPCQjeoHdQXw3+Q//Nei4D/D5P++BRrkj0ug/hz8LD8XPxPQEIr/TsdCtoXs/pG8Ln3WaXne+UCiaC1/h74T+lmRZS05T4Mju5ZDP2OjbYdWCfm5mis+Ds995Li8ysdVMJDnpfg9shZoi0T/U7ph/aAuAf7Df/ivBcF/hun9fQpaXlfAffnfia/noZfz8HugXCPXbT8CffrPRHc9C7pVf4MOJHS+4wKte8t8yfsQYO9maD+Jzm+K33PPqW3kVMXH1U9Z8roJ/tLIcZsHesuvUGclj4uH0s9NuBO5LoGj5X0qtABaj5HzEuwUdCyDTsoTbYPPMYA8LohR/WEdgeI//If/WgT8Z5j8zzOQBVVdyPOoH730eQV20p3oeeTL6yDkruR79GcAaink1xe6hS/0lYAefh9UrR+Qf51cZyAMF/rq1yXvQ1CzXdxbnyX3NeCH/yb3eSgD7ftlo45BFz1n5H0qamp5nwsNQOsuztMvx7kUSkV+DrUFOmMmOtN+0LPbU2R2oPsuvkZHDyfyyfB//3+T//Af/pv8h/96jhBQzaA1G7nOOr2lfC+8mYyeR2AhM0E5pnhdfjoreZ76pC3f829f+3zQrS+HMic69+1QbeTv3n/Tq4Vuc/nIfQLIh0AX3I/83H0l2jNCBzZDbtwoTRKd75iUx415oHe9GejzLPRP4roC+nuTvm5/opOfkxXkolDNQm95bNAL1s/lcwbs6H9X+rwa9IM+BOG/yX/4D/9N/ruo226d/0xCdVxotYPOwQNadXKddI6vhZY5fI/8lM8zkL6OfhKJ3NL7wt+Qcp8APr6E7rlfoK99OeiWT7xDR78JJW90/ltO9Oi7A53/uCrOSJQm5HF6wWmi8xx3IKeW7xGgrIXMLvT256Avs9DHG37v6XG8Ij9XkzwvBYNDfULbLGR5IR/QkOS8CCvJfSdy9qsr0A/6EoT/Jv/hP/w3+e+ab5q8L8BmQO/fj9yn3e9M/uF1CRSfR/0kjiM9Tq/0dfVpJeepH7I5L4Ecx6efHflegvjET4PuAWRtoQseXejiQPWs0b7N0AWOIY+T+fvI/AhdXdBvPNFbP/wR+eUj+l4PLTVoC3IegZZEfW553Dwq/bv8M5BloxSFNgQlFnrpl4e8boG7z1fxvgg7w3URKr+vQftBnQH8h//w3yUf/jN4fxwC6d/1nwW1luihK+gIb7kuPL0pvq/9F9vNQ4BVyJM8DoEOaEmh+yWfo3AWp1w3oHMMib6Y5D72+kmjW/0MnZ+Nzn9M8D0Bqt8zELJ/74a+OQT6yDMn+qWgHzi0Q8j3VmhjJb/XTuRx8QG5DoFJ/h28k8812AC0XQste+hZl0IN0KZKfk4ueR8PRwqNI/T40B/GGYD/8B/+w3/4rwdwyXn3dxLayELXOhD69eyO7xU4PU+Avq6A/HkVluMeyB4l/w4N5HnuTeR54Q9CPuS6Br9cQlerkO/htxroJtP/kT8CStsTffeUC3UHLmRr6Fe/nKjNKf6elnGiVi3H+V/kuHqRx70xcp4Bq/Q6Gb0SLVVoZzhQ9EJbY6F708fdIDs/GJf/C/9N/sN/LQX+M0z+5yHoKtFpJPrpPOTvwm8Kikpk7OLrEBiUx7lK/u7+O3Ie+8YKNSpk3nJfB07J5ypQy5afw28cevwlB3KkvG+A/D+QHQ1dnULn/h16avsQNWtynoGGjVpPOW/AErzugOJ1Beohx2HC41Ieh0fIcQ+Q961Qz8Fxjl5nI5tLWEekl/8L/03+w38tBP4zTP73ITgzqM1Em1nohGHJ97rDq598Lv0MytchkJN+H+aQDVuep/5OeZ92MlDLoK6g1gP1lfJzsbbRWT3RT769QyeS6CxAF7/gQP4Ycl6BDx65joRVoR2r4n0caKGvY0CvO5A+zoARIT/SzyW4h5PP0ehB+r4Hs+oX8waM/yb/4b8WAf8ZpvfPGUD6vPsmUj6Hv1ss/d52S19XnQfpedNPyvOum8jnDuAD6XUHnJApkfnI5xagMfLvXgFqDfrpx4G2v/8fnQh0s/lzeZysf/8X+mZ9zvvuJ73vQplByyq5jkBd4jwD+r4C0vsQlD7OgFH55wpouYnM3ivPM7DTD+oO4L/Jf/ivZcB/hsn/dQhYyHnj40DmIcd9kF5nYFE+bwCOnNc9OmRDozqqeJ177qSPg6AFaih0GOQ4uxH60QJ6qUMPPfIn+TnspdD5AvqhyH0F6KDfU0DycxwSv4f0PhDdJe874MHJRunvbX5dD/3vZL99NCY/R49+UJcA/03+w38tAv4zTP7nIUjQ513X+7aj39d2cQ3S5x3YibyPPAfIfeu9E8cpPxe75LgHQa1V8XPz2xGju5CNPM4GbdQTaNAUH7ct5Od8J72PQA+Tf5coTK67caD/HZSfs0En6XU/1twGdQku/xf+m/yH/1oG/GeY/L9XgCbbr2vQRXnck/K+6wzk77L3ktepjyk9D7zH6Ofm61HpcS3J+0rA5uTfwalQT/O8/uXPqQfqaoq/h4dtt66AJunjXJiUv+dW9fNYkDAOiMv/hf/wH/5rGfCfgf/7DsDIn+dfVvzcf1no4wjIf67l8xA8So7bkpzXfpRsiOJ5++U4XkmPaxGaT7kzcsvz8Mu/+xGhe8jPbSCL/65V+rgC0vsANCL9vZ+U97noJL0PQE59nYH+MC8B+A//4b+WAf8ZJv/zEnik59l3totrUB6no5PrInjlz+OA/Du55DoGZyfn2c+CeofWkO9zaYHWCd73oOl1GhayFXLcvifn6X8gxxVd8Tr8G3qdgfJxJZzo+0xA3tfAy6Wz+ojf+fJ/4T/8h/9aCvxn4H8dAqvyvP9ecV7++nXWqY8rQCff9zhkI8n3aVZeR+GRyvPwD//JVoGcQl5HwIn+nf3l+0RgkP6cexKlbJSteN8AjT6OB9v1tWgd8jwNO3Lci/4wzwD4D//hvxYC/xm8vw8B9Lzn+esKNL9PO08/ToFR6d+1PzBoDrkvAUb6uf+wKvTq0tdlkO2Vv4f30vvwr39nf3mfiwZyHJnhug7Jz3Ehc4br9FO/DoHS1xGoz6X38cjpB+MMwH/4D/+1IPjPMPm/DgEPuQ7BInScN86Tnz8OgfpxCaSvQ/8TPa+9HNf0pveVZ0X5fS6/dJ70ugCybIXGe+Pv4N/uvYmkPC5WxHGlvweD8joWFvl9Okqv++H0i3UHhP/wH/7Df/ivp1iRvk47J3re/PJxBizS4/ROjtuqfFwGq+R96LtIr4NgNXKcGw3aI+gKmfq8/vK+EF7U12HQz9mH9HkgcEu/r+xQjBp/Xn593orz4+gf8wiM/yb/4b+WA/8ZfN+HoO3mFWAhs/vK4xBIDh1V/h34NibK3vpzz9/XYHqfeNLrHqQo+Xd8Jjay4Radhefl6zaU7iR93gI8dPJ7fWq7cyk6V8v7MtRCjts+nvT31Of0Ohz9Y5wB+G/yH/5rOfCfwffnFFD5vP1ayHn0x323G3eAh/6d+ul59M3k+1xH/rgC9HEdpPvJLGTNrruXIvYCnYPhexVaHxfye7BIr2Ow0N+L9PfO99HHkZA/DoD0+7boF3UF8B/+w38tC/4z8H+dgtohr/t+38v/7v/0Pvm75Lz+y+Q+Cp0hjwtgkd8XofK+9p/IbpYvRq+jv3PouW3QOxaQ2ULWyc9tKZ6H3/T3zEx+LxYxOU5XeR+LHJld+rwa6PMM0B/qEOA//If/WhL8Z+D/OQY3KF/H/8tCU+V51530OEzb5Xn3SF+XoGfJ3/VvIfuOBXqoJzICXbNu0S/sL9Q36L2fkPMGeJKZhU5Xvk6BrGSup8vbn7M5r0aBPAOX/wv/4T/81/LgPwP/xyUwKqbn/c+f1+Dt9gXAsvJxBniVf7f+culx3gSyfUA/t7vRx1VijZ73YXjTf9el+L3IH7fAduNCGNTXGegX4wzAf/gP/7Us+M/g/XMMorzP+qP0+yjP426KyX3iP0rvU4/+nLfLy+9Q/Dkagc5Py7/TOjlPvwNyNWhY/Xsq/66JHD2Pg2v7PP5W6X0GWvSHOgP4D//hvxYG/xn4X4dgoI8bQO+7fnofg2bIcS8LDaXvG1+nPq/+dlw1uul+5DwC5uTn4B9CNtItl19nIT1Oq6v8e9XHKaC/d+l1MjyT60L46A91BvAf/sN/LRD+M/C/bsGw9Dz1HulMel968s9dCJlX+nf1D9JlK3Rz690/TvTnnj4ug7XK78uf9L4SuWLpcRv599Uf6gzgP/yH/1oi/Gfgf5+CXOn3YSXvY4CxV/6cVqT3iWehr6uf/PtO70vQzZx8b4IaG12nh37adXEryp+r3Sc9Tje9rkF53QS7tvs7GvSDOgP4D//hv5YI/xn4X4fAKc/Tbg75Kr/viVzXwKw8z/xiu3PlIVuhm2/6H2W2/Fx+9kW+bytyXKOT4/K0XZ/97d1240Jw5PfW2WDcBZf/C//hP/zXcuE/A//nNdjJzzvPyvsatJDz2A/SzcrfpwCj36PPuTvKf1d/fZz5fRiqP6cfniDOy/+F//Af/mvB8J/B+3UI6vPIP1+e+fzv1pfjNIvp5waozPdZvO/AHuXjRlgrPe4z8vsUpL83BfsU4PJ/4T/8h/9aNPxn4H/fgpbk7+539HP+QY9z+zoEw/Lz3pfv42Bfjyi10esOtF2dhnGVW+SPG6FfjCMA/+E//NfC4T+D38cdsD2zpxtXwEJ2uvK+/ZjIvzsCWR27ro++ViP3hWCFvu6A6ucVuF/UFcB/+A//vQkA/xn4X8fAKh63QL70cQkMttuHv2aQ+ch9+nXWcl6AwXbf6e9GMlf+OBCYPG6snqAuxuX/wn/4D/+1fPjP4P15C3j6cx3U0Z+DnOd/WPo5BHft0eh9BPA5eZ4AvEufF4CFvM+/Fv2jbgD+w3/4700G+M/A/3UNNMiPK/2+ltP7FlTO1YGcPcrPLZOj11XI2e896B91BvAf/sN/+A//9Xxm5d/17+h9/d9unAFZinOCzgZ0+18u5OyS405e+jn83X6fiQ3bjsm4/F/4D//hv5YN/xn4Pw6AQXmck9AL8jkDdCP+vwPw9PPWm23k7/gfgLIFqroqvg4C55DjUfYg/9z+3O/ci97OgfwcZ8j7SPjh1x/mNRj/4T/8h//wX88UIOcFmDm0ArSmRgsPOQ/BALQkUSOjr1Mgk1xnf9lA6fcWkGzoG93coe/uP7LfQM+7ID+Xk/K6BE5+HOkqoNoTrQhyDRoE7QC9Vuiuj/hdLv8X/sN/+K9Fwn8G/tcZWHHoXN7oPFHoHD7ozGy0buR1CZykhfb0jfYW9O+S895bdvFz/2UlxzkYzpOQ3mehFZ/ifQceXPF1B5zIv8MqeZ0Dmcm/m5O+roM85DoDc4fOQqMLBHSYD+qATlSiP1yh3/UX+ld9xH1c/i/8h//wH/7Dfz2PB1pl0EXU6HpA3yf0HUIXrPvi9xhoZqPXDV+gBYrf4w+Rkn/nQ3LcmUY9eB7/4nX2Pzvk53AGoD/UkiVBHaXXJUiOKycUrfS8BrLKyes8mJHoTGz0YvtNrlPRL7sTbQPtCej3PKKff1zo7xiX/wv/4T/81wLhP8Pkf96Bw5ycV+Ah9bp4H3mzDYqc6MCvt2jPL+R5/1eA1h1y2aiakOse9G7Jfe03q+L3FugcKNnB6zqQ3/umoAtZo7mgl31PPmdggUE+yOsAqKLQ3Af1Sf5Ofy+5zoR1UKVGXUBf2/U+utAEuuoI3ShHvmfh3mWDfhqhX2Bc/i/8h//wH/7Dfz3QAuhwi9H3jU/PiTYM6hoUCHQOGp1IyXXmj0r5O/sP5DhekH+Hd0uO61KQf3canqBzc4eclfyd/5ds0CNp1AI12qgxxddR8CB9nokPQrUPmgENAZ1s0JkFnS2gUyYt531Yr4VWyNOR9+Hyf+E//If/DgmE/wz8XzdACWgL6CDQr+0sbsagswC5gq6u5+iogppYqGejKMX77uuE7CWPQ2Aix/HrLuS6/F96ei+vY8AB/bn/EN3XHtClN8jPOdLF6wbkOfm52tDXiZAcR2jQeXiLWmZ0YYC+atB/atC/rngeCfrDPgnAf/gP/+E//NfTnMh979nbQQc40TaNzkmhIyD3mffMDp0P6KK6K+6qG29GPwcBpqeL27iQsXbd7/7Bz195HwIP/8txX1fPd51sCx3v0MEo1BBo0wptjIWOdmjvCO0ZN/rr+/WDdQiE//Af/sN/+K8HuhM6qS307wl0nEFLyN+dv1hBLRs1NWhV5Dr/rDBy3YDedfJ38r+UHPeLL30cAr/KH/k79b/9IX3df56w+QZ5Cp0bKBO8DgP5vXpFjqunUOfkOHe6ksdhI2irLbTDoA1BG0C2ONGcU46zkdPx3C//F/7Df/jvkET4z8D/PgQ9kPOyN4JOS2iLQDWJ5oxcJ/4flfwd+FbkefY9geZs+ZwEvD/kvviv1qDg5DwFN+Q4vtNarkuQjdBN8xMeF8XHyQfkdfi/VHGeADnO/yLXHWiqOC75Pu/IcXxAfs6DoJ7U/6/6xbkIgf8m/+G/lgj/Gfi/r4ATOC+APA+8hzxv/6j059DVKe/L/1gXClZyXoFPzuQ6CDXkuG6RHuc5lzdyXoI4L/SngTwPfw9+73Kcd0Jdkn/H/yc5b39PosjIfQy+S9+nAPK4CRbpfydOv6gzgP/wH/7Df/ivp1rIefEtZK+S+/SftFCOhVxeKJIospCND3Kd/hOQp1FWyXkJPFP8nP8mAvVcct6HTgv1Hfk9dm3JeQUigwZPdHahZfK5A72QWfWDOgD4D//hvxYP/xl8P46B/Dzy5fdhglIjx2WCBi3k9IByFMpDoNxBdQ6yqOIsW96X/ymhPsjf+d+3Q85bEJ0cR5b//e/67wd1CfDf5D/815LhP4P36wzodQi2G7eASf6O/xO5r0H+Ic6jL8fZ2pLrCtRYyX0W3qJQRRd/bw8nx3Uix9F19HMHLNcZWKWvW1B9nAH71RnoD3UI8B/+w38tFv4z8H/cAManznfjL6WfQxBWch0C60Ke5H0HJL+nCsgZtEPxe6mf94H0OJO3XEegVfo+DdDjyo/jU+Dv7vJ/4T/8h/9aNPxn4P84BJzy+xwmx2UquU5BbqFxxHUJ5HEQWGz33K3kugvLQmeK7yO9zoBbfJ/1dQj6yTgD8B/+w38tHf4z8L8OgbPdfbrkuDKX3DdgC/kc+xnIccyKyX0UMovp5/xneh0AL7mugKs/1RnAf/gP/+E//NeDDZ6+ToGz3X2Y5HUNZCLPy+8h9z3oNW0/7oKFPG8CbnLc5ifXPRjU1wXQ60z0l74C4T/8h/9aOPxn8P68Bjx9n4JMcpzGJfcpYOjpuKXXGVhKH+eAsd17s+gXdQPwH/7Df28CwH8G/vclyNivT0HlefJNMTmP/7DtuOLnkP+cn28ff/WLOgP4D//hvxYP/xk8P46A/e5jvzjT415s91xdz/+e1Pf1//nrDPSLugX4D//hvzcR4D+D7+sQ7N8XofpxEzxfHv/+VmcA/+E//PcmAvxn4H8dAiM/7vrn8vx59/e/r/5TZwD/4T/89yYB/Gfgfx0CY7+6BJ+978WnYN2Dy/+F//Af/nsTAf4z+L0OwfPd12dPXYLPoHEOXP4v/If/8N+bGPCfwft1CPLnEeCzLy9+Pzr3H/Af/sN/byLAfwav1yHYv69An3p58AefPnn7+09dAfyH//Dfmyzwn8Hr+yD4szfPfn+qM4D/8B/+e5ME/jP4fpwC+9cp6H91BPAf/sN/+A//tRgG";

    function render() external pure returns (string memory) {
        return
            string(
                abi.encodePacked(
                    "data:application/json;base64,",
                    Base64.encode(
                        abi.encodePacked(
                            '{"name":"ShitPlunger",',
                            '"description":"The best shit plunger you can get on the market!",',
                            '"image":"',
                            IMAGE_DATA,
                            '"}'
                        )
                    )
                )
            );
    }
}

File 6 of 15 : 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 7 of 15 : IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 15 : 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 15 : 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 15 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be payed in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

File 14 of 15 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol)

pragma solidity ^0.8.0;

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

File 15 of 15 : Base64.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

library Base64 {
    string constant private B64_ALPHABET = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';

    function encode(bytes memory _data) internal pure returns (string memory result) {
        if (_data.length == 0) return '';
        string memory _table = B64_ALPHABET;
        uint256 _encodedLen = 4 * ((_data.length + 2) / 3);
        result = new string(_encodedLen + 32);

        assembly {
            mstore(result, _encodedLen)
            let tablePtr := add(_table, 1)
            let dataPtr := _data
            let endPtr := add(dataPtr, mload(_data))
            let resultPtr := add(result, 32)

            for {} lt(dataPtr, endPtr) {}
            {
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)
                mstore(resultPtr, shl(248, mload(add(tablePtr, and(shr(18, input), 0x3F)))))
                resultPtr := add(resultPtr, 1)
                mstore(resultPtr, shl(248, mload(add(tablePtr, and(shr(12, input), 0x3F)))))
                resultPtr := add(resultPtr, 1)
                mstore(resultPtr, shl(248, mload(add(tablePtr, and(shr(6, input), 0x3F)))))
                resultPtr := add(resultPtr, 1)
                mstore(resultPtr, shl(248, mload(add(tablePtr, and(input, 0x3F)))))
                resultPtr := add(resultPtr, 1)
            }

            switch mod(mload(_data), 3)
            case 1 {mstore(sub(resultPtr, 2), shl(240, 0x3d3d))}
            case 2 {mstore(sub(resultPtr, 1), shl(248, 0x3d))}
        }

        return result;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"renderer","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_allowedMinter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_burner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_minted","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_renderer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"tos","type":"address[]"},{"internalType":"uint32[]","name":"amounts","type":"uint32[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"},{"internalType":"uint32","name":"amount","type":"uint32"}],"name":"burn","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint32","name":"amount","type":"uint32"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"address","name":"burner","type":"address"}],"name":"setBurner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setFeeNumerator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"setMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"renderer","type":"address"}],"name":"setRenderer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040526006805463ffffffff60a01b191690553480156200002157600080fd5b5060405162002cf338038062002cf383398101604081905262000044916200032c565b6040805160208101909152600081526200005e8162000099565b506200006a33620000b2565b600680546001600160a01b0319166001600160a01b038316179055620000926102ee62000104565b506200039b565b8051620000ae90600290602084019062000286565b5050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620001645760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b620001826200017b6005546001600160a01b031690565b8262000185565b50565b6127106001600160601b0382161115620001f55760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084016200015b565b6001600160a01b0382166200024d5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c69642072656365697665720000000000000060448201526064016200015b565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600355565b82805462000294906200035e565b90600052602060002090601f016020900481019282620002b8576000855562000303565b82601f10620002d357805160ff191683800117855562000303565b8280016001018555821562000303579182015b8281111562000303578251825591602001919060010190620002e6565b506200031192915062000315565b5090565b5b8082111562000311576000815560010162000316565b6000602082840312156200033f57600080fd5b81516001600160a01b03811681146200035757600080fd5b9392505050565b600181811c908216806200037357607f821691505b602082108114156200039557634e487b7160e01b600052602260045260246000fd5b50919050565b61294880620003ab6000396000f3fe608060405234801561001057600080fd5b50600436106101975760003560e01c8063715018a6116100e3578063d35e29d71161008c578063f2fde38b11610066578063f2fde38b146103dd578063f79705ec146103f0578063fca3b5aa1461040357600080fd5b8063d35e29d71461037b578063e985e9c51461038e578063f242432a146103ca57600080fd5b8063a67561c7116100bd578063a67561c714610342578063a996d6ce14610355578063bdbd20a51461036857600080fd5b8063715018a6146103165780638da5cb5b1461031e578063a22cb4651461032f57600080fd5b80632eb2c2d61161014557806356d3163d1161011f57806356d3163d146102c5578063610936b9146102d8578063653a819e1461030357600080fd5b80632eb2c2d61461028957806332cb6b0c1461029c5780634e1273f4146102a557600080fd5b8063235c8fa711610176578063235c8fa7146102055780632a55205a1461021a5780632c19b7f31461024c57600080fd5b8062fdd58e1461019c57806301ffc9a7146101c25780630e89341c146101e5575b600080fd5b6101af6101aa366004611f05565b610416565b6040519081526020015b60405180910390f35b6101d56101d0366004611f5d565b6104bf565b60405190151581526020016101b9565b6101f86101f3366004611f81565b610567565b6040516101b99190611ff6565b61021861021336600461201d565b6105f2565b005b61022d610228366004612050565b610662565b604080516001600160a01b0390931683526020830191909152016101b9565b6006546102749074010000000000000000000000000000000000000000900463ffffffff1681565b60405163ffffffff90911681526020016101b9565b6102186102973660046121e7565b61073f565b6102746122b881565b6102b86102b33660046122fe565b6107e1565b6040516101b9919061239d565b6102186102d33660046123b0565b61091f565b6008546102eb906001600160a01b031681565b6040516001600160a01b0390911681526020016101b9565b6102186103113660046123cb565b6109b3565b610218610a2b565b6005546001600160a01b03166102eb565b61021861033d3660046123f9565b610a91565b6006546102eb906001600160a01b031681565b6102186103633660046123b0565b610a9c565b610218610376366004612435565b610b30565b61021861038936600461201d565b610cd7565b6101d561039c366004612502565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b6102186103d836600461252c565b610e15565b6102186103eb3660046123b0565b610eb0565b6007546102eb906001600160a01b031681565b6102186104113660046123b0565b610f8f565b60006001600160a01b0383166104995760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201527f65726f206164647265737300000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f2a55205a00000000000000000000000000000000000000000000000000000000148061055257507fffffffff0000000000000000000000000000000000000000000000000000000082167fd9b67a2600000000000000000000000000000000000000000000000000000000145b80610561575061056182611023565b92915050565b600654604080517fd607497a00000000000000000000000000000000000000000000000000000000815290516060926001600160a01b03169163d607497a9160048083019260009291908290030181865afa1580156105ca573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526105619190810190612591565b6008546001600160a01b0316331461064c5760405162461bcd60e51b815260206004820152600e60248201527f53686974506c756e6765723a203f0000000000000000000000000000000000006044820152606401610490565b61065e8260008363ffffffff16611079565b5050565b60008281526004602090815260408083208151808301909252546001600160a01b038116808352740100000000000000000000000000000000000000009091046bffffffffffffffffffffffff169282019290925282916107035750604080518082019091526003546001600160a01b03811682527401000000000000000000000000000000000000000090046bffffffffffffffffffffffff1660208201525b602081015160009061271090610727906bffffffffffffffffffffffff1687612642565b610731919061267f565b915196919550909350505050565b6001600160a01b03851633148061075b575061075b853361039c565b6107cd5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610490565b6107da8585858585611226565b5050505050565b6060815183511461085a5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e67746860448201527f206d69736d6174636800000000000000000000000000000000000000000000006064820152608401610490565b6000835167ffffffffffffffff81111561087657610876612072565b60405190808252806020026020018201604052801561089f578160200160208202803683370190505b50905060005b8451811015610917576108ea8582815181106108c3576108c36126ba565b60200260200101518583815181106108dd576108dd6126ba565b6020026020010151610416565b8282815181106108fc576108fc6126ba565b6020908102919091010152610910816126e9565b90506108a5565b509392505050565b6005546001600160a01b031633146109795760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610490565b600680547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610a0d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610490565b610a28610a226005546001600160a01b031690565b826114c4565b50565b6005546001600160a01b03163314610a855760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610490565b610a8f60006115ef565b565b61065e338383611659565b6005546001600160a01b03163314610af65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610490565b600880547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610b8a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610490565b8051825114610b9857600080fd5b60005b8151811015610cd257818181518110610bb657610bb66126ba565b6020026020010151600660148282829054906101000a900463ffffffff16610bde9190612722565b92506101000a81548163ffffffff021916908363ffffffff1602179055506122b863ffffffff16600660149054906101000a900463ffffffff1663ffffffff161115610c6c5760405162461bcd60e51b815260206004820152601e60248201527f53686974506c756e6765723a20457863656564206d617820737570706c7900006044820152606401610490565b610cc0838281518110610c8157610c816126ba565b60200260200101516000848481518110610c9d57610c9d6126ba565b602002602001015163ffffffff166040518060200160405280600081525061176c565b80610cca816126e9565b915050610b9b565b505050565b6007546001600160a01b03163314610d315760405162461bcd60e51b815260206004820152600e60248201527f53686974506c756e6765723a203f0000000000000000000000000000000000006044820152606401610490565b6006546122b890610d609074010000000000000000000000000000000000000000900463ffffffff1683612722565b63ffffffff161115610db45760405162461bcd60e51b815260206004820152601e60248201527f53686974506c756e6765723a20457863656564206d617820737570706c7900006044820152606401610490565b80600660148282829054906101000a900463ffffffff16610dd59190612722565b92506101000a81548163ffffffff021916908363ffffffff16021790555061065e8260008363ffffffff166040518060200160405280600081525061176c565b6001600160a01b038516331480610e315750610e31853361039c565b610ea35760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201527f20617070726f76656400000000000000000000000000000000000000000000006064820152608401610490565b6107da8585858585611892565b6005546001600160a01b03163314610f0a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610490565b6001600160a01b038116610f865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610490565b610a28816115ef565b6005546001600160a01b03163314610fe95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610490565b600780547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f2a55205a000000000000000000000000000000000000000000000000000000001480610561575061056182611a5b565b6001600160a01b0383166110f55760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610490565b336111258185600061110687611b3e565b61110f87611b3e565b5050604080516020810190915260009052505050565b6000838152602081815260408083206001600160a01b0388168452909152902054828110156111bb5760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c60448201527f616e6365000000000000000000000000000000000000000000000000000000006064820152608401610490565b6000848152602081815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b815183511461129d5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d617463680000000000000000000000000000000000000000000000006064820152608401610490565b6001600160a01b0384166113195760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610490565b3360005b845181101561145657600085828151811061133a5761133a6126ba565b602002602001015190506000858381518110611358576113586126ba565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156113fe5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e73666572000000000000000000000000000000000000000000006064820152608401610490565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b1682528120805484929061143b90849061274a565b925050819055505050508061144f906126e9565b905061131d565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516114a6929190612762565b60405180910390a46114bc818787878787611b89565b505050505050565b6127106bffffffffffffffffffffffff8216111561154a5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c2065786365656460448201527f2073616c655072696365000000000000000000000000000000000000000000006064820152608401610490565b6001600160a01b0382166115a05760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610490565b604080518082019091526001600160a01b039092168083526bffffffffffffffffffffffff90911660209092018290527401000000000000000000000000000000000000000090910217600355565b600580546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156116e15760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c2073746174757360448201527f20666f722073656c6600000000000000000000000000000000000000000000006064820152608401610490565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166117e85760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610490565b33611802816000876117f988611b3e565b6107da88611b3e565b6000848152602081815260408083206001600160a01b03891684529091528120805485929061183290849061274a565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46107da81600087878787611d8e565b6001600160a01b03841661190e5760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610490565b3361191e8187876117f988611b3e565b6000848152602081815260408083206001600160a01b038a168452909152902054838110156119b55760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e73666572000000000000000000000000000000000000000000006064820152608401610490565b6000858152602081815260408083206001600160a01b038b81168552925280832087850390559088168252812080548692906119f290849061274a565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611a52828888888888611d8e565b50505050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167fd9b67a26000000000000000000000000000000000000000000000000000000001480611aee57507fffffffff0000000000000000000000000000000000000000000000000000000082167f0e89341c00000000000000000000000000000000000000000000000000000000145b8061056157507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610561565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110611b7857611b786126ba565b602090810291909101015292915050565b6001600160a01b0384163b156114bc576040517fbc197c810000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063bc197c8190611be69089908990889088908890600401612790565b6020604051808303816000875af1925050508015611c21575060408051601f3d908101601f19168201909252611c1e918101906127ee565b60015b611cd757611c2d61280b565b806308c379a01415611c675750611c42612827565b80611c4d5750611c69565b8060405162461bcd60e51b81526004016104909190611ff6565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e7465720000000000000000000000006064820152608401610490565b7fffffffff0000000000000000000000000000000000000000000000000000000081167fbc197c810000000000000000000000000000000000000000000000000000000014611a525760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e730000000000000000000000000000000000000000000000006064820152608401610490565b6001600160a01b0384163b156114bc576040517ff23a6e610000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063f23a6e6190611deb90899089908890889088906004016128cf565b6020604051808303816000875af1925050508015611e26575060408051601f3d908101601f19168201909252611e23918101906127ee565b60015b611e3257611c2d61280b565b7fffffffff0000000000000000000000000000000000000000000000000000000081167ff23a6e610000000000000000000000000000000000000000000000000000000014611a525760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e730000000000000000000000000000000000000000000000006064820152608401610490565b80356001600160a01b0381168114611f0057600080fd5b919050565b60008060408385031215611f1857600080fd5b611f2183611ee9565b946020939093013593505050565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610a2857600080fd5b600060208284031215611f6f57600080fd5b8135611f7a81611f2f565b9392505050565b600060208284031215611f9357600080fd5b5035919050565b60005b83811015611fb5578181015183820152602001611f9d565b83811115611fc4576000848401525b50505050565b60008151808452611fe2816020860160208601611f9a565b601f01601f19169290920160200192915050565b602081526000611f7a6020830184611fca565b803563ffffffff81168114611f0057600080fd5b6000806040838503121561203057600080fd5b61203983611ee9565b915061204760208401612009565b90509250929050565b6000806040838503121561206357600080fd5b50508035926020909101359150565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b601f19601f830116810181811067ffffffffffffffff821117156120c7576120c7612072565b6040525050565b600067ffffffffffffffff8211156120e8576120e8612072565b5060051b60200190565b600082601f83011261210357600080fd5b81356020612110826120ce565b60405161211d82826120a1565b83815260059390931b850182019282810191508684111561213d57600080fd5b8286015b848110156121585780358352918301918301612141565b509695505050505050565b600067ffffffffffffffff82111561217d5761217d612072565b50601f01601f191660200190565b600082601f83011261219c57600080fd5b81356121a781612163565b6040516121b482826120a1565b8281528560208487010111156121c957600080fd5b82602086016020830137600092810160200192909252509392505050565b600080600080600060a086880312156121ff57600080fd5b61220886611ee9565b945061221660208701611ee9565b9350604086013567ffffffffffffffff8082111561223357600080fd5b61223f89838a016120f2565b9450606088013591508082111561225557600080fd5b61226189838a016120f2565b9350608088013591508082111561227757600080fd5b506122848882890161218b565b9150509295509295909350565b600082601f8301126122a257600080fd5b813560206122af826120ce565b6040516122bc82826120a1565b83815260059390931b85018201928281019150868411156122dc57600080fd5b8286015b84811015612158576122f181611ee9565b83529183019183016122e0565b6000806040838503121561231157600080fd5b823567ffffffffffffffff8082111561232957600080fd5b61233586838701612291565b9350602085013591508082111561234b57600080fd5b50612358858286016120f2565b9150509250929050565b600081518084526020808501945080840160005b8381101561239257815187529582019590820190600101612376565b509495945050505050565b602081526000611f7a6020830184612362565b6000602082840312156123c257600080fd5b611f7a82611ee9565b6000602082840312156123dd57600080fd5b81356bffffffffffffffffffffffff81168114611f7a57600080fd5b6000806040838503121561240c57600080fd5b61241583611ee9565b91506020830135801515811461242a57600080fd5b809150509250929050565b6000806040838503121561244857600080fd5b823567ffffffffffffffff8082111561246057600080fd5b61246c86838701612291565b935060209150818501358181111561248357600080fd5b85019050601f8101861361249657600080fd5b80356124a1816120ce565b6040516124ae82826120a1565b82815260059290921b83018401918481019150888311156124ce57600080fd5b928401925b828410156124f3576124e484612009565b825292840192908401906124d3565b80955050505050509250929050565b6000806040838503121561251557600080fd5b61251e83611ee9565b915061204760208401611ee9565b600080600080600060a0868803121561254457600080fd5b61254d86611ee9565b945061255b60208701611ee9565b93506040860135925060608601359150608086013567ffffffffffffffff81111561258557600080fd5b6122848882890161218b565b6000602082840312156125a357600080fd5b815167ffffffffffffffff8111156125ba57600080fd5b8201601f810184136125cb57600080fd5b80516125d681612163565b6040516125e382826120a1565b8281528660208486010111156125f857600080fd5b612609836020830160208701611f9a565b9695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561267a5761267a612613565b500290565b6000826126b5577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561271b5761271b612613565b5060010190565b600063ffffffff80831681851680830382111561274157612741612613565b01949350505050565b6000821982111561275d5761275d612613565b500190565b6040815260006127756040830185612362565b82810360208401526127878185612362565b95945050505050565b60006001600160a01b03808816835280871660208401525060a060408301526127bc60a0830186612362565b82810360608401526127ce8186612362565b905082810360808401526127e28185611fca565b98975050505050505050565b60006020828403121561280057600080fd5b8151611f7a81611f2f565b600060033d11156128245760046000803e5060005160e01c5b90565b600060443d10156128355790565b6040517ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc803d016004833e81513d67ffffffffffffffff816024840111818411171561288357505050505090565b828501915081518181111561289b5750505050505090565b843d87010160208285010111156128b55750505050505090565b6128c4602082860101876120a1565b509095945050505050565b60006001600160a01b03808816835280871660208401525084604083015283606083015260a0608083015261290760a0830184611fca565b97965050505050505056fea26469706673582212207fad2b4bfc12245ac2990babc7d70c7c68bb9dcfff2b8b59516590a2569b69a264736f6c634300080b00330000000000000000000000009c35e48d38d014bc6adae77d680770bbb33c463e

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101975760003560e01c8063715018a6116100e3578063d35e29d71161008c578063f2fde38b11610066578063f2fde38b146103dd578063f79705ec146103f0578063fca3b5aa1461040357600080fd5b8063d35e29d71461037b578063e985e9c51461038e578063f242432a146103ca57600080fd5b8063a67561c7116100bd578063a67561c714610342578063a996d6ce14610355578063bdbd20a51461036857600080fd5b8063715018a6146103165780638da5cb5b1461031e578063a22cb4651461032f57600080fd5b80632eb2c2d61161014557806356d3163d1161011f57806356d3163d146102c5578063610936b9146102d8578063653a819e1461030357600080fd5b80632eb2c2d61461028957806332cb6b0c1461029c5780634e1273f4146102a557600080fd5b8063235c8fa711610176578063235c8fa7146102055780632a55205a1461021a5780632c19b7f31461024c57600080fd5b8062fdd58e1461019c57806301ffc9a7146101c25780630e89341c146101e5575b600080fd5b6101af6101aa366004611f05565b610416565b6040519081526020015b60405180910390f35b6101d56101d0366004611f5d565b6104bf565b60405190151581526020016101b9565b6101f86101f3366004611f81565b610567565b6040516101b99190611ff6565b61021861021336600461201d565b6105f2565b005b61022d610228366004612050565b610662565b604080516001600160a01b0390931683526020830191909152016101b9565b6006546102749074010000000000000000000000000000000000000000900463ffffffff1681565b60405163ffffffff90911681526020016101b9565b6102186102973660046121e7565b61073f565b6102746122b881565b6102b86102b33660046122fe565b6107e1565b6040516101b9919061239d565b6102186102d33660046123b0565b61091f565b6008546102eb906001600160a01b031681565b6040516001600160a01b0390911681526020016101b9565b6102186103113660046123cb565b6109b3565b610218610a2b565b6005546001600160a01b03166102eb565b61021861033d3660046123f9565b610a91565b6006546102eb906001600160a01b031681565b6102186103633660046123b0565b610a9c565b610218610376366004612435565b610b30565b61021861038936600461201d565b610cd7565b6101d561039c366004612502565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b6102186103d836600461252c565b610e15565b6102186103eb3660046123b0565b610eb0565b6007546102eb906001600160a01b031681565b6102186104113660046123b0565b610f8f565b60006001600160a01b0383166104995760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201527f65726f206164647265737300000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f2a55205a00000000000000000000000000000000000000000000000000000000148061055257507fffffffff0000000000000000000000000000000000000000000000000000000082167fd9b67a2600000000000000000000000000000000000000000000000000000000145b80610561575061056182611023565b92915050565b600654604080517fd607497a00000000000000000000000000000000000000000000000000000000815290516060926001600160a01b03169163d607497a9160048083019260009291908290030181865afa1580156105ca573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526105619190810190612591565b6008546001600160a01b0316331461064c5760405162461bcd60e51b815260206004820152600e60248201527f53686974506c756e6765723a203f0000000000000000000000000000000000006044820152606401610490565b61065e8260008363ffffffff16611079565b5050565b60008281526004602090815260408083208151808301909252546001600160a01b038116808352740100000000000000000000000000000000000000009091046bffffffffffffffffffffffff169282019290925282916107035750604080518082019091526003546001600160a01b03811682527401000000000000000000000000000000000000000090046bffffffffffffffffffffffff1660208201525b602081015160009061271090610727906bffffffffffffffffffffffff1687612642565b610731919061267f565b915196919550909350505050565b6001600160a01b03851633148061075b575061075b853361039c565b6107cd5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610490565b6107da8585858585611226565b5050505050565b6060815183511461085a5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e67746860448201527f206d69736d6174636800000000000000000000000000000000000000000000006064820152608401610490565b6000835167ffffffffffffffff81111561087657610876612072565b60405190808252806020026020018201604052801561089f578160200160208202803683370190505b50905060005b8451811015610917576108ea8582815181106108c3576108c36126ba565b60200260200101518583815181106108dd576108dd6126ba565b6020026020010151610416565b8282815181106108fc576108fc6126ba565b6020908102919091010152610910816126e9565b90506108a5565b509392505050565b6005546001600160a01b031633146109795760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610490565b600680547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610a0d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610490565b610a28610a226005546001600160a01b031690565b826114c4565b50565b6005546001600160a01b03163314610a855760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610490565b610a8f60006115ef565b565b61065e338383611659565b6005546001600160a01b03163314610af65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610490565b600880547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610b8a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610490565b8051825114610b9857600080fd5b60005b8151811015610cd257818181518110610bb657610bb66126ba565b6020026020010151600660148282829054906101000a900463ffffffff16610bde9190612722565b92506101000a81548163ffffffff021916908363ffffffff1602179055506122b863ffffffff16600660149054906101000a900463ffffffff1663ffffffff161115610c6c5760405162461bcd60e51b815260206004820152601e60248201527f53686974506c756e6765723a20457863656564206d617820737570706c7900006044820152606401610490565b610cc0838281518110610c8157610c816126ba565b60200260200101516000848481518110610c9d57610c9d6126ba565b602002602001015163ffffffff166040518060200160405280600081525061176c565b80610cca816126e9565b915050610b9b565b505050565b6007546001600160a01b03163314610d315760405162461bcd60e51b815260206004820152600e60248201527f53686974506c756e6765723a203f0000000000000000000000000000000000006044820152606401610490565b6006546122b890610d609074010000000000000000000000000000000000000000900463ffffffff1683612722565b63ffffffff161115610db45760405162461bcd60e51b815260206004820152601e60248201527f53686974506c756e6765723a20457863656564206d617820737570706c7900006044820152606401610490565b80600660148282829054906101000a900463ffffffff16610dd59190612722565b92506101000a81548163ffffffff021916908363ffffffff16021790555061065e8260008363ffffffff166040518060200160405280600081525061176c565b6001600160a01b038516331480610e315750610e31853361039c565b610ea35760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201527f20617070726f76656400000000000000000000000000000000000000000000006064820152608401610490565b6107da8585858585611892565b6005546001600160a01b03163314610f0a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610490565b6001600160a01b038116610f865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610490565b610a28816115ef565b6005546001600160a01b03163314610fe95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610490565b600780547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f2a55205a000000000000000000000000000000000000000000000000000000001480610561575061056182611a5b565b6001600160a01b0383166110f55760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610490565b336111258185600061110687611b3e565b61110f87611b3e565b5050604080516020810190915260009052505050565b6000838152602081815260408083206001600160a01b0388168452909152902054828110156111bb5760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c60448201527f616e6365000000000000000000000000000000000000000000000000000000006064820152608401610490565b6000848152602081815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b815183511461129d5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d617463680000000000000000000000000000000000000000000000006064820152608401610490565b6001600160a01b0384166113195760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610490565b3360005b845181101561145657600085828151811061133a5761133a6126ba565b602002602001015190506000858381518110611358576113586126ba565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156113fe5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e73666572000000000000000000000000000000000000000000006064820152608401610490565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b1682528120805484929061143b90849061274a565b925050819055505050508061144f906126e9565b905061131d565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516114a6929190612762565b60405180910390a46114bc818787878787611b89565b505050505050565b6127106bffffffffffffffffffffffff8216111561154a5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c2065786365656460448201527f2073616c655072696365000000000000000000000000000000000000000000006064820152608401610490565b6001600160a01b0382166115a05760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610490565b604080518082019091526001600160a01b039092168083526bffffffffffffffffffffffff90911660209092018290527401000000000000000000000000000000000000000090910217600355565b600580546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156116e15760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c2073746174757360448201527f20666f722073656c6600000000000000000000000000000000000000000000006064820152608401610490565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166117e85760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610490565b33611802816000876117f988611b3e565b6107da88611b3e565b6000848152602081815260408083206001600160a01b03891684529091528120805485929061183290849061274a565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46107da81600087878787611d8e565b6001600160a01b03841661190e5760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610490565b3361191e8187876117f988611b3e565b6000848152602081815260408083206001600160a01b038a168452909152902054838110156119b55760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e73666572000000000000000000000000000000000000000000006064820152608401610490565b6000858152602081815260408083206001600160a01b038b81168552925280832087850390559088168252812080548692906119f290849061274a565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611a52828888888888611d8e565b50505050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167fd9b67a26000000000000000000000000000000000000000000000000000000001480611aee57507fffffffff0000000000000000000000000000000000000000000000000000000082167f0e89341c00000000000000000000000000000000000000000000000000000000145b8061056157507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610561565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110611b7857611b786126ba565b602090810291909101015292915050565b6001600160a01b0384163b156114bc576040517fbc197c810000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063bc197c8190611be69089908990889088908890600401612790565b6020604051808303816000875af1925050508015611c21575060408051601f3d908101601f19168201909252611c1e918101906127ee565b60015b611cd757611c2d61280b565b806308c379a01415611c675750611c42612827565b80611c4d5750611c69565b8060405162461bcd60e51b81526004016104909190611ff6565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e7465720000000000000000000000006064820152608401610490565b7fffffffff0000000000000000000000000000000000000000000000000000000081167fbc197c810000000000000000000000000000000000000000000000000000000014611a525760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e730000000000000000000000000000000000000000000000006064820152608401610490565b6001600160a01b0384163b156114bc576040517ff23a6e610000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063f23a6e6190611deb90899089908890889088906004016128cf565b6020604051808303816000875af1925050508015611e26575060408051601f3d908101601f19168201909252611e23918101906127ee565b60015b611e3257611c2d61280b565b7fffffffff0000000000000000000000000000000000000000000000000000000081167ff23a6e610000000000000000000000000000000000000000000000000000000014611a525760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e730000000000000000000000000000000000000000000000006064820152608401610490565b80356001600160a01b0381168114611f0057600080fd5b919050565b60008060408385031215611f1857600080fd5b611f2183611ee9565b946020939093013593505050565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610a2857600080fd5b600060208284031215611f6f57600080fd5b8135611f7a81611f2f565b9392505050565b600060208284031215611f9357600080fd5b5035919050565b60005b83811015611fb5578181015183820152602001611f9d565b83811115611fc4576000848401525b50505050565b60008151808452611fe2816020860160208601611f9a565b601f01601f19169290920160200192915050565b602081526000611f7a6020830184611fca565b803563ffffffff81168114611f0057600080fd5b6000806040838503121561203057600080fd5b61203983611ee9565b915061204760208401612009565b90509250929050565b6000806040838503121561206357600080fd5b50508035926020909101359150565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b601f19601f830116810181811067ffffffffffffffff821117156120c7576120c7612072565b6040525050565b600067ffffffffffffffff8211156120e8576120e8612072565b5060051b60200190565b600082601f83011261210357600080fd5b81356020612110826120ce565b60405161211d82826120a1565b83815260059390931b850182019282810191508684111561213d57600080fd5b8286015b848110156121585780358352918301918301612141565b509695505050505050565b600067ffffffffffffffff82111561217d5761217d612072565b50601f01601f191660200190565b600082601f83011261219c57600080fd5b81356121a781612163565b6040516121b482826120a1565b8281528560208487010111156121c957600080fd5b82602086016020830137600092810160200192909252509392505050565b600080600080600060a086880312156121ff57600080fd5b61220886611ee9565b945061221660208701611ee9565b9350604086013567ffffffffffffffff8082111561223357600080fd5b61223f89838a016120f2565b9450606088013591508082111561225557600080fd5b61226189838a016120f2565b9350608088013591508082111561227757600080fd5b506122848882890161218b565b9150509295509295909350565b600082601f8301126122a257600080fd5b813560206122af826120ce565b6040516122bc82826120a1565b83815260059390931b85018201928281019150868411156122dc57600080fd5b8286015b84811015612158576122f181611ee9565b83529183019183016122e0565b6000806040838503121561231157600080fd5b823567ffffffffffffffff8082111561232957600080fd5b61233586838701612291565b9350602085013591508082111561234b57600080fd5b50612358858286016120f2565b9150509250929050565b600081518084526020808501945080840160005b8381101561239257815187529582019590820190600101612376565b509495945050505050565b602081526000611f7a6020830184612362565b6000602082840312156123c257600080fd5b611f7a82611ee9565b6000602082840312156123dd57600080fd5b81356bffffffffffffffffffffffff81168114611f7a57600080fd5b6000806040838503121561240c57600080fd5b61241583611ee9565b91506020830135801515811461242a57600080fd5b809150509250929050565b6000806040838503121561244857600080fd5b823567ffffffffffffffff8082111561246057600080fd5b61246c86838701612291565b935060209150818501358181111561248357600080fd5b85019050601f8101861361249657600080fd5b80356124a1816120ce565b6040516124ae82826120a1565b82815260059290921b83018401918481019150888311156124ce57600080fd5b928401925b828410156124f3576124e484612009565b825292840192908401906124d3565b80955050505050509250929050565b6000806040838503121561251557600080fd5b61251e83611ee9565b915061204760208401611ee9565b600080600080600060a0868803121561254457600080fd5b61254d86611ee9565b945061255b60208701611ee9565b93506040860135925060608601359150608086013567ffffffffffffffff81111561258557600080fd5b6122848882890161218b565b6000602082840312156125a357600080fd5b815167ffffffffffffffff8111156125ba57600080fd5b8201601f810184136125cb57600080fd5b80516125d681612163565b6040516125e382826120a1565b8281528660208486010111156125f857600080fd5b612609836020830160208701611f9a565b9695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561267a5761267a612613565b500290565b6000826126b5577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561271b5761271b612613565b5060010190565b600063ffffffff80831681851680830382111561274157612741612613565b01949350505050565b6000821982111561275d5761275d612613565b500190565b6040815260006127756040830185612362565b82810360208401526127878185612362565b95945050505050565b60006001600160a01b03808816835280871660208401525060a060408301526127bc60a0830186612362565b82810360608401526127ce8186612362565b905082810360808401526127e28185611fca565b98975050505050505050565b60006020828403121561280057600080fd5b8151611f7a81611f2f565b600060033d11156128245760046000803e5060005160e01c5b90565b600060443d10156128355790565b6040517ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc803d016004833e81513d67ffffffffffffffff816024840111818411171561288357505050505090565b828501915081518181111561289b5750505050505090565b843d87010160208285010111156128b55750505050505090565b6128c4602082860101876120a1565b509095945050505050565b60006001600160a01b03808816835280871660208401525084604083015283606083015260a0608083015261290760a0830184611fca565b97965050505050505056fea26469706673582212207fad2b4bfc12245ac2990babc7d70c7c68bb9dcfff2b8b59516590a2569b69a264736f6c634300080b0033

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

0000000000000000000000009c35e48d38d014bc6adae77d680770bbb33c463e

-----Decoded View---------------
Arg [0] : renderer (address): 0x9c35e48D38D014bc6adAe77D680770bBb33C463E

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000009c35e48d38d014bc6adae77d680770bbb33c463e


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.