ETH Price: $2,376.52 (-3.84%)

Token

RadRaptors ()
 

Overview

Max Total Supply

888

Holders

299

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0xd0049a4cda43864044ee1c8acb933831f052e51f
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

There will only be 888 RadRaptors minted on the Ethereum Network. Each RadRaptor will be assigned to a faction and have voting abilities. In the future we plan to integrate - "DinoDAO"

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
RadRaptors

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-08
*/

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;


/**
 * @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.
        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. To accept the transfer(s), this must return
        `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
        (i.e. 0xbc197c81, or its own function selector).
        @param operator The address which initiated the batch transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param ids An array containing ids of each token being transferred (order and length must match values array)
        @param values An array containing amounts of each token being transferred (order and length must match ids array)
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
    */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/token/ERC1155/IERC1155.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/token/ERC1155/ERC1155.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;







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

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

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

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

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

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

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

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

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

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

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

        return batchBalances;
    }

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

        return array;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: RadRaptors.sol


pragma solidity ^0.8.0;



/**
 * @dev contract module which defines RadRaptors NFT Collection
 * and all the interactions it uses
 */
contract RadRaptors is ERC1155, Ownable {
    //@dev Attributes for NFT configuration
    uint256 internal tokenId;
    uint256 public cost = 0.055 ether;
    uint256 public maxSupply = 888;
    uint256 public totalSupply = 0;
    uint256 public maxMintAmount = 10;
    mapping(address => uint256) public freeMint;
    bool public paused;

    // @dev inner attributes of the contract

    /**
     * @dev Create an instance of RadRaptors contract
     */
    constructor(
        string memory _baseURI
    ) ERC1155(_baseURI) {
        tokenId = 0;
    }
    /**
     * @dev Mint edition to a wallet
     * @param _to wallet receiving the edition(s).
     * @param _mintAmount number of editions to mint.
     */
    function mint(address _to, uint256 _mintAmount) public payable {
        require(!paused, "Jurassic Park is Closed");
        require(_mintAmount <= maxMintAmount, "Only 10 Raptors are Allowed Per Transaction");
        require(
            tokenId + _mintAmount <= maxSupply,
            "Jurassic Park is at Max Capacity"
        );
        
        if(freeMint[_to] < _mintAmount)
            require(
                msg.value >= cost * _mintAmount,
                "You Didn't Pay Enough"
            );
        else
            freeMint[_to] -= _mintAmount;
        
        for (uint256 i = 0; i < _mintAmount; i++) {
            tokenId++;
            _mint(_to, tokenId, 1, "");
            totalSupply++;
        }
    }
    
    function withdraw() public payable onlyOwner{
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }

    /**
     * @dev change cost of NFT
     * @param _newCost new cost of each edition
     */
    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    /**
     * @dev restrict max mintable amount of edition at a time
     * @param _newmaxMintAmount new max mintable amount
     */
    function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmount = _newmaxMintAmount;
    }

    /**
     * @dev restrict max mintable amount of edition at a time
     * @param _nexMaxSupply new max supply
     */
    function setmaxSupply(uint256 _nexMaxSupply) public onlyOwner {
        maxSupply = _nexMaxSupply;
    }
    
    /**
     * @dev set uri
     * @param _newURI new URI
     */
    function setURI(string memory _newURI) public onlyOwner {
        _setURI(_newURI);
    }

    /**
     * @dev Disable minting process
     */
    function pause() public onlyOwner {
        paused = !paused;
    }

    /**
     * @dev Add user to white list
     * @param _user Users wallet to whitelist
     */
    function freeMintUserBatch(
        address[] memory _user,
        uint256[] memory _amount
    ) public onlyOwner {
        require(_user.length == _amount.length);
        for (uint256 i = 0; i < _user.length; i++)
            freeMint[_user[i]] = _amount[i];
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_user","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"freeMintUserBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nexMaxSupply","type":"uint256"}],"name":"setmaxSupply","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":"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":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

608060405266c3663566a580006005556103786006556000600755600a6008553480156200002c57600080fd5b50604051620021e4380380620021e48339810160408190526200004f9162000184565b806200005b8162000073565b5062000067336200008c565b506000600455620002b3565b805162000088906002906020840190620000de565b5050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000ec9062000260565b90600052602060002090601f0160209004810192826200011057600085556200015b565b82601f106200012b57805160ff19168380011785556200015b565b828001600101855582156200015b579182015b828111156200015b5782518255916020019190600101906200013e565b50620001699291506200016d565b5090565b5b808211156200016957600081556001016200016e565b600060208083850312156200019857600080fd5b82516001600160401b0380821115620001b057600080fd5b818501915085601f830112620001c557600080fd5b815181811115620001da57620001da6200029d565b604051601f8201601f19908116603f011681019083821181831017156200020557620002056200029d565b8160405282815288868487010111156200021e57600080fd5b600093505b8284101562000242578484018601518185018701529285019262000223565b82841115620002545760008684830101525b98975050505050505050565b600181811c908216806200027557607f821691505b602082108114156200029757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611f2180620002c36000396000f3fe6080604052600436106101655760003560e01c80634e1273f4116100d1578063a22cb4651161008a578063e985e9c511610064578063e985e9c5146103e8578063f242432a14610431578063f2fde38b14610451578063fa07ce1d1461047157600080fd5b8063a22cb46514610392578063d04be076146103b2578063d5abeb01146103d257600080fd5b80634e1273f4146102d95780635c975abb14610306578063715018a6146103205780637f00c7a6146103355780638456cb59146103555780638da5cb5b1461036a57600080fd5b8063228025e811610123578063228025e814610248578063239c70ae146102685780632eb2c2d61461027e5780633ccfd60b1461029e57806340c10f19146102a657806344a0d68a146102b957600080fd5b8062fdd58e1461016a57806301ffc9a71461019d57806302fe5305146101cd5780630e89341c146101ef57806313faede61461021c57806318160ddd14610232575b600080fd5b34801561017657600080fd5b5061018a6101853660046118ce565b61049e565b6040519081526020015b60405180910390f35b3480156101a957600080fd5b506101bd6101b83660046119c9565b610535565b6040519015158152602001610194565b3480156101d957600080fd5b506101ed6101e8366004611a03565b610587565b005b3480156101fb57600080fd5b5061020f61020a366004611a54565b6105bd565b6040516101949190611bd9565b34801561022857600080fd5b5061018a60055481565b34801561023e57600080fd5b5061018a60075481565b34801561025457600080fd5b506101ed610263366004611a54565b610651565b34801561027457600080fd5b5061018a60085481565b34801561028a57600080fd5b506101ed610299366004611783565b610680565b6101ed610717565b6101ed6102b43660046118ce565b6107b2565b3480156102c557600080fd5b506101ed6102d4366004611a54565b6109dd565b3480156102e557600080fd5b506102f96102f43660046118f8565b610a0c565b6040516101949190611b98565b34801561031257600080fd5b50600a546101bd9060ff1681565b34801561032c57600080fd5b506101ed610b36565b34801561034157600080fd5b506101ed610350366004611a54565b610b6c565b34801561036157600080fd5b506101ed610b9b565b34801561037657600080fd5b506003546040516001600160a01b039091168152602001610194565b34801561039e57600080fd5b506101ed6103ad366004611892565b610bd9565b3480156103be57600080fd5b506101ed6103cd3660046118f8565b610be8565b3480156103de57600080fd5b5061018a60065481565b3480156103f457600080fd5b506101bd610403366004611750565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561043d57600080fd5b506101ed61044c36600461182d565b610c9b565b34801561045d57600080fd5b506101ed61046c366004611735565b610d22565b34801561047d57600080fd5b5061018a61048c366004611735565b60096020526000908152604090205481565b60006001600160a01b03831661050f5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061056657506001600160e01b031982166303a24d0760e21b145b8061058157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6003546001600160a01b031633146105b15760405162461bcd60e51b815260040161050690611cc3565b6105ba81610dba565b50565b6060600280546105cc90611d6a565b80601f01602080910402602001604051908101604052809291908181526020018280546105f890611d6a565b80156106455780601f1061061a57610100808354040283529160200191610645565b820191906000526020600020905b81548152906001019060200180831161062857829003601f168201915b50505050509050919050565b6003546001600160a01b0316331461067b5760405162461bcd60e51b815260040161050690611cc3565b600655565b6001600160a01b03851633148061069c575061069c8533610403565b6107035760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610506565b6107108585858585610dcd565b5050505050565b6003546001600160a01b031633146107415760405162461bcd60e51b815260040161050690611cc3565b60006107556003546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461079f576040519150601f19603f3d011682016040523d82523d6000602084013e6107a4565b606091505b50509050806105ba57600080fd5b600a5460ff16156108055760405162461bcd60e51b815260206004820152601760248201527f4a75726173736963205061726b20697320436c6f7365640000000000000000006044820152606401610506565b60085481111561086b5760405162461bcd60e51b815260206004820152602b60248201527f4f6e6c7920313020526170746f72732061726520416c6c6f776564205065722060448201526a2a3930b739b0b1ba34b7b760a91b6064820152608401610506565b6006548160045461087c9190611d1c565b11156108ca5760405162461bcd60e51b815260206004820181905260248201527f4a75726173736963205061726b206973206174204d61782043617061636974796044820152606401610506565b6001600160a01b03821660009081526009602052604090205481111561094457806005546108f89190611d34565b34101561093f5760405162461bcd60e51b81526020600482015260156024820152740b2deea4088d2c8dc4ee840a0c2f2408adcdeeaced605b1b6044820152606401610506565b610972565b6001600160a01b0382166000908152600960205260408120805483929061096c908490611d53565b90915550505b60005b818110156109d8576004805490600061098d83611dd2565b91905055506109b083600454600160405180602001604052806000815250610faa565b600780549060006109c083611dd2565b919050555080806109d090611dd2565b915050610975565b505050565b6003546001600160a01b03163314610a075760405162461bcd60e51b815260040161050690611cc3565b600555565b60608151835114610a715760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610506565b6000835167ffffffffffffffff811115610a8d57610a8d611e19565b604051908082528060200260200182016040528015610ab6578160200160208202803683370190505b50905060005b8451811015610b2e57610b01858281518110610ada57610ada611e03565b6020026020010151858381518110610af457610af4611e03565b602002602001015161049e565b828281518110610b1357610b13611e03565b6020908102919091010152610b2781611dd2565b9050610abc565b509392505050565b6003546001600160a01b03163314610b605760405162461bcd60e51b815260040161050690611cc3565b610b6a60006110b4565b565b6003546001600160a01b03163314610b965760405162461bcd60e51b815260040161050690611cc3565b600855565b6003546001600160a01b03163314610bc55760405162461bcd60e51b815260040161050690611cc3565b600a805460ff19811660ff90911615179055565b610be4338383611106565b5050565b6003546001600160a01b03163314610c125760405162461bcd60e51b815260040161050690611cc3565b8051825114610c2057600080fd5b60005b82518110156109d857818181518110610c3e57610c3e611e03565b602002602001015160096000858481518110610c5c57610c5c611e03565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080610c9390611dd2565b915050610c23565b6001600160a01b038516331480610cb75750610cb78533610403565b610d155760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610506565b61071085858585856111e7565b6003546001600160a01b03163314610d4c5760405162461bcd60e51b815260040161050690611cc3565b6001600160a01b038116610db15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610506565b6105ba816110b4565b8051610be4906002906020840190611584565b8151835114610e2f5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610506565b6001600160a01b038416610e555760405162461bcd60e51b815260040161050690611c34565b3360005b8451811015610f3c576000858281518110610e7657610e76611e03565b602002602001015190506000858381518110610e9457610e94611e03565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610ee45760405162461bcd60e51b815260040161050690611c79565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610f21908490611d1c565b9250508190555050505080610f3590611dd2565b9050610e59565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610f8c929190611bab565b60405180910390a4610fa2818787878787611304565b505050505050565b6001600160a01b03841661100a5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610506565b336110248160008761101b8861146f565b6107108861146f565b6000848152602081815260408083206001600160a01b038916845290915281208054859290611054908490611d1c565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610710816000878787876114ba565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316141561117a5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610506565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b03841661120d5760405162461bcd60e51b815260040161050690611c34565b3361121d81878761101b8861146f565b6000848152602081815260408083206001600160a01b038a1684529091529020548381101561125e5760405162461bcd60e51b815260040161050690611c79565b6000858152602081815260408083206001600160a01b038b811685529252808320878503905590881682528120805486929061129b908490611d1c565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46112fb8288888888886114ba565b50505050505050565b6001600160a01b0384163b15610fa25760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906113489089908990889088908890600401611af5565b602060405180830381600087803b15801561136257600080fd5b505af1925050508015611392575060408051601f3d908101601f1916820190925261138f918101906119e6565b60015b61143f5761139e611e2f565b806308c379a014156113d857506113b3611e4b565b806113be57506113da565b8060405162461bcd60e51b81526004016105069190611bd9565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610506565b6001600160e01b0319811663bc197c8160e01b146112fb5760405162461bcd60e51b815260040161050690611bec565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106114a9576114a9611e03565b602090810291909101015292915050565b6001600160a01b0384163b15610fa25760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906114fe9089908990889088908890600401611b53565b602060405180830381600087803b15801561151857600080fd5b505af1925050508015611548575060408051601f3d908101601f19168201909252611545918101906119e6565b60015b6115545761139e611e2f565b6001600160e01b0319811663f23a6e6160e01b146112fb5760405162461bcd60e51b815260040161050690611bec565b82805461159090611d6a565b90600052602060002090601f0160209004810192826115b257600085556115f8565b82601f106115cb57805160ff19168380011785556115f8565b828001600101855582156115f8579182015b828111156115f85782518255916020019190600101906115dd565b50611604929150611608565b5090565b5b808211156116045760008155600101611609565b600067ffffffffffffffff83111561163757611637611e19565b60405161164e601f8501601f191660200182611da5565b80915083815284848401111561166357600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b038116811461169257600080fd5b919050565b600082601f8301126116a857600080fd5b813560206116b582611cf8565b6040516116c28282611da5565b8381528281019150858301600585901b870184018810156116e257600080fd5b60005b85811015611701578135845292840192908401906001016116e5565b5090979650505050505050565b600082601f83011261171f57600080fd5b61172e8383356020850161161d565b9392505050565b60006020828403121561174757600080fd5b61172e8261167b565b6000806040838503121561176357600080fd5b61176c8361167b565b915061177a6020840161167b565b90509250929050565b600080600080600060a0868803121561179b57600080fd5b6117a48661167b565b94506117b26020870161167b565b9350604086013567ffffffffffffffff808211156117cf57600080fd5b6117db89838a01611697565b945060608801359150808211156117f157600080fd5b6117fd89838a01611697565b9350608088013591508082111561181357600080fd5b506118208882890161170e565b9150509295509295909350565b600080600080600060a0868803121561184557600080fd5b61184e8661167b565b945061185c6020870161167b565b93506040860135925060608601359150608086013567ffffffffffffffff81111561188657600080fd5b6118208882890161170e565b600080604083850312156118a557600080fd5b6118ae8361167b565b9150602083013580151581146118c357600080fd5b809150509250929050565b600080604083850312156118e157600080fd5b6118ea8361167b565b946020939093013593505050565b6000806040838503121561190b57600080fd5b823567ffffffffffffffff8082111561192357600080fd5b818501915085601f83011261193757600080fd5b8135602061194482611cf8565b6040516119518282611da5565b8381528281019150858301600585901b870184018b101561197157600080fd5b600096505b8487101561199b576119878161167b565b835260019690960195918301918301611976565b50965050860135925050808211156119b257600080fd5b506119bf85828601611697565b9150509250929050565b6000602082840312156119db57600080fd5b813561172e81611ed5565b6000602082840312156119f857600080fd5b815161172e81611ed5565b600060208284031215611a1557600080fd5b813567ffffffffffffffff811115611a2c57600080fd5b8201601f81018413611a3d57600080fd5b611a4c8482356020840161161d565b949350505050565b600060208284031215611a6657600080fd5b5035919050565b600081518084526020808501945080840160005b83811015611a9d57815187529582019590820190600101611a81565b509495945050505050565b6000815180845260005b81811015611ace57602081850181015186830182015201611ab2565b81811115611ae0576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0386811682528516602082015260a060408201819052600090611b2190830186611a6d565b8281036060840152611b338186611a6d565b90508281036080840152611b478185611aa8565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611b8d90830184611aa8565b979650505050505050565b60208152600061172e6020830184611a6d565b604081526000611bbe6040830185611a6d565b8281036020840152611bd08185611a6d565b95945050505050565b60208152600061172e6020830184611aa8565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600067ffffffffffffffff821115611d1257611d12611e19565b5060051b60200190565b60008219821115611d2f57611d2f611ded565b500190565b6000816000190483118215151615611d4e57611d4e611ded565b500290565b600082821015611d6557611d65611ded565b500390565b600181811c90821680611d7e57607f821691505b60208210811415611d9f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff81118282101715611dcb57611dcb611e19565b6040525050565b6000600019821415611de657611de6611ded565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d1115611e485760046000803e5060005160e01c5b90565b600060443d1015611e595790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715611e8957505050505090565b8285019150815181811115611ea15750505050505090565b843d8701016020828501011115611ebb5750505050505090565b611eca60208286010187611da5565b509095945050505050565b6001600160e01b0319811681146105ba57600080fdfea26469706673582212205267624419eb4687e70168e20fee84f765dafd105acd4e26f21fe67b2855d6b564736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101655760003560e01c80634e1273f4116100d1578063a22cb4651161008a578063e985e9c511610064578063e985e9c5146103e8578063f242432a14610431578063f2fde38b14610451578063fa07ce1d1461047157600080fd5b8063a22cb46514610392578063d04be076146103b2578063d5abeb01146103d257600080fd5b80634e1273f4146102d95780635c975abb14610306578063715018a6146103205780637f00c7a6146103355780638456cb59146103555780638da5cb5b1461036a57600080fd5b8063228025e811610123578063228025e814610248578063239c70ae146102685780632eb2c2d61461027e5780633ccfd60b1461029e57806340c10f19146102a657806344a0d68a146102b957600080fd5b8062fdd58e1461016a57806301ffc9a71461019d57806302fe5305146101cd5780630e89341c146101ef57806313faede61461021c57806318160ddd14610232575b600080fd5b34801561017657600080fd5b5061018a6101853660046118ce565b61049e565b6040519081526020015b60405180910390f35b3480156101a957600080fd5b506101bd6101b83660046119c9565b610535565b6040519015158152602001610194565b3480156101d957600080fd5b506101ed6101e8366004611a03565b610587565b005b3480156101fb57600080fd5b5061020f61020a366004611a54565b6105bd565b6040516101949190611bd9565b34801561022857600080fd5b5061018a60055481565b34801561023e57600080fd5b5061018a60075481565b34801561025457600080fd5b506101ed610263366004611a54565b610651565b34801561027457600080fd5b5061018a60085481565b34801561028a57600080fd5b506101ed610299366004611783565b610680565b6101ed610717565b6101ed6102b43660046118ce565b6107b2565b3480156102c557600080fd5b506101ed6102d4366004611a54565b6109dd565b3480156102e557600080fd5b506102f96102f43660046118f8565b610a0c565b6040516101949190611b98565b34801561031257600080fd5b50600a546101bd9060ff1681565b34801561032c57600080fd5b506101ed610b36565b34801561034157600080fd5b506101ed610350366004611a54565b610b6c565b34801561036157600080fd5b506101ed610b9b565b34801561037657600080fd5b506003546040516001600160a01b039091168152602001610194565b34801561039e57600080fd5b506101ed6103ad366004611892565b610bd9565b3480156103be57600080fd5b506101ed6103cd3660046118f8565b610be8565b3480156103de57600080fd5b5061018a60065481565b3480156103f457600080fd5b506101bd610403366004611750565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561043d57600080fd5b506101ed61044c36600461182d565b610c9b565b34801561045d57600080fd5b506101ed61046c366004611735565b610d22565b34801561047d57600080fd5b5061018a61048c366004611735565b60096020526000908152604090205481565b60006001600160a01b03831661050f5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061056657506001600160e01b031982166303a24d0760e21b145b8061058157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6003546001600160a01b031633146105b15760405162461bcd60e51b815260040161050690611cc3565b6105ba81610dba565b50565b6060600280546105cc90611d6a565b80601f01602080910402602001604051908101604052809291908181526020018280546105f890611d6a565b80156106455780601f1061061a57610100808354040283529160200191610645565b820191906000526020600020905b81548152906001019060200180831161062857829003601f168201915b50505050509050919050565b6003546001600160a01b0316331461067b5760405162461bcd60e51b815260040161050690611cc3565b600655565b6001600160a01b03851633148061069c575061069c8533610403565b6107035760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610506565b6107108585858585610dcd565b5050505050565b6003546001600160a01b031633146107415760405162461bcd60e51b815260040161050690611cc3565b60006107556003546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461079f576040519150601f19603f3d011682016040523d82523d6000602084013e6107a4565b606091505b50509050806105ba57600080fd5b600a5460ff16156108055760405162461bcd60e51b815260206004820152601760248201527f4a75726173736963205061726b20697320436c6f7365640000000000000000006044820152606401610506565b60085481111561086b5760405162461bcd60e51b815260206004820152602b60248201527f4f6e6c7920313020526170746f72732061726520416c6c6f776564205065722060448201526a2a3930b739b0b1ba34b7b760a91b6064820152608401610506565b6006548160045461087c9190611d1c565b11156108ca5760405162461bcd60e51b815260206004820181905260248201527f4a75726173736963205061726b206973206174204d61782043617061636974796044820152606401610506565b6001600160a01b03821660009081526009602052604090205481111561094457806005546108f89190611d34565b34101561093f5760405162461bcd60e51b81526020600482015260156024820152740b2deea4088d2c8dc4ee840a0c2f2408adcdeeaced605b1b6044820152606401610506565b610972565b6001600160a01b0382166000908152600960205260408120805483929061096c908490611d53565b90915550505b60005b818110156109d8576004805490600061098d83611dd2565b91905055506109b083600454600160405180602001604052806000815250610faa565b600780549060006109c083611dd2565b919050555080806109d090611dd2565b915050610975565b505050565b6003546001600160a01b03163314610a075760405162461bcd60e51b815260040161050690611cc3565b600555565b60608151835114610a715760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610506565b6000835167ffffffffffffffff811115610a8d57610a8d611e19565b604051908082528060200260200182016040528015610ab6578160200160208202803683370190505b50905060005b8451811015610b2e57610b01858281518110610ada57610ada611e03565b6020026020010151858381518110610af457610af4611e03565b602002602001015161049e565b828281518110610b1357610b13611e03565b6020908102919091010152610b2781611dd2565b9050610abc565b509392505050565b6003546001600160a01b03163314610b605760405162461bcd60e51b815260040161050690611cc3565b610b6a60006110b4565b565b6003546001600160a01b03163314610b965760405162461bcd60e51b815260040161050690611cc3565b600855565b6003546001600160a01b03163314610bc55760405162461bcd60e51b815260040161050690611cc3565b600a805460ff19811660ff90911615179055565b610be4338383611106565b5050565b6003546001600160a01b03163314610c125760405162461bcd60e51b815260040161050690611cc3565b8051825114610c2057600080fd5b60005b82518110156109d857818181518110610c3e57610c3e611e03565b602002602001015160096000858481518110610c5c57610c5c611e03565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080610c9390611dd2565b915050610c23565b6001600160a01b038516331480610cb75750610cb78533610403565b610d155760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610506565b61071085858585856111e7565b6003546001600160a01b03163314610d4c5760405162461bcd60e51b815260040161050690611cc3565b6001600160a01b038116610db15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610506565b6105ba816110b4565b8051610be4906002906020840190611584565b8151835114610e2f5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610506565b6001600160a01b038416610e555760405162461bcd60e51b815260040161050690611c34565b3360005b8451811015610f3c576000858281518110610e7657610e76611e03565b602002602001015190506000858381518110610e9457610e94611e03565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610ee45760405162461bcd60e51b815260040161050690611c79565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610f21908490611d1c565b9250508190555050505080610f3590611dd2565b9050610e59565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610f8c929190611bab565b60405180910390a4610fa2818787878787611304565b505050505050565b6001600160a01b03841661100a5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610506565b336110248160008761101b8861146f565b6107108861146f565b6000848152602081815260408083206001600160a01b038916845290915281208054859290611054908490611d1c565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610710816000878787876114ba565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316141561117a5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610506565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b03841661120d5760405162461bcd60e51b815260040161050690611c34565b3361121d81878761101b8861146f565b6000848152602081815260408083206001600160a01b038a1684529091529020548381101561125e5760405162461bcd60e51b815260040161050690611c79565b6000858152602081815260408083206001600160a01b038b811685529252808320878503905590881682528120805486929061129b908490611d1c565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46112fb8288888888886114ba565b50505050505050565b6001600160a01b0384163b15610fa25760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906113489089908990889088908890600401611af5565b602060405180830381600087803b15801561136257600080fd5b505af1925050508015611392575060408051601f3d908101601f1916820190925261138f918101906119e6565b60015b61143f5761139e611e2f565b806308c379a014156113d857506113b3611e4b565b806113be57506113da565b8060405162461bcd60e51b81526004016105069190611bd9565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610506565b6001600160e01b0319811663bc197c8160e01b146112fb5760405162461bcd60e51b815260040161050690611bec565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106114a9576114a9611e03565b602090810291909101015292915050565b6001600160a01b0384163b15610fa25760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906114fe9089908990889088908890600401611b53565b602060405180830381600087803b15801561151857600080fd5b505af1925050508015611548575060408051601f3d908101601f19168201909252611545918101906119e6565b60015b6115545761139e611e2f565b6001600160e01b0319811663f23a6e6160e01b146112fb5760405162461bcd60e51b815260040161050690611bec565b82805461159090611d6a565b90600052602060002090601f0160209004810192826115b257600085556115f8565b82601f106115cb57805160ff19168380011785556115f8565b828001600101855582156115f8579182015b828111156115f85782518255916020019190600101906115dd565b50611604929150611608565b5090565b5b808211156116045760008155600101611609565b600067ffffffffffffffff83111561163757611637611e19565b60405161164e601f8501601f191660200182611da5565b80915083815284848401111561166357600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b038116811461169257600080fd5b919050565b600082601f8301126116a857600080fd5b813560206116b582611cf8565b6040516116c28282611da5565b8381528281019150858301600585901b870184018810156116e257600080fd5b60005b85811015611701578135845292840192908401906001016116e5565b5090979650505050505050565b600082601f83011261171f57600080fd5b61172e8383356020850161161d565b9392505050565b60006020828403121561174757600080fd5b61172e8261167b565b6000806040838503121561176357600080fd5b61176c8361167b565b915061177a6020840161167b565b90509250929050565b600080600080600060a0868803121561179b57600080fd5b6117a48661167b565b94506117b26020870161167b565b9350604086013567ffffffffffffffff808211156117cf57600080fd5b6117db89838a01611697565b945060608801359150808211156117f157600080fd5b6117fd89838a01611697565b9350608088013591508082111561181357600080fd5b506118208882890161170e565b9150509295509295909350565b600080600080600060a0868803121561184557600080fd5b61184e8661167b565b945061185c6020870161167b565b93506040860135925060608601359150608086013567ffffffffffffffff81111561188657600080fd5b6118208882890161170e565b600080604083850312156118a557600080fd5b6118ae8361167b565b9150602083013580151581146118c357600080fd5b809150509250929050565b600080604083850312156118e157600080fd5b6118ea8361167b565b946020939093013593505050565b6000806040838503121561190b57600080fd5b823567ffffffffffffffff8082111561192357600080fd5b818501915085601f83011261193757600080fd5b8135602061194482611cf8565b6040516119518282611da5565b8381528281019150858301600585901b870184018b101561197157600080fd5b600096505b8487101561199b576119878161167b565b835260019690960195918301918301611976565b50965050860135925050808211156119b257600080fd5b506119bf85828601611697565b9150509250929050565b6000602082840312156119db57600080fd5b813561172e81611ed5565b6000602082840312156119f857600080fd5b815161172e81611ed5565b600060208284031215611a1557600080fd5b813567ffffffffffffffff811115611a2c57600080fd5b8201601f81018413611a3d57600080fd5b611a4c8482356020840161161d565b949350505050565b600060208284031215611a6657600080fd5b5035919050565b600081518084526020808501945080840160005b83811015611a9d57815187529582019590820190600101611a81565b509495945050505050565b6000815180845260005b81811015611ace57602081850181015186830182015201611ab2565b81811115611ae0576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0386811682528516602082015260a060408201819052600090611b2190830186611a6d565b8281036060840152611b338186611a6d565b90508281036080840152611b478185611aa8565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611b8d90830184611aa8565b979650505050505050565b60208152600061172e6020830184611a6d565b604081526000611bbe6040830185611a6d565b8281036020840152611bd08185611a6d565b95945050505050565b60208152600061172e6020830184611aa8565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600067ffffffffffffffff821115611d1257611d12611e19565b5060051b60200190565b60008219821115611d2f57611d2f611ded565b500190565b6000816000190483118215151615611d4e57611d4e611ded565b500290565b600082821015611d6557611d65611ded565b500390565b600181811c90821680611d7e57607f821691505b60208210811415611d9f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff81118282101715611dcb57611dcb611e19565b6040525050565b6000600019821415611de657611de6611ded565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d1115611e485760046000803e5060005160e01c5b90565b600060443d1015611e595790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715611e8957505050505090565b8285019150815181811115611ea15750505050505090565b843d8701016020828501011115611ebb5750505050505090565b611eca60208286010187611da5565b509095945050505050565b6001600160e01b0319811681146105ba57600080fdfea26469706673582212205267624419eb4687e70168e20fee84f765dafd105acd4e26f21fe67b2855d6b564736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _baseURI (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

36653:3053:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20448:231;;;;;;;;;;-1:-1:-1;20448:231:0;;;;;:::i;:::-;;:::i;:::-;;;17414:25:1;;;17402:2;17387:18;20448:231:0;;;;;;;;19471:310;;;;;;;;;;-1:-1:-1;19471:310:0;;;;;:::i;:::-;;:::i;:::-;;;10255:14:1;;10248:22;10230:41;;10218:2;10203:18;19471:310:0;10090:187:1;39096:91:0;;;;;;;;;;-1:-1:-1;39096:91:0;;;;;:::i;:::-;;:::i;:::-;;20192:105;;;;;;;;;;-1:-1:-1;20192:105:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;36776:33::-;;;;;;;;;;;;;;;;36853:30;;;;;;;;;;;;;;;;38908:106;;;;;;;;;;-1:-1:-1;38908:106:0;;;;;:::i;:::-;;:::i;36890:33::-;;;;;;;;;;;;;;;;22387:442;;;;;;;;;;-1:-1:-1;22387:442:0;;;;;:::i;:::-;;:::i;38160:154::-;;;:::i;37397:751::-;;;;;;:::i;:::-;;:::i;38421:86::-;;;;;;;;;;-1:-1:-1;38421:86:0;;;;;:::i;:::-;;:::i;20845:524::-;;;;;;;;;;-1:-1:-1;20845:524:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;36980:18::-;;;;;;;;;;-1:-1:-1;36980:18:0;;;;;;;;35664:103;;;;;;;;;;;;;:::i;38653:122::-;;;;;;;;;;-1:-1:-1;38653:122:0;;;;;:::i;:::-;;:::i;39250:69::-;;;;;;;;;;;;;:::i;35013:87::-;;;;;;;;;;-1:-1:-1;35086:6:0;;35013:87;;-1:-1:-1;;;;;35086:6:0;;;7896:51:1;;7884:2;7869:18;35013:87:0;7750:203:1;21442:155:0;;;;;;;;;;-1:-1:-1;21442:155:0;;;;;:::i;:::-;;:::i;39428:275::-;;;;;;;;;;-1:-1:-1;39428:275:0;;;;;:::i;:::-;;:::i;36816:30::-;;;;;;;;;;;;;;;;21669:168;;;;;;;;;;-1:-1:-1;21669:168:0;;;;;:::i;:::-;-1:-1:-1;;;;;21792:27:0;;;21768:4;21792:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;21669:168;21909:401;;;;;;;;;;-1:-1:-1;21909:401:0;;;;;:::i;:::-;;:::i;35922:201::-;;;;;;;;;;-1:-1:-1;35922:201:0;;;;;:::i;:::-;;:::i;36930:43::-;;;;;;;;;;-1:-1:-1;36930:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;20448:231;20534:7;-1:-1:-1;;;;;20562:21:0;;20554:77;;;;-1:-1:-1;;;20554:77:0;;11899:2:1;20554:77:0;;;11881:21:1;11938:2;11918:18;;;11911:30;11977:34;11957:18;;;11950:62;-1:-1:-1;;;12028:18:1;;;12021:41;12079:19;;20554:77:0;;;;;;;;;-1:-1:-1;20649:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;20649:22:0;;;;;;;;;;;;20448:231::o;19471:310::-;19573:4;-1:-1:-1;;;;;;19610:41:0;;-1:-1:-1;;;19610:41:0;;:110;;-1:-1:-1;;;;;;;19668:52:0;;-1:-1:-1;;;19668:52:0;19610:110;:163;;;-1:-1:-1;;;;;;;;;;10042:40:0;;;19737:36;19590:183;19471:310;-1:-1:-1;;19471:310:0:o;39096:91::-;35086:6;;-1:-1:-1;;;;;35086:6:0;18260:10;35233:23;35225:68;;;;-1:-1:-1;;;35225:68:0;;;;;;;:::i;:::-;39163:16:::1;39171:7;39163;:16::i;:::-;39096:91:::0;:::o;20192:105::-;20252:13;20285:4;20278:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20192:105;;;:::o;38908:106::-;35086:6;;-1:-1:-1;;;;;35086:6:0;18260:10;35233:23;35225:68;;;;-1:-1:-1;;;35225:68:0;;;;;;;:::i;:::-;38981:9:::1;:25:::0;38908:106::o;22387:442::-;-1:-1:-1;;;;;22620:20:0;;18260:10;22620:20;;:60;;-1:-1:-1;22644:36:0;22661:4;18260:10;21669:168;:::i;22644:36::-;22598:160;;;;-1:-1:-1;;;22598:160:0;;14236:2:1;22598:160:0;;;14218:21:1;14275:2;14255:18;;;14248:30;14314:34;14294:18;;;14287:62;-1:-1:-1;;;14365:18:1;;;14358:48;14423:19;;22598:160:0;14034:414:1;22598:160:0;22769:52;22792:4;22798:2;22802:3;22807:7;22816:4;22769:22;:52::i;:::-;22387:442;;;;;:::o;38160:154::-;35086:6;;-1:-1:-1;;;;;35086:6:0;18260:10;35233:23;35225:68;;;;-1:-1:-1;;;35225:68:0;;;;;;;:::i;:::-;38216:7:::1;38237;35086:6:::0;;-1:-1:-1;;;;;35086:6:0;;35013:87;38237:7:::1;-1:-1:-1::0;;;;;38229:21:0::1;38258;38229:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38215:69;;;38303:2;38295:11;;;::::0;::::1;37397:751:::0;37480:6;;;;37479:7;37471:43;;;;-1:-1:-1;;;37471:43:0;;13128:2:1;37471:43:0;;;13110:21:1;13167:2;13147:18;;;13140:30;13206:25;13186:18;;;13179:53;13249:18;;37471:43:0;12926:347:1;37471:43:0;37548:13;;37533:11;:28;;37525:84;;;;-1:-1:-1;;;37525:84:0;;14655:2:1;37525:84:0;;;14637:21:1;14694:2;14674:18;;;14667:30;14733:34;14713:18;;;14706:62;-1:-1:-1;;;14784:18:1;;;14777:41;14835:19;;37525:84:0;14453:407:1;37525:84:0;37667:9;;37652:11;37642:7;;:21;;;;:::i;:::-;:34;;37620:116;;;;-1:-1:-1;;;37620:116:0;;11538:2:1;37620:116:0;;;11520:21:1;;;11557:18;;;11550:30;11616:34;11596:18;;;11589:62;11668:18;;37620:116:0;11336:356:1;37620:116:0;-1:-1:-1;;;;;37760:13:0;;;;;;:8;:13;;;;;;:27;-1:-1:-1;37757:216:0;;;37848:11;37841:4;;:18;;;;:::i;:::-;37828:9;:31;;37802:114;;;;-1:-1:-1;;;37802:114:0;;13480:2:1;37802:114:0;;;13462:21:1;13519:2;13499:18;;;13492:30;-1:-1:-1;;;13538:18:1;;;13531:51;13599:18;;37802:114:0;13278:345:1;37802:114:0;37757:216;;;-1:-1:-1;;;;;37945:13:0;;;;;;:8;:13;;;;;:28;;37962:11;;37945:13;:28;;37962:11;;37945:28;:::i;:::-;;;;-1:-1:-1;;37757:216:0;37999:9;37994:147;38018:11;38014:1;:15;37994:147;;;38051:7;:9;;;:7;:9;;;:::i;:::-;;;;;;38075:26;38081:3;38086:7;;38095:1;38075:26;;;;;;;;;;;;:5;:26::i;:::-;38116:11;:13;;;:11;:13;;;:::i;:::-;;;;;;38031:3;;;;;:::i;:::-;;;;37994:147;;;;37397:751;;:::o;38421:86::-;35086:6;;-1:-1:-1;;;;;35086:6:0;18260:10;35233:23;35225:68;;;;-1:-1:-1;;;35225:68:0;;;;;;;:::i;:::-;38484:4:::1;:15:::0;38421:86::o;20845:524::-;21001:16;21062:3;:10;21043:8;:15;:29;21035:83;;;;-1:-1:-1;;;21035:83:0;;16249:2:1;21035:83:0;;;16231:21:1;16288:2;16268:18;;;16261:30;16327:34;16307:18;;;16300:62;-1:-1:-1;;;16378:18:1;;;16371:39;16427:19;;21035:83:0;16047:405:1;21035:83:0;21131:30;21178:8;:15;21164:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21164:30:0;;21131:63;;21212:9;21207:122;21231:8;:15;21227:1;:19;21207:122;;;21287:30;21297:8;21306:1;21297:11;;;;;;;;:::i;:::-;;;;;;;21310:3;21314:1;21310:6;;;;;;;;:::i;:::-;;;;;;;21287:9;:30::i;:::-;21268:13;21282:1;21268:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;21248:3;;;:::i;:::-;;;21207:122;;;-1:-1:-1;21348:13:0;20845:524;-1:-1:-1;;;20845:524:0:o;35664:103::-;35086:6;;-1:-1:-1;;;;;35086:6:0;18260:10;35233:23;35225:68;;;;-1:-1:-1;;;35225:68:0;;;;;;;:::i;:::-;35729:30:::1;35756:1;35729:18;:30::i;:::-;35664:103::o:0;38653:122::-;35086:6;;-1:-1:-1;;;;;35086:6:0;18260:10;35233:23;35225:68;;;;-1:-1:-1;;;35225:68:0;;;;;;;:::i;:::-;38734:13:::1;:33:::0;38653:122::o;39250:69::-;35086:6;;-1:-1:-1;;;;;35086:6:0;18260:10;35233:23;35225:68;;;;-1:-1:-1;;;35225:68:0;;;;;;;:::i;:::-;39305:6:::1;::::0;;-1:-1:-1;;39295:16:0;::::1;39305:6;::::0;;::::1;39304:7;39295:16;::::0;;39250:69::o;21442:155::-;21537:52;18260:10;21570:8;21580;21537:18;:52::i;:::-;21442:155;;:::o;39428:275::-;35086:6;;-1:-1:-1;;;;;35086:6:0;18260:10;35233:23;35225:68;;;;-1:-1:-1;;;35225:68:0;;;;;;;:::i;:::-;39582:7:::1;:14;39566:5;:12;:30;39558:39;;;::::0;::::1;;39613:9;39608:87;39632:5;:12;39628:1;:16;39608:87;;;39685:7;39693:1;39685:10;;;;;;;;:::i;:::-;;;;;;;39664:8;:18;39673:5;39679:1;39673:8;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;39664:18:0::1;-1:-1:-1::0;;;;;39664:18:0::1;;;;;;;;;;;;:31;;;;39646:3;;;;;:::i;:::-;;;;39608:87;;21909:401:::0;-1:-1:-1;;;;;22117:20:0;;18260:10;22117:20;;:60;;-1:-1:-1;22141:36:0;22158:4;18260:10;21669:168;:::i;22141:36::-;22095:151;;;;-1:-1:-1;;;22095:151:0;;12718:2:1;22095:151:0;;;12700:21:1;12757:2;12737:18;;;12730:30;12796:34;12776:18;;;12769:62;-1:-1:-1;;;12847:18:1;;;12840:39;12896:19;;22095:151:0;12516:405:1;22095:151:0;22257:45;22275:4;22281:2;22285;22289:6;22297:4;22257:17;:45::i;35922:201::-;35086:6;;-1:-1:-1;;;;;35086:6:0;18260:10;35233:23;35225:68;;;;-1:-1:-1;;;35225:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36011:22:0;::::1;36003:73;;;::::0;-1:-1:-1;;;36003:73:0;;12311:2:1;36003:73:0::1;::::0;::::1;12293:21:1::0;12350:2;12330:18;;;12323:30;12389:34;12369:18;;;12362:62;-1:-1:-1;;;12440:18:1;;;12433:36;12486:19;;36003:73:0::1;12109:402:1::0;36003:73:0::1;36087:28;36106:8;36087:18;:28::i;26389:88::-:0;26456:13;;;;:4;;:13;;;;;:::i;24471:1074::-;24698:7;:14;24684:3;:10;:28;24676:81;;;;-1:-1:-1;;;24676:81:0;;16659:2:1;24676:81:0;;;16641:21:1;16698:2;16678:18;;;16671:30;16737:34;16717:18;;;16710:62;-1:-1:-1;;;16788:18:1;;;16781:38;16836:19;;24676:81:0;16457:404:1;24676:81:0;-1:-1:-1;;;;;24776:16:0;;24768:66;;;;-1:-1:-1;;;24768:66:0;;;;;;;:::i;:::-;18260:10;24847:16;24964:421;24988:3;:10;24984:1;:14;24964:421;;;25020:10;25033:3;25037:1;25033:6;;;;;;;;:::i;:::-;;;;;;;25020:19;;25054:14;25071:7;25079:1;25071:10;;;;;;;;:::i;:::-;;;;;;;;;;;;25098:19;25120:13;;;;;;;;;;-1:-1:-1;;;;;25120:19:0;;;;;;;;;;;;25071:10;;-1:-1:-1;25162:21:0;;;;25154:76;;;;-1:-1:-1;;;25154:76:0;;;;;;;:::i;:::-;25274:9;:13;;;;;;;;;;;-1:-1:-1;;;;;25274:19:0;;;;;;;;;;25296:20;;;25274:42;;25346:17;;;;;;;:27;;25296:20;;25274:9;25346:27;;25296:20;;25346:27;:::i;:::-;;;;;;;;25005:380;;;25000:3;;;;:::i;:::-;;;24964:421;;;;25432:2;-1:-1:-1;;;;;25402:47:0;25426:4;-1:-1:-1;;;;;25402:47:0;25416:8;-1:-1:-1;;;;;25402:47:0;;25436:3;25441:7;25402:47;;;;;;;:::i;:::-;;;;;;;;25462:75;25498:8;25508:4;25514:2;25518:3;25523:7;25532:4;25462:35;:75::i;:::-;24665:880;24471:1074;;;;;:::o;26863:569::-;-1:-1:-1;;;;;27016:16:0;;27008:62;;;;-1:-1:-1;;;27008:62:0;;17068:2:1;27008:62:0;;;17050:21:1;17107:2;17087:18;;;17080:30;17146:34;17126:18;;;17119:62;-1:-1:-1;;;17197:18:1;;;17190:31;17238:19;;27008:62:0;16866:397:1;27008:62:0;18260:10;27127:102;18260:10;27083:16;27170:2;27174:21;27192:2;27174:17;:21::i;:::-;27197:25;27215:6;27197:17;:25::i;27127:102::-;27242:9;:13;;;;;;;;;;;-1:-1:-1;;;;;27242:17:0;;;;;;;;;:27;;27263:6;;27242:9;:27;;27263:6;;27242:27;:::i;:::-;;;;-1:-1:-1;;27285:52:0;;;17624:25:1;;;17680:2;17665:18;;17658:34;;;-1:-1:-1;;;;;27285:52:0;;;;27318:1;;27285:52;;;;;;17597:18:1;27285:52:0;;;;;;;27350:74;27381:8;27399:1;27403:2;27407;27411:6;27419:4;27350:30;:74::i;36283:191::-;36376:6;;;-1:-1:-1;;;;;36393:17:0;;;-1:-1:-1;;;;;;36393:17:0;;;;;;;36426:40;;36376:6;;;36393:17;36376:6;;36426:40;;36357:16;;36426:40;36346:128;36283:191;:::o;30657:331::-;30812:8;-1:-1:-1;;;;;30803:17:0;:5;-1:-1:-1;;;;;30803:17:0;;;30795:71;;;;-1:-1:-1;;;30795:71:0;;15839:2:1;30795:71:0;;;15821:21:1;15878:2;15858:18;;;15851:30;15917:34;15897:18;;;15890:62;-1:-1:-1;;;15968:18:1;;;15961:39;16017:19;;30795:71:0;15637:405:1;30795:71:0;-1:-1:-1;;;;;30877:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;30877:46:0;;;;;;;;;;30939:41;;10230::1;;;30939::0;;10203:18:1;30939:41:0;;;;;;;30657:331;;;:::o;23293:820::-;-1:-1:-1;;;;;23481:16:0;;23473:66;;;;-1:-1:-1;;;23473:66:0;;;;;;;:::i;:::-;18260:10;23596:96;18260:10;23627:4;23633:2;23637:21;23655:2;23637:17;:21::i;23596:96::-;23705:19;23727:13;;;;;;;;;;;-1:-1:-1;;;;;23727:19:0;;;;;;;;;;23765:21;;;;23757:76;;;;-1:-1:-1;;;23757:76:0;;;;;;;:::i;:::-;23869:9;:13;;;;;;;;;;;-1:-1:-1;;;;;23869:19:0;;;;;;;;;;23891:20;;;23869:42;;23933:17;;;;;;;:27;;23891:20;;23869:9;23933:27;;23891:20;;23933:27;:::i;:::-;;;;-1:-1:-1;;23978:46:0;;;17624:25:1;;;17680:2;17665:18;;17658:34;;;-1:-1:-1;;;;;23978:46:0;;;;;;;;;;;;;;17597:18:1;23978:46:0;;;;;;;24037:68;24068:8;24078:4;24084:2;24088;24092:6;24100:4;24037:30;:68::i;:::-;23462:651;;23293:820;;;;;:::o;32925:813::-;-1:-1:-1;;;;;33165:13:0;;1143:20;1191:8;33161:570;;33201:79;;-1:-1:-1;;;33201:79:0;;-1:-1:-1;;;;;33201:43:0;;;;;:79;;33245:8;;33255:4;;33261:3;;33266:7;;33275:4;;33201:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33201:79:0;;;;;;;;-1:-1:-1;;33201:79:0;;;;;;;;;;;;:::i;:::-;;;33197:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;33593:6;33586:14;;-1:-1:-1;;;33586:14:0;;;;;;;;:::i;33197:523::-;;;33642:62;;-1:-1:-1;;;33642:62:0;;10708:2:1;33642:62:0;;;10690:21:1;10747:2;10727:18;;;10720:30;10786:34;10766:18;;;10759:62;-1:-1:-1;;;10837:18:1;;;10830:50;10897:19;;33642:62:0;10506:416:1;33197:523:0;-1:-1:-1;;;;;;33362:60:0;;-1:-1:-1;;;33362:60:0;33358:159;;33447:50;;-1:-1:-1;;;33447:50:0;;;;;;;:::i;33746:198::-;33866:16;;;33880:1;33866:16;;;;;;;;;33812;;33841:22;;33866:16;;;;;;;;;;;;-1:-1:-1;33866:16:0;33841:41;;33904:7;33893:5;33899:1;33893:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;33931:5;33746:198;-1:-1:-1;;33746:198:0:o;32173:744::-;-1:-1:-1;;;;;32388:13:0;;1143:20;1191:8;32384:526;;32424:72;;-1:-1:-1;;;32424:72:0;;-1:-1:-1;;;;;32424:38:0;;;;;:72;;32463:8;;32473:4;;32479:2;;32483:6;;32491:4;;32424:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32424:72:0;;;;;;;;-1:-1:-1;;32424:72:0;;;;;;;;;;;;:::i;:::-;;;32420:479;;;;:::i;:::-;-1:-1:-1;;;;;;32546:55:0;;-1:-1:-1;;;32546:55:0;32542:154;;32626:50;;-1:-1:-1;;;32626:50:0;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:468:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;183:2;177:9;195:69;252:2;231:15;;-1:-1:-1;;227:29:1;258:4;223:40;177:9;195:69;:::i;:::-;282:6;273:15;;312:6;304;297:22;352:3;343:6;338:3;334:16;331:25;328:45;;;369:1;366;359:12;328:45;419:6;414:3;407:4;399:6;395:17;382:44;474:1;467:4;458:6;450;446:19;442:30;435:41;;14:468;;;;;:::o;487:173::-;555:20;;-1:-1:-1;;;;;604:31:1;;594:42;;584:70;;650:1;647;640:12;584:70;487:173;;;:::o;665:735::-;719:5;772:3;765:4;757:6;753:17;749:27;739:55;;790:1;787;780:12;739:55;826:6;813:20;852:4;875:43;915:2;875:43;:::i;:::-;947:2;941:9;959:31;987:2;979:6;959:31;:::i;:::-;1025:18;;;1059:15;;;;-1:-1:-1;1094:15:1;;;1144:1;1140:10;;;1128:23;;1124:32;;1121:41;-1:-1:-1;1118:61:1;;;1175:1;1172;1165:12;1118:61;1197:1;1207:163;1221:2;1218:1;1215:9;1207:163;;;1278:17;;1266:30;;1316:12;;;;1348;;;;1239:1;1232:9;1207:163;;;-1:-1:-1;1388:6:1;;665:735;-1:-1:-1;;;;;;;665:735:1:o;1405:220::-;1447:5;1500:3;1493:4;1485:6;1481:17;1477:27;1467:55;;1518:1;1515;1508:12;1467:55;1540:79;1615:3;1606:6;1593:20;1586:4;1578:6;1574:17;1540:79;:::i;:::-;1531:88;1405:220;-1:-1:-1;;;1405:220:1:o;1630:186::-;1689:6;1742:2;1730:9;1721:7;1717:23;1713:32;1710:52;;;1758:1;1755;1748:12;1710:52;1781:29;1800:9;1781:29;:::i;1821:260::-;1889:6;1897;1950:2;1938:9;1929:7;1925:23;1921:32;1918:52;;;1966:1;1963;1956:12;1918:52;1989:29;2008:9;1989:29;:::i;:::-;1979:39;;2037:38;2071:2;2060:9;2056:18;2037:38;:::i;:::-;2027:48;;1821:260;;;;;:::o;2086:943::-;2240:6;2248;2256;2264;2272;2325:3;2313:9;2304:7;2300:23;2296:33;2293:53;;;2342:1;2339;2332:12;2293:53;2365:29;2384:9;2365:29;:::i;:::-;2355:39;;2413:38;2447:2;2436:9;2432:18;2413:38;:::i;:::-;2403:48;;2502:2;2491:9;2487:18;2474:32;2525:18;2566:2;2558:6;2555:14;2552:34;;;2582:1;2579;2572:12;2552:34;2605:61;2658:7;2649:6;2638:9;2634:22;2605:61;:::i;:::-;2595:71;;2719:2;2708:9;2704:18;2691:32;2675:48;;2748:2;2738:8;2735:16;2732:36;;;2764:1;2761;2754:12;2732:36;2787:63;2842:7;2831:8;2820:9;2816:24;2787:63;:::i;:::-;2777:73;;2903:3;2892:9;2888:19;2875:33;2859:49;;2933:2;2923:8;2920:16;2917:36;;;2949:1;2946;2939:12;2917:36;;2972:51;3015:7;3004:8;2993:9;2989:24;2972:51;:::i;:::-;2962:61;;;2086:943;;;;;;;;:::o;3034:606::-;3138:6;3146;3154;3162;3170;3223:3;3211:9;3202:7;3198:23;3194:33;3191:53;;;3240:1;3237;3230:12;3191:53;3263:29;3282:9;3263:29;:::i;:::-;3253:39;;3311:38;3345:2;3334:9;3330:18;3311:38;:::i;:::-;3301:48;;3396:2;3385:9;3381:18;3368:32;3358:42;;3447:2;3436:9;3432:18;3419:32;3409:42;;3502:3;3491:9;3487:19;3474:33;3530:18;3522:6;3519:30;3516:50;;;3562:1;3559;3552:12;3516:50;3585:49;3626:7;3617:6;3606:9;3602:22;3585:49;:::i;3645:347::-;3710:6;3718;3771:2;3759:9;3750:7;3746:23;3742:32;3739:52;;;3787:1;3784;3777:12;3739:52;3810:29;3829:9;3810:29;:::i;:::-;3800:39;;3889:2;3878:9;3874:18;3861:32;3936:5;3929:13;3922:21;3915:5;3912:32;3902:60;;3958:1;3955;3948:12;3902:60;3981:5;3971:15;;;3645:347;;;;;:::o;3997:254::-;4065:6;4073;4126:2;4114:9;4105:7;4101:23;4097:32;4094:52;;;4142:1;4139;4132:12;4094:52;4165:29;4184:9;4165:29;:::i;:::-;4155:39;4241:2;4226:18;;;;4213:32;;-1:-1:-1;;;3997:254:1:o;4256:1219::-;4374:6;4382;4435:2;4423:9;4414:7;4410:23;4406:32;4403:52;;;4451:1;4448;4441:12;4403:52;4491:9;4478:23;4520:18;4561:2;4553:6;4550:14;4547:34;;;4577:1;4574;4567:12;4547:34;4615:6;4604:9;4600:22;4590:32;;4660:7;4653:4;4649:2;4645:13;4641:27;4631:55;;4682:1;4679;4672:12;4631:55;4718:2;4705:16;4740:4;4763:43;4803:2;4763:43;:::i;:::-;4835:2;4829:9;4847:31;4875:2;4867:6;4847:31;:::i;:::-;4913:18;;;4947:15;;;;-1:-1:-1;4982:11:1;;;5024:1;5020:10;;;5012:19;;5008:28;;5005:41;-1:-1:-1;5002:61:1;;;5059:1;5056;5049:12;5002:61;5081:1;5072:10;;5091:169;5105:2;5102:1;5099:9;5091:169;;;5162:23;5181:3;5162:23;:::i;:::-;5150:36;;5123:1;5116:9;;;;;5206:12;;;;5238;;5091:169;;;-1:-1:-1;5279:6:1;-1:-1:-1;;5323:18:1;;5310:32;;-1:-1:-1;;5354:16:1;;;5351:36;;;5383:1;5380;5373:12;5351:36;;5406:63;5461:7;5450:8;5439:9;5435:24;5406:63;:::i;:::-;5396:73;;;4256:1219;;;;;:::o;5480:245::-;5538:6;5591:2;5579:9;5570:7;5566:23;5562:32;5559:52;;;5607:1;5604;5597:12;5559:52;5646:9;5633:23;5665:30;5689:5;5665:30;:::i;5730:249::-;5799:6;5852:2;5840:9;5831:7;5827:23;5823:32;5820:52;;;5868:1;5865;5858:12;5820:52;5900:9;5894:16;5919:30;5943:5;5919:30;:::i;5984:450::-;6053:6;6106:2;6094:9;6085:7;6081:23;6077:32;6074:52;;;6122:1;6119;6112:12;6074:52;6162:9;6149:23;6195:18;6187:6;6184:30;6181:50;;;6227:1;6224;6217:12;6181:50;6250:22;;6303:4;6295:13;;6291:27;-1:-1:-1;6281:55:1;;6332:1;6329;6322:12;6281:55;6355:73;6420:7;6415:2;6402:16;6397:2;6393;6389:11;6355:73;:::i;:::-;6345:83;5984:450;-1:-1:-1;;;;5984:450:1:o;6439:180::-;6498:6;6551:2;6539:9;6530:7;6526:23;6522:32;6519:52;;;6567:1;6564;6557:12;6519:52;-1:-1:-1;6590:23:1;;6439:180;-1:-1:-1;6439:180:1:o;6624:435::-;6677:3;6715:5;6709:12;6742:6;6737:3;6730:19;6768:4;6797:2;6792:3;6788:12;6781:19;;6834:2;6827:5;6823:14;6855:1;6865:169;6879:6;6876:1;6873:13;6865:169;;;6940:13;;6928:26;;6974:12;;;;7009:15;;;;6901:1;6894:9;6865:169;;;-1:-1:-1;7050:3:1;;6624:435;-1:-1:-1;;;;;6624:435:1:o;7064:471::-;7105:3;7143:5;7137:12;7170:6;7165:3;7158:19;7195:1;7205:162;7219:6;7216:1;7213:13;7205:162;;;7281:4;7337:13;;;7333:22;;7327:29;7309:11;;;7305:20;;7298:59;7234:12;7205:162;;;7385:6;7382:1;7379:13;7376:87;;;7451:1;7444:4;7435:6;7430:3;7426:16;7422:27;7415:38;7376:87;-1:-1:-1;7517:2:1;7496:15;-1:-1:-1;;7492:29:1;7483:39;;;;7524:4;7479:50;;7064:471;-1:-1:-1;;7064:471:1:o;7958:826::-;-1:-1:-1;;;;;8355:15:1;;;8337:34;;8407:15;;8402:2;8387:18;;8380:43;8317:3;8454:2;8439:18;;8432:31;;;8280:4;;8486:57;;8523:19;;8515:6;8486:57;:::i;:::-;8591:9;8583:6;8579:22;8574:2;8563:9;8559:18;8552:50;8625:44;8662:6;8654;8625:44;:::i;:::-;8611:58;;8718:9;8710:6;8706:22;8700:3;8689:9;8685:19;8678:51;8746:32;8771:6;8763;8746:32;:::i;:::-;8738:40;7958:826;-1:-1:-1;;;;;;;;7958:826:1:o;8789:560::-;-1:-1:-1;;;;;9086:15:1;;;9068:34;;9138:15;;9133:2;9118:18;;9111:43;9185:2;9170:18;;9163:34;;;9228:2;9213:18;;9206:34;;;9048:3;9271;9256:19;;9249:32;;;9011:4;;9298:45;;9323:19;;9315:6;9298:45;:::i;:::-;9290:53;8789:560;-1:-1:-1;;;;;;;8789:560:1:o;9354:261::-;9533:2;9522:9;9515:21;9496:4;9553:56;9605:2;9594:9;9590:18;9582:6;9553:56;:::i;9620:465::-;9877:2;9866:9;9859:21;9840:4;9903:56;9955:2;9944:9;9940:18;9932:6;9903:56;:::i;:::-;10007:9;9999:6;9995:22;9990:2;9979:9;9975:18;9968:50;10035:44;10072:6;10064;10035:44;:::i;:::-;10027:52;9620:465;-1:-1:-1;;;;;9620:465:1:o;10282:219::-;10431:2;10420:9;10413:21;10394:4;10451:44;10491:2;10480:9;10476:18;10468:6;10451:44;:::i;10927:404::-;11129:2;11111:21;;;11168:2;11148:18;;;11141:30;11207:34;11202:2;11187:18;;11180:62;-1:-1:-1;;;11273:2:1;11258:18;;11251:38;11321:3;11306:19;;10927:404::o;13628:401::-;13830:2;13812:21;;;13869:2;13849:18;;;13842:30;13908:34;13903:2;13888:18;;13881:62;-1:-1:-1;;;13974:2:1;13959:18;;13952:35;14019:3;14004:19;;13628:401::o;14865:406::-;15067:2;15049:21;;;15106:2;15086:18;;;15079:30;15145:34;15140:2;15125:18;;15118:62;-1:-1:-1;;;15211:2:1;15196:18;;15189:40;15261:3;15246:19;;14865:406::o;15276:356::-;15478:2;15460:21;;;15497:18;;;15490:30;15556:34;15551:2;15536:18;;15529:62;15623:2;15608:18;;15276:356::o;17703:183::-;17763:4;17796:18;17788:6;17785:30;17782:56;;;17818:18;;:::i;:::-;-1:-1:-1;17863:1:1;17859:14;17875:4;17855:25;;17703:183::o;17891:128::-;17931:3;17962:1;17958:6;17955:1;17952:13;17949:39;;;17968:18;;:::i;:::-;-1:-1:-1;18004:9:1;;17891:128::o;18024:168::-;18064:7;18130:1;18126;18122:6;18118:14;18115:1;18112:21;18107:1;18100:9;18093:17;18089:45;18086:71;;;18137:18;;:::i;:::-;-1:-1:-1;18177:9:1;;18024:168::o;18197:125::-;18237:4;18265:1;18262;18259:8;18256:34;;;18270:18;;:::i;:::-;-1:-1:-1;18307:9:1;;18197:125::o;18327:380::-;18406:1;18402:12;;;;18449;;;18470:61;;18524:4;18516:6;18512:17;18502:27;;18470:61;18577:2;18569:6;18566:14;18546:18;18543:38;18540:161;;;18623:10;18618:3;18614:20;18611:1;18604:31;18658:4;18655:1;18648:15;18686:4;18683:1;18676:15;18540:161;;18327:380;;;:::o;18712:249::-;18822:2;18803:13;;-1:-1:-1;;18799:27:1;18787:40;;18857:18;18842:34;;18878:22;;;18839:62;18836:88;;;18904:18;;:::i;:::-;18940:2;18933:22;-1:-1:-1;;18712:249:1:o;18966:135::-;19005:3;-1:-1:-1;;19026:17:1;;19023:43;;;19046:18;;:::i;:::-;-1:-1:-1;19093:1:1;19082:13;;18966:135::o;19106:127::-;19167:10;19162:3;19158:20;19155:1;19148:31;19198:4;19195:1;19188:15;19222:4;19219:1;19212:15;19238:127;19299:10;19294:3;19290:20;19287:1;19280:31;19330:4;19327:1;19320:15;19354:4;19351:1;19344:15;19370:127;19431:10;19426:3;19422:20;19419:1;19412:31;19462:4;19459:1;19452:15;19486:4;19483:1;19476:15;19502:179;19537:3;19579:1;19561:16;19558:23;19555:120;;;19625:1;19622;19619;19604:23;-1:-1:-1;19662:1:1;19656:8;19651:3;19647:18;19555:120;19502:179;:::o;19686:671::-;19725:3;19767:4;19749:16;19746:26;19743:39;;;19686:671;:::o;19743:39::-;19809:2;19803:9;-1:-1:-1;;19874:16:1;19870:25;;19867:1;19803:9;19846:50;19925:4;19919:11;19949:16;19984:18;20055:2;20048:4;20040:6;20036:17;20033:25;20028:2;20020:6;20017:14;20014:45;20011:58;;;20062:5;;;;;19686:671;:::o;20011:58::-;20099:6;20093:4;20089:17;20078:28;;20135:3;20129:10;20162:2;20154:6;20151:14;20148:27;;;20168:5;;;;;;19686:671;:::o;20148:27::-;20252:2;20233:16;20227:4;20223:27;20219:36;20212:4;20203:6;20198:3;20194:16;20190:27;20187:69;20184:82;;;20259:5;;;;;;19686:671;:::o;20184:82::-;20275:57;20326:4;20317:6;20309;20305:19;20301:30;20295:4;20275:57;:::i;:::-;-1:-1:-1;20348:3:1;;19686:671;-1:-1:-1;;;;;19686:671:1:o;20362:131::-;-1:-1:-1;;;;;;20436:32:1;;20426:43;;20416:71;;20483:1;20480;20473:12

Swarm Source

ipfs://5267624419eb4687e70168e20fee84f765dafd105acd4e26f21fe67b2855d6b5
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.