ETH Price: $3,400.63 (+6.44%)
 

Overview

Max Total Supply

333 HERO

Holders

142

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
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:
LIONDAO

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-22
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

///
/// @dev Interface for the NFT Royalty Standard
///
interface IEIP2981 {
    /// ERC165 bytes to add to interface array - set in parent contract
    /// implementing this standard
    ///
    /// bytes4(keccak256("royaltyInfo(uint256,uint256)")) == 0x2a55205a

    /// @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 _salePrice - 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 _salePrice
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) external view returns (address receiver,uint256 royaltyAmount);
}

/**
 * @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);
}
/**
 * @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;
}
/**
 * @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);
}
/**
 * @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);
}

/**
 * @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);
    }
}
/**
 * @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);
            }
        }
    }
}
/**
 * @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;
    }
}
/**
 * @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;
    }
}
contract EIP2981 is IEIP2981, ERC165 {

    address internal royaltyAddr;
    uint256 internal royaltyPerc; // percentage in basis (out of 10,000)

    /**
    *   @notice constructor
    *   @dev need inheriting contracts to accept the parameters in their constructor
    *   @param addr is the royalty payout address
    *   @param perc is the royalty percentage, multiplied by 1000. Ex: 7.5% => 750
    */
    constructor(address addr, uint256 perc) {
        royaltyAddr = addr;
        royaltyPerc = perc;
    }

    /**
    *   @notice override ERC 165 implementation of this function
    *   @dev if using this contract with another contract that suppports ERC 265, will have to override in the inheriting contract
    */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165) returns (bool) {
        return interfaceId == type(IEIP2981).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
    *   @notice EIP 2981 royalty support
    *   @dev royalty payout made to the owner of the contract and the owner can't be the 0 address
    *   @dev royalty amount determined when contract is deployed, and then divided by 1000 in this function
    *   @dev royalty amount not dependent on _tokenId
    */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) external view override returns (address receiver, uint256 royaltyAmount) {
        require(royaltyAddr != address(0));
        return (royaltyAddr, royaltyPerc * _salePrice / 10000);
    }
}
/**
 * @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);
    }
}
/**
 * @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;
    }
}

contract LIONDAO is ERC1155, EIP2981, Ownable  {
    using Strings for uint256;

    string public name = "Lion DAO Hero";
    string public symbol = "HERO";
    uint256 public currentSupply = 0;
    uint256 public maxTotalSupply = 333;

    constructor(address _royaltyRecipient, uint256 _royaltyAmount) EIP2981(_royaltyRecipient, _royaltyAmount) ERC1155("ipfs://QmZAZp9EXSSpvoxQ8JXkZCficQSsZyirnUKERhsuvZUkAm/") Ownable() {}

   
    function supportsInterface(bytes4 _interfaceId) public view virtual override(ERC1155, EIP2981) returns (bool) {
        return super.supportsInterface(_interfaceId);
    }

    function setBaseURI(string memory _uri) public onlyOwner {
        _setURI(_uri);
        emit URI(_uri, 0);
    }
    
    function uri(uint256 _tokenId) override public view returns (string memory) {
        if(_tokenId > 0 && _tokenId <= maxTotalSupply){
            return string(abi.encodePacked(ERC1155.uri(_tokenId), _tokenId.toString(),".json"));
        }
    }
    
    function totalSupply() public view returns(uint256) {
        return maxTotalSupply;
    }
  
    function changeRoyaltyRecipient(address _newRecipient) public onlyOwner {
        require(_newRecipient != address(0), "Error: new recipient is the zero address");
        royaltyAddr = _newRecipient;
    }


    function changeRoyaltyPercentage(uint256 _newPerc) public onlyOwner {
        require(_newPerc <= 10000, "Error: new percentage is greater than 10,0000");
        royaltyPerc = _newPerc;
    }
    
    function mint(address account)
        public
        onlyOwner
    {
        require(currentSupply + 1 <= maxTotalSupply);
            _mint(account, currentSupply + 1, 1, "");
       
        currentSupply = 1 + currentSupply;
    }

    function addressBatchMint(address[] calldata _to)
        public
        onlyOwner
    {
        for (uint256 i = 0; i < _to.length; i++) {           
                    mint(_to[i]);
        }
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_royaltyRecipient","type":"address"},{"internalType":"uint256","name":"_royaltyAmount","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"}],"name":"addressBatchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPerc","type":"uint256"}],"name":"changeRoyaltyPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newRecipient","type":"address"}],"name":"changeRoyaltyRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentSupply","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":[],"name":"maxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","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":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"_interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}]

60c0604052600d60808190526c4c696f6e2044414f204865726f60981b60a090815262000030916006919062000171565b50604080518082019091526004808252634845524f60e01b60209092019182526200005e9160079162000171565b50600060085561014d6009553480156200007757600080fd5b5060405162002488380380620024888339810160408190526200009a9162000217565b81816040518060600160405280603681526020016200245260369139620000c18162000102565b50600380546001600160a01b0319166001600160a01b039390931692909217909155600455620000fa620000f46200011b565b6200011f565b50506200028e565b80516200011790600290602084019062000171565b5050565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200017f9062000251565b90600052602060002090601f016020900481019282620001a35760008555620001ee565b82601f10620001be57805160ff1916838001178555620001ee565b82800160010185558215620001ee579182015b82811115620001ee578251825591602001919060010190620001d1565b50620001fc92915062000200565b5090565b5b80821115620001fc576000815560010162000201565b600080604083850312156200022a578182fd5b82516001600160a01b038116811462000241578283fd5b6020939093015192949293505050565b6002810460018216806200026657607f821691505b602082108114156200028857634e487b7160e01b600052602260045260246000fd5b50919050565b6121b4806200029e6000396000f3fe608060405234801561001057600080fd5b50600436106101415760003560e01c806355f804b3116100b85780638da5cb5b1161007c5780638da5cb5b1461028c57806395d89b41146102a1578063a22cb465146102a9578063e985e9c5146102bc578063f242432a146102cf578063f2fde38b146102e257610141565b806355f804b3146102435780636a62784214610256578063715018a61461026957806371f802e814610271578063771282f61461028457610141565b80632a55205a1161010a5780632a55205a146101bf5780632ab4d052146101e05780632eb2c2d6146101e85780633a45a5d3146101fd5780634bd0d89c146102105780634e1273f41461022357610141565b8062fdd58e1461014657806301ffc9a71461016f57806306fdde031461018f5780630e89341c146101a457806318160ddd146101b7575b600080fd5b6101596101543660046116fd565b6102f5565b6040516101669190611f1a565b60405180910390f35b61018261017d366004611853565b61034c565b6040516101669190611ac0565b61019761035f565b6040516101669190611acb565b6101976101b23660046118d1565b6103ed565b61015961043f565b6101d26101cd3660046118e9565b610446565b604051610166929190611a66565b610159610496565b6101fb6101f63660046115ba565b61049c565b005b6101fb61020b36600461156e565b6104fa565b6101fb61021e3660046118d1565b610581565b610236610231366004611795565b6105e7565b6040516101669190611a7f565b6101fb61025136600461188b565b610707565b6101fb61026436600461156e565b61078b565b6101fb610824565b6101fb61027f366004611726565b61086f565b610159610908565b61029461090e565b60405161016691906119af565b61019761091d565b6101fb6102b73660046116c3565b61092a565b6101826102ca366004611588565b610940565b6101fb6102dd366004611660565b61096e565b6101fb6102f036600461156e565b6109c5565b60006001600160a01b0383166103265760405162461bcd60e51b815260040161031d90611b7a565b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b600061035782610a36565b90505b919050565b6006805461036c90612011565b80601f016020809104026020016040519081016040528092919081815260200182805461039890612011565b80156103e55780601f106103ba576101008083540402835291602001916103e5565b820191906000526020600020905b8154815290600101906020018083116103c857829003601f168201915b505050505081565b606060008211801561040157506009548211155b1561035a5761040f82610a5b565b61041883610aef565b604051602001610429929190611970565b604051602081830303815290604052905061035a565b6009545b90565b60035460009081906001600160a01b031661046057600080fd5b6003546004546001600160a01b039091169061271090610481908690611fab565b61048b9190611f97565b915091509250929050565b60095481565b6104a4610c12565b6001600160a01b0316856001600160a01b031614806104ca57506104ca856102ca610c12565b6104e65760405162461bcd60e51b815260040161031d90611ce6565b6104f38585858585610c16565b5050505050565b610502610c12565b6001600160a01b031661051361090e565b6001600160a01b0316146105395760405162461bcd60e51b815260040161031d90611d82565b6001600160a01b03811661055f5760405162461bcd60e51b815260040161031d90611db7565b600380546001600160a01b0319166001600160a01b0392909216919091179055565b610589610c12565b6001600160a01b031661059a61090e565b6001600160a01b0316146105c05760405162461bcd60e51b815260040161031d90611d82565b6127108111156105e25760405162461bcd60e51b815260040161031d90611c0b565b600455565b6060815183511461060a5760405162461bcd60e51b815260040161031d90611e48565b6000835167ffffffffffffffff81111561063457634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561065d578160200160208202803683370190505b50905060005b84518110156106ff576106c485828151811061068f57634e487b7160e01b600052603260045260246000fd5b60200260200101518583815181106106b757634e487b7160e01b600052603260045260246000fd5b60200260200101516102f5565b8282815181106106e457634e487b7160e01b600052603260045260246000fd5b60209081029190910101526106f88161204c565b9050610663565b509392505050565b61070f610c12565b6001600160a01b031661072061090e565b6001600160a01b0316146107465760405162461bcd60e51b815260040161031d90611d82565b61074f81610de7565b60007f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b826040516107809190611acb565b60405180910390a250565b610793610c12565b6001600160a01b03166107a461090e565b6001600160a01b0316146107ca5760405162461bcd60e51b815260040161031d90611d82565b6009546008546107db906001611f7f565b11156107e657600080fd5b6108108160085460016107f99190611f7f565b600160405180602001604052806000815250610dfa565b60085461081e906001611f7f565b60085550565b61082c610c12565b6001600160a01b031661083d61090e565b6001600160a01b0316146108635760405162461bcd60e51b815260040161031d90611d82565b61086d6000610ee9565b565b610877610c12565b6001600160a01b031661088861090e565b6001600160a01b0316146108ae5760405162461bcd60e51b815260040161031d90611d82565b60005b81811015610903576108f18383838181106108dc57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610264919061156e565b806108fb8161204c565b9150506108b1565b505050565b60085481565b6005546001600160a01b031690565b6007805461036c90612011565b61093c610935610c12565b8383610f3b565b5050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b610976610c12565b6001600160a01b0316856001600160a01b0316148061099c575061099c856102ca610c12565b6109b85760405162461bcd60e51b815260040161031d90611c58565b6104f38585858585610fde565b6109cd610c12565b6001600160a01b03166109de61090e565b6001600160a01b031614610a045760405162461bcd60e51b815260040161031d90611d82565b6001600160a01b038116610a2a5760405162461bcd60e51b815260040161031d90611bc5565b610a3381610ee9565b50565b60006001600160e01b0319821663152a902d60e11b1480610357575061035782611112565b606060028054610a6a90612011565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9690612011565b8015610ae35780601f10610ab857610100808354040283529160200191610ae3565b820191906000526020600020905b815481529060010190602001808311610ac657829003601f168201915b50505050509050919050565b606081610b1457506040805180820190915260018152600360fc1b602082015261035a565b8160005b8115610b3e5780610b288161204c565b9150610b379050600a83611f97565b9150610b18565b60008167ffffffffffffffff811115610b6757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015610b91576020820181803683370190505b5090505b8415610c0a57610ba6600183611fca565b9150610bb3600a86612067565b610bbe906030611f7f565b60f81b818381518110610be157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350610c03600a86611f97565b9450610b95565b949350505050565b3390565b8151835114610c375760405162461bcd60e51b815260040161031d90611e91565b6001600160a01b038416610c5d5760405162461bcd60e51b815260040161031d90611ca1565b6000610c67610c12565b9050610c77818787878787610ddf565b60005b8451811015610d79576000858281518110610ca557634e487b7160e01b600052603260045260246000fd5b602002602001015190506000858381518110610cd157634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610d215760405162461bcd60e51b815260040161031d90611d38565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610d5e908490611f7f565b9250508190555050505080610d729061204c565b9050610c7a565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610dc9929190611a92565b60405180910390a4610ddf818787878787611152565b505050505050565b805161093c9060029060208401906113d4565b6001600160a01b038416610e205760405162461bcd60e51b815260040161031d90611ed9565b6000610e2a610c12565b9050610e4b81600087610e3c88611260565b610e4588611260565b87610ddf565b6000848152602081815260408083206001600160a01b038916845290915281208054859290610e7b908490611f7f565b92505081905550846001600160a01b031660006001600160a01b0316826001600160a01b03167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051610ed2929190611f23565b60405180910390a46104f3816000878787876112b9565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415610f6d5760405162461bcd60e51b815260040161031d90611dff565b6001600160a01b0383811660008181526001602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190610fd1908590611ac0565b60405180910390a3505050565b6001600160a01b0384166110045760405162461bcd60e51b815260040161031d90611ca1565b600061100e610c12565b905061101f818787610e3c88611260565b6000848152602081815260408083206001600160a01b038a168452909152902054838110156110605760405162461bcd60e51b815260040161031d90611d38565b6000858152602081815260408083206001600160a01b038b811685529252808320878503905590881682528120805486929061109d908490611f7f565b92505081905550856001600160a01b0316876001600160a01b0316836001600160a01b03167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516110f3929190611f23565b60405180910390a46111098288888888886112b9565b50505050505050565b60006001600160e01b03198216636cdb3d1360e11b148061114357506001600160e01b031982166303a24d0760e21b145b8061035757506103578261138a565b611164846001600160a01b03166113a3565b15610ddf5760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061119d90899089908890889088906004016119c3565b602060405180830381600087803b1580156111b757600080fd5b505af19250505080156111e7575060408051601f3d908101601f191682019092526111e49181019061186f565b60015b611230576111f36120c3565b806111fe5750611218565b8060405162461bcd60e51b815260040161031d9190611acb565b60405162461bcd60e51b815260040161031d90611ade565b6001600160e01b0319811663bc197c8160e01b146111095760405162461bcd60e51b815260040161031d90611b32565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106112a857634e487b7160e01b600052603260045260246000fd5b602090810291909101015292915050565b6112cb846001600160a01b03166113a3565b15610ddf5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906113049089908990889088908890600401611a21565b602060405180830381600087803b15801561131e57600080fd5b505af192505050801561134e575060408051601f3d908101601f1916820190925261134b9181019061186f565b60015b61135a576111f36120c3565b6001600160e01b0319811663f23a6e6160e01b146111095760405162461bcd60e51b815260040161031d90611b32565b6001600160e01b031981166301ffc9a760e01b14919050565b600080826001600160a01b0316803b806020016040519081016040528181526000908060200190933c511192915050565b8280546113e090612011565b90600052602060002090601f0160209004810192826114025760008555611448565b82601f1061141b57805160ff1916838001178555611448565b82800160010185558215611448579182015b8281111561144857825182559160200191906001019061142d565b50611454929150611458565b5090565b5b808211156114545760008155600101611459565b600067ffffffffffffffff831115611487576114876120a7565b61149a601f8401601f1916602001611f31565b90508281528383830111156114ae57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461035a57600080fd5b600082601f8301126114ec578081fd5b813560206115016114fc83611f5b565b611f31565b828152818101908583018385028701840188101561151d578586fd5b855b8581101561153b5781358452928401929084019060010161151f565b5090979650505050505050565b600082601f830112611558578081fd5b6115678383356020850161146d565b9392505050565b60006020828403121561157f578081fd5b611567826114c5565b6000806040838503121561159a578081fd5b6115a3836114c5565b91506115b1602084016114c5565b90509250929050565b600080600080600060a086880312156115d1578081fd5b6115da866114c5565b94506115e8602087016114c5565b9350604086013567ffffffffffffffff80821115611604578283fd5b61161089838a016114dc565b94506060880135915080821115611625578283fd5b61163189838a016114dc565b93506080880135915080821115611646578283fd5b5061165388828901611548565b9150509295509295909350565b600080600080600060a08688031215611677578081fd5b611680866114c5565b945061168e602087016114c5565b93506040860135925060608601359150608086013567ffffffffffffffff8111156116b7578182fd5b61165388828901611548565b600080604083850312156116d5578182fd5b6116de836114c5565b9150602083013580151581146116f2578182fd5b809150509250929050565b6000806040838503121561170f578182fd5b611718836114c5565b946020939093013593505050565b60008060208385031215611738578182fd5b823567ffffffffffffffff8082111561174f578384fd5b818501915085601f830112611762578384fd5b813581811115611770578485fd5b8660208083028501011115611783578485fd5b60209290920196919550909350505050565b600080604083850312156117a7578182fd5b823567ffffffffffffffff808211156117be578384fd5b818501915085601f8301126117d1578384fd5b813560206117e16114fc83611f5b565b82815281810190858301838502870184018b10156117fd578889fd5b8896505b8487101561182657611812816114c5565b835260019690960195918301918301611801565b509650508601359250508082111561183c578283fd5b50611849858286016114dc565b9150509250929050565b600060208284031215611864578081fd5b813561156781612168565b600060208284031215611880578081fd5b815161156781612168565b60006020828403121561189c578081fd5b813567ffffffffffffffff8111156118b2578182fd5b8201601f810184136118c2578182fd5b610c0a8482356020840161146d565b6000602082840312156118e2578081fd5b5035919050565b600080604083850312156118fb578182fd5b50508035926020909101359150565b6000815180845260208085019450808401835b838110156119395781518752958201959082019060010161191d565b509495945050505050565b6000815180845261195c816020860160208601611fe1565b601f01601f19169290920160200192915050565b60008351611982818460208801611fe1565b835190830190611996818360208801611fe1565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0386811682528516602082015260a0604082018190526000906119ef9083018661190a565b8281036060840152611a01818661190a565b90508281036080840152611a158185611944565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611a5b90830184611944565b979650505050505050565b6001600160a01b03929092168252602082015260400190565b600060208252611567602083018461190a565b600060408252611aa5604083018561190a565b8281036020840152611ab7818561190a565b95945050505050565b901515815260200190565b6000602082526115676020830184611944565b60208082526034908201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356040820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606082015260800190565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6020808252602b908201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602d908201527f4572726f723a206e65772070657263656e74616765206973206772656174657260408201526c0207468616e2031302c3030303609c1b606082015260800190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526032908201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526028908201527f4572726f723a206e657720726563697069656e7420697320746865207a65726f604082015267206164647265737360c01b606082015260800190565b60208082526029908201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604082015268103337b91039b2b63360b91b606082015260800190565b60208082526029908201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604082015268040dad2e6dac2e8c6d60bb1b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b90815260200190565b918252602082015260400190565b60405181810167ffffffffffffffff81118282101715611f5357611f536120a7565b604052919050565b600067ffffffffffffffff821115611f7557611f756120a7565b5060209081020190565b60008219821115611f9257611f9261207b565b500190565b600082611fa657611fa6612091565b500490565b6000816000190483118215151615611fc557611fc561207b565b500290565b600082821015611fdc57611fdc61207b565b500390565b60005b83811015611ffc578181015183820152602001611fe4565b8381111561200b576000848401525b50505050565b60028104600182168061202557607f821691505b6020821081141561204657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120605761206061207b565b5060010190565b60008261207657612076612091565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b60e01c90565b600060443d10156120d357610443565b600481823e6308c379a06120e782516120bd565b146120f157610443565b6040513d600319016004823e80513d67ffffffffffffffff81602484011181841117156121215750505050610443565b8284019250825191508082111561213b5750505050610443565b503d8301602082840101111561215357505050610443565b601f01601f1916810160200160405291505090565b6001600160e01b031981168114610a3357600080fdfea26469706673582212204e1063c84811192b93f23b8b5fd6da398e691436a9f3eec6534d2a0f6bb1c19f64736f6c63430008000033697066733a2f2f516d5a415a70394558535370766f7851384a586b5a436669635153735a7969726e554b4552687375765a556b416d2f00000000000000000000000085ce68b05991183c9eb65620525243387a8a2fef00000000000000000000000000000000000000000000000000000000000003e8

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101415760003560e01c806355f804b3116100b85780638da5cb5b1161007c5780638da5cb5b1461028c57806395d89b41146102a1578063a22cb465146102a9578063e985e9c5146102bc578063f242432a146102cf578063f2fde38b146102e257610141565b806355f804b3146102435780636a62784214610256578063715018a61461026957806371f802e814610271578063771282f61461028457610141565b80632a55205a1161010a5780632a55205a146101bf5780632ab4d052146101e05780632eb2c2d6146101e85780633a45a5d3146101fd5780634bd0d89c146102105780634e1273f41461022357610141565b8062fdd58e1461014657806301ffc9a71461016f57806306fdde031461018f5780630e89341c146101a457806318160ddd146101b7575b600080fd5b6101596101543660046116fd565b6102f5565b6040516101669190611f1a565b60405180910390f35b61018261017d366004611853565b61034c565b6040516101669190611ac0565b61019761035f565b6040516101669190611acb565b6101976101b23660046118d1565b6103ed565b61015961043f565b6101d26101cd3660046118e9565b610446565b604051610166929190611a66565b610159610496565b6101fb6101f63660046115ba565b61049c565b005b6101fb61020b36600461156e565b6104fa565b6101fb61021e3660046118d1565b610581565b610236610231366004611795565b6105e7565b6040516101669190611a7f565b6101fb61025136600461188b565b610707565b6101fb61026436600461156e565b61078b565b6101fb610824565b6101fb61027f366004611726565b61086f565b610159610908565b61029461090e565b60405161016691906119af565b61019761091d565b6101fb6102b73660046116c3565b61092a565b6101826102ca366004611588565b610940565b6101fb6102dd366004611660565b61096e565b6101fb6102f036600461156e565b6109c5565b60006001600160a01b0383166103265760405162461bcd60e51b815260040161031d90611b7a565b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b600061035782610a36565b90505b919050565b6006805461036c90612011565b80601f016020809104026020016040519081016040528092919081815260200182805461039890612011565b80156103e55780601f106103ba576101008083540402835291602001916103e5565b820191906000526020600020905b8154815290600101906020018083116103c857829003601f168201915b505050505081565b606060008211801561040157506009548211155b1561035a5761040f82610a5b565b61041883610aef565b604051602001610429929190611970565b604051602081830303815290604052905061035a565b6009545b90565b60035460009081906001600160a01b031661046057600080fd5b6003546004546001600160a01b039091169061271090610481908690611fab565b61048b9190611f97565b915091509250929050565b60095481565b6104a4610c12565b6001600160a01b0316856001600160a01b031614806104ca57506104ca856102ca610c12565b6104e65760405162461bcd60e51b815260040161031d90611ce6565b6104f38585858585610c16565b5050505050565b610502610c12565b6001600160a01b031661051361090e565b6001600160a01b0316146105395760405162461bcd60e51b815260040161031d90611d82565b6001600160a01b03811661055f5760405162461bcd60e51b815260040161031d90611db7565b600380546001600160a01b0319166001600160a01b0392909216919091179055565b610589610c12565b6001600160a01b031661059a61090e565b6001600160a01b0316146105c05760405162461bcd60e51b815260040161031d90611d82565b6127108111156105e25760405162461bcd60e51b815260040161031d90611c0b565b600455565b6060815183511461060a5760405162461bcd60e51b815260040161031d90611e48565b6000835167ffffffffffffffff81111561063457634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561065d578160200160208202803683370190505b50905060005b84518110156106ff576106c485828151811061068f57634e487b7160e01b600052603260045260246000fd5b60200260200101518583815181106106b757634e487b7160e01b600052603260045260246000fd5b60200260200101516102f5565b8282815181106106e457634e487b7160e01b600052603260045260246000fd5b60209081029190910101526106f88161204c565b9050610663565b509392505050565b61070f610c12565b6001600160a01b031661072061090e565b6001600160a01b0316146107465760405162461bcd60e51b815260040161031d90611d82565b61074f81610de7565b60007f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b826040516107809190611acb565b60405180910390a250565b610793610c12565b6001600160a01b03166107a461090e565b6001600160a01b0316146107ca5760405162461bcd60e51b815260040161031d90611d82565b6009546008546107db906001611f7f565b11156107e657600080fd5b6108108160085460016107f99190611f7f565b600160405180602001604052806000815250610dfa565b60085461081e906001611f7f565b60085550565b61082c610c12565b6001600160a01b031661083d61090e565b6001600160a01b0316146108635760405162461bcd60e51b815260040161031d90611d82565b61086d6000610ee9565b565b610877610c12565b6001600160a01b031661088861090e565b6001600160a01b0316146108ae5760405162461bcd60e51b815260040161031d90611d82565b60005b81811015610903576108f18383838181106108dc57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610264919061156e565b806108fb8161204c565b9150506108b1565b505050565b60085481565b6005546001600160a01b031690565b6007805461036c90612011565b61093c610935610c12565b8383610f3b565b5050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b610976610c12565b6001600160a01b0316856001600160a01b0316148061099c575061099c856102ca610c12565b6109b85760405162461bcd60e51b815260040161031d90611c58565b6104f38585858585610fde565b6109cd610c12565b6001600160a01b03166109de61090e565b6001600160a01b031614610a045760405162461bcd60e51b815260040161031d90611d82565b6001600160a01b038116610a2a5760405162461bcd60e51b815260040161031d90611bc5565b610a3381610ee9565b50565b60006001600160e01b0319821663152a902d60e11b1480610357575061035782611112565b606060028054610a6a90612011565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9690612011565b8015610ae35780601f10610ab857610100808354040283529160200191610ae3565b820191906000526020600020905b815481529060010190602001808311610ac657829003601f168201915b50505050509050919050565b606081610b1457506040805180820190915260018152600360fc1b602082015261035a565b8160005b8115610b3e5780610b288161204c565b9150610b379050600a83611f97565b9150610b18565b60008167ffffffffffffffff811115610b6757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015610b91576020820181803683370190505b5090505b8415610c0a57610ba6600183611fca565b9150610bb3600a86612067565b610bbe906030611f7f565b60f81b818381518110610be157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350610c03600a86611f97565b9450610b95565b949350505050565b3390565b8151835114610c375760405162461bcd60e51b815260040161031d90611e91565b6001600160a01b038416610c5d5760405162461bcd60e51b815260040161031d90611ca1565b6000610c67610c12565b9050610c77818787878787610ddf565b60005b8451811015610d79576000858281518110610ca557634e487b7160e01b600052603260045260246000fd5b602002602001015190506000858381518110610cd157634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610d215760405162461bcd60e51b815260040161031d90611d38565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610d5e908490611f7f565b9250508190555050505080610d729061204c565b9050610c7a565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610dc9929190611a92565b60405180910390a4610ddf818787878787611152565b505050505050565b805161093c9060029060208401906113d4565b6001600160a01b038416610e205760405162461bcd60e51b815260040161031d90611ed9565b6000610e2a610c12565b9050610e4b81600087610e3c88611260565b610e4588611260565b87610ddf565b6000848152602081815260408083206001600160a01b038916845290915281208054859290610e7b908490611f7f565b92505081905550846001600160a01b031660006001600160a01b0316826001600160a01b03167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051610ed2929190611f23565b60405180910390a46104f3816000878787876112b9565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415610f6d5760405162461bcd60e51b815260040161031d90611dff565b6001600160a01b0383811660008181526001602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190610fd1908590611ac0565b60405180910390a3505050565b6001600160a01b0384166110045760405162461bcd60e51b815260040161031d90611ca1565b600061100e610c12565b905061101f818787610e3c88611260565b6000848152602081815260408083206001600160a01b038a168452909152902054838110156110605760405162461bcd60e51b815260040161031d90611d38565b6000858152602081815260408083206001600160a01b038b811685529252808320878503905590881682528120805486929061109d908490611f7f565b92505081905550856001600160a01b0316876001600160a01b0316836001600160a01b03167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516110f3929190611f23565b60405180910390a46111098288888888886112b9565b50505050505050565b60006001600160e01b03198216636cdb3d1360e11b148061114357506001600160e01b031982166303a24d0760e21b145b8061035757506103578261138a565b611164846001600160a01b03166113a3565b15610ddf5760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061119d90899089908890889088906004016119c3565b602060405180830381600087803b1580156111b757600080fd5b505af19250505080156111e7575060408051601f3d908101601f191682019092526111e49181019061186f565b60015b611230576111f36120c3565b806111fe5750611218565b8060405162461bcd60e51b815260040161031d9190611acb565b60405162461bcd60e51b815260040161031d90611ade565b6001600160e01b0319811663bc197c8160e01b146111095760405162461bcd60e51b815260040161031d90611b32565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106112a857634e487b7160e01b600052603260045260246000fd5b602090810291909101015292915050565b6112cb846001600160a01b03166113a3565b15610ddf5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906113049089908990889088908890600401611a21565b602060405180830381600087803b15801561131e57600080fd5b505af192505050801561134e575060408051601f3d908101601f1916820190925261134b9181019061186f565b60015b61135a576111f36120c3565b6001600160e01b0319811663f23a6e6160e01b146111095760405162461bcd60e51b815260040161031d90611b32565b6001600160e01b031981166301ffc9a760e01b14919050565b600080826001600160a01b0316803b806020016040519081016040528181526000908060200190933c511192915050565b8280546113e090612011565b90600052602060002090601f0160209004810192826114025760008555611448565b82601f1061141b57805160ff1916838001178555611448565b82800160010185558215611448579182015b8281111561144857825182559160200191906001019061142d565b50611454929150611458565b5090565b5b808211156114545760008155600101611459565b600067ffffffffffffffff831115611487576114876120a7565b61149a601f8401601f1916602001611f31565b90508281528383830111156114ae57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461035a57600080fd5b600082601f8301126114ec578081fd5b813560206115016114fc83611f5b565b611f31565b828152818101908583018385028701840188101561151d578586fd5b855b8581101561153b5781358452928401929084019060010161151f565b5090979650505050505050565b600082601f830112611558578081fd5b6115678383356020850161146d565b9392505050565b60006020828403121561157f578081fd5b611567826114c5565b6000806040838503121561159a578081fd5b6115a3836114c5565b91506115b1602084016114c5565b90509250929050565b600080600080600060a086880312156115d1578081fd5b6115da866114c5565b94506115e8602087016114c5565b9350604086013567ffffffffffffffff80821115611604578283fd5b61161089838a016114dc565b94506060880135915080821115611625578283fd5b61163189838a016114dc565b93506080880135915080821115611646578283fd5b5061165388828901611548565b9150509295509295909350565b600080600080600060a08688031215611677578081fd5b611680866114c5565b945061168e602087016114c5565b93506040860135925060608601359150608086013567ffffffffffffffff8111156116b7578182fd5b61165388828901611548565b600080604083850312156116d5578182fd5b6116de836114c5565b9150602083013580151581146116f2578182fd5b809150509250929050565b6000806040838503121561170f578182fd5b611718836114c5565b946020939093013593505050565b60008060208385031215611738578182fd5b823567ffffffffffffffff8082111561174f578384fd5b818501915085601f830112611762578384fd5b813581811115611770578485fd5b8660208083028501011115611783578485fd5b60209290920196919550909350505050565b600080604083850312156117a7578182fd5b823567ffffffffffffffff808211156117be578384fd5b818501915085601f8301126117d1578384fd5b813560206117e16114fc83611f5b565b82815281810190858301838502870184018b10156117fd578889fd5b8896505b8487101561182657611812816114c5565b835260019690960195918301918301611801565b509650508601359250508082111561183c578283fd5b50611849858286016114dc565b9150509250929050565b600060208284031215611864578081fd5b813561156781612168565b600060208284031215611880578081fd5b815161156781612168565b60006020828403121561189c578081fd5b813567ffffffffffffffff8111156118b2578182fd5b8201601f810184136118c2578182fd5b610c0a8482356020840161146d565b6000602082840312156118e2578081fd5b5035919050565b600080604083850312156118fb578182fd5b50508035926020909101359150565b6000815180845260208085019450808401835b838110156119395781518752958201959082019060010161191d565b509495945050505050565b6000815180845261195c816020860160208601611fe1565b601f01601f19169290920160200192915050565b60008351611982818460208801611fe1565b835190830190611996818360208801611fe1565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0386811682528516602082015260a0604082018190526000906119ef9083018661190a565b8281036060840152611a01818661190a565b90508281036080840152611a158185611944565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611a5b90830184611944565b979650505050505050565b6001600160a01b03929092168252602082015260400190565b600060208252611567602083018461190a565b600060408252611aa5604083018561190a565b8281036020840152611ab7818561190a565b95945050505050565b901515815260200190565b6000602082526115676020830184611944565b60208082526034908201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356040820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606082015260800190565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6020808252602b908201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602d908201527f4572726f723a206e65772070657263656e74616765206973206772656174657260408201526c0207468616e2031302c3030303609c1b606082015260800190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526032908201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526028908201527f4572726f723a206e657720726563697069656e7420697320746865207a65726f604082015267206164647265737360c01b606082015260800190565b60208082526029908201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604082015268103337b91039b2b63360b91b606082015260800190565b60208082526029908201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604082015268040dad2e6dac2e8c6d60bb1b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b90815260200190565b918252602082015260400190565b60405181810167ffffffffffffffff81118282101715611f5357611f536120a7565b604052919050565b600067ffffffffffffffff821115611f7557611f756120a7565b5060209081020190565b60008219821115611f9257611f9261207b565b500190565b600082611fa657611fa6612091565b500490565b6000816000190483118215151615611fc557611fc561207b565b500290565b600082821015611fdc57611fdc61207b565b500390565b60005b83811015611ffc578181015183820152602001611fe4565b8381111561200b576000848401525b50505050565b60028104600182168061202557607f821691505b6020821081141561204657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120605761206061207b565b5060010190565b60008261207657612076612091565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b60e01c90565b600060443d10156120d357610443565b600481823e6308c379a06120e782516120bd565b146120f157610443565b6040513d600319016004823e80513d67ffffffffffffffff81602484011181841117156121215750505050610443565b8284019250825191508082111561213b5750505050610443565b503d8301602082840101111561215357505050610443565b601f01601f1916810160200160405291505090565b6001600160e01b031981168114610a3357600080fdfea26469706673582212204e1063c84811192b93f23b8b5fd6da398e691436a9f3eec6534d2a0f6bb1c19f64736f6c63430008000033

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

00000000000000000000000085ce68b05991183c9eb65620525243387a8a2fef00000000000000000000000000000000000000000000000000000000000003e8

-----Decoded View---------------
Arg [0] : _royaltyRecipient (address): 0x85CE68b05991183C9eb65620525243387a8a2feF
Arg [1] : _royaltyAmount (uint256): 1000

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000085ce68b05991183c9eb65620525243387a8a2fef
Arg [1] : 00000000000000000000000000000000000000000000000000000000000003e8


Deployed Bytecode Sourcemap

39795:2009:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26292:231;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40242:173;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;39883:36::-;;;:::i;:::-;;;;;;;:::i;40552:250::-;;;;;;:::i;:::-;;:::i;40814:92::-;;;:::i;21765:250::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;40001:35::-;;;:::i;28231:442::-;;;;;;:::i;:::-;;:::i;:::-;;40916:209;;;;;;:::i;:::-;;:::i;41135:195::-;;;;;;:::i;:::-;;:::i;26689:524::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;40423:117::-;;;;;;:::i;:::-;;:::i;41342:242::-;;;;;;:::i;:::-;;:::i;23590:103::-;;;:::i;41592:207::-;;;;;;:::i;:::-;;:::i;39962:32::-;;;:::i;22939:87::-;;;:::i;:::-;;;;;;;:::i;39926:29::-;;;:::i;27286:155::-;;;;;;:::i;:::-;;:::i;27513:168::-;;;;;;:::i;:::-;;:::i;27753:401::-;;;;;;:::i;:::-;;:::i;23848:201::-;;;;;;:::i;:::-;;:::i;26292:231::-;26378:7;-1:-1:-1;;;;;26406:21:0;;26398:77;;;;-1:-1:-1;;;26398:77:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;26493:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;26493:22:0;;;;;;;;;;;;26292:231::o;40242:173::-;40346:4;40370:37;40394:12;40370:23;:37::i;:::-;40363:44;;40242:173;;;;:::o;39883:36::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40552:250::-;40613:13;40653:1;40642:8;:12;:42;;;;;40670:14;;40658:8;:26;;40642:42;40639:156;;;40731:21;40743:8;40731:11;:21::i;:::-;40754:19;:8;:17;:19::i;:::-;40714:68;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40700:83;;;;40814:92;40884:14;;40814:92;;:::o;21765:250::-;21916:11;;21856:16;;;;-1:-1:-1;;;;;21916:11:0;21908:34;;;;;;21961:11;;21974;;-1:-1:-1;;;;;21961:11:0;;;;22001:5;;21974:24;;21988:10;;21974:24;:::i;:::-;:32;;;;:::i;:::-;21953:54;;;;21765:250;;;;;:::o;40001:35::-;;;;:::o;28231:442::-;28472:12;:10;:12::i;:::-;-1:-1:-1;;;;;28464:20:0;:4;-1:-1:-1;;;;;28464:20:0;;:60;;;;28488:36;28505:4;28511:12;:10;:12::i;28488:36::-;28442:160;;;;-1:-1:-1;;;28442:160:0;;;;;;;:::i;:::-;28613:52;28636:4;28642:2;28646:3;28651:7;28660:4;28613:22;:52::i;:::-;28231:442;;;;;:::o;40916:209::-;23170:12;:10;:12::i;:::-;-1:-1:-1;;;;;23159:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;23159:23:0;;23151:68;;;;-1:-1:-1;;;23151:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41007:27:0;::::1;40999:80;;;;-1:-1:-1::0;;;40999:80:0::1;;;;;;;:::i;:::-;41090:11;:27:::0;;-1:-1:-1;;;;;;41090:27:0::1;-1:-1:-1::0;;;;;41090:27:0;;;::::1;::::0;;;::::1;::::0;;40916:209::o;41135:195::-;23170:12;:10;:12::i;:::-;-1:-1:-1;;;;;23159:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;23159:23:0;;23151:68;;;;-1:-1:-1;;;23151:68:0;;;;;;;:::i;:::-;41234:5:::1;41222:8;:17;;41214:75;;;;-1:-1:-1::0;;;41214:75:0::1;;;;;;;:::i;:::-;41300:11;:22:::0;41135:195::o;26689:524::-;26845:16;26906:3;:10;26887:8;:15;:29;26879:83;;;;-1:-1:-1;;;26879:83:0;;;;;;;:::i;:::-;26975:30;27022:8;:15;27008:30;;;;;;-1:-1:-1;;;27008:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27008:30:0;;26975:63;;27056:9;27051:122;27075:8;:15;27071:1;:19;27051:122;;;27131:30;27141:8;27150:1;27141:11;;;;;;-1:-1:-1;;;27141:11:0;;;;;;;;;;;;;;;27154:3;27158:1;27154:6;;;;;;-1:-1:-1;;;27154:6:0;;;;;;;;;;;;;;;27131:9;:30::i;:::-;27112:13;27126:1;27112:16;;;;;;-1:-1:-1;;;27112:16:0;;;;;;;;;;;;;;;;;;:49;27092:3;;;:::i;:::-;;;27051:122;;;-1:-1:-1;27192:13:0;26689:524;-1:-1:-1;;;26689:524:0:o;40423:117::-;23170:12;:10;:12::i;:::-;-1:-1:-1;;;;;23159:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;23159:23:0;;23151:68;;;;-1:-1:-1;;;23151:68:0;;;;;;;:::i;:::-;40491:13:::1;40499:4;40491:7;:13::i;:::-;40530:1;40520:12;40524:4;40520:12;;;;;;:::i;:::-;;;;;;;;40423:117:::0;:::o;41342:242::-;23170:12;:10;:12::i;:::-;-1:-1:-1;;;;;23159:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;23159:23:0;;23151:68;;;;-1:-1:-1;;;23151:68:0;;;;;;;:::i;:::-;41453:14:::1;::::0;41432:13:::1;::::0;:17:::1;::::0;41448:1:::1;41432:17;:::i;:::-;:35;;41424:44;;;::::0;::::1;;41483:40;41489:7;41498:13;;41514:1;41498:17;;;;:::i;:::-;41517:1;41483:40;;;;;;;;;;;::::0;:5:::1;:40::i;:::-;41563:13;::::0;41559:17:::1;::::0;:1:::1;:17;:::i;:::-;41543:13;:33:::0;-1:-1:-1;41342:242:0:o;23590:103::-;23170:12;:10;:12::i;:::-;-1:-1:-1;;;;;23159:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;23159:23:0;;23151:68;;;;-1:-1:-1;;;23151:68:0;;;;;;;:::i;:::-;23655:30:::1;23682:1;23655:18;:30::i;:::-;23590:103::o:0;41592:207::-;23170:12;:10;:12::i;:::-;-1:-1:-1;;;;;23159:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;23159:23:0;;23151:68;;;;-1:-1:-1;;;23151:68:0;;;;;;;:::i;:::-;41698:9:::1;41693:99;41713:14:::0;;::::1;41693:99;;;41768:12;41773:3;;41777:1;41773:6;;;;;-1:-1:-1::0;;;41773:6:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;41768:12::-;41729:3:::0;::::1;::::0;::::1;:::i;:::-;;;;41693:99;;;;41592:207:::0;;:::o;39962:32::-;;;;:::o;22939:87::-;23012:6;;-1:-1:-1;;;;;23012:6:0;22939:87;:::o;39926:29::-;;;;;;;:::i;27286:155::-;27381:52;27400:12;:10;:12::i;:::-;27414:8;27424;27381:18;:52::i;:::-;27286:155;;:::o;27513:168::-;-1:-1:-1;;;;;27636:27:0;;;27612:4;27636:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;27513:168::o;27753:401::-;27969:12;:10;:12::i;:::-;-1:-1:-1;;;;;27961:20:0;:4;-1:-1:-1;;;;;27961:20:0;;:60;;;;27985:36;28002:4;28008:12;:10;:12::i;27985:36::-;27939:151;;;;-1:-1:-1;;;27939:151:0;;;;;;;:::i;:::-;28101:45;28119:4;28125:2;28129;28133:6;28141:4;28101:17;:45::i;23848:201::-;23170:12;:10;:12::i;:::-;-1:-1:-1;;;;;23159:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;23159:23:0;;23151:68;;;;-1:-1:-1;;;23151:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23937:22:0;::::1;23929:73;;;;-1:-1:-1::0;;;23929:73:0::1;;;;;;;:::i;:::-;24013:28;24032:8;24013:18;:28::i;:::-;23848:201:::0;:::o;21228:206::-;21321:4;-1:-1:-1;;;;;;21345:41:0;;-1:-1:-1;;;21345:41:0;;:81;;;21390:36;21414:11;21390:23;:36::i;26036:105::-;26096:13;26129:4;26122:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26036:105;;;:::o;8759:723::-;8815:13;9036:10;9032:53;;-1:-1:-1;9063:10:0;;;;;;;;;;;;-1:-1:-1;;;9063:10:0;;;;;;9032:53;9110:5;9095:12;9151:78;9158:9;;9151:78;;9184:8;;;;:::i;:::-;;-1:-1:-1;9207:10:0;;-1:-1:-1;9215:2:0;9207:10;;:::i;:::-;;;9151:78;;;9239:19;9271:6;9261:17;;;;;;-1:-1:-1;;;9261:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9261:17:0;;9239:39;;9289:154;9296:10;;9289:154;;9323:11;9333:1;9323:11;;:::i;:::-;;-1:-1:-1;9392:10:0;9400:2;9392:5;:10;:::i;:::-;9379:24;;:2;:24;:::i;:::-;9366:39;;9349:6;9356;9349:14;;;;;;-1:-1:-1;;;9349:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;9349:56:0;;;;;;;;-1:-1:-1;9420:11:0;9429:2;9420:11;;:::i;:::-;;;9289:154;;;9467:6;8759:723;-1:-1:-1;;;;8759:723:0:o;19403:98::-;19483:10;19403:98;:::o;30315:1074::-;30542:7;:14;30528:3;:10;:28;30520:81;;;;-1:-1:-1;;;30520:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30620:16:0;;30612:66;;;;-1:-1:-1;;;30612:66:0;;;;;;;:::i;:::-;30691:16;30710:12;:10;:12::i;:::-;30691:31;;30735:60;30756:8;30766:4;30772:2;30776:3;30781:7;30790:4;30735:20;:60::i;:::-;30813:9;30808:421;30832:3;:10;30828:1;:14;30808:421;;;30864:10;30877:3;30881:1;30877:6;;;;;;-1:-1:-1;;;30877:6:0;;;;;;;;;;;;;;;30864:19;;30898:14;30915:7;30923:1;30915:10;;;;;;-1:-1:-1;;;30915:10:0;;;;;;;;;;;;;;;;;;;;30942:19;30964:13;;;;;;;;;;-1:-1:-1;;;;;30964:19:0;;;;;;;;;;;;30915:10;;-1:-1:-1;31006:21:0;;;;30998:76;;;;-1:-1:-1;;;30998:76:0;;;;;;;:::i;:::-;31118:9;:13;;;;;;;;;;;-1:-1:-1;;;;;31118:19:0;;;;;;;;;;31140:20;;;31118:42;;31190:17;;;;;;;:27;;31140:20;;31118:9;31190:27;;31140:20;;31190:27;:::i;:::-;;;;;;;;30808:421;;;30844:3;;;;:::i;:::-;;;30808:421;;;;31276:2;-1:-1:-1;;;;;31246:47:0;31270:4;-1:-1:-1;;;;;31246:47:0;31260:8;-1:-1:-1;;;;;31246:47:0;;31280:3;31285:7;31246:47;;;;;;;:::i;:::-;;;;;;;;31306:75;31342:8;31352:4;31358:2;31362:3;31367:7;31376:4;31306:35;:75::i;:::-;30315:1074;;;;;;:::o;32233:88::-;32300:13;;;;:4;;:13;;;;;:::i;32707:569::-;-1:-1:-1;;;;;32860:16:0;;32852:62;;;;-1:-1:-1;;;32852:62:0;;;;;;;:::i;:::-;32927:16;32946:12;:10;:12::i;:::-;32927:31;;32971:102;32992:8;33010:1;33014:2;33018:21;33036:2;33018:17;:21::i;:::-;33041:25;33059:6;33041:17;:25::i;:::-;33068:4;32971:20;:102::i;:::-;33086:9;:13;;;;;;;;;;;-1:-1:-1;;;;;33086:17:0;;;;;;;;;:27;;33107:6;;33086:9;:27;;33107:6;;33086:27;:::i;:::-;;;;;;;;33166:2;-1:-1:-1;;;;;33129:52:0;33162:1;-1:-1:-1;;;;;33129:52:0;33144:8;-1:-1:-1;;;;;33129:52:0;;33170:2;33174:6;33129:52;;;;;;;:::i;:::-;;;;;;;;33194:74;33225:8;33243:1;33247:2;33251;33255:6;33263:4;33194:30;:74::i;24209:191::-;24302:6;;;-1:-1:-1;;;;;24319:17:0;;;-1:-1:-1;;;;;;24319:17:0;;;;;;;24352:40;;24302:6;;;24319:17;24302:6;;24352:40;;24283:16;;24352:40;24209:191;;:::o;36501:331::-;36656:8;-1:-1:-1;;;;;36647:17:0;:5;-1:-1:-1;;;;;36647:17:0;;;36639:71;;;;-1:-1:-1;;;36639:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36721:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;:46;;-1:-1:-1;;36721:46:0;;;;;;;36783:41;;;;;36721:46;;36783:41;:::i;:::-;;;;;;;;36501:331;;;:::o;29137:820::-;-1:-1:-1;;;;;29325:16:0;;29317:66;;;;-1:-1:-1;;;29317:66:0;;;;;;;:::i;:::-;29396:16;29415:12;:10;:12::i;:::-;29396:31;;29440:96;29461:8;29471:4;29477:2;29481:21;29499:2;29481:17;:21::i;29440:96::-;29549:19;29571:13;;;;;;;;;;;-1:-1:-1;;;;;29571:19:0;;;;;;;;;;29609:21;;;;29601:76;;;;-1:-1:-1;;;29601:76:0;;;;;;;:::i;:::-;29713:9;:13;;;;;;;;;;;-1:-1:-1;;;;;29713:19:0;;;;;;;;;;29735:20;;;29713:42;;29777:17;;;;;;;:27;;29735:20;;29713:9;29777:27;;29735:20;;29777:27;:::i;:::-;;;;;;;;29853:2;-1:-1:-1;;;;;29822:46:0;29847:4;-1:-1:-1;;;;;29822:46:0;29837:8;-1:-1:-1;;;;;29822:46:0;;29857:2;29861:6;29822:46;;;;;;;:::i;:::-;;;;;;;;29881:68;29912:8;29922:4;29928:2;29932;29936:6;29944:4;29881:30;:68::i;:::-;29137:820;;;;;;;:::o;25315:310::-;25417:4;-1:-1:-1;;;;;;25454:41:0;;-1:-1:-1;;;25454:41:0;;:110;;-1:-1:-1;;;;;;;25512:52:0;;-1:-1:-1;;;25512:52:0;25454:110;:163;;;;25581:36;25605:11;25581:23;:36::i;38769:813::-;39009:15;:2;-1:-1:-1;;;;;39009:13:0;;:15::i;:::-;39005:570;;;39045:79;;-1:-1:-1;;;39045:79:0;;-1:-1:-1;;;;;39045:43:0;;;;;:79;;39089:8;;39099:4;;39105:3;;39110:7;;39119:4;;39045:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39045:79:0;;;;;;;;-1:-1:-1;;39045:79:0;;;;;;;;;;;;:::i;:::-;;;39041:523;;;;:::i;:::-;;;;;;;;39437:6;39430:14;;-1:-1:-1;;;39430:14:0;;;;;;;;:::i;39041:523::-;39486:62;;-1:-1:-1;;;39486:62:0;;;;;;;:::i;39041:523::-;-1:-1:-1;;;;;;39206:60:0;;-1:-1:-1;;;39206:60:0;39202:159;;39291:50;;-1:-1:-1;;;39291:50:0;;;;;;;:::i;39590:198::-;39710:16;;;39724:1;39710:16;;;;;;;;;39656;;39685:22;;39710:16;;;;;;;;;;;;-1:-1:-1;39710:16:0;39685:41;;39748:7;39737:5;39743:1;39737:8;;;;;;-1:-1:-1;;;39737:8:0;;;;;;;;;;;;;;;;;;:18;39775:5;39590:198;-1:-1:-1;;39590:198:0:o;38017:744::-;38232:15;:2;-1:-1:-1;;;;;38232:13:0;;:15::i;:::-;38228:526;;;38268:72;;-1:-1:-1;;;38268:72:0;;-1:-1:-1;;;;;38268:38:0;;;;;:72;;38307:8;;38317:4;;38323:2;;38327:6;;38335:4;;38268:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38268:72:0;;;;;;;;-1:-1:-1;;38268:72:0;;;;;;;;;;;;:::i;:::-;;;38264:479;;;;:::i;:::-;-1:-1:-1;;;;;;38390:55:0;;-1:-1:-1;;;38390:55:0;38386:154;;38470:50;;-1:-1:-1;;;38470:50:0;;;;;;;:::i;20313:157::-;-1:-1:-1;;;;;;20422:40:0;;-1:-1:-1;;;20422:40:0;20313:157;;;:::o;11595:326::-;11655:4;11912:1;11890:7;-1:-1:-1;;;;;11890:12:0;;;;;;;;;;;;;;;;;;;;;;;;:19;:23;;11595:326;-1:-1:-1;;11595:326:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:409:1;;114:18;106:6;103:30;100:2;;;136:18;;:::i;:::-;174:58;220:2;197:17;;-1:-1:-1;;193:31:1;226:4;189:42;174:58;:::i;:::-;165:67;;255:6;248:5;241:21;295:3;286:6;281:3;277:16;274:25;271:2;;;312:1;309;302:12;271:2;361:6;356:3;349:4;342:5;338:16;325:43;415:1;408:4;399:6;392:5;388:18;384:29;377:40;90:333;;;;;:::o;428:175::-;498:20;;-1:-1:-1;;;;;547:31:1;;537:42;;527:2;;593:1;590;583:12;608:705;;721:3;714:4;706:6;702:17;698:27;688:2;;743:5;736;729:20;688:2;783:6;770:20;809:4;833:65;848:49;894:2;848:49;:::i;:::-;833:65;:::i;:::-;932:15;;;963:12;;;;995:15;;;1041:11;;;1029:24;;1025:33;;1022:42;-1:-1:-1;1019:2:1;;;1081:5;1074;1067:20;1019:2;1107:5;1121:163;1135:2;1132:1;1129:9;1121:163;;;1192:17;;1180:30;;1230:12;;;;1262;;;;1153:1;1146:9;1121:163;;;-1:-1:-1;1302:5:1;;678:635;-1:-1:-1;;;;;;;678:635:1:o;1318:232::-;;1415:3;1408:4;1400:6;1396:17;1392:27;1382:2;;1437:5;1430;1423:20;1382:2;1463:81;1540:3;1531:6;1518:20;1511:4;1503:6;1499:17;1463:81;:::i;:::-;1454:90;1372:178;-1:-1:-1;;;1372:178:1:o;1555:198::-;;1667:2;1655:9;1646:7;1642:23;1638:32;1635:2;;;1688:6;1680;1673:22;1635:2;1716:31;1737:9;1716:31;:::i;1758:274::-;;;1887:2;1875:9;1866:7;1862:23;1858:32;1855:2;;;1908:6;1900;1893:22;1855:2;1936:31;1957:9;1936:31;:::i;:::-;1926:41;;1986:40;2022:2;2011:9;2007:18;1986:40;:::i;:::-;1976:50;;1845:187;;;;;:::o;2037:1001::-;;;;;;2276:3;2264:9;2255:7;2251:23;2247:33;2244:2;;;2298:6;2290;2283:22;2244:2;2326:31;2347:9;2326:31;:::i;:::-;2316:41;;2376:40;2412:2;2401:9;2397:18;2376:40;:::i;:::-;2366:50;;2467:2;2456:9;2452:18;2439:32;2490:18;2531:2;2523:6;2520:14;2517:2;;;2552:6;2544;2537:22;2517:2;2580:67;2639:7;2630:6;2619:9;2615:22;2580:67;:::i;:::-;2570:77;;2700:2;2689:9;2685:18;2672:32;2656:48;;2729:2;2719:8;2716:16;2713:2;;;2750:6;2742;2735:22;2713:2;2778:69;2839:7;2828:8;2817:9;2813:24;2778:69;:::i;:::-;2768:79;;2900:3;2889:9;2885:19;2872:33;2856:49;;2930:2;2920:8;2917:16;2914:2;;;2951:6;2943;2936:22;2914:2;;2979:53;3024:7;3013:8;3002:9;2998:24;2979:53;:::i;:::-;2969:63;;;2234:804;;;;;;;;:::o;3043:632::-;;;;;;3232:3;3220:9;3211:7;3207:23;3203:33;3200:2;;;3254:6;3246;3239:22;3200:2;3282:31;3303:9;3282:31;:::i;:::-;3272:41;;3332:40;3368:2;3357:9;3353:18;3332:40;:::i;:::-;3322:50;;3419:2;3408:9;3404:18;3391:32;3381:42;;3470:2;3459:9;3455:18;3442:32;3432:42;;3525:3;3514:9;3510:19;3497:33;3553:18;3545:6;3542:30;3539:2;;;3590:6;3582;3575:22;3539:2;3618:51;3661:7;3652:6;3641:9;3637:22;3618:51;:::i;3680:369::-;;;3806:2;3794:9;3785:7;3781:23;3777:32;3774:2;;;3827:6;3819;3812:22;3774:2;3855:31;3876:9;3855:31;:::i;:::-;3845:41;;3936:2;3925:9;3921:18;3908:32;3983:5;3976:13;3969:21;3962:5;3959:32;3949:2;;4010:6;4002;3995:22;3949:2;4038:5;4028:15;;;3764:285;;;;;:::o;4054:266::-;;;4183:2;4171:9;4162:7;4158:23;4154:32;4151:2;;;4204:6;4196;4189:22;4151:2;4232:31;4253:9;4232:31;:::i;:::-;4222:41;4310:2;4295:18;;;;4282:32;;-1:-1:-1;;;4141:179:1:o;4325:666::-;;;4472:2;4460:9;4451:7;4447:23;4443:32;4440:2;;;4493:6;4485;4478:22;4440:2;4538:9;4525:23;4567:18;4608:2;4600:6;4597:14;4594:2;;;4629:6;4621;4614:22;4594:2;4672:6;4661:9;4657:22;4647:32;;4717:7;4710:4;4706:2;4702:13;4698:27;4688:2;;4744:6;4736;4729:22;4688:2;4789;4776:16;4815:2;4807:6;4804:14;4801:2;;;4836:6;4828;4821:22;4801:2;4895:7;4890:2;4884;4876:6;4872:15;4868:2;4864:24;4860:33;4857:46;4854:2;;;4921:6;4913;4906:22;4854:2;4957;4949:11;;;;;4979:6;;-1:-1:-1;4430:561:1;;-1:-1:-1;;;;4430:561:1:o;4996:1226::-;;;5175:2;5163:9;5154:7;5150:23;5146:32;5143:2;;;5196:6;5188;5181:22;5143:2;5241:9;5228:23;5270:18;5311:2;5303:6;5300:14;5297:2;;;5332:6;5324;5317:22;5297:2;5375:6;5364:9;5360:22;5350:32;;5420:7;5413:4;5409:2;5405:13;5401:27;5391:2;;5447:6;5439;5432:22;5391:2;5488;5475:16;5510:4;5534:65;5549:49;5595:2;5549:49;:::i;5534:65::-;5633:15;;;5664:12;;;;5696:11;;;5734;;;5726:20;;5722:29;;5719:42;-1:-1:-1;5716:2:1;;;5779:6;5771;5764:22;5716:2;5806:6;5797:15;;5821:171;5835:2;5832:1;5829:9;5821:171;;;5892:25;5913:3;5892:25;:::i;:::-;5880:38;;5853:1;5846:9;;;;;5938:12;;;;5970;;5821:171;;;-1:-1:-1;6011:5:1;-1:-1:-1;;6054:18:1;;6041:32;;-1:-1:-1;;6085:16:1;;;6082:2;;;6119:6;6111;6104:22;6082:2;;6147:69;6208:7;6197:8;6186:9;6182:24;6147:69;:::i;:::-;6137:79;;;5133:1089;;;;;:::o;6227:257::-;;6338:2;6326:9;6317:7;6313:23;6309:32;6306:2;;;6359:6;6351;6344:22;6306:2;6403:9;6390:23;6422:32;6448:5;6422:32;:::i;6489:261::-;;6611:2;6599:9;6590:7;6586:23;6582:32;6579:2;;;6632:6;6624;6617:22;6579:2;6669:9;6663:16;6688:32;6714:5;6688:32;:::i;6755:482::-;;6877:2;6865:9;6856:7;6852:23;6848:32;6845:2;;;6898:6;6890;6883:22;6845:2;6943:9;6930:23;6976:18;6968:6;6965:30;6962:2;;;7013:6;7005;6998:22;6962:2;7041:22;;7094:4;7086:13;;7082:27;-1:-1:-1;7072:2:1;;7128:6;7120;7113:22;7072:2;7156:75;7223:7;7218:2;7205:16;7200:2;7196;7192:11;7156:75;:::i;7242:190::-;;7354:2;7342:9;7333:7;7329:23;7325:32;7322:2;;;7375:6;7367;7360:22;7322:2;-1:-1:-1;7403:23:1;;7312:120;-1:-1:-1;7312:120:1:o;7437:258::-;;;7566:2;7554:9;7545:7;7541:23;7537:32;7534:2;;;7587:6;7579;7572:22;7534:2;-1:-1:-1;;7615:23:1;;;7685:2;7670:18;;;7657:32;;-1:-1:-1;7524:171:1:o;7700:443::-;;7797:5;7791:12;7824:6;7819:3;7812:19;7850:4;7879:2;7874:3;7870:12;7863:19;;7916:2;7909:5;7905:14;7937:3;7949:169;7963:6;7960:1;7957:13;7949:169;;;8024:13;;8012:26;;8058:12;;;;8093:15;;;;7985:1;7978:9;7949:169;;;-1:-1:-1;8134:3:1;;7767:376;-1:-1:-1;;;;;7767:376:1:o;8148:259::-;;8229:5;8223:12;8256:6;8251:3;8244:19;8272:63;8328:6;8321:4;8316:3;8312:14;8305:4;8298:5;8294:16;8272:63;:::i;:::-;8389:2;8368:15;-1:-1:-1;;8364:29:1;8355:39;;;;8396:4;8351:50;;8199:208;-1:-1:-1;;8199:208:1:o;8412:637::-;;8730:6;8724:13;8746:53;8792:6;8787:3;8780:4;8772:6;8768:17;8746:53;:::i;:::-;8862:13;;8821:16;;;;8884:57;8862:13;8821:16;8918:4;8906:17;;8884:57;:::i;:::-;-1:-1:-1;;;8963:20:1;;8992:22;;;9041:1;9030:13;;8700:349;-1:-1:-1;;;;8700:349:1:o;9054:203::-;-1:-1:-1;;;;;9218:32:1;;;;9200:51;;9188:2;9173:18;;9155:102::o;9262:840::-;-1:-1:-1;;;;;9659:15:1;;;9641:34;;9711:15;;9706:2;9691:18;;9684:43;9621:3;9758:2;9743:18;;9736:31;;;9262:840;;9790:63;;9833:19;;9825:6;9790:63;:::i;:::-;9901:9;9893:6;9889:22;9884:2;9873:9;9869:18;9862:50;9935;9978:6;9970;9935:50;:::i;:::-;9921:64;;10034:9;10026:6;10022:22;10016:3;10005:9;10001:19;9994:51;10062:34;10089:6;10081;10062:34;:::i;:::-;10054:42;9593:509;-1:-1:-1;;;;;;;;9593:509:1:o;10107:562::-;-1:-1:-1;;;;;10404:15:1;;;10386:34;;10456:15;;10451:2;10436:18;;10429:43;10503:2;10488:18;;10481:34;;;10546:2;10531:18;;10524:34;;;10366:3;10589;10574:19;;10567:32;;;10107:562;;10616:47;;10643:19;;10635:6;10616:47;:::i;:::-;10608:55;10338:331;-1:-1:-1;;;;;;;10338:331:1:o;10674:274::-;-1:-1:-1;;;;;10866:32:1;;;;10848:51;;10930:2;10915:18;;10908:34;10836:2;10821:18;;10803:145::o;10953:267::-;;11132:2;11121:9;11114:21;11152:62;11210:2;11199:9;11195:18;11187:6;11152:62;:::i;11225:477::-;;11482:2;11471:9;11464:21;11508:62;11566:2;11555:9;11551:18;11543:6;11508:62;:::i;:::-;11618:9;11610:6;11606:22;11601:2;11590:9;11586:18;11579:50;11646;11689:6;11681;11646:50;:::i;:::-;11638:58;11454:248;-1:-1:-1;;;;;11454:248:1:o;11707:187::-;11872:14;;11865:22;11847:41;;11835:2;11820:18;;11802:92::o;11899:221::-;;12048:2;12037:9;12030:21;12068:46;12110:2;12099:9;12095:18;12087:6;12068:46;:::i;12125:416::-;12327:2;12309:21;;;12366:2;12346:18;;;12339:30;12405:34;12400:2;12385:18;;12378:62;-1:-1:-1;;;12471:2:1;12456:18;;12449:50;12531:3;12516:19;;12299:242::o;12546:404::-;12748:2;12730:21;;;12787:2;12767:18;;;12760:30;12826:34;12821:2;12806:18;;12799:62;-1:-1:-1;;;12892:2:1;12877:18;;12870:38;12940:3;12925:19;;12720:230::o;12955:407::-;13157:2;13139:21;;;13196:2;13176:18;;;13169:30;13235:34;13230:2;13215:18;;13208:62;-1:-1:-1;;;13301:2:1;13286:18;;13279:41;13352:3;13337:19;;13129:233::o;13367:402::-;13569:2;13551:21;;;13608:2;13588:18;;;13581:30;13647:34;13642:2;13627:18;;13620:62;-1:-1:-1;;;13713:2:1;13698:18;;13691:36;13759:3;13744:19;;13541:228::o;13774:409::-;13976:2;13958:21;;;14015:2;13995:18;;;13988:30;14054:34;14049:2;14034:18;;14027:62;-1:-1:-1;;;14120:2:1;14105:18;;14098:43;14173:3;14158:19;;13948:235::o;14188:405::-;14390:2;14372:21;;;14429:2;14409:18;;;14402:30;14468:34;14463:2;14448:18;;14441:62;-1:-1:-1;;;14534:2:1;14519:18;;14512:39;14583:3;14568:19;;14362:231::o;14598:401::-;14800:2;14782:21;;;14839:2;14819:18;;;14812:30;14878:34;14873:2;14858:18;;14851:62;-1:-1:-1;;;14944:2:1;14929:18;;14922:35;14989:3;14974:19;;14772:227::o;15004:414::-;15206:2;15188:21;;;15245:2;15225:18;;;15218:30;15284:34;15279:2;15264:18;;15257:62;-1:-1:-1;;;15350:2:1;15335:18;;15328:48;15408:3;15393:19;;15178:240::o;15423:406::-;15625:2;15607:21;;;15664:2;15644:18;;;15637:30;15703:34;15698:2;15683:18;;15676:62;-1:-1:-1;;;15769:2:1;15754:18;;15747:40;15819:3;15804:19;;15597:232::o;15834:356::-;16036:2;16018:21;;;16055:18;;;16048:30;16114:34;16109:2;16094:18;;16087:62;16181:2;16166:18;;16008:182::o;16195:404::-;16397:2;16379:21;;;16436:2;16416:18;;;16409:30;16475:34;16470:2;16455:18;;16448:62;-1:-1:-1;;;16541:2:1;16526:18;;16519:38;16589:3;16574:19;;16369:230::o;16604:405::-;16806:2;16788:21;;;16845:2;16825:18;;;16818:30;16884:34;16879:2;16864:18;;16857:62;-1:-1:-1;;;16950:2:1;16935:18;;16928:39;16999:3;16984:19;;16778:231::o;17014:405::-;17216:2;17198:21;;;17255:2;17235:18;;;17228:30;17294:34;17289:2;17274:18;;17267:62;-1:-1:-1;;;17360:2:1;17345:18;;17338:39;17409:3;17394:19;;17188:231::o;17424:404::-;17626:2;17608:21;;;17665:2;17645:18;;;17638:30;17704:34;17699:2;17684:18;;17677:62;-1:-1:-1;;;17770:2:1;17755:18;;17748:38;17818:3;17803:19;;17598:230::o;17833:397::-;18035:2;18017:21;;;18074:2;18054:18;;;18047:30;18113:34;18108:2;18093:18;;18086:62;-1:-1:-1;;;18179:2:1;18164:18;;18157:31;18220:3;18205:19;;18007:223::o;18235:177::-;18381:25;;;18369:2;18354:18;;18336:76::o;18417:248::-;18591:25;;;18647:2;18632:18;;18625:34;18579:2;18564:18;;18546:119::o;18670:251::-;18740:2;18734:9;18770:17;;;18817:18;18802:34;;18838:22;;;18799:62;18796:2;;;18864:18;;:::i;:::-;18900:2;18893:22;18714:207;;-1:-1:-1;18714:207:1:o;18926:192::-;;19025:18;19017:6;19014:30;19011:2;;;19047:18;;:::i;:::-;-1:-1:-1;19107:4:1;19088:17;;;19084:28;;19001:117::o;19123:128::-;;19194:1;19190:6;19187:1;19184:13;19181:2;;;19200:18;;:::i;:::-;-1:-1:-1;19236:9:1;;19171:80::o;19256:120::-;;19322:1;19312:2;;19327:18;;:::i;:::-;-1:-1:-1;19361:9:1;;19302:74::o;19381:168::-;;19487:1;19483;19479:6;19475:14;19472:1;19469:21;19464:1;19457:9;19450:17;19446:45;19443:2;;;19494:18;;:::i;:::-;-1:-1:-1;19534:9:1;;19433:116::o;19554:125::-;;19622:1;19619;19616:8;19613:2;;;19627:18;;:::i;:::-;-1:-1:-1;19664:9:1;;19603:76::o;19684:258::-;19756:1;19766:113;19780:6;19777:1;19774:13;19766:113;;;19856:11;;;19850:18;19837:11;;;19830:39;19802:2;19795:10;19766:113;;;19897:6;19894:1;19891:13;19888:2;;;19932:1;19923:6;19918:3;19914:16;19907:27;19888:2;;19737:205;;;:::o;19947:380::-;20032:1;20022:12;;20079:1;20069:12;;;20090:2;;20144:4;20136:6;20132:17;20122:27;;20090:2;20197;20189:6;20186:14;20166:18;20163:38;20160:2;;;20243:10;20238:3;20234:20;20231:1;20224:31;20278:4;20275:1;20268:15;20306:4;20303:1;20296:15;20160:2;;20002:325;;;:::o;20332:135::-;;-1:-1:-1;;20392:17:1;;20389:2;;;20412:18;;:::i;:::-;-1:-1:-1;20459:1:1;20448:13;;20379:88::o;20472:112::-;;20530:1;20520:2;;20535:18;;:::i;:::-;-1:-1:-1;20569:9:1;;20510:74::o;20589:127::-;20650:10;20645:3;20641:20;20638:1;20631:31;20681:4;20678:1;20671:15;20705:4;20702:1;20695:15;20721:127;20782:10;20777:3;20773:20;20770:1;20763:31;20813:4;20810:1;20803:15;20837:4;20834:1;20827:15;20853:127;20914:10;20909:3;20905:20;20902:1;20895:31;20945:4;20942:1;20935:15;20969:4;20966:1;20959:15;20985:88;21060:3;21056:15;;21042:31::o;21078:764::-;;21159:4;21141:16;21138:26;21135:2;;;21167:5;;21135:2;21208:1;21203:3;21198;21183:27;21270:10;21232:36;21263:3;21257:10;21232:36;:::i;:::-;21229:52;21219:2;;21285:5;;21219:2;21319;21313:9;21359:16;-1:-1:-1;;21355:29:1;21352:1;21313:9;21331:54;21414:4;21408:11;21438:16;21473:18;21544:2;21537:4;21529:6;21525:17;21522:25;21517:2;21509:6;21506:14;21503:45;21500:2;;;21551:5;;;;;;21500:2;21588:6;21582:4;21578:17;21567:28;;21624:3;21618:10;21604:24;;21651:2;21643:6;21640:14;21637:2;;;21657:5;;;;;;21637:2;;21718:16;21712:4;21708:27;21701:4;21692:6;21687:3;21683:16;21679:27;21676:60;21673:2;;;21739:5;;;;;21673:2;21804;21783:15;-1:-1:-1;;21779:29:1;21770:39;;21811:4;21766:50;21762:2;21755:62;21774:3;-1:-1:-1;;21125:717:1;:::o;21847:133::-;-1:-1:-1;;;;;;21923:32:1;;21913:43;;21903:2;;21970:1;21967;21960:12

Swarm Source

ipfs://4e1063c84811192b93f23b8b5fd6da398e691436a9f3eec6534d2a0f6bb1c19f
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.