ETH Price: $3,386.91 (-1.47%)
Gas: 2 Gwei

Token

 

Overview

Max Total Supply

110

Holders

74

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
takawo.eth
0x329f3a45A09566c1118d10260BDadfF901a0702E
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Homage

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 16 : Homage.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

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

contract Homage is HomageBase, ERC1155, ERC2981ContractWideRoyalties, Ownable {
    address payable private _payeeA;
    address payable private _payeeB;

    // Minted is a bitmap organized like the following:
    // - The LSB defines if the contract is open for minting or not. Note: the
    // owner can always mint.
    // - From the second LSB on if a token has been minted, e.g. token with id 1
    // is represented by the second LSB that is 0x0000…0010.
    uint256 public minted;

    constructor() ERC1155("") {
        // Assign 5% royalties to msg.sender
        _setRoyalties(_msgSender(), 500);
        _payeeA = payable(_msgSender());
        _payeeB = payable(0x39596955f9111e12aF0B96A96160C5f7211B20EF);
    }

    function start() external onlyOwner {
        minted |= 1;
    }

    function stop() external onlyOwner {
        minted &= type(uint256).max - 1;
    }

    function setPayees(address payable payeeA, address payable payeeB)
        external
        onlyOwner
    {
        _payeeA = payeeA;
        _payeeB = payeeB;
    }

    function mint(
        address to,
        uint24 outer,
        uint24 inner
    ) external payable {
        uint256 tokenId = _colorsToTokenId(outer, inner);
        require(minted & (1 << tokenId) == 0, "Homage: token already minted");
        if (_msgSender() == owner()) {
            require(msg.value == 0, "Homage: wrong amount");
        } else {
            require(minted & 1 == 1, "Homage: minting stopped");
            require(msg.value == 0.2 ether, "Homage: wrong amount");
            (bool success, ) = _payeeA.call{value: 0.16 ether}("");
            require(success, "Homage: unable transfer to A");
            (success, ) = _payeeB.call{value: 0.04 ether}("");
            require(success, "Homage: unable transfer to B");
        }
        minted |= 1 << tokenId;
        _mint(to, tokenId, 1, "");
    }

    function uri(uint256 tokenId) public view override returns (string memory) {
        require(
            tokenId > 0 && minted & (1 << tokenId) > 1,
            "Homage: token doesn't exist"
        );
        return string(_tokenJSON(tokenId));
    }

    /// @notice Allows to set the royalties on the contract
    /// @dev This function in a real contract should be protected with a onlyOwner (or equivalent) modifier
    /// @param recipient the royalties recipient
    /// @param value royalties value (between 0 and 10000)
    function setRoyalties(address recipient, uint256 value) public onlyOwner {
        _setRoyalties(recipient, value);
    }

    /// @inheritdoc	ERC165
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC1155, ERC2981Base)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
}

File 2 of 16 : 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 3 of 16 : 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 4 of 16 : HomageBase.sol
// SPDX-License-Identifier: GPL-3.0

pragma solidity >=0.7.0 <0.9.0;

import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/Base64.sol";

contract HomageBase {
    using Strings for uint256;

    string constant ANIMATE_START = '<animate attributeName="';
    string[][] private RECT_ATTRIBUTES = [
        [
            "100", // width = height
            "0", // x
            "0", // y
            ".34 .36 .67 .69", // keySplines
            "71.4", // width, height to
            "14.3", // x to
            "21.45" // y to
        ],
        [
            "71.4", // width = height
            "14.3", // x
            "21.45", // y
            ".34 .37 .68 .7", // keySplines
            "46.52", // width, height to
            "26.74", // x to
            "40.11" // y to
        ],
        [
            "46.52", // width = height
            "26.74", // x
            "40.11", // y
            ".35 .38 .68 .71", // keySplines
            "25.48", // width, height to
            "37.26", // x to
            "55.89" // y to
        ],
        [
            "25.48", // width = height
            "37.26", // x
            "55.89", // y
            ".36 .41 .69 .75", // keySplines
            "9.07", // width, height to
            "45.46", // x to
            "68.2" // y to
        ]
    ];
    string constant ANIMATE_END =
        '" dur="3.71s" repeatCount="indefinite" calcMode="spline" />';

    function _interpolateColor(
        int256 from,
        int256 to,
        int256 ratio
    ) internal pure returns (int256) {
        // Ratio is 1e18
        int256 r = ((to >> 16) - (from >> 16)) * ratio + (from >> 16) * 1e18;
        if ((r / 1e17) % 10 >= 5) {
            r = r / 1e18 + 1;
        } else {
            r = r / 1e18;
        }
        int256 g = (((to >> 8) & 255) - ((from >> 8) & 255)) *
            ratio +
            ((from >> 8) & 255) *
            1e18;
        if ((g / 1e17) % 10 >= 5) {
            g = g / 1e18 + 1;
        } else {
            g = g / 1e18;
        }
        int256 b = ((to & 255) - (from & 255)) * ratio + (from & 255) * 1e18;
        if ((b / 1e17) % 10 >= 5) {
            b = b / 1e18 + 1;
        } else {
            b = b / 1e18;
        }
        return int256((r << 16) + (g << 8) + b);
    }

    function _renderRect(
        uint256 i,
        string memory c0,
        string memory c1
    ) internal view returns (bytes memory) {
        // <animate attributeName="fill" values="#6f00a4; #463fa1" keyTimes="0; 1" dur="3.71s" repeatCount="indefinite" />
        bytes memory last = i == 3
            ? bytes("")
            : abi.encodePacked(
                ANIMATE_START,
                'fill" values="#',
                c0,
                i == 2 ? abi.encodePacked("; #", c1) : bytes(""),
                "; #",
                c1,
                '" keyTimes="0;',
                i == 2 ? ".69;" : "",
                '1" dur="3.71s" repeatCount="indefinite" />'
            );
        return
            abi.encodePacked(
                // parent rect
                abi.encodePacked(
                    '<rect width="',
                    RECT_ATTRIBUTES[i][0],
                    '%" height="',
                    RECT_ATTRIBUTES[i][0],
                    '%" x="',
                    RECT_ATTRIBUTES[i][1],
                    '%" y="',
                    RECT_ATTRIBUTES[i][2],
                    '%" fill="#',
                    c0,
                    '">'
                ),
                //'<animate attributeName="width" to="71.4%" keySplines=".34 .36 .67 .69" dur="3.71s" repeatCount="indefinite" calcMode="spline" />',
                abi.encodePacked(
                    ANIMATE_START,
                    "width",
                    '" to="',
                    RECT_ATTRIBUTES[i][4],
                    '%" keySplines="',
                    RECT_ATTRIBUTES[i][3],
                    ANIMATE_END
                ),
                //'<animate attributeName="height" to="71.4%" keySplines=".34 .36 .67 .69" dur="3.71s" repeatCount="indefinite" calcMode="spline" />',
                abi.encodePacked(
                    ANIMATE_START,
                    "height",
                    '" to="',
                    RECT_ATTRIBUTES[i][4],
                    '%" keySplines="',
                    RECT_ATTRIBUTES[i][3],
                    ANIMATE_END
                ),
                // <animate attributeName="x" to="14.3%" keySplines=".34 .36 .67 .69" dur="3.71s" repeatCount="indefinite" calcMode="spline" />
                abi.encodePacked(
                    ANIMATE_START,
                    "x",
                    '" to="',
                    RECT_ATTRIBUTES[i][5],
                    '%" keySplines="',
                    RECT_ATTRIBUTES[i][3],
                    ANIMATE_END
                ),
                // <animate attributeName="y" to="21.45%" keySplines=".34 .36 .67 .69" dur="3.71s" repeatCount="indefinite" calcMode="spline" />
                abi.encodePacked(
                    ANIMATE_START,
                    "y",
                    '" to="',
                    RECT_ATTRIBUTES[i][6],
                    '%" keySplines="',
                    RECT_ATTRIBUTES[i][3],
                    ANIMATE_END
                ),
                last,
                // close parent rect
                "</rect>"
            );
    }

    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    uint24[] private _COLORS = [
        0x29abe2,
        0x006400,
        0xed1e79,
        0x000077,
        0xff6200,
        0xfcabed,
        0x6f00a4,
        0xff0000,
        0xc4e9fb,
        0x00a99d,
        0xffff9b
    ];

    string[] private _NAMES = [
        "blue",
        "forest",
        "magenta",
        "navy",
        "orange",
        "pink",
        "purple",
        "red",
        "sky",
        "teal",
        "yellow"
    ];

    function toHexString(uint256 value) internal pure returns (string memory) {
        bytes memory buffer = new bytes(6);
        for (uint256 i = 6; i > 0; --i) {
            buffer[i - 1] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        return string(buffer);
    }

    function _renderSVG(uint256 c0, uint256 c1)
        internal
        view
        returns (bytes memory)
    {
        uint256 ic0 = uint256(
            _interpolateColor(int256(c0), int256(c1), 371e15)
        );
        uint256 ic1 = uint256(
            _interpolateColor(int256(c0), int256(c1), 742e15)
        );
        return
            abi.encodePacked(
                '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000">'
                '<rect fill="#',
                toHexString(c0),
                '" width="100%" height="100%" />',
                _renderRect(0, toHexString(c0), toHexString(ic0)),
                _renderRect(1, toHexString(ic0), toHexString(ic1)),
                _renderRect(2, toHexString(ic1), toHexString(c1)),
                _renderRect(3, toHexString(c1), toHexString(c1)),
                "</svg>"
            );
    }

    function _colorsToTokenId(uint24 outer, uint24 inner)
        internal
        view
        returns (uint256)
    {
        uint256 o = 0;
        for (; o < 11; ) {
            if (outer == _COLORS[o]) {
                break;
            }
            if (o == 10) {
                revert("Homage: unknown color");
            }
            unchecked {
                o++;
            }
        }
        uint256 i = 0;
        for (; i < 11; ) {
            if (inner == _COLORS[i]) {
                break;
            }
            if (i == 10) {
                revert("Homage: unknown color");
            }
            unchecked {
                i++;
            }
        }
        if (o == i) {
            revert("Homage: same color");
        }
        if (o > i) {
            o--;
        }
        return i * 10 + o + 1;
    }

    function _tokenJSON(uint256 tokenId) internal view returns (bytes memory) {
        uint256 inner = (tokenId - 1) / 10;
        uint256 outer = (tokenId - 1) % 10;
        if (outer >= inner) {
            outer++;
        }
        return
            abi.encodePacked(
                "data:application/json;base64,",
                Base64.encode(
                    abi.encodePacked(
                        '{"name":"Homage ',
                        tokenId.toString(),
                        '",',
                        unicode'"description":"Homage is a collection of 110 on-chain animations 🌹 '
                        unicode"project by Rafaël Rozendaal 2022 🌹 "
                        unicode"svg code by Reinier Feijen 🌹 "
                        unicode"smart contract by Alberto Granzotto 🌹 "
                        unicode"based on the work of Josef Albers 🌹 "
                        unicode'License: CC BY-NC-ND 4.0",',
                        '"attributes":[{"trait_type":"Inner Color","value":"',
                        _NAMES[inner],
                        '"},{"trait_type":"Outer Color","value":"',
                        _NAMES[outer],
                        '"}],',
                        '"image":"data:image/svg+xml;base64,',
                        Base64.encode(
                            _renderSVG(_COLORS[outer], _COLORS[inner])
                        ),
                        '"}'
                    )
                )
            );
    }
}

File 5 of 16 : ERC2981ContractWideRoyalties.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

// Author: https://github.com/dievardump/EIP2981-implementation/tree/efb71d618472ba2f26336c9bd4e7acf1ac6d28c4

import "@openzeppelin/contracts/utils/introspection/ERC165.sol";

import "./ERC2981Base.sol";

/// @dev This is a contract used to add ERC2981 support to ERC721 and 1155
/// @dev This implementation has the same royalties for each and every tokens
abstract contract ERC2981ContractWideRoyalties is ERC2981Base {
    RoyaltyInfo private _royalties;

    /// @dev Sets token royalties
    /// @param recipient recipient of the royalties
    /// @param value percentage (using 2 decimals - 10000 = 100, 0 = 0)
    function _setRoyalties(address recipient, uint256 value) internal {
        require(value <= 10000, "ERC2981Royalties: Too high");
        _royalties = RoyaltyInfo(recipient, uint24(value));
    }

    /// @inheritdoc	IERC2981Royalties
    function royaltyInfo(uint256, uint256 value)
        external
        view
        override
        returns (address receiver, uint256 royaltyAmount)
    {
        RoyaltyInfo memory royalties = _royalties;
        receiver = royalties.recipient;
        royaltyAmount = (value * royalties.amount) / 10000;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

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

File 14 of 16 : Base64.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Base64.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return result;
    }
}

File 15 of 16 : ERC2981Base.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

// Author: https://github.com/dievardump/EIP2981-implementation/tree/efb71d618472ba2f26336c9bd4e7acf1ac6d28c4

import "@openzeppelin/contracts/utils/introspection/ERC165.sol";

import "./IERC2981Royalties.sol";

/// @dev This is a contract used to add ERC2981 support to ERC721 and 1155
abstract contract ERC2981Base is ERC165, IERC2981Royalties {
    struct RoyaltyInfo {
        address recipient;
        uint24 amount;
    }

    /// @inheritdoc	ERC165
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return
            interfaceId == type(IERC2981Royalties).interfaceId ||
            super.supportsInterface(interfaceId);
    }
}

File 16 of 16 : IERC2981Royalties.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

// Author: https://github.com/dievardump/EIP2981-implementation/tree/efb71d618472ba2f26336c9bd4e7acf1ac6d28c4

/// @title IERC2981Royalties
/// @dev Interface for the ERC2981 - Token Royalty standard
interface IERC2981Royalties {
    /// @notice Called with the sale price to determine how much royalty
    //          is owed and to whom.
    /// @param _tokenId - the NFT asset queried for royalty information
    /// @param _value - the sale price of the NFT asset specified by _tokenId
    /// @return _receiver - address of who should be sent the royalty payment
    /// @return _royaltyAmount - the royalty payment amount for value sale price
    function royaltyInfo(uint256 _tokenId, uint256 _value)
        external
        view
        returns (address _receiver, uint256 _royaltyAmount);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"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":"uint24","name":"outer","type":"uint24"},{"internalType":"uint24","name":"inner","type":"uint24"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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 payable","name":"payeeA","type":"address"},{"internalType":"address payable","name":"payeeB","type":"address"}],"name":"setPayees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"start","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stop","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":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60036101e09081526203130360ec1b610200526101009081526001610220818152600360fc1b610240819052610120919091526102609182526102805261014052600f6102a08181526e2e3334202e3336202e3637202e363960881b6102c0526101605260046102e0818152630dcc4b8d60e21b610300819052610180919091526103208281526331342e3360e01b6103408190526101a09190915260056103608181526432312e343560d81b6103808190526101c09190915260809687526104808581526104a0949094526103a09384526104c08581526104e0939093526103c092909252610500818152610520929092526103e091909152600e6105409081526d2e3334202e3337202e3638202e3760901b6105605261040052610580818152641a1b171a9960d91b6105a0819052610420919091526105c0828152640c8d8b8dcd60da1b6105e0819052610440919091526106008381526434302e313160d81b6106208190526104609190915260a0949094526107208381526107409290925261064091825261076083815261078091909152610660526107a08281526107c093909352610680929092526107e08481526e2e3335202e3338202e3638202e373160881b610800526106a052610820818152640646a5c68760db1b6108408190526106c09190915261086082815264199b97191b60d91b6108808190526106e0919091526108a08381526435352e383960d81b6108c08190526107009190915260c0949094526109c08381526109e0929092526108e0918252610a00838152610a209190915261090052610a40828152610a609390935261092092909252610a809384526e2e3336202e3431202e3639202e373560881b610aa05261094093909352610ac082815263392e303760e01b610ae05261096052610b00928352641a1a971a1b60d91b610b205261098092909252610b80604052610b40818152631b1c171960e11b610b60526109a05260e091909152620002e4916000916200064f565b5060408051610160810182526229abe28152616400602082015262ed1e79918101919091526077606082015262ff6200608082015262fcabed60a0820152626f00a460c082015262ff000060e082015262c4e9fb61010082015261a99d61012082015262ffff9b6101408201526200036190600190600b620006ad565b50604080516101a0810182526004610160820181815263626c756560e01b610180840152825282518084018452600680825265199bdc995cdd60d21b602083810191909152808501929092528451808601865260078152666d6167656e746160c81b818401528486015284518086018652838152636e61767960e01b81840152606085015284518086018652818152656f72616e676560d01b818401526080850152845180860186528381526370696e6b60e01b8184015260a08501528451808601865281815265707572706c6560d01b8184015260c0850152845180860186526003808252621c995960ea1b8285015260e08601919091528551808701875290815262736b7960e81b8184015261010085015284518086018652928352631d19585b60e21b8383015261012084019290925283518085019094529083526579656c6c6f7760d01b90830152610140810191909152620004c690600290600b6200075c565b50348015620004d457600080fd5b50604080516020810190915260008152620004ef8162000543565b50620004fb336200055c565b62000509336101f4620005ae565b60088054336001600160a01b031991821617909155600980549091167339596955f9111e12af0b96a96160c5f7211b20ef17905562000983565b805162000558906005906020840190620007bc565b5050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612710811115620006055760405162461bcd60e51b815260206004820152601a60248201527f45524332393831526f79616c746965733a20546f6f2068696768000000000000604482015260640160405180910390fd5b604080518082019091526001600160a01b0390921680835262ffffff909116602090920182905260068054600160a01b9093026001600160b81b0319909316909117919091179055565b8280548282559060005260206000209081019282156200069b579160200282015b828111156200069b5782516200068a908390600762000839565b509160200191906001019062000670565b50620006a99291506200088b565b5090565b82805482825590600052602060002090600901600a900481019282156200074e5791602002820160005b838211156200071b57835183826101000a81548162ffffff021916908362ffffff1602179055509260200192600301602081600201049283019260010302620006d7565b80156200074c5782816101000a81549062ffffff02191690556003016020816002010492830192600103026200071b565b505b50620006a9929150620008ac565b828054828255906000526020600020908101928215620007ae579160200282015b82811115620007ae57825180516200079d918491602090910190620007bc565b50916020019190600101906200077d565b50620006a9929150620008c3565b828054620007ca9062000946565b90600052602060002090601f016020900481019282620007ee57600085556200074e565b82601f106200080957805160ff19168380011785556200074e565b828001600101855582156200074e579182015b828111156200074e5782518255916020019190600101906200081c565b828054828255906000526020600020908101928215620007ae579160200282015b82811115620007ae57825180516200087a918491602090910190620007bc565b50916020019190600101906200085a565b80821115620006a9576000620008a28282620008e4565b506001016200088b565b5b80821115620006a95760008155600101620008ad565b80821115620006a9576000620008da828262000907565b50600101620008c3565b5080546000825590600052602060002090810190620009049190620008c3565b50565b508054620009159062000946565b6000825580601f1062000926575050565b601f016020900490600052602060002090810190620009049190620008ac565b600181811c908216806200095b57607f821691505b602082108114156200097d57634e487b7160e01b600052602260045260246000fd5b50919050565b61365880620009936000396000f3fe6080604052600436106101085760003560e01c8063651dd5d711610095578063a22cb46511610064578063a22cb465146102e6578063be9a655514610306578063e985e9c51461031b578063f242432a14610364578063f2fde38b1461038457600080fd5b8063651dd5d714610269578063715018a6146102895780638c7ea24b1461029e5780638da5cb5b146102be57600080fd5b80632a55205a116100dc5780632a55205a146101b45780632eb2c2d6146101f357806334dfce94146102135780634e1273f4146102265780634f02c4201461025357600080fd5b8062fdd58e1461010d57806301ffc9a71461014057806307da68f5146101705780630e89341c14610187575b600080fd5b34801561011957600080fd5b5061012d61012836600461235c565b6103a4565b6040519081526020015b60405180910390f35b34801561014c57600080fd5b5061016061015b36600461239e565b61043d565b6040519015158152602001610137565b34801561017c57600080fd5b5061018561044e565b005b34801561019357600080fd5b506101a76101a23660046123c2565b610490565b6040516101379190612433565b3480156101c057600080fd5b506101d46101cf366004612446565b6104ff565b604080516001600160a01b039093168352602083019190915201610137565b3480156101ff57600080fd5b5061018561020e3660046125b4565b610554565b61018561022136600461267a565b6105eb565b34801561023257600080fd5b506102466102413660046126bf565b6108de565b60405161013791906127bd565b34801561025f57600080fd5b5061012d600a5481565b34801561027557600080fd5b506101856102843660046127d0565b610a08565b34801561029557600080fd5b50610185610a60565b3480156102aa57600080fd5b506101856102b936600461235c565b610a96565b3480156102ca57600080fd5b506007546040516001600160a01b039091168152602001610137565b3480156102f257600080fd5b50610185610301366004612809565b610ace565b34801561031257600080fd5b50610185610ad9565b34801561032757600080fd5b506101606103363660046127d0565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b34801561037057600080fd5b5061018561037f36600461283c565b610b0e565b34801561039057600080fd5b5061018561039f3660046128a5565b610b95565b60006001600160a01b0383166104155760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b5060009081526003602090815260408083206001600160a01b03949094168352929052205490565b600061044882610c30565b92915050565b6007546001600160a01b031633146104785760405162461bcd60e51b815260040161040c906128c2565b610485600160001961290d565b600a80549091169055565b60606000821180156104aa57506001826001901b600a5416115b6104f65760405162461bcd60e51b815260206004820152601b60248201527f486f6d6167653a20746f6b656e20646f65736e27742065786973740000000000604482015260640161040c565b61044882610c55565b604080518082019091526006546001600160a01b038116808352600160a01b90910462ffffff16602083018190529091600091612710906105409086612924565b61054a9190612959565b9150509250929050565b6001600160a01b03851633148061057057506105708533610336565b6105d75760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161040c565b6105e48585858585610dc1565b5050505050565b60006105f78383610fa1565b600a549091506001821b161561064f5760405162461bcd60e51b815260206004820152601c60248201527f486f6d6167653a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161040c565b6007546001600160a01b03163314156106ac5734156106a75760405162461bcd60e51b8152602060048201526014602482015273121bdb5859d94e881ddc9bdb99c8185b5bdd5b9d60621b604482015260640161040c565b6108a8565b600a546001166001146107015760405162461bcd60e51b815260206004820152601760248201527f486f6d6167653a206d696e74696e672073746f70706564000000000000000000604482015260640161040c565b346702c68af0bb1400001461074f5760405162461bcd60e51b8152602060048201526014602482015273121bdb5859d94e881ddc9bdb99c8185b5bdd5b9d60621b604482015260640161040c565b6008546040516000916001600160a01b0316906702386f26fc100000908381818185875af1925050503d80600081146107a4576040519150601f19603f3d011682016040523d82523d6000602084013e6107a9565b606091505b50509050806107fa5760405162461bcd60e51b815260206004820152601c60248201527f486f6d6167653a20756e61626c65207472616e7366657220746f204100000000604482015260640161040c565b6009546040516001600160a01b0390911690668e1bc9bf04000090600081818185875af1925050503d806000811461084e576040519150601f19603f3d011682016040523d82523d6000602084013e610853565b606091505b505080915050806108a65760405162461bcd60e51b815260206004820152601c60248201527f486f6d6167653a20756e61626c65207472616e7366657220746f204200000000604482015260640161040c565b505b806001901b600a600082825417925050819055506108d8848260016040518060200160405280600081525061117d565b50505050565b606081518351146109435760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b606482015260840161040c565b6000835167ffffffffffffffff81111561095f5761095f612468565b604051908082528060200260200182016040528015610988578160200160208202803683370190505b50905060005b8451811015610a00576109d38582815181106109ac576109ac61296d565b60200260200101518583815181106109c6576109c661296d565b60200260200101516103a4565b8282815181106109e5576109e561296d565b60209081029190910101526109f981612983565b905061098e565b509392505050565b6007546001600160a01b03163314610a325760405162461bcd60e51b815260040161040c906128c2565b600880546001600160a01b039384166001600160a01b03199182161790915560098054929093169116179055565b6007546001600160a01b03163314610a8a5760405162461bcd60e51b815260040161040c906128c2565b610a946000611289565b565b6007546001600160a01b03163314610ac05760405162461bcd60e51b815260040161040c906128c2565b610aca82826112db565b5050565b610aca338383611377565b6007546001600160a01b03163314610b035760405162461bcd60e51b815260040161040c906128c2565b600a80546001179055565b6001600160a01b038516331480610b2a5750610b2a8533610336565b610b885760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b606482015260840161040c565b6105e48585858585611458565b6007546001600160a01b03163314610bbf5760405162461bcd60e51b815260040161040c906128c2565b6001600160a01b038116610c245760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161040c565b610c2d81611289565b50565b60006001600160e01b0319821663152a902d60e11b1480610448575061044882611579565b60606000600a610c6660018561290d565b610c709190612959565b90506000600a610c8160018661290d565b610c8b919061299e565b9050818110610ca25780610c9e81612983565b9150505b610d99610cae856115c9565b60028481548110610cc157610cc161296d565b9060005260206000200160028481548110610cde57610cde61296d565b90600052602060002001610d72610d6d60018781548110610d0157610d0161296d565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff1662ffffff1660018981548110610d3e57610d3e61296d565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff1662ffffff166116cf565b61178d565b604051602001610d859493929190612a68565b60405160208183030381529060405261178d565b604051602001610da99190612cd4565b60405160208183030381529060405292505050919050565b8151835114610e235760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b606482015260840161040c565b6001600160a01b038416610e495760405162461bcd60e51b815260040161040c90612d19565b3360005b8451811015610f33576000858281518110610e6a57610e6a61296d565b602002602001015190506000858381518110610e8857610e8861296d565b60209081029190910181015160008481526003835260408082206001600160a01b038e168352909352919091205490915081811015610ed95760405162461bcd60e51b815260040161040c90612d5e565b60008381526003602090815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610f18908490612da8565b9250508190555050505080610f2c90612983565b9050610e4d565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610f83929190612dc0565b60405180910390a4610f998187878787876118e1565b505050505050565b6000805b600b81101561104d5760018181548110610fc157610fc161296d565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff1662ffffff168462ffffff161415610ffc5761104d565b80600a14156110455760405162461bcd60e51b81526020600482015260156024820152742437b6b0b3b29d103ab735b737bbb71031b7b637b960591b604482015260640161040c565b600101610fa5565b60005b600b8110156110f8576001818154811061106c5761106c61296d565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff1662ffffff168462ffffff1614156110a7576110f8565b80600a14156110f05760405162461bcd60e51b81526020600482015260156024820152742437b6b0b3b29d103ab735b737bbb71031b7b637b960591b604482015260640161040c565b600101611050565b8082141561113d5760405162461bcd60e51b81526020600482015260126024820152712437b6b0b3b29d1039b0b6b29031b7b637b960711b604482015260640161040c565b80821115611153578161114f81612de5565b9250505b8161115f82600a612924565b6111699190612da8565b611174906001612da8565b95945050505050565b6001600160a01b0384166111dd5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161040c565b336111f7816000876111ee88611a3d565b6105e488611a3d565b60008481526003602090815260408083206001600160a01b038916845290915281208054859290611229908490612da8565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46105e481600087878787611a88565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61271081111561132d5760405162461bcd60e51b815260206004820152601a60248201527f45524332393831526f79616c746965733a20546f6f2068696768000000000000604482015260640161040c565b604080518082019091526001600160a01b0390921680835262ffffff909116602090920182905260068054600160a01b9093026001600160b81b0319909316909117919091179055565b816001600160a01b0316836001600160a01b031614156113eb5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b606482015260840161040c565b6001600160a01b03838116600081815260046020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b03841661147e5760405162461bcd60e51b815260040161040c90612d19565b3361148e8187876111ee88611a3d565b60008481526003602090815260408083206001600160a01b038a168452909152902054838110156114d15760405162461bcd60e51b815260040161040c90612d5e565b60008581526003602090815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290611510908490612da8565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611570828888888888611a88565b50505050505050565b60006001600160e01b03198216636cdb3d1360e11b14806115aa57506001600160e01b031982166303a24d0760e21b145b8061044857506301ffc9a760e01b6001600160e01b0319831614610448565b6060816115ed5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611617578061160181612983565b91506116109050600a83612959565b91506115f1565b60008167ffffffffffffffff81111561163257611632612468565b6040519080825280601f01601f19166020018201604052801561165c576020820181803683370190505b5090505b84156116c75761167160018361290d565b915061167e600a8661299e565b611689906030612da8565b60f81b81838151811061169e5761169e61296d565b60200101906001600160f81b031916908160001a9053506116c0600a86612959565b9450611660565b949350505050565b606060006116e684846705260e88cbab8000611b43565b905060006116fd8585670a4c1d1197570000611b43565b905061170885611d4d565b611724600061171688611d4d565b61171f86611d4d565b611df8565b611732600161171686611d4d565b611749600261174086611d4d565b61171f8a611d4d565b61176060036117578a611d4d565b61171f8b611d4d565b604051602001611774959493929190612dfc565b6040516020818303038152906040529250505092915050565b60608151600014156117ad57505060408051602081019091526000815290565b60006040518060600160405280604081526020016135e360409139905060006003845160026117dc9190612da8565b6117e69190612959565b6117f1906004612924565b67ffffffffffffffff81111561180957611809612468565b6040519080825280601f01601f191660200182016040528015611833576020820181803683370190505b509050600182016020820185865187015b8082101561189f576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f8116850151845350600183019250611844565b50506003865106600181146118bb57600281146118ce576118d6565b603d6001830353603d60028303536118d6565b603d60018303535b509195945050505050565b6001600160a01b0384163b15610f995760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906119259089908990889088908890600401612f0e565b6020604051808303816000875af1925050508015611960575060408051601f3d908101601f1916820190925261195d91810190612f6c565b60015b611a0d5761196c612f89565b806308c379a014156119a65750611981612fa5565b8061198c57506119a8565b8060405162461bcd60e51b815260040161040c9190612433565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606482015260840161040c565b6001600160e01b0319811663bc197c8160e01b146115705760405162461bcd60e51b815260040161040c9061302f565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110611a7757611a7761296d565b602090810291909101015292915050565b6001600160a01b0384163b15610f995760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190611acc9089908990889088908890600401613077565b6020604051808303816000875af1925050508015611b07575060408051601f3d908101601f19168201909252611b0491810190612f6c565b60015b611b135761196c612f89565b6001600160e01b0319811663f23a6e6160e01b146115705760405162461bcd60e51b815260040161040c9061302f565b600080611b5c601086901d670de0b6b3a76400006130b1565b83611b6e601088811d9088901d613136565b611b7891906130b1565b611b829190613175565b90506005600a611b9a67016345785d8a0000846131b6565b611ba491906131e4565b12611bcd57611bbb670de0b6b3a7640000826131b6565b611bc6906001613175565b9050611be2565b611bdf670de0b6b3a7640000826131b6565b90505b6000611bfd60ff600888901d16670de0b6b3a76400006130b1565b84611c1560ff60088a811d821691908a901d16613136565b611c1f91906130b1565b611c299190613175565b90506005600a611c4167016345785d8a0000846131b6565b611c4b91906131e4565b12611c7457611c62670de0b6b3a7640000826131b6565b611c6d906001613175565b9050611c89565b611c86670de0b6b3a7640000826131b6565b90505b6000611ca060ff8816670de0b6b3a76400006130b1565b85611cb160ff808b16908a16613136565b611cbb91906130b1565b611cc59190613175565b90506005600a611cdd67016345785d8a0000846131b6565b611ce791906131e4565b12611d1057611cfe670de0b6b3a7640000826131b6565b611d09906001613175565b9050611d25565b611d22670de0b6b3a7640000826131b6565b90505b80611d38600884901b601086901b613175565b611d429190613175565b979650505050505050565b6040805160068082528183019092526060916000919060208201818036833701905050905060065b8015611df1576f181899199a1a9b1b9c1cb0b131b232b360811b84600f1660108110611da357611da361296d565b1a60f81b82611db360018461290d565b81518110611dc357611dc361296d565b60200101906001600160f81b031916908160001a90535060049390931c92611dea81612de5565b9050611d75565b5092915050565b6060600084600314611ecb576040518060400160405280601881526020016000805160206135c38339815191528152508486600214611e465760405180602001604052806000815250611e67565b84604051602001611e5791906131f8565b6040516020818303038152906040525b8588600214611e855760405180602001604052806000815250611ea3565b604051806040016040528060048152602001632e36393b60e01b8152505b604051602001611eb7959493929190613223565b604051602081830303815290604052611edc565b604051806020016040528060008152505b905060008581548110611ef157611ef161296d565b90600052602060002001600081548110611f0d57611f0d61296d565b9060005260206000200160008681548110611f2a57611f2a61296d565b90600052602060002001600081548110611f4657611f4661296d565b9060005260206000200160008781548110611f6357611f6361296d565b90600052602060002001600181548110611f7f57611f7f61296d565b9060005260206000200160008881548110611f9c57611f9c61296d565b90600052602060002001600281548110611fb857611fb861296d565b9060005260206000200187604051602001611fd7959493929190613311565b60408051601f19818403018152828201909152601882526000805160206135c3833981519152602083015260008054919291889081106120195761201961296d565b906000526020600020016004815481106120355761203561296d565b90600052602060002001600088815481106120525761205261296d565b9060005260206000200160038154811061206e5761206e61296d565b906000526020600020016040518060600160405280603b8152602001613588603b91396040516020016120a494939291906133cb565b60408051601f19818403018152828201909152601882526000805160206135c3833981519152602083015260008054919291899081106120e6576120e661296d565b906000526020600020016004815481106121025761210261296d565b906000526020600020016000898154811061211f5761211f61296d565b9060005260206000200160038154811061213b5761213b61296d565b906000526020600020016040518060600160405280603b8152602001613588603b91396040516020016121719493929190613449565b60408051601f19818403018152828201909152601882526000805160206135c38339815191526020830152600080549192918a9081106121b3576121b361296d565b906000526020600020016005815481106121cf576121cf61296d565b9060005260206000200160008a815481106121ec576121ec61296d565b906000526020600020016003815481106122085761220861296d565b906000526020600020016040518060600160405280603b8152602001613588603b913960405160200161223e9493929190613487565b60408051601f19818403018152828201909152601882526000805160206135c38339815191526020830152600080549192918b9081106122805761228061296d565b9060005260206000200160068154811061229c5761229c61296d565b9060005260206000200160008b815481106122b9576122b961296d565b906000526020600020016003815481106122d5576122d561296d565b906000526020600020016040518060600160405280603b8152602001613588603b913960405160200161230b94939291906134c0565b60408051601f198184030181529082905261232e959493929187906020016134f9565b6040516020818303038152906040529150509392505050565b6001600160a01b0381168114610c2d57600080fd5b6000806040838503121561236f57600080fd5b823561237a81612347565b946020939093013593505050565b6001600160e01b031981168114610c2d57600080fd5b6000602082840312156123b057600080fd5b81356123bb81612388565b9392505050565b6000602082840312156123d457600080fd5b5035919050565b60005b838110156123f65781810151838201526020016123de565b838111156108d85750506000910152565b6000815180845261241f8160208601602086016123db565b601f01601f19169290920160200192915050565b6020815260006123bb6020830184612407565b6000806040838503121561245957600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff811182821017156124a4576124a4612468565b6040525050565b600067ffffffffffffffff8211156124c5576124c5612468565b5060051b60200190565b600082601f8301126124e057600080fd5b813560206124ed826124ab565b6040516124fa828261247e565b83815260059390931b850182019282810191508684111561251a57600080fd5b8286015b84811015612535578035835291830191830161251e565b509695505050505050565b600082601f83011261255157600080fd5b813567ffffffffffffffff81111561256b5761256b612468565b604051612582601f8301601f19166020018261247e565b81815284602083860101111561259757600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a086880312156125cc57600080fd5b85356125d781612347565b945060208601356125e781612347565b9350604086013567ffffffffffffffff8082111561260457600080fd5b61261089838a016124cf565b9450606088013591508082111561262657600080fd5b61263289838a016124cf565b9350608088013591508082111561264857600080fd5b5061265588828901612540565b9150509295509295909350565b803562ffffff8116811461267557600080fd5b919050565b60008060006060848603121561268f57600080fd5b833561269a81612347565b92506126a860208501612662565b91506126b660408501612662565b90509250925092565b600080604083850312156126d257600080fd5b823567ffffffffffffffff808211156126ea57600080fd5b818501915085601f8301126126fe57600080fd5b8135602061270b826124ab565b604051612718828261247e565b83815260059390931b850182019282810191508984111561273857600080fd5b948201945b8386101561275f57853561275081612347565b8252948201949082019061273d565b9650508601359250508082111561277557600080fd5b5061054a858286016124cf565b600081518084526020808501945080840160005b838110156127b257815187529582019590820190600101612796565b509495945050505050565b6020815260006123bb6020830184612782565b600080604083850312156127e357600080fd5b82356127ee81612347565b915060208301356127fe81612347565b809150509250929050565b6000806040838503121561281c57600080fd5b823561282781612347565b9150602083013580151581146127fe57600080fd5b600080600080600060a0868803121561285457600080fd5b853561285f81612347565b9450602086013561286f81612347565b93506040860135925060608601359150608086013567ffffffffffffffff81111561289957600080fd5b61265588828901612540565b6000602082840312156128b757600080fd5b81356123bb81612347565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008282101561291f5761291f6128f7565b500390565b600081600019048311821515161561293e5761293e6128f7565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261296857612968612943565b500490565b634e487b7160e01b600052603260045260246000fd5b6000600019821415612997576129976128f7565b5060010190565b6000826129ad576129ad612943565b500690565b600081516129c48185602086016123db565b9290920192915050565b8054600090600181811c90808316806129e857607f831692505b6020808410821415612a0a57634e487b7160e01b600052602260045260246000fd5b818015612a1e5760018114612a2f57612a5c565b60ff19861689528489019650612a5c565b60008881526020902060005b86811015612a545781548b820152908501908301612a3b565b505084890196505b50505050505092915050565b6f03d913730b6b2911d112437b6b0b3b2960851b81528451600090612a94816010850160208a016123db565b61088b60f21b6010918401918201527f226465736372697074696f6e223a22486f6d616765206973206120636f6c6c6560128201527f6374696f6e206f6620313130206f6e2d636861696e20616e696d6174696f6e7360328201527f20f09f8cb92070726f6a6563742062792052616661c3ab6c20526f7a656e646160528201527f616c203230323220f09f8cb92073766720636f6465206279205265696e69657260728201527f204665696a656e20f09f8cb920736d61727420636f6e7472616374206279204160928201527f6c626572746f204772616e7a6f74746f20f09f8cb9206261736564206f6e207460b28201527f686520776f726b206f66204a6f73656620416c6265727320f09f8cb9204c696360d28201527f656e73653a2043432042592d4e432d4e4420342e30222c00000000000000000060f2820152611d42612cc6612cc0612c8b612c7b612c75612c3b612c3561010989017f2261747472696275746573223a5b7b2274726169745f74797065223a22496e6e81527232b91021b7b637b91116113b30b63ab2911d1160691b602082015260330190565b8d6129ce565b7f227d2c7b2274726169745f74797065223a224f7574657220436f6c6f72222c228152673b30b63ab2911d1160c11b602082015260280190565b8a6129ce565b63089f574b60e21b815260040190565b7f22696d616765223a22646174613a696d6167652f7376672b786d6c3b626173658152620d8d0b60ea1b602082015260230190565b866129b2565b61227d60f01b815260020190565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251612d0c81601d8501602087016123db565b91909101601d0192915050565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b60008219821115612dbb57612dbb6128f7565b500190565b604081526000612dd36040830185612782565b82810360208401526111748185612782565b600081612df457612df46128f7565b506000190190565b7f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f32308152600060207f30302f737667222076696577426f783d2230203020313030302031303030223e818401526c3c726563742066696c6c3d222360981b60408401528751612e7081604d8601848c016123db565b7f222077696474683d223130302522206865696768743d223130302522202f3e00604d918501918201528751612eac81606c8401858c016123db565b8751910190612ec181606c8401858b016123db565b8651910190612ed681606c8401858a016123db565b8551910190612eeb81606c84018589016123db565b651e17b9bb339f60d11b606c929091019182015260720198975050505050505050565b6001600160a01b0386811682528516602082015260a060408201819052600090612f3a90830186612782565b8281036060840152612f4c8186612782565b90508281036080840152612f608185612407565b98975050505050505050565b600060208284031215612f7e57600080fd5b81516123bb81612388565b600060033d1115612fa25760046000803e5060005160e01c5b90565b600060443d1015612fb35790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715612fe357505050505090565b8285019150815181811115612ffb5750505050505090565b843d87010160208285010111156130155750505050505090565b6130246020828601018761247e565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611d4290830184612407565b60006001600160ff1b03818413828413808216868404861116156130d7576130d76128f7565b600160ff1b60008712828116878305891216156130f6576130f66128f7565b60008712925087820587128484161615613112576131126128f7565b87850587128184161615613128576131286128f7565b505050929093029392505050565b60008083128015600160ff1b850184121615613154576131546128f7565b6001600160ff1b038401831381161561316f5761316f6128f7565b50500390565b600080821280156001600160ff1b0384900385131615613197576131976128f7565b600160ff1b83900384128116156131b0576131b06128f7565b50500190565b6000826131c5576131c5612943565b600160ff1b8214600019841416156131df576131df6128f7565b500590565b6000826131f3576131f3612943565b500790565b623b202360e81b8152600082516132168160038501602087016123db565b9190910160030192915050565b6000865160206132368285838c016123db565b6e66696c6c222076616c7565733d222360881b918401918252875161326181600f8501848c016123db565b875192019161327681600f8501848b016123db565b623b202360e81b600f939091019283015285516132998160128501848a016123db565b6d22206b657954696d65733d22303b60901b6012939091019283015284516132c6818385018489016123db565b7f3122206475723d22332e3731732220726570656174436f756e743d22696e6465920190810191909152693334b734ba329110179f60b11b6040820152604a01979650505050505050565b6c1e3932b1ba103bb4b23a341e9160991b81526000613333600d8301886129ce565b6a1291103432b4b3b43a1e9160a91b8152613351600b8201886129ce565b651291103c1e9160d11b8152905061336c60068201876129ce565b651291103c9e9160d11b8152905061338760068201866129ce565b6925222066696c6c3d222360b01b815284519091506133ad81600a8401602088016123db565b61111f60f11b600a9290910191820152600c01979650505050505050565b600085516133dd818460208a016123db565b640eed2c8e8d60db1b9083019081526511103a379e9160d11b6005820152613408600b8201876129ce565b6e12911035b2bca9b83634b732b99e9160891b8152905061342c600f8201866129ce565b9050835161343e8183602088016123db565b019695505050505050565b6000855161345b818460208a016123db565b651a195a59da1d60d21b9083019081526511103a379e9160d11b6006820152613408600c8201876129ce565b60008551613499818460208a016123db565b600f60fb1b9083019081526511103a379e9160d11b600182015261340860078201876129ce565b600085516134d2818460208a016123db565b607960f81b9083019081526511103a379e9160d11b600182015261340860078201876129ce565b60008751602061350c8285838d016123db565b88519184019161351f8184848d016123db565b88519201916135318184848c016123db565b87519201916135438184848b016123db565b86519201916135558184848a016123db565b855192019161356781848489016123db565b661e17b932b1ba1f60c91b9201918252506007019897505050505050505056fe22206475723d22332e3731732220726570656174436f756e743d22696e646566696e697465222063616c634d6f64653d2273706c696e6522202f3e3c616e696d617465206174747269627574654e616d653d2200000000000000004142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa264697066735822122099d6074dfc04c56af25e8e7946ef5ce3a6687aea7e16f6cda94c263ae5eecd5664736f6c634300080c0033

Deployed Bytecode

0x6080604052600436106101085760003560e01c8063651dd5d711610095578063a22cb46511610064578063a22cb465146102e6578063be9a655514610306578063e985e9c51461031b578063f242432a14610364578063f2fde38b1461038457600080fd5b8063651dd5d714610269578063715018a6146102895780638c7ea24b1461029e5780638da5cb5b146102be57600080fd5b80632a55205a116100dc5780632a55205a146101b45780632eb2c2d6146101f357806334dfce94146102135780634e1273f4146102265780634f02c4201461025357600080fd5b8062fdd58e1461010d57806301ffc9a71461014057806307da68f5146101705780630e89341c14610187575b600080fd5b34801561011957600080fd5b5061012d61012836600461235c565b6103a4565b6040519081526020015b60405180910390f35b34801561014c57600080fd5b5061016061015b36600461239e565b61043d565b6040519015158152602001610137565b34801561017c57600080fd5b5061018561044e565b005b34801561019357600080fd5b506101a76101a23660046123c2565b610490565b6040516101379190612433565b3480156101c057600080fd5b506101d46101cf366004612446565b6104ff565b604080516001600160a01b039093168352602083019190915201610137565b3480156101ff57600080fd5b5061018561020e3660046125b4565b610554565b61018561022136600461267a565b6105eb565b34801561023257600080fd5b506102466102413660046126bf565b6108de565b60405161013791906127bd565b34801561025f57600080fd5b5061012d600a5481565b34801561027557600080fd5b506101856102843660046127d0565b610a08565b34801561029557600080fd5b50610185610a60565b3480156102aa57600080fd5b506101856102b936600461235c565b610a96565b3480156102ca57600080fd5b506007546040516001600160a01b039091168152602001610137565b3480156102f257600080fd5b50610185610301366004612809565b610ace565b34801561031257600080fd5b50610185610ad9565b34801561032757600080fd5b506101606103363660046127d0565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b34801561037057600080fd5b5061018561037f36600461283c565b610b0e565b34801561039057600080fd5b5061018561039f3660046128a5565b610b95565b60006001600160a01b0383166104155760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b5060009081526003602090815260408083206001600160a01b03949094168352929052205490565b600061044882610c30565b92915050565b6007546001600160a01b031633146104785760405162461bcd60e51b815260040161040c906128c2565b610485600160001961290d565b600a80549091169055565b60606000821180156104aa57506001826001901b600a5416115b6104f65760405162461bcd60e51b815260206004820152601b60248201527f486f6d6167653a20746f6b656e20646f65736e27742065786973740000000000604482015260640161040c565b61044882610c55565b604080518082019091526006546001600160a01b038116808352600160a01b90910462ffffff16602083018190529091600091612710906105409086612924565b61054a9190612959565b9150509250929050565b6001600160a01b03851633148061057057506105708533610336565b6105d75760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161040c565b6105e48585858585610dc1565b5050505050565b60006105f78383610fa1565b600a549091506001821b161561064f5760405162461bcd60e51b815260206004820152601c60248201527f486f6d6167653a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161040c565b6007546001600160a01b03163314156106ac5734156106a75760405162461bcd60e51b8152602060048201526014602482015273121bdb5859d94e881ddc9bdb99c8185b5bdd5b9d60621b604482015260640161040c565b6108a8565b600a546001166001146107015760405162461bcd60e51b815260206004820152601760248201527f486f6d6167653a206d696e74696e672073746f70706564000000000000000000604482015260640161040c565b346702c68af0bb1400001461074f5760405162461bcd60e51b8152602060048201526014602482015273121bdb5859d94e881ddc9bdb99c8185b5bdd5b9d60621b604482015260640161040c565b6008546040516000916001600160a01b0316906702386f26fc100000908381818185875af1925050503d80600081146107a4576040519150601f19603f3d011682016040523d82523d6000602084013e6107a9565b606091505b50509050806107fa5760405162461bcd60e51b815260206004820152601c60248201527f486f6d6167653a20756e61626c65207472616e7366657220746f204100000000604482015260640161040c565b6009546040516001600160a01b0390911690668e1bc9bf04000090600081818185875af1925050503d806000811461084e576040519150601f19603f3d011682016040523d82523d6000602084013e610853565b606091505b505080915050806108a65760405162461bcd60e51b815260206004820152601c60248201527f486f6d6167653a20756e61626c65207472616e7366657220746f204200000000604482015260640161040c565b505b806001901b600a600082825417925050819055506108d8848260016040518060200160405280600081525061117d565b50505050565b606081518351146109435760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b606482015260840161040c565b6000835167ffffffffffffffff81111561095f5761095f612468565b604051908082528060200260200182016040528015610988578160200160208202803683370190505b50905060005b8451811015610a00576109d38582815181106109ac576109ac61296d565b60200260200101518583815181106109c6576109c661296d565b60200260200101516103a4565b8282815181106109e5576109e561296d565b60209081029190910101526109f981612983565b905061098e565b509392505050565b6007546001600160a01b03163314610a325760405162461bcd60e51b815260040161040c906128c2565b600880546001600160a01b039384166001600160a01b03199182161790915560098054929093169116179055565b6007546001600160a01b03163314610a8a5760405162461bcd60e51b815260040161040c906128c2565b610a946000611289565b565b6007546001600160a01b03163314610ac05760405162461bcd60e51b815260040161040c906128c2565b610aca82826112db565b5050565b610aca338383611377565b6007546001600160a01b03163314610b035760405162461bcd60e51b815260040161040c906128c2565b600a80546001179055565b6001600160a01b038516331480610b2a5750610b2a8533610336565b610b885760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b606482015260840161040c565b6105e48585858585611458565b6007546001600160a01b03163314610bbf5760405162461bcd60e51b815260040161040c906128c2565b6001600160a01b038116610c245760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161040c565b610c2d81611289565b50565b60006001600160e01b0319821663152a902d60e11b1480610448575061044882611579565b60606000600a610c6660018561290d565b610c709190612959565b90506000600a610c8160018661290d565b610c8b919061299e565b9050818110610ca25780610c9e81612983565b9150505b610d99610cae856115c9565b60028481548110610cc157610cc161296d565b9060005260206000200160028481548110610cde57610cde61296d565b90600052602060002001610d72610d6d60018781548110610d0157610d0161296d565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff1662ffffff1660018981548110610d3e57610d3e61296d565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff1662ffffff166116cf565b61178d565b604051602001610d859493929190612a68565b60405160208183030381529060405261178d565b604051602001610da99190612cd4565b60405160208183030381529060405292505050919050565b8151835114610e235760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b606482015260840161040c565b6001600160a01b038416610e495760405162461bcd60e51b815260040161040c90612d19565b3360005b8451811015610f33576000858281518110610e6a57610e6a61296d565b602002602001015190506000858381518110610e8857610e8861296d565b60209081029190910181015160008481526003835260408082206001600160a01b038e168352909352919091205490915081811015610ed95760405162461bcd60e51b815260040161040c90612d5e565b60008381526003602090815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610f18908490612da8565b9250508190555050505080610f2c90612983565b9050610e4d565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610f83929190612dc0565b60405180910390a4610f998187878787876118e1565b505050505050565b6000805b600b81101561104d5760018181548110610fc157610fc161296d565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff1662ffffff168462ffffff161415610ffc5761104d565b80600a14156110455760405162461bcd60e51b81526020600482015260156024820152742437b6b0b3b29d103ab735b737bbb71031b7b637b960591b604482015260640161040c565b600101610fa5565b60005b600b8110156110f8576001818154811061106c5761106c61296d565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff1662ffffff168462ffffff1614156110a7576110f8565b80600a14156110f05760405162461bcd60e51b81526020600482015260156024820152742437b6b0b3b29d103ab735b737bbb71031b7b637b960591b604482015260640161040c565b600101611050565b8082141561113d5760405162461bcd60e51b81526020600482015260126024820152712437b6b0b3b29d1039b0b6b29031b7b637b960711b604482015260640161040c565b80821115611153578161114f81612de5565b9250505b8161115f82600a612924565b6111699190612da8565b611174906001612da8565b95945050505050565b6001600160a01b0384166111dd5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161040c565b336111f7816000876111ee88611a3d565b6105e488611a3d565b60008481526003602090815260408083206001600160a01b038916845290915281208054859290611229908490612da8565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46105e481600087878787611a88565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61271081111561132d5760405162461bcd60e51b815260206004820152601a60248201527f45524332393831526f79616c746965733a20546f6f2068696768000000000000604482015260640161040c565b604080518082019091526001600160a01b0390921680835262ffffff909116602090920182905260068054600160a01b9093026001600160b81b0319909316909117919091179055565b816001600160a01b0316836001600160a01b031614156113eb5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b606482015260840161040c565b6001600160a01b03838116600081815260046020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b03841661147e5760405162461bcd60e51b815260040161040c90612d19565b3361148e8187876111ee88611a3d565b60008481526003602090815260408083206001600160a01b038a168452909152902054838110156114d15760405162461bcd60e51b815260040161040c90612d5e565b60008581526003602090815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290611510908490612da8565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611570828888888888611a88565b50505050505050565b60006001600160e01b03198216636cdb3d1360e11b14806115aa57506001600160e01b031982166303a24d0760e21b145b8061044857506301ffc9a760e01b6001600160e01b0319831614610448565b6060816115ed5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611617578061160181612983565b91506116109050600a83612959565b91506115f1565b60008167ffffffffffffffff81111561163257611632612468565b6040519080825280601f01601f19166020018201604052801561165c576020820181803683370190505b5090505b84156116c75761167160018361290d565b915061167e600a8661299e565b611689906030612da8565b60f81b81838151811061169e5761169e61296d565b60200101906001600160f81b031916908160001a9053506116c0600a86612959565b9450611660565b949350505050565b606060006116e684846705260e88cbab8000611b43565b905060006116fd8585670a4c1d1197570000611b43565b905061170885611d4d565b611724600061171688611d4d565b61171f86611d4d565b611df8565b611732600161171686611d4d565b611749600261174086611d4d565b61171f8a611d4d565b61176060036117578a611d4d565b61171f8b611d4d565b604051602001611774959493929190612dfc565b6040516020818303038152906040529250505092915050565b60608151600014156117ad57505060408051602081019091526000815290565b60006040518060600160405280604081526020016135e360409139905060006003845160026117dc9190612da8565b6117e69190612959565b6117f1906004612924565b67ffffffffffffffff81111561180957611809612468565b6040519080825280601f01601f191660200182016040528015611833576020820181803683370190505b509050600182016020820185865187015b8082101561189f576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f8116850151845350600183019250611844565b50506003865106600181146118bb57600281146118ce576118d6565b603d6001830353603d60028303536118d6565b603d60018303535b509195945050505050565b6001600160a01b0384163b15610f995760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906119259089908990889088908890600401612f0e565b6020604051808303816000875af1925050508015611960575060408051601f3d908101601f1916820190925261195d91810190612f6c565b60015b611a0d5761196c612f89565b806308c379a014156119a65750611981612fa5565b8061198c57506119a8565b8060405162461bcd60e51b815260040161040c9190612433565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606482015260840161040c565b6001600160e01b0319811663bc197c8160e01b146115705760405162461bcd60e51b815260040161040c9061302f565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110611a7757611a7761296d565b602090810291909101015292915050565b6001600160a01b0384163b15610f995760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190611acc9089908990889088908890600401613077565b6020604051808303816000875af1925050508015611b07575060408051601f3d908101601f19168201909252611b0491810190612f6c565b60015b611b135761196c612f89565b6001600160e01b0319811663f23a6e6160e01b146115705760405162461bcd60e51b815260040161040c9061302f565b600080611b5c601086901d670de0b6b3a76400006130b1565b83611b6e601088811d9088901d613136565b611b7891906130b1565b611b829190613175565b90506005600a611b9a67016345785d8a0000846131b6565b611ba491906131e4565b12611bcd57611bbb670de0b6b3a7640000826131b6565b611bc6906001613175565b9050611be2565b611bdf670de0b6b3a7640000826131b6565b90505b6000611bfd60ff600888901d16670de0b6b3a76400006130b1565b84611c1560ff60088a811d821691908a901d16613136565b611c1f91906130b1565b611c299190613175565b90506005600a611c4167016345785d8a0000846131b6565b611c4b91906131e4565b12611c7457611c62670de0b6b3a7640000826131b6565b611c6d906001613175565b9050611c89565b611c86670de0b6b3a7640000826131b6565b90505b6000611ca060ff8816670de0b6b3a76400006130b1565b85611cb160ff808b16908a16613136565b611cbb91906130b1565b611cc59190613175565b90506005600a611cdd67016345785d8a0000846131b6565b611ce791906131e4565b12611d1057611cfe670de0b6b3a7640000826131b6565b611d09906001613175565b9050611d25565b611d22670de0b6b3a7640000826131b6565b90505b80611d38600884901b601086901b613175565b611d429190613175565b979650505050505050565b6040805160068082528183019092526060916000919060208201818036833701905050905060065b8015611df1576f181899199a1a9b1b9c1cb0b131b232b360811b84600f1660108110611da357611da361296d565b1a60f81b82611db360018461290d565b81518110611dc357611dc361296d565b60200101906001600160f81b031916908160001a90535060049390931c92611dea81612de5565b9050611d75565b5092915050565b6060600084600314611ecb576040518060400160405280601881526020016000805160206135c38339815191528152508486600214611e465760405180602001604052806000815250611e67565b84604051602001611e5791906131f8565b6040516020818303038152906040525b8588600214611e855760405180602001604052806000815250611ea3565b604051806040016040528060048152602001632e36393b60e01b8152505b604051602001611eb7959493929190613223565b604051602081830303815290604052611edc565b604051806020016040528060008152505b905060008581548110611ef157611ef161296d565b90600052602060002001600081548110611f0d57611f0d61296d565b9060005260206000200160008681548110611f2a57611f2a61296d565b90600052602060002001600081548110611f4657611f4661296d565b9060005260206000200160008781548110611f6357611f6361296d565b90600052602060002001600181548110611f7f57611f7f61296d565b9060005260206000200160008881548110611f9c57611f9c61296d565b90600052602060002001600281548110611fb857611fb861296d565b9060005260206000200187604051602001611fd7959493929190613311565b60408051601f19818403018152828201909152601882526000805160206135c3833981519152602083015260008054919291889081106120195761201961296d565b906000526020600020016004815481106120355761203561296d565b90600052602060002001600088815481106120525761205261296d565b9060005260206000200160038154811061206e5761206e61296d565b906000526020600020016040518060600160405280603b8152602001613588603b91396040516020016120a494939291906133cb565b60408051601f19818403018152828201909152601882526000805160206135c3833981519152602083015260008054919291899081106120e6576120e661296d565b906000526020600020016004815481106121025761210261296d565b906000526020600020016000898154811061211f5761211f61296d565b9060005260206000200160038154811061213b5761213b61296d565b906000526020600020016040518060600160405280603b8152602001613588603b91396040516020016121719493929190613449565b60408051601f19818403018152828201909152601882526000805160206135c38339815191526020830152600080549192918a9081106121b3576121b361296d565b906000526020600020016005815481106121cf576121cf61296d565b9060005260206000200160008a815481106121ec576121ec61296d565b906000526020600020016003815481106122085761220861296d565b906000526020600020016040518060600160405280603b8152602001613588603b913960405160200161223e9493929190613487565b60408051601f19818403018152828201909152601882526000805160206135c38339815191526020830152600080549192918b9081106122805761228061296d565b9060005260206000200160068154811061229c5761229c61296d565b9060005260206000200160008b815481106122b9576122b961296d565b906000526020600020016003815481106122d5576122d561296d565b906000526020600020016040518060600160405280603b8152602001613588603b913960405160200161230b94939291906134c0565b60408051601f198184030181529082905261232e959493929187906020016134f9565b6040516020818303038152906040529150509392505050565b6001600160a01b0381168114610c2d57600080fd5b6000806040838503121561236f57600080fd5b823561237a81612347565b946020939093013593505050565b6001600160e01b031981168114610c2d57600080fd5b6000602082840312156123b057600080fd5b81356123bb81612388565b9392505050565b6000602082840312156123d457600080fd5b5035919050565b60005b838110156123f65781810151838201526020016123de565b838111156108d85750506000910152565b6000815180845261241f8160208601602086016123db565b601f01601f19169290920160200192915050565b6020815260006123bb6020830184612407565b6000806040838503121561245957600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff811182821017156124a4576124a4612468565b6040525050565b600067ffffffffffffffff8211156124c5576124c5612468565b5060051b60200190565b600082601f8301126124e057600080fd5b813560206124ed826124ab565b6040516124fa828261247e565b83815260059390931b850182019282810191508684111561251a57600080fd5b8286015b84811015612535578035835291830191830161251e565b509695505050505050565b600082601f83011261255157600080fd5b813567ffffffffffffffff81111561256b5761256b612468565b604051612582601f8301601f19166020018261247e565b81815284602083860101111561259757600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a086880312156125cc57600080fd5b85356125d781612347565b945060208601356125e781612347565b9350604086013567ffffffffffffffff8082111561260457600080fd5b61261089838a016124cf565b9450606088013591508082111561262657600080fd5b61263289838a016124cf565b9350608088013591508082111561264857600080fd5b5061265588828901612540565b9150509295509295909350565b803562ffffff8116811461267557600080fd5b919050565b60008060006060848603121561268f57600080fd5b833561269a81612347565b92506126a860208501612662565b91506126b660408501612662565b90509250925092565b600080604083850312156126d257600080fd5b823567ffffffffffffffff808211156126ea57600080fd5b818501915085601f8301126126fe57600080fd5b8135602061270b826124ab565b604051612718828261247e565b83815260059390931b850182019282810191508984111561273857600080fd5b948201945b8386101561275f57853561275081612347565b8252948201949082019061273d565b9650508601359250508082111561277557600080fd5b5061054a858286016124cf565b600081518084526020808501945080840160005b838110156127b257815187529582019590820190600101612796565b509495945050505050565b6020815260006123bb6020830184612782565b600080604083850312156127e357600080fd5b82356127ee81612347565b915060208301356127fe81612347565b809150509250929050565b6000806040838503121561281c57600080fd5b823561282781612347565b9150602083013580151581146127fe57600080fd5b600080600080600060a0868803121561285457600080fd5b853561285f81612347565b9450602086013561286f81612347565b93506040860135925060608601359150608086013567ffffffffffffffff81111561289957600080fd5b61265588828901612540565b6000602082840312156128b757600080fd5b81356123bb81612347565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008282101561291f5761291f6128f7565b500390565b600081600019048311821515161561293e5761293e6128f7565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261296857612968612943565b500490565b634e487b7160e01b600052603260045260246000fd5b6000600019821415612997576129976128f7565b5060010190565b6000826129ad576129ad612943565b500690565b600081516129c48185602086016123db565b9290920192915050565b8054600090600181811c90808316806129e857607f831692505b6020808410821415612a0a57634e487b7160e01b600052602260045260246000fd5b818015612a1e5760018114612a2f57612a5c565b60ff19861689528489019650612a5c565b60008881526020902060005b86811015612a545781548b820152908501908301612a3b565b505084890196505b50505050505092915050565b6f03d913730b6b2911d112437b6b0b3b2960851b81528451600090612a94816010850160208a016123db565b61088b60f21b6010918401918201527f226465736372697074696f6e223a22486f6d616765206973206120636f6c6c6560128201527f6374696f6e206f6620313130206f6e2d636861696e20616e696d6174696f6e7360328201527f20f09f8cb92070726f6a6563742062792052616661c3ab6c20526f7a656e646160528201527f616c203230323220f09f8cb92073766720636f6465206279205265696e69657260728201527f204665696a656e20f09f8cb920736d61727420636f6e7472616374206279204160928201527f6c626572746f204772616e7a6f74746f20f09f8cb9206261736564206f6e207460b28201527f686520776f726b206f66204a6f73656620416c6265727320f09f8cb9204c696360d28201527f656e73653a2043432042592d4e432d4e4420342e30222c00000000000000000060f2820152611d42612cc6612cc0612c8b612c7b612c75612c3b612c3561010989017f2261747472696275746573223a5b7b2274726169745f74797065223a22496e6e81527232b91021b7b637b91116113b30b63ab2911d1160691b602082015260330190565b8d6129ce565b7f227d2c7b2274726169745f74797065223a224f7574657220436f6c6f72222c228152673b30b63ab2911d1160c11b602082015260280190565b8a6129ce565b63089f574b60e21b815260040190565b7f22696d616765223a22646174613a696d6167652f7376672b786d6c3b626173658152620d8d0b60ea1b602082015260230190565b866129b2565b61227d60f01b815260020190565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251612d0c81601d8501602087016123db565b91909101601d0192915050565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b60008219821115612dbb57612dbb6128f7565b500190565b604081526000612dd36040830185612782565b82810360208401526111748185612782565b600081612df457612df46128f7565b506000190190565b7f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f32308152600060207f30302f737667222076696577426f783d2230203020313030302031303030223e818401526c3c726563742066696c6c3d222360981b60408401528751612e7081604d8601848c016123db565b7f222077696474683d223130302522206865696768743d223130302522202f3e00604d918501918201528751612eac81606c8401858c016123db565b8751910190612ec181606c8401858b016123db565b8651910190612ed681606c8401858a016123db565b8551910190612eeb81606c84018589016123db565b651e17b9bb339f60d11b606c929091019182015260720198975050505050505050565b6001600160a01b0386811682528516602082015260a060408201819052600090612f3a90830186612782565b8281036060840152612f4c8186612782565b90508281036080840152612f608185612407565b98975050505050505050565b600060208284031215612f7e57600080fd5b81516123bb81612388565b600060033d1115612fa25760046000803e5060005160e01c5b90565b600060443d1015612fb35790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715612fe357505050505090565b8285019150815181811115612ffb5750505050505090565b843d87010160208285010111156130155750505050505090565b6130246020828601018761247e565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611d4290830184612407565b60006001600160ff1b03818413828413808216868404861116156130d7576130d76128f7565b600160ff1b60008712828116878305891216156130f6576130f66128f7565b60008712925087820587128484161615613112576131126128f7565b87850587128184161615613128576131286128f7565b505050929093029392505050565b60008083128015600160ff1b850184121615613154576131546128f7565b6001600160ff1b038401831381161561316f5761316f6128f7565b50500390565b600080821280156001600160ff1b0384900385131615613197576131976128f7565b600160ff1b83900384128116156131b0576131b06128f7565b50500190565b6000826131c5576131c5612943565b600160ff1b8214600019841416156131df576131df6128f7565b500590565b6000826131f3576131f3612943565b500790565b623b202360e81b8152600082516132168160038501602087016123db565b9190910160030192915050565b6000865160206132368285838c016123db565b6e66696c6c222076616c7565733d222360881b918401918252875161326181600f8501848c016123db565b875192019161327681600f8501848b016123db565b623b202360e81b600f939091019283015285516132998160128501848a016123db565b6d22206b657954696d65733d22303b60901b6012939091019283015284516132c6818385018489016123db565b7f3122206475723d22332e3731732220726570656174436f756e743d22696e6465920190810191909152693334b734ba329110179f60b11b6040820152604a01979650505050505050565b6c1e3932b1ba103bb4b23a341e9160991b81526000613333600d8301886129ce565b6a1291103432b4b3b43a1e9160a91b8152613351600b8201886129ce565b651291103c1e9160d11b8152905061336c60068201876129ce565b651291103c9e9160d11b8152905061338760068201866129ce565b6925222066696c6c3d222360b01b815284519091506133ad81600a8401602088016123db565b61111f60f11b600a9290910191820152600c01979650505050505050565b600085516133dd818460208a016123db565b640eed2c8e8d60db1b9083019081526511103a379e9160d11b6005820152613408600b8201876129ce565b6e12911035b2bca9b83634b732b99e9160891b8152905061342c600f8201866129ce565b9050835161343e8183602088016123db565b019695505050505050565b6000855161345b818460208a016123db565b651a195a59da1d60d21b9083019081526511103a379e9160d11b6006820152613408600c8201876129ce565b60008551613499818460208a016123db565b600f60fb1b9083019081526511103a379e9160d11b600182015261340860078201876129ce565b600085516134d2818460208a016123db565b607960f81b9083019081526511103a379e9160d11b600182015261340860078201876129ce565b60008751602061350c8285838d016123db565b88519184019161351f8184848d016123db565b88519201916135318184848c016123db565b87519201916135438184848b016123db565b86519201916135558184848a016123db565b855192019161356781848489016123db565b661e17b932b1ba1f60c91b9201918252506007019897505050505050505056fe22206475723d22332e3731732220726570656174436f756e743d22696e646566696e697465222063616c634d6f64653d2273706c696e6522202f3e3c616e696d617465206174747269627574654e616d653d2200000000000000004142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa264697066735822122099d6074dfc04c56af25e8e7946ef5ce3a6687aea7e16f6cda94c263ae5eecd5664736f6c634300080c0033

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.