ETH Price: $2,442.95 (+3.43%)

Token

IBEX | Protocol (IBEX)
 

Overview

Max Total Supply

63 IBEX

Holders

40

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0xF236Ae906003B035631b4a924AdD7507499394aD
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
IBEX

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-03
*/

// SPDX-License-Identifier: MIT

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);
}


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

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

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

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

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

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

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

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

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

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

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

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


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


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


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

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


/**
 * @dev Implementation of the 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 {
        require(_msgSender() != operator, "ERC1155: setting approval status for self");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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 `account`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address account,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(account != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

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

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

        _doSafeTransferAcceptanceCheck(operator, address(0), account, 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 `account`
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address account,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

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

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

        emit TransferSingle(operator, account, 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 account,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

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

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

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

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

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

/**
 * @dev Extension of ERC1155 that adds tracking of total supply per id.
 *
 * Useful for scenarios where Fungible and Non-fungible tokens have to be
 * clearly identified. Note: While a totalSupply of 1 might mean the
 * corresponding is an NFT, there is no guarantees that no other token with the
 * same id are not going to be minted.
 */
abstract contract ERC1155Supply is ERC1155 {
    mapping(uint256 => uint256) private _totalSupply;

    /**
     * @dev Total amount of tokens in with a given id.
     */
    function totalSupply(uint256 id) public view virtual returns (uint256) {
        return _totalSupply[id];
    }

    /**
     * @dev Indicates weither any token exist with a given id, or not.
     */
    function exists(uint256 id) public view virtual returns (bool) {
        return ERC1155Supply.totalSupply(id) > 0;
    }

    /**
     * @dev See {ERC1155-_mint}.
     */
    function _mint(
        address account,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual override {
        super._mint(account, id, amount, data);
        _totalSupply[id] += amount;
    }

    /**
     * @dev See {ERC1155-_mintBatch}.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._mintBatch(to, ids, amounts, data);
        for (uint256 i = 0; i < ids.length; ++i) {
            _totalSupply[ids[i]] += amounts[i];
        }
    }

    /**
     * @dev See {ERC1155-_burn}.
     */
    function _burn(
        address account,
        uint256 id,
        uint256 amount
    ) internal virtual override {
        super._burn(account, id, amount);
        _totalSupply[id] -= amount;
    }

    /**
     * @dev See {ERC1155-_burnBatch}.
     */
    function _burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual override {
        super._burnBatch(account, ids, amounts);
        for (uint256 i = 0; i < ids.length; ++i) {
            _totalSupply[ids[i]] -= amounts[i];
        }
    }
}

/**
 * @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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

contract IBEX is ERC1155Supply, Ownable  {
    bool public saleIsActive = true;
    bool public whitelistActive = false;

    string public name = "IBEX | Protocol";
    string public symbol = "IBEX";

    // mapping token prices for token ids
    mapping (uint256 => uint) public priceMap;

    address private withdrawAddress = 0xc135A4ccddDB08a280d502e75767c8Ca32Ff838d;

    // mapping for max token supply for token ids
    mapping (uint256 => uint256) public maxSupply;
    
    mapping (address => bool) public whitelisted;
    uint256[] reserveIds = [2,3,4,5,6,7,8,9];
    uint256[] reserveAmounts = [1,1,5,4,4,3,3,4];

    constructor(string memory uri) ERC1155(uri) {
        priceMap[0] = 1 ether;
        priceMap[1] = 1 ether;
        priceMap[2] = 0.5 ether;
        priceMap[3] = 0.5 ether;
        priceMap[4] = 0.25 ether;
        priceMap[5] = 0.25 ether;
        priceMap[6] = 0.15 ether;
        priceMap[7] = 0.15 ether;
        priceMap[8] = 0.15 ether;
        priceMap[9] = 0.15 ether;

        maxSupply[0] = 5;
        maxSupply[1] = 5;
        maxSupply[2] = 15;
        maxSupply[3] = 15;
        maxSupply[4] = 30;
        maxSupply[5] = 30;
        maxSupply[6] = 100;
        maxSupply[7] = 100;
        maxSupply[8] = 100;
        maxSupply[9] = 100;

       // mintReserve();
       _mintBatch(withdrawAddress,reserveIds, reserveAmounts,"");
        
    }

    function setSaleState(bool newState) public onlyOwner {
        saleIsActive = newState;
    }
    
    function setWhitelistState(bool newState) public onlyOwner {
        whitelistActive = newState;
    }

    function mint(uint numberOfTokens, uint256 TOKEN_ID) public payable {
        require(totalSupply(TOKEN_ID) + numberOfTokens <= maxSupply[TOKEN_ID], "Purchase would exceed max supply of tokens");
        require(priceMap[TOKEN_ID] * numberOfTokens <= msg.value, "Ether value sent is not correct");
        require(TOKEN_ID < 10, "TOKEN_ID must be less than 10");
        //if whitelist is active users must be in whitelist else check for saleIsActive
        if(whitelistActive){
            require(whitelisted[msg.sender], "Address not whitelisted wait for public mint");
        } else {
            require(saleIsActive, "Sale must be active to mint Tokens");
        }

        if(TOKEN_ID == 0){
            require(balanceOf(msg.sender,TOKEN_ID)+numberOfTokens == 1, "You are only allowed one mint in tier 1");
        }

        if(TOKEN_ID == 1){
            require(balanceOf(msg.sender,TOKEN_ID)+numberOfTokens == 1, "You are only allowed one mint in tier 1");
        }

        if(TOKEN_ID == 2) {
            require(balanceOf(msg.sender,TOKEN_ID)+numberOfTokens <= 3, "You are only allowed three mints in tier 2");
        }

        if(TOKEN_ID == 3){
            require(balanceOf(msg.sender,TOKEN_ID)+numberOfTokens <= 3, "You are only allowed three mints in tier 2");
        }

        _mint(msg.sender, TOKEN_ID, numberOfTokens, "");
    }

    function getMaxSupply(uint256 id) public view returns (uint256) {
        return maxSupply[id];
    }
    
    function addToWhitelist(address[] memory accounts) public onlyOwner {
        for(uint i=0; i<accounts.length; i++){
            require(!whitelisted[accounts[i]], "Already added to list");
            whitelisted[accounts[i]] = true;
        }
    }
    
    function removeFromWhitelist(address[] memory accounts) public onlyOwner {
        for(uint i=0; i<accounts.length; i++){
            require(whitelisted[accounts[i]], "Account not whitelisted");
            whitelisted[accounts[i]] = false;
        }
    }

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

    function withdraw() external {
        if(msg.sender != owner())
            require(msg.sender == withdrawAddress, "only the withdraw address can call this function");
        uint balance = address(this).balance;
        payable(withdrawAddress).transfer(balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"uri","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":"accounts","type":"address[]"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"uint256","name":"TOKEN_ID","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"priceMap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"removeFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setNewUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setWhitelistState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"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":"whitelistActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6004805461ffff60a01b1916600160a01b17905560c0604052600f60808190526e12509156081f08141c9bdd1bd8dbdb608a1b60a090815262000046916005919062000a3c565b5060408051808201909152600480825263092848ab60e31b6020909201918252620000749160069162000a3c565b50600880546001600160a01b03191673c135a4ccdddb08a280d502e75767c8ca32ff838d178155604080516101008101825260028152600360208201526004918101919091526005606082015260066080820152600760a082015260c08101829052600960e0820152620000ec91600b919062000acb565b5060408051610100810182526001808252602082015260059181019190915260046060820181905260808201819052600360a0830181905260c083015260e08201526200013e90600c90600862000acb565b503480156200014c57600080fd5b50604051620034af380380620034af8339810160408190526200016f9162000b58565b806200017b816200055c565b50620001873362000575565b670de0b6b3a76400007f6d5257204ebe7d88fd91ae87941cb2dd9d8062b64ae5a2bd2d28ec40b9fbf6df8190557fb39221ace053465ec3453ce2b36430bd138b997ecea25c1043da0c366812b828556706f05b59d3b200007fb7c774451310d1be4108bc180d1b52823cb0ee0274a6c0081bcaf94f115fb96d8190557f3be6fd20d5acfde5b873b48692cd31f4d3c7e8ee8a813af4696af8859e5ca6c6556703782dace9d900007fb805995a7ec585a251200611a61d179cfd7fb105e1ab17dc415a7336783786f78190557fbcdda56b5d08466ec462cbbe0adfa57cb0a15fcc8940ef68f702f21b787bc93555670214e8348c4f00007f55c5b153ab560fcde54a63b18c7f53d75501706907cef8767fbded79ab9997c78190557fb7c49cceb9f85950584035457a41ebbd8cf93b9b612733ad25aa9731ac43aad68190557f4b1bf46c9f1bd48ff8274d40bad76a6615cb6c59a637d451a3994194b2db86be8190557ff1f3e9c34634a546b3672c043f73844d83d55591bbe61b8e7e3a72bca1a812bf556009602081815260057fec8156718a8372b1db44bb411437d0870f3e3790d4a08526d024ce1b0b668f6b8190557f92e85d02570a8092d09a6e3a57665bc3815a2699a4074001bf1ccabf660f5a3655600f7f6cde3cea4b3a3fb2488b2808bae7556f4a405e50f65e1794383bc026131b13c38190557fc575c31fea594a6eb97c8e9d3f9caee4c16218c6ef37e923234c0fe9014a61e755601e7f8dc18c4ccfd75f5c815b63770fa542fd953e8fef7e0e44bbdd4913470ce7e9cb8190557f74b05292d1d4b2b48b65261b07099d24244bcb069f138d9a6bfdcf776becac4c5560647fbb6daa0c283751197dfdc76590680f9005e97d6f23870deb1164ab60b28b9f5f8190557fae6299332bcd708cd60e3a8defa55de28078a50a4cf2b3de3a546253240ff9e18190557fc7694af312c4f286114180fd0ba6a52461fcee8a381636770b19a343af92538a8190556000929092527f87e8a52529e8ece4ef759037313542a6429ff494a9fab9027fb79db90124eba691909155600854600b8054604080518286028101860190915281815262000555946001600160a01b039094169390929190830182828015620004e157602002820191906000526020600020905b815481526020019060010190808311620004cc575b5050505050600c8054806020026020016040519081016040528092919081815260200182805480156200053457602002820191906000526020600020905b8154815260200190600101908083116200051f575b505050505060405180602001604052806000815250620005c760201b60201c565b5062000ed6565b80516200057190600290602084019062000a3c565b5050565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620005e0848484846200066a60201b620012c11760201c565b60005b8351811015620006635782818151811062000602576200060262000dfe565b60200260200101516003600086848151811062000623576200062362000dfe565b6020026020010151815260200190815260200160002060008282546200064a919062000d10565b909155506200065b90508162000dca565b9050620005e3565b5050505050565b6001600160a01b038416620006d05760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084015b60405180910390fd5b8151835114620007345760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401620006c7565b3360005b8451811015620007dc5783818151811062000757576200075762000dfe565b602002602001015160008087848151811062000777576200077762000dfe565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b031681526020019081526020016000206000828254620007c1919062000d10565b90915550819050620007d38162000dca565b91505062000738565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516200082f92919062000cc9565b60405180910390a4620006638160008787878762000850565b505050505050565b6200086f846001600160a01b031662000a3660201b6200140c1760201c565b15620008485760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190620008ab908990899088908890889060040162000c65565b602060405180830381600087803b158015620008c657600080fd5b505af1925050508015620008f9575060408051601f3d908101601f19168201909252620008f69181019062000b25565b60015b620009ba576200090862000e2a565b806308c379a014156200094957506200092062000e47565b806200092d57506200094b565b8060405162461bcd60e51b8152600401620006c7919062000cfb565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e7465720000000000000000000000006064820152608401620006c7565b6001600160e01b0319811663bc197c8160e01b1462000a2d5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a656374656044820152676420746f6b656e7360c01b6064820152608401620006c7565b50505050505050565b3b151590565b82805462000a4a9062000d5e565b90600052602060002090601f01602090048101928262000a6e576000855562000ab9565b82601f1062000a8957805160ff191683800117855562000ab9565b8280016001018555821562000ab9579182015b8281111562000ab957825182559160200191906001019062000a9c565b5062000ac792915062000b0e565b5090565b82805482825590600052602060002090810192821562000ab9579160200282015b8281111562000ab9578251829060ff1690559160200191906001019062000aec565b5b8082111562000ac7576000815560010162000b0f565b60006020828403121562000b3857600080fd5b81516001600160e01b03198116811462000b5157600080fd5b9392505050565b60006020828403121562000b6b57600080fd5b81516001600160401b038082111562000b8357600080fd5b818401915084601f83011262000b9857600080fd5b81518181111562000bad5762000bad62000e14565b604051915062000bc8601f8201601f19166020018362000d9b565b80825285602082850101111562000bde57600080fd5b62000bf181602084016020860162000d2b565b50949350505050565b600081518084526020808501945080840160005b8381101562000c2c5781518752958201959082019060010162000c0e565b509495945050505050565b6000815180845262000c5181602086016020860162000d2b565b601f01601f19169290920160200192915050565b6001600160a01b0386811682528516602082015260a06040820181905260009062000c939083018662000bfa565b828103606084015262000ca7818662000bfa565b9050828103608084015262000cbd818562000c37565b98975050505050505050565b60408152600062000cde604083018562000bfa565b828103602084015262000cf2818562000bfa565b95945050505050565b60208152600062000b51602083018462000c37565b6000821982111562000d265762000d2662000de8565b500190565b60005b8381101562000d4857818101518382015260200162000d2e565b8381111562000d58576000848401525b50505050565b600181811c9082168062000d7357607f821691505b6020821081141562000d9557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f191681016001600160401b038111828210171562000dc35762000dc362000e14565b6040525050565b600060001982141562000de15762000de162000de8565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d111562000e445760046000803e5060005160e01c5b90565b600060443d101562000e565790565b6040516003193d81016004833e81513d6001600160401b03808311602484018310171562000e8657505050505090565b828501915081518181111562000e9f5750505050505090565b843d870101602082850101111562000eba5750505050505090565b62000ecb6020828601018762000d9b565b509095945050505050565b6125c98062000ee66000396000f3fe6080604052600436106101b65760003560e01c80637f649783116100ec578063c4e370951161008a578063e985e9c511610064578063e985e9c51461051d578063eb8d244414610566578063f242432a14610587578063f2fde38b146105a757600080fd5b8063c4e37095146104ad578063d936547e146104cd578063e8865297146104fd57600080fd5b806395d89b41116100c657806395d89b411461041e578063a22cb46514610433578063b25c726014610453578063bd85b0391461048057600080fd5b80637f649783146103a9578063869f7594146103c95780638da5cb5b146103f657600080fd5b80632eb2c2d6116101595780634f558e79116101335780634f558e7914610318578063548db174146103475780635e495d7414610367578063715018a61461039457600080fd5b80632eb2c2d6146102b65780633ccfd60b146102d65780634e1273f4146102eb57600080fd5b806306fdde031161019557806306fdde031461023f5780630e89341c146102615780631b2ef1ca146102815780631df0bb8a1461029657600080fd5b8062fdd58e146101bb57806301ffc9a7146101ee57806302ce58131461021e575b600080fd5b3480156101c757600080fd5b506101db6101d6366004611e6e565b6105c7565b6040519081526020015b60405180910390f35b3480156101fa57600080fd5b5061020e610209366004611f54565b61065e565b60405190151581526020016101e5565b34801561022a57600080fd5b5060045461020e90600160a81b900460ff1681565b34801561024b57600080fd5b506102546106b0565b6040516101e5919061217e565b34801561026d57600080fd5b5061025461027c366004611fd7565b61073e565b61029461028f366004611ff0565b6107d2565b005b3480156102a257600080fd5b506102946102b1366004611f39565b610b13565b3480156102c257600080fd5b506102946102d1366004611d35565b610b5b565b3480156102e257600080fd5b50610294610bf2565b3480156102f757600080fd5b5061030b610306366004611ed5565b610cb1565b6040516101e5919061213d565b34801561032457600080fd5b5061020e610333366004611fd7565b600090815260036020526040902054151590565b34801561035357600080fd5b50610294610362366004611e98565b610ddb565b34801561037357600080fd5b506101db610382366004611fd7565b60009081526009602052604090205490565b3480156103a057600080fd5b50610294610ef6565b3480156103b557600080fd5b506102946103c4366004611e98565b610f2c565b3480156103d557600080fd5b506101db6103e4366004611fd7565b60096020526000908152604090205481565b34801561040257600080fd5b506004546040516001600160a01b0390911681526020016101e5565b34801561042a57600080fd5b50610254611040565b34801561043f57600080fd5b5061029461044e366004611e44565b61104d565b34801561045f57600080fd5b506101db61046e366004611fd7565b60076020526000908152604090205481565b34801561048c57600080fd5b506101db61049b366004611fd7565b60009081526003602052604090205490565b3480156104b957600080fd5b506102946104c8366004611f39565b611124565b3480156104d957600080fd5b5061020e6104e8366004611ce7565b600a6020526000908152604090205460ff1681565b34801561050957600080fd5b50610294610518366004611f8e565b61116c565b34801561052957600080fd5b5061020e610538366004611d02565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561057257600080fd5b5060045461020e90600160a01b900460ff1681565b34801561059357600080fd5b506102946105a2366004611ddf565b6111a2565b3480156105b357600080fd5b506102946105c2366004611ce7565b611229565b60006001600160a01b0383166106385760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061068f57506001600160e01b031982166303a24d0760e21b145b806106aa57506301ffc9a760e01b6001600160e01b03198316145b92915050565b600580546106bd90612412565b80601f01602080910402602001604051908101604052809291908181526020018280546106e990612412565b80156107365780601f1061070b57610100808354040283529160200191610736565b820191906000526020600020905b81548152906001019060200180831161071957829003601f168201915b505050505081565b60606002805461074d90612412565b80601f016020809104026020016040519081016040528092919081815260200182805461077990612412565b80156107c65780601f1061079b576101008083540402835291602001916107c6565b820191906000526020600020905b8154815290600101906020018083116107a957829003601f168201915b50505050509050919050565b6000818152600960209081526040808320546003909252909120546107f89084906123db565b11156108595760405162461bcd60e51b815260206004820152602a60248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015269206f6620746f6b656e7360b01b606482015260840161062f565b60008181526007602052604090205434906108759084906123f3565b11156108c35760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161062f565b600a81106109135760405162461bcd60e51b815260206004820152601d60248201527f544f4b454e5f4944206d757374206265206c657373207468616e203130000000604482015260640161062f565b600454600160a81b900460ff161561099e57336000908152600a602052604090205460ff166109995760405162461bcd60e51b815260206004820152602c60248201527f41646472657373206e6f742077686974656c6973746564207761697420666f7260448201526b081c1d589b1a58c81b5a5b9d60a21b606482015260840161062f565b610a02565b600454600160a01b900460ff16610a025760405162461bcd60e51b815260206004820152602260248201527f53616c65206d7573742062652061637469766520746f206d696e7420546f6b656044820152616e7360f01b606482015260840161062f565b80610a3b5781610a1233836105c7565b610a1c91906123db565b600114610a3b5760405162461bcd60e51b815260040161062f906121d9565b8060011415610a785781610a4f33836105c7565b610a5991906123db565b600114610a785760405162461bcd60e51b815260040161062f906121d9565b8060021415610ab657600382610a8e33846105c7565b610a9891906123db565b1115610ab65760405162461bcd60e51b815260040161062f90612265565b8060031415610af457600382610acc33846105c7565b610ad691906123db565b1115610af45760405162461bcd60e51b815260040161062f90612265565b610b0f33828460405180602001604052806000815250611412565b5050565b6004546001600160a01b03163314610b3d5760405162461bcd60e51b815260040161062f906122f9565b60048054911515600160a81b0260ff60a81b19909216919091179055565b6001600160a01b038516331480610b775750610b778533610538565b610bde5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161062f565b610beb8585858585611447565b5050505050565b6004546001600160a01b03163314610c77576008546001600160a01b03163314610c775760405162461bcd60e51b815260206004820152603060248201527f6f6e6c792074686520776974686472617720616464726573732063616e20636160448201526f3636103a3434b990333ab731ba34b7b760811b606482015260840161062f565b60085460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050158015610b0f573d6000803e3d6000fd5b60608151835114610d165760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b606482015260840161062f565b6000835167ffffffffffffffff811115610d3257610d326124c1565b604051908082528060200260200182016040528015610d5b578160200160208202803683370190505b50905060005b8451811015610dd357610da6858281518110610d7f57610d7f6124ab565b6020026020010151858381518110610d9957610d996124ab565b60200260200101516105c7565b828281518110610db857610db86124ab565b6020908102919091010152610dcc8161247a565b9050610d61565b509392505050565b6004546001600160a01b03163314610e055760405162461bcd60e51b815260040161062f906122f9565b60005b8151811015610b0f57600a6000838381518110610e2757610e276124ab565b6020908102919091018101516001600160a01b031682528101919091526040016000205460ff16610e9a5760405162461bcd60e51b815260206004820152601760248201527f4163636f756e74206e6f742077686974656c6973746564000000000000000000604482015260640161062f565b6000600a6000848481518110610eb257610eb26124ab565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610eee8161247a565b915050610e08565b6004546001600160a01b03163314610f205760405162461bcd60e51b815260040161062f906122f9565b610f2a60006115e3565b565b6004546001600160a01b03163314610f565760405162461bcd60e51b815260040161062f906122f9565b60005b8151811015610b0f57600a6000838381518110610f7857610f786124ab565b6020908102919091018101516001600160a01b031682528101919091526040016000205460ff1615610fe45760405162461bcd60e51b8152602060048201526015602482015274105b1c9958591e481859191959081d1bc81b1a5cdd605a1b604482015260640161062f565b6001600a6000848481518110610ffc57610ffc6124ab565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806110388161247a565b915050610f59565b600680546106bd90612412565b336001600160a01b03831614156110b85760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b606482015260840161062f565b3360008181526001602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6004546001600160a01b0316331461114e5760405162461bcd60e51b815260040161062f906122f9565b60048054911515600160a01b0260ff60a01b19909216919091179055565b6004546001600160a01b031633146111965760405162461bcd60e51b815260040161062f906122f9565b61119f81611635565b50565b6001600160a01b0385163314806111be57506111be8533610538565b61121c5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b606482015260840161062f565b610beb8585858585611648565b6004546001600160a01b031633146112535760405162461bcd60e51b815260040161062f906122f9565b6001600160a01b0381166112b85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161062f565b61119f816115e3565b6001600160a01b0384166112e75760405162461bcd60e51b815260040161062f90612376565b81518351146113085760405162461bcd60e51b815260040161062f9061232e565b3360005b84518110156113a457838181518110611327576113276124ab565b6020026020010151600080878481518110611344576113446124ab565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b03168152602001908152602001600020600082825461138c91906123db565b9091555081905061139c8161247a565b91505061130c565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516113f5929190612150565b60405180910390a4610beb8160008787878761176e565b3b151590565b61141e848484846118d9565b6000838152600360205260408120805484929061143c9084906123db565b909155505050505050565b81518351146114685760405162461bcd60e51b815260040161062f9061232e565b6001600160a01b03841661148e5760405162461bcd60e51b815260040161062f90612220565b3360005b84518110156115755760008582815181106114af576114af6124ab565b6020026020010151905060008583815181106114cd576114cd6124ab565b602090810291909101810151600084815280835260408082206001600160a01b038e16835290935291909120549091508181101561151d5760405162461bcd60e51b815260040161062f906122af565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b1682528120805484929061155a9084906123db565b925050819055505050508061156e9061247a565b9050611492565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516115c5929190612150565b60405180910390a46115db81878787878761176e565b505050505050565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8051610b0f906002906020840190611ab5565b6001600160a01b03841661166e5760405162461bcd60e51b815260040161062f90612220565b3361168781878761167e886119a0565b610beb886119a0565b6000848152602081815260408083206001600160a01b038a168452909152902054838110156116c85760405162461bcd60e51b815260040161062f906122af565b6000858152602081815260408083206001600160a01b038b81168552925280832087850390559088168252812080548692906117059084906123db565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46117658288888888886119eb565b50505050505050565b6001600160a01b0384163b156115db5760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906117b2908990899088908890889060040161209a565b602060405180830381600087803b1580156117cc57600080fd5b505af19250505080156117fc575060408051601f3d908101601f191682019092526117f991810190611f71565b60015b6118a9576118086124d7565b806308c379a01415611842575061181d6124f3565b806118285750611844565b8060405162461bcd60e51b815260040161062f919061217e565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606482015260840161062f565b6001600160e01b0319811663bc197c8160e01b146117655760405162461bcd60e51b815260040161062f90612191565b6001600160a01b0384166118ff5760405162461bcd60e51b815260040161062f90612376565b336119108160008761167e886119a0565b6000848152602081815260408083206001600160a01b0389168452909152812080548592906119409084906123db565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610beb816000878787876119eb565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106119da576119da6124ab565b602090810291909101015292915050565b6001600160a01b0384163b156115db5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190611a2f90899089908890889088906004016120f8565b602060405180830381600087803b158015611a4957600080fd5b505af1925050508015611a79575060408051601f3d908101601f19168201909252611a7691810190611f71565b60015b611a85576118086124d7565b6001600160e01b0319811663f23a6e6160e01b146117655760405162461bcd60e51b815260040161062f90612191565b828054611ac190612412565b90600052602060002090601f016020900481019282611ae35760008555611b29565b82601f10611afc57805160ff1916838001178555611b29565b82800160010185558215611b29579182015b82811115611b29578251825591602001919060010190611b0e565b50611b35929150611b39565b5090565b5b80821115611b355760008155600101611b3a565b600067ffffffffffffffff831115611b6857611b686124c1565b604051611b7f601f8501601f19166020018261244d565b809150838152848484011115611b9457600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b0381168114611bc357600080fd5b919050565b600082601f830112611bd957600080fd5b81356020611be6826123b7565b604051611bf3828261244d565b8381528281019150858301600585901b87018401881015611c1357600080fd5b60005b85811015611c3957611c2782611bac565b84529284019290840190600101611c16565b5090979650505050505050565b600082601f830112611c5757600080fd5b81356020611c64826123b7565b604051611c71828261244d565b8381528281019150858301600585901b87018401881015611c9157600080fd5b60005b85811015611c3957813584529284019290840190600101611c94565b80358015158114611bc357600080fd5b600082601f830112611cd157600080fd5b611ce083833560208501611b4e565b9392505050565b600060208284031215611cf957600080fd5b611ce082611bac565b60008060408385031215611d1557600080fd5b611d1e83611bac565b9150611d2c60208401611bac565b90509250929050565b600080600080600060a08688031215611d4d57600080fd5b611d5686611bac565b9450611d6460208701611bac565b9350604086013567ffffffffffffffff80821115611d8157600080fd5b611d8d89838a01611c46565b94506060880135915080821115611da357600080fd5b611daf89838a01611c46565b93506080880135915080821115611dc557600080fd5b50611dd288828901611cc0565b9150509295509295909350565b600080600080600060a08688031215611df757600080fd5b611e0086611bac565b9450611e0e60208701611bac565b93506040860135925060608601359150608086013567ffffffffffffffff811115611e3857600080fd5b611dd288828901611cc0565b60008060408385031215611e5757600080fd5b611e6083611bac565b9150611d2c60208401611cb0565b60008060408385031215611e8157600080fd5b611e8a83611bac565b946020939093013593505050565b600060208284031215611eaa57600080fd5b813567ffffffffffffffff811115611ec157600080fd5b611ecd84828501611bc8565b949350505050565b60008060408385031215611ee857600080fd5b823567ffffffffffffffff80821115611f0057600080fd5b611f0c86838701611bc8565b93506020850135915080821115611f2257600080fd5b50611f2f85828601611c46565b9150509250929050565b600060208284031215611f4b57600080fd5b611ce082611cb0565b600060208284031215611f6657600080fd5b8135611ce08161257d565b600060208284031215611f8357600080fd5b8151611ce08161257d565b600060208284031215611fa057600080fd5b813567ffffffffffffffff811115611fb757600080fd5b8201601f81018413611fc857600080fd5b611ecd84823560208401611b4e565b600060208284031215611fe957600080fd5b5035919050565b6000806040838503121561200357600080fd5b50508035926020909101359150565b600081518084526020808501945080840160005b8381101561204257815187529582019590820190600101612026565b509495945050505050565b6000815180845260005b8181101561207357602081850181015186830182015201612057565b81811115612085576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0386811682528516602082015260a0604082018190526000906120c690830186612012565b82810360608401526120d88186612012565b905082810360808401526120ec818561204d565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a0608082018190526000906121329083018461204d565b979650505050505050565b602081526000611ce06020830184612012565b6040815260006121636040830185612012565b82810360208401526121758185612012565b95945050505050565b602081526000611ce0602083018461204d565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526027908201527f596f7520617265206f6e6c7920616c6c6f776564206f6e65206d696e7420696e6040820152662074696572203160c81b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f596f7520617265206f6e6c7920616c6c6f776564207468726565206d696e74736040820152691034b7103a34b2b9101960b11b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b600067ffffffffffffffff8211156123d1576123d16124c1565b5060051b60200190565b600082198211156123ee576123ee612495565b500190565b600081600019048311821515161561240d5761240d612495565b500290565b600181811c9082168061242657607f821691505b6020821081141561244757634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff81118282101715612473576124736124c1565b6040525050565b600060001982141561248e5761248e612495565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d11156124f05760046000803e5060005160e01c5b90565b600060443d10156125015790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561253157505050505090565b82850191508151818111156125495750505050505090565b843d87010160208285010111156125635750505050505090565b6125726020828601018761244d565b509095945050505050565b6001600160e01b03198116811461119f57600080fdfea2646970667358221220224d50f643d1064a89506385bc25897c3e4f7147f9d27a79800c4a91e1616c2464736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005768747470733a2f2f707572656172742e6d7970696e6174612e636c6f75642f697066732f516d5a6a566f7878613956427275433674694c72627a6a707877377666534e366579523552766663586e783334632f7b69647d000000000000000000

Deployed Bytecode

0x6080604052600436106101b65760003560e01c80637f649783116100ec578063c4e370951161008a578063e985e9c511610064578063e985e9c51461051d578063eb8d244414610566578063f242432a14610587578063f2fde38b146105a757600080fd5b8063c4e37095146104ad578063d936547e146104cd578063e8865297146104fd57600080fd5b806395d89b41116100c657806395d89b411461041e578063a22cb46514610433578063b25c726014610453578063bd85b0391461048057600080fd5b80637f649783146103a9578063869f7594146103c95780638da5cb5b146103f657600080fd5b80632eb2c2d6116101595780634f558e79116101335780634f558e7914610318578063548db174146103475780635e495d7414610367578063715018a61461039457600080fd5b80632eb2c2d6146102b65780633ccfd60b146102d65780634e1273f4146102eb57600080fd5b806306fdde031161019557806306fdde031461023f5780630e89341c146102615780631b2ef1ca146102815780631df0bb8a1461029657600080fd5b8062fdd58e146101bb57806301ffc9a7146101ee57806302ce58131461021e575b600080fd5b3480156101c757600080fd5b506101db6101d6366004611e6e565b6105c7565b6040519081526020015b60405180910390f35b3480156101fa57600080fd5b5061020e610209366004611f54565b61065e565b60405190151581526020016101e5565b34801561022a57600080fd5b5060045461020e90600160a81b900460ff1681565b34801561024b57600080fd5b506102546106b0565b6040516101e5919061217e565b34801561026d57600080fd5b5061025461027c366004611fd7565b61073e565b61029461028f366004611ff0565b6107d2565b005b3480156102a257600080fd5b506102946102b1366004611f39565b610b13565b3480156102c257600080fd5b506102946102d1366004611d35565b610b5b565b3480156102e257600080fd5b50610294610bf2565b3480156102f757600080fd5b5061030b610306366004611ed5565b610cb1565b6040516101e5919061213d565b34801561032457600080fd5b5061020e610333366004611fd7565b600090815260036020526040902054151590565b34801561035357600080fd5b50610294610362366004611e98565b610ddb565b34801561037357600080fd5b506101db610382366004611fd7565b60009081526009602052604090205490565b3480156103a057600080fd5b50610294610ef6565b3480156103b557600080fd5b506102946103c4366004611e98565b610f2c565b3480156103d557600080fd5b506101db6103e4366004611fd7565b60096020526000908152604090205481565b34801561040257600080fd5b506004546040516001600160a01b0390911681526020016101e5565b34801561042a57600080fd5b50610254611040565b34801561043f57600080fd5b5061029461044e366004611e44565b61104d565b34801561045f57600080fd5b506101db61046e366004611fd7565b60076020526000908152604090205481565b34801561048c57600080fd5b506101db61049b366004611fd7565b60009081526003602052604090205490565b3480156104b957600080fd5b506102946104c8366004611f39565b611124565b3480156104d957600080fd5b5061020e6104e8366004611ce7565b600a6020526000908152604090205460ff1681565b34801561050957600080fd5b50610294610518366004611f8e565b61116c565b34801561052957600080fd5b5061020e610538366004611d02565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561057257600080fd5b5060045461020e90600160a01b900460ff1681565b34801561059357600080fd5b506102946105a2366004611ddf565b6111a2565b3480156105b357600080fd5b506102946105c2366004611ce7565b611229565b60006001600160a01b0383166106385760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061068f57506001600160e01b031982166303a24d0760e21b145b806106aa57506301ffc9a760e01b6001600160e01b03198316145b92915050565b600580546106bd90612412565b80601f01602080910402602001604051908101604052809291908181526020018280546106e990612412565b80156107365780601f1061070b57610100808354040283529160200191610736565b820191906000526020600020905b81548152906001019060200180831161071957829003601f168201915b505050505081565b60606002805461074d90612412565b80601f016020809104026020016040519081016040528092919081815260200182805461077990612412565b80156107c65780601f1061079b576101008083540402835291602001916107c6565b820191906000526020600020905b8154815290600101906020018083116107a957829003601f168201915b50505050509050919050565b6000818152600960209081526040808320546003909252909120546107f89084906123db565b11156108595760405162461bcd60e51b815260206004820152602a60248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015269206f6620746f6b656e7360b01b606482015260840161062f565b60008181526007602052604090205434906108759084906123f3565b11156108c35760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161062f565b600a81106109135760405162461bcd60e51b815260206004820152601d60248201527f544f4b454e5f4944206d757374206265206c657373207468616e203130000000604482015260640161062f565b600454600160a81b900460ff161561099e57336000908152600a602052604090205460ff166109995760405162461bcd60e51b815260206004820152602c60248201527f41646472657373206e6f742077686974656c6973746564207761697420666f7260448201526b081c1d589b1a58c81b5a5b9d60a21b606482015260840161062f565b610a02565b600454600160a01b900460ff16610a025760405162461bcd60e51b815260206004820152602260248201527f53616c65206d7573742062652061637469766520746f206d696e7420546f6b656044820152616e7360f01b606482015260840161062f565b80610a3b5781610a1233836105c7565b610a1c91906123db565b600114610a3b5760405162461bcd60e51b815260040161062f906121d9565b8060011415610a785781610a4f33836105c7565b610a5991906123db565b600114610a785760405162461bcd60e51b815260040161062f906121d9565b8060021415610ab657600382610a8e33846105c7565b610a9891906123db565b1115610ab65760405162461bcd60e51b815260040161062f90612265565b8060031415610af457600382610acc33846105c7565b610ad691906123db565b1115610af45760405162461bcd60e51b815260040161062f90612265565b610b0f33828460405180602001604052806000815250611412565b5050565b6004546001600160a01b03163314610b3d5760405162461bcd60e51b815260040161062f906122f9565b60048054911515600160a81b0260ff60a81b19909216919091179055565b6001600160a01b038516331480610b775750610b778533610538565b610bde5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161062f565b610beb8585858585611447565b5050505050565b6004546001600160a01b03163314610c77576008546001600160a01b03163314610c775760405162461bcd60e51b815260206004820152603060248201527f6f6e6c792074686520776974686472617720616464726573732063616e20636160448201526f3636103a3434b990333ab731ba34b7b760811b606482015260840161062f565b60085460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050158015610b0f573d6000803e3d6000fd5b60608151835114610d165760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b606482015260840161062f565b6000835167ffffffffffffffff811115610d3257610d326124c1565b604051908082528060200260200182016040528015610d5b578160200160208202803683370190505b50905060005b8451811015610dd357610da6858281518110610d7f57610d7f6124ab565b6020026020010151858381518110610d9957610d996124ab565b60200260200101516105c7565b828281518110610db857610db86124ab565b6020908102919091010152610dcc8161247a565b9050610d61565b509392505050565b6004546001600160a01b03163314610e055760405162461bcd60e51b815260040161062f906122f9565b60005b8151811015610b0f57600a6000838381518110610e2757610e276124ab565b6020908102919091018101516001600160a01b031682528101919091526040016000205460ff16610e9a5760405162461bcd60e51b815260206004820152601760248201527f4163636f756e74206e6f742077686974656c6973746564000000000000000000604482015260640161062f565b6000600a6000848481518110610eb257610eb26124ab565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610eee8161247a565b915050610e08565b6004546001600160a01b03163314610f205760405162461bcd60e51b815260040161062f906122f9565b610f2a60006115e3565b565b6004546001600160a01b03163314610f565760405162461bcd60e51b815260040161062f906122f9565b60005b8151811015610b0f57600a6000838381518110610f7857610f786124ab565b6020908102919091018101516001600160a01b031682528101919091526040016000205460ff1615610fe45760405162461bcd60e51b8152602060048201526015602482015274105b1c9958591e481859191959081d1bc81b1a5cdd605a1b604482015260640161062f565b6001600a6000848481518110610ffc57610ffc6124ab565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806110388161247a565b915050610f59565b600680546106bd90612412565b336001600160a01b03831614156110b85760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b606482015260840161062f565b3360008181526001602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6004546001600160a01b0316331461114e5760405162461bcd60e51b815260040161062f906122f9565b60048054911515600160a01b0260ff60a01b19909216919091179055565b6004546001600160a01b031633146111965760405162461bcd60e51b815260040161062f906122f9565b61119f81611635565b50565b6001600160a01b0385163314806111be57506111be8533610538565b61121c5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b606482015260840161062f565b610beb8585858585611648565b6004546001600160a01b031633146112535760405162461bcd60e51b815260040161062f906122f9565b6001600160a01b0381166112b85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161062f565b61119f816115e3565b6001600160a01b0384166112e75760405162461bcd60e51b815260040161062f90612376565b81518351146113085760405162461bcd60e51b815260040161062f9061232e565b3360005b84518110156113a457838181518110611327576113276124ab565b6020026020010151600080878481518110611344576113446124ab565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b03168152602001908152602001600020600082825461138c91906123db565b9091555081905061139c8161247a565b91505061130c565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516113f5929190612150565b60405180910390a4610beb8160008787878761176e565b3b151590565b61141e848484846118d9565b6000838152600360205260408120805484929061143c9084906123db565b909155505050505050565b81518351146114685760405162461bcd60e51b815260040161062f9061232e565b6001600160a01b03841661148e5760405162461bcd60e51b815260040161062f90612220565b3360005b84518110156115755760008582815181106114af576114af6124ab565b6020026020010151905060008583815181106114cd576114cd6124ab565b602090810291909101810151600084815280835260408082206001600160a01b038e16835290935291909120549091508181101561151d5760405162461bcd60e51b815260040161062f906122af565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b1682528120805484929061155a9084906123db565b925050819055505050508061156e9061247a565b9050611492565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516115c5929190612150565b60405180910390a46115db81878787878761176e565b505050505050565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8051610b0f906002906020840190611ab5565b6001600160a01b03841661166e5760405162461bcd60e51b815260040161062f90612220565b3361168781878761167e886119a0565b610beb886119a0565b6000848152602081815260408083206001600160a01b038a168452909152902054838110156116c85760405162461bcd60e51b815260040161062f906122af565b6000858152602081815260408083206001600160a01b038b81168552925280832087850390559088168252812080548692906117059084906123db565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46117658288888888886119eb565b50505050505050565b6001600160a01b0384163b156115db5760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906117b2908990899088908890889060040161209a565b602060405180830381600087803b1580156117cc57600080fd5b505af19250505080156117fc575060408051601f3d908101601f191682019092526117f991810190611f71565b60015b6118a9576118086124d7565b806308c379a01415611842575061181d6124f3565b806118285750611844565b8060405162461bcd60e51b815260040161062f919061217e565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606482015260840161062f565b6001600160e01b0319811663bc197c8160e01b146117655760405162461bcd60e51b815260040161062f90612191565b6001600160a01b0384166118ff5760405162461bcd60e51b815260040161062f90612376565b336119108160008761167e886119a0565b6000848152602081815260408083206001600160a01b0389168452909152812080548592906119409084906123db565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610beb816000878787876119eb565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106119da576119da6124ab565b602090810291909101015292915050565b6001600160a01b0384163b156115db5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190611a2f90899089908890889088906004016120f8565b602060405180830381600087803b158015611a4957600080fd5b505af1925050508015611a79575060408051601f3d908101601f19168201909252611a7691810190611f71565b60015b611a85576118086124d7565b6001600160e01b0319811663f23a6e6160e01b146117655760405162461bcd60e51b815260040161062f90612191565b828054611ac190612412565b90600052602060002090601f016020900481019282611ae35760008555611b29565b82601f10611afc57805160ff1916838001178555611b29565b82800160010185558215611b29579182015b82811115611b29578251825591602001919060010190611b0e565b50611b35929150611b39565b5090565b5b80821115611b355760008155600101611b3a565b600067ffffffffffffffff831115611b6857611b686124c1565b604051611b7f601f8501601f19166020018261244d565b809150838152848484011115611b9457600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b0381168114611bc357600080fd5b919050565b600082601f830112611bd957600080fd5b81356020611be6826123b7565b604051611bf3828261244d565b8381528281019150858301600585901b87018401881015611c1357600080fd5b60005b85811015611c3957611c2782611bac565b84529284019290840190600101611c16565b5090979650505050505050565b600082601f830112611c5757600080fd5b81356020611c64826123b7565b604051611c71828261244d565b8381528281019150858301600585901b87018401881015611c9157600080fd5b60005b85811015611c3957813584529284019290840190600101611c94565b80358015158114611bc357600080fd5b600082601f830112611cd157600080fd5b611ce083833560208501611b4e565b9392505050565b600060208284031215611cf957600080fd5b611ce082611bac565b60008060408385031215611d1557600080fd5b611d1e83611bac565b9150611d2c60208401611bac565b90509250929050565b600080600080600060a08688031215611d4d57600080fd5b611d5686611bac565b9450611d6460208701611bac565b9350604086013567ffffffffffffffff80821115611d8157600080fd5b611d8d89838a01611c46565b94506060880135915080821115611da357600080fd5b611daf89838a01611c46565b93506080880135915080821115611dc557600080fd5b50611dd288828901611cc0565b9150509295509295909350565b600080600080600060a08688031215611df757600080fd5b611e0086611bac565b9450611e0e60208701611bac565b93506040860135925060608601359150608086013567ffffffffffffffff811115611e3857600080fd5b611dd288828901611cc0565b60008060408385031215611e5757600080fd5b611e6083611bac565b9150611d2c60208401611cb0565b60008060408385031215611e8157600080fd5b611e8a83611bac565b946020939093013593505050565b600060208284031215611eaa57600080fd5b813567ffffffffffffffff811115611ec157600080fd5b611ecd84828501611bc8565b949350505050565b60008060408385031215611ee857600080fd5b823567ffffffffffffffff80821115611f0057600080fd5b611f0c86838701611bc8565b93506020850135915080821115611f2257600080fd5b50611f2f85828601611c46565b9150509250929050565b600060208284031215611f4b57600080fd5b611ce082611cb0565b600060208284031215611f6657600080fd5b8135611ce08161257d565b600060208284031215611f8357600080fd5b8151611ce08161257d565b600060208284031215611fa057600080fd5b813567ffffffffffffffff811115611fb757600080fd5b8201601f81018413611fc857600080fd5b611ecd84823560208401611b4e565b600060208284031215611fe957600080fd5b5035919050565b6000806040838503121561200357600080fd5b50508035926020909101359150565b600081518084526020808501945080840160005b8381101561204257815187529582019590820190600101612026565b509495945050505050565b6000815180845260005b8181101561207357602081850181015186830182015201612057565b81811115612085576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0386811682528516602082015260a0604082018190526000906120c690830186612012565b82810360608401526120d88186612012565b905082810360808401526120ec818561204d565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a0608082018190526000906121329083018461204d565b979650505050505050565b602081526000611ce06020830184612012565b6040815260006121636040830185612012565b82810360208401526121758185612012565b95945050505050565b602081526000611ce0602083018461204d565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526027908201527f596f7520617265206f6e6c7920616c6c6f776564206f6e65206d696e7420696e6040820152662074696572203160c81b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f596f7520617265206f6e6c7920616c6c6f776564207468726565206d696e74736040820152691034b7103a34b2b9101960b11b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b600067ffffffffffffffff8211156123d1576123d16124c1565b5060051b60200190565b600082198211156123ee576123ee612495565b500190565b600081600019048311821515161561240d5761240d612495565b500290565b600181811c9082168061242657607f821691505b6020821081141561244757634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff81118282101715612473576124736124c1565b6040525050565b600060001982141561248e5761248e612495565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d11156124f05760046000803e5060005160e01c5b90565b600060443d10156125015790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561253157505050505090565b82850191508151818111156125495750505050505090565b843d87010160208285010111156125635750505050505090565b6125726020828601018761244d565b509095945050505050565b6001600160e01b03198116811461119f57600080fdfea2646970667358221220224d50f643d1064a89506385bc25897c3e4f7147f9d27a79800c4a91e1616c2464736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005768747470733a2f2f707572656172742e6d7970696e6174612e636c6f75642f697066732f516d5a6a566f7878613956427275433674694c72627a6a707877377666534e366579523552766663586e783334632f7b69647d000000000000000000

-----Decoded View---------------
Arg [0] : uri (string): https://pureart.mypinata.cloud/ipfs/QmZjVoxxa9VBruC6tiLrbzjpxw7vfSN6eyR5RvfcXnx34c/{id}

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000057
Arg [2] : 68747470733a2f2f707572656172742e6d7970696e6174612e636c6f75642f69
Arg [3] : 7066732f516d5a6a566f7878613956427275433674694c72627a6a7078773776
Arg [4] : 66534e366579523552766663586e783334632f7b69647d000000000000000000


Deployed Bytecode Sourcemap

36916:4086:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19204:231;;;;;;;;;;-1:-1:-1;19204:231:0;;;;;:::i;:::-;;:::i;:::-;;;20597:25:1;;;20585:2;20570:18;19204:231:0;;;;;;;;18227:310;;;;;;;;;;-1:-1:-1;18227:310:0;;;;;:::i;:::-;;:::i;:::-;;;11030:14:1;;11023:22;11005:41;;10993:2;10978:18;18227:310:0;10865:187:1;37002:35:0;;;;;;;;;;-1:-1:-1;37002:35:0;;;;-1:-1:-1;;;37002:35:0;;;;;;37046:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;18948:105::-;;;;;;;;;;-1:-1:-1;18948:105:0;;;;;:::i;:::-;;:::i;38578:1388::-;;;;;;:::i;:::-;;:::i;:::-;;38466:104;;;;;;;;;;-1:-1:-1;38466:104:0;;;;;:::i;:::-;;:::i;21299:442::-;;;;;;;;;;-1:-1:-1;21299:442:0;;;;;:::i;:::-;;:::i;40722:277::-;;;;;;;;;;;;;:::i;19601:524::-;;;;;;;;;;-1:-1:-1;19601:524:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;33243:122::-;;;;;;;;;;-1:-1:-1;33243:122:0;;;;;:::i;:::-;33300:4;33121:16;;;:12;:16;;;;;;-1:-1:-1;;;33243:122:0;40356:262;;;;;;;;;;-1:-1:-1;40356:262:0;;;;;:::i;:::-;;:::i;39974:103::-;;;;;;;;;;-1:-1:-1;39974:103:0;;;;;:::i;:::-;40029:7;40056:13;;;:9;:13;;;;;;;39974:103;36287:94;;;;;;;;;;;;;:::i;40089:255::-;;;;;;;;;;-1:-1:-1;40089:255:0;;;;;:::i;:::-;;:::i;37358:45::-;;;;;;;;;;-1:-1:-1;37358:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;35636:87;;;;;;;;;;-1:-1:-1;35709:6:0;;35636:87;;-1:-1:-1;;;;;35709:6:0;;;8671:51:1;;8659:2;8644:18;35636:87:0;8525:203:1;37091:29:0;;;;;;;;;;;;;:::i;20198:311::-;;;;;;;;;;-1:-1:-1;20198:311:0;;;;;:::i;:::-;;:::i;37172:41::-;;;;;;;;;;-1:-1:-1;37172:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;33032:113;;;;;;;;;;-1:-1:-1;33032:113:0;;;;;:::i;:::-;33094:7;33121:16;;;:12;:16;;;;;;;33032:113;38358:96;;;;;;;;;;-1:-1:-1;38358:96:0;;;;;:::i;:::-;;:::i;37416:44::-;;;;;;;;;;-1:-1:-1;37416:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;40626:88;;;;;;;;;;-1:-1:-1;40626:88:0;;;;;:::i;:::-;;:::i;20581:168::-;;;;;;;;;;-1:-1:-1;20581:168:0;;;;;:::i;:::-;-1:-1:-1;;;;;20704:27:0;;;20680:4;20704:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;20581:168;36964:31;;;;;;;;;;-1:-1:-1;36964:31:0;;;;-1:-1:-1;;;36964:31:0;;;;;;20821:401;;;;;;;;;;-1:-1:-1;20821:401:0;;;;;:::i;:::-;;:::i;36536:192::-;;;;;;;;;;-1:-1:-1;36536:192:0;;;;;:::i;:::-;;:::i;19204:231::-;19290:7;-1:-1:-1;;;;;19318:21:0;;19310:77;;;;-1:-1:-1;;;19310:77:0;;12671:2:1;19310:77:0;;;12653:21:1;12710:2;12690:18;;;12683:30;12749:34;12729:18;;;12722:62;-1:-1:-1;;;12800:18:1;;;12793:41;12851:19;;19310:77:0;;;;;;;;;-1:-1:-1;19405:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;19405:22:0;;;;;;;;;;;;19204:231::o;18227:310::-;18329:4;-1:-1:-1;;;;;;18366:41:0;;-1:-1:-1;;;18366:41:0;;:110;;-1:-1:-1;;;;;;;18424:52:0;;-1:-1:-1;;;18424:52:0;18366:110;:163;;;-1:-1:-1;;;;;;;;;;1621:40:0;;;18493:36;18346:183;18227:310;-1:-1:-1;;18227:310:0:o;37046:38::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;18948:105::-;19008:13;19041:4;19034:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18948:105;;;:::o;38578:1388::-;38707:19;;;;:9;:19;;;;;;;;;33121:12;:16;;;;;;;38665:38;;38689:14;;38665:38;:::i;:::-;:61;;38657:116;;;;-1:-1:-1;;;38657:116:0;;16309:2:1;38657:116:0;;;16291:21:1;16348:2;16328:18;;;16321:30;16387:34;16367:18;;;16360:62;-1:-1:-1;;;16438:18:1;;;16431:40;16488:19;;38657:116:0;16107:406:1;38657:116:0;38792:18;;;;:8;:18;;;;;;38831:9;;38792:35;;38813:14;;38792:35;:::i;:::-;:48;;38784:92;;;;-1:-1:-1;;;38784:92:0;;13900:2:1;38784:92:0;;;13882:21:1;13939:2;13919:18;;;13912:30;13978:33;13958:18;;;13951:61;14029:18;;38784:92:0;13698:355:1;38784:92:0;38906:2;38895:8;:13;38887:55;;;;-1:-1:-1;;;38887:55:0;;12313:2:1;38887:55:0;;;12295:21:1;12352:2;12332:18;;;12325:30;12391:31;12371:18;;;12364:59;12440:18;;38887:55:0;12111:353:1;38887:55:0;39045:15;;-1:-1:-1;;;39045:15:0;;;;39042:218;;;39096:10;39084:23;;;;:11;:23;;;;;;;;39076:80;;;;-1:-1:-1;;;39076:80:0;;15071:2:1;39076:80:0;;;15053:21:1;15110:2;15090:18;;;15083:30;15149:34;15129:18;;;15122:62;-1:-1:-1;;;15200:18:1;;;15193:42;15252:19;;39076:80:0;14869:408:1;39076:80:0;39042:218;;;39197:12;;-1:-1:-1;;;39197:12:0;;;;39189:59;;;;-1:-1:-1;;;39189:59:0;;14260:2:1;39189:59:0;;;14242:21:1;14299:2;14279:18;;;14272:30;14338:34;14318:18;;;14311:62;-1:-1:-1;;;14389:18:1;;;14382:32;14431:19;;39189:59:0;14058:398:1;39189:59:0;39275:13;39272:146;;39343:14;39312:30;39322:10;39333:8;39312:9;:30::i;:::-;:45;;;;:::i;:::-;39361:1;39312:50;39304:102;;;;-1:-1:-1;;;39304:102:0;;;;;;;:::i;:::-;39433:8;39445:1;39433:13;39430:146;;;39501:14;39470:30;39480:10;39491:8;39470:9;:30::i;:::-;:45;;;;:::i;:::-;39519:1;39470:50;39462:102;;;;-1:-1:-1;;;39462:102:0;;;;;;;:::i;:::-;39591:8;39603:1;39591:13;39588:150;;;39678:1;39660:14;39629:30;39639:10;39650:8;39629:9;:30::i;:::-;:45;;;;:::i;:::-;:50;;39621:105;;;;-1:-1:-1;;;39621:105:0;;;;;;;:::i;:::-;39753:8;39765:1;39753:13;39750:149;;;39839:1;39821:14;39790:30;39800:10;39811:8;39790:9;:30::i;:::-;:45;;;;:::i;:::-;:50;;39782:105;;;;-1:-1:-1;;;39782:105:0;;;;;;;:::i;:::-;39911:47;39917:10;39929:8;39939:14;39911:47;;;;;;;;;;;;:5;:47::i;:::-;38578:1388;;:::o;38466:104::-;35709:6;;-1:-1:-1;;;;;35709:6:0;17181:10;35856:23;35848:68;;;;-1:-1:-1;;;35848:68:0;;;;;;;:::i;:::-;38536:15:::1;:26:::0;;;::::1;;-1:-1:-1::0;;;38536:26:0::1;-1:-1:-1::0;;;;38536:26:0;;::::1;::::0;;;::::1;::::0;;38466:104::o;21299:442::-;-1:-1:-1;;;;;21532:20:0;;17181:10;21532:20;;:60;;-1:-1:-1;21556:36:0;21573:4;17181:10;20581:168;:::i;21556:36::-;21510:160;;;;-1:-1:-1;;;21510:160:0;;15890:2:1;21510:160:0;;;15872:21:1;15929:2;15909:18;;;15902:30;15968:34;15948:18;;;15941:62;-1:-1:-1;;;16019:18:1;;;16012:48;16077:19;;21510:160:0;15688:414:1;21510:160:0;21681:52;21704:4;21710:2;21714:3;21719:7;21728:4;21681:22;:52::i;:::-;21299:442;;;;;:::o;40722:277::-;35709:6;;-1:-1:-1;;;;;35709:6:0;40765:10;:21;40762:129;;40823:15;;-1:-1:-1;;;;;40823:15:0;40809:10;:29;40801:90;;;;-1:-1:-1;;;40801:90:0;;17903:2:1;40801:90:0;;;17885:21:1;17942:2;17922:18;;;17915:30;17981:34;17961:18;;;17954:62;-1:-1:-1;;;18032:18:1;;;18025:46;18088:19;;40801:90:0;17701:412:1;40801:90:0;40957:15;;40949:42;;40917:21;;-1:-1:-1;;;;;40957:15:0;;40949:42;;;;;40917:21;;40902:12;40949:42;40902:12;40949:42;40917:21;40957:15;40949:42;;;;;;;;;;;;;;;;;;;19601:524;19757:16;19818:3;:10;19799:8;:15;:29;19791:83;;;;-1:-1:-1;;;19791:83:0;;18730:2:1;19791:83:0;;;18712:21:1;18769:2;18749:18;;;18742:30;18808:34;18788:18;;;18781:62;-1:-1:-1;;;18859:18:1;;;18852:39;18908:19;;19791:83:0;18528:405:1;19791:83:0;19887:30;19934:8;:15;19920:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19920:30:0;;19887:63;;19968:9;19963:122;19987:8;:15;19983:1;:19;19963:122;;;20043:30;20053:8;20062:1;20053:11;;;;;;;;:::i;:::-;;;;;;;20066:3;20070:1;20066:6;;;;;;;;:::i;:::-;;;;;;;20043:9;:30::i;:::-;20024:13;20038:1;20024:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;20004:3;;;:::i;:::-;;;19963:122;;;-1:-1:-1;20104:13:0;19601:524;-1:-1:-1;;;19601:524:0:o;40356:262::-;35709:6;;-1:-1:-1;;;;;35709:6:0;17181:10;35856:23;35848:68;;;;-1:-1:-1;;;35848:68:0;;;;;;;:::i;:::-;40444:6:::1;40440:171;40456:8;:15;40454:1;:17;40440:171;;;40500:11;:24;40512:8;40521:1;40512:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;40500:24:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;40500:24:0;;::::1;;40492:60;;;::::0;-1:-1:-1;;;40492:60:0;;19140:2:1;40492:60:0::1;::::0;::::1;19122:21:1::0;19179:2;19159:18;;;19152:30;19218:25;19198:18;;;19191:53;19261:18;;40492:60:0::1;18938:347:1::0;40492:60:0::1;40594:5;40567:11;:24;40579:8;40588:1;40579:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;40567:24:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;40567:24:0;:32;;-1:-1:-1;;40567:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;40473:3;::::1;::::0;::::1;:::i;:::-;;;;40440:171;;36287:94:::0;35709:6;;-1:-1:-1;;;;;35709:6:0;17181:10;35856:23;35848:68;;;;-1:-1:-1;;;35848:68:0;;;;;;;:::i;:::-;36352:21:::1;36370:1;36352:9;:21::i;:::-;36287:94::o:0;40089:255::-;35709:6;;-1:-1:-1;;;;;35709:6:0;17181:10;35856:23;35848:68;;;;-1:-1:-1;;;35848:68:0;;;;;;;:::i;:::-;40172:6:::1;40168:169;40184:8;:15;40182:1;:17;40168:169;;;40229:11;:24;40241:8;40250:1;40241:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;40229:24:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;40229:24:0;;::::1;;40228:25;40220:59;;;::::0;-1:-1:-1;;;40220:59:0;;20303:2:1;40220:59:0::1;::::0;::::1;20285:21:1::0;20342:2;20322:18;;;20315:30;-1:-1:-1;;;20361:18:1;;;20354:51;20422:18;;40220:59:0::1;20101:345:1::0;40220:59:0::1;40321:4;40294:11;:24;40306:8;40315:1;40306:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;40294:24:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;40294:24:0;:31;;-1:-1:-1;;40294:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;40201:3;::::1;::::0;::::1;:::i;:::-;;;;40168:169;;37091:29:::0;;;;;;;:::i;20198:311::-;17181:10;-1:-1:-1;;;;;20301:24:0;;;;20293:78;;;;-1:-1:-1;;;20293:78:0;;18320:2:1;20293:78:0;;;18302:21:1;18359:2;18339:18;;;18332:30;18398:34;18378:18;;;18371:62;-1:-1:-1;;;18449:18:1;;;18442:39;18498:19;;20293:78:0;18118:405:1;20293:78:0;17181:10;20384:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;20384:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;20384:53:0;;;;;;;;;;20453:48;;11005:41:1;;;20384:42:0;;17181:10;20453:48;;10978:18:1;20453:48:0;;;;;;;20198:311;;:::o;38358:96::-;35709:6;;-1:-1:-1;;;;;35709:6:0;17181:10;35856:23;35848:68;;;;-1:-1:-1;;;35848:68:0;;;;;;;:::i;:::-;38423:12:::1;:23:::0;;;::::1;;-1:-1:-1::0;;;38423:23:0::1;-1:-1:-1::0;;;;38423:23:0;;::::1;::::0;;;::::1;::::0;;38358:96::o;40626:88::-;35709:6;;-1:-1:-1;;;;;35709:6:0;17181:10;35856:23;35848:68;;;;-1:-1:-1;;;35848:68:0;;;;;;;:::i;:::-;40693:13:::1;40701:4;40693:7;:13::i;:::-;40626:88:::0;:::o;20821:401::-;-1:-1:-1;;;;;21029:20:0;;17181:10;21029:20;;:60;;-1:-1:-1;21053:36:0;21070:4;17181:10;20581:168;:::i;21053:36::-;21007:151;;;;-1:-1:-1;;;21007:151:0;;13490:2:1;21007:151:0;;;13472:21:1;13529:2;13509:18;;;13502:30;13568:34;13548:18;;;13541:62;-1:-1:-1;;;13619:18:1;;;13612:39;13668:19;;21007:151:0;13288:405:1;21007:151:0;21169:45;21187:4;21193:2;21197;21201:6;21209:4;21169:17;:45::i;36536:192::-;35709:6;;-1:-1:-1;;;;;35709:6:0;17181:10;35856:23;35848:68;;;;-1:-1:-1;;;35848:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36625:22:0;::::1;36617:73;;;::::0;-1:-1:-1;;;36617:73:0;;13083:2:1;36617:73:0::1;::::0;::::1;13065:21:1::0;13122:2;13102:18;;;13095:30;13161:34;13141:18;;;13134:62;-1:-1:-1;;;13212:18:1;;;13205:36;13258:19;;36617:73:0::1;12881:402:1::0;36617:73:0::1;36701:19;36711:8;36701:9;:19::i;26745:735::-:0;-1:-1:-1;;;;;26923:16:0;;26915:62;;;;-1:-1:-1;;;26915:62:0;;;;;;;:::i;:::-;27010:7;:14;26996:3;:10;:28;26988:81;;;;-1:-1:-1;;;26988:81:0;;;;;;;:::i;:::-;17181:10;27082:16;27205:103;27229:3;:10;27225:1;:14;27205:103;;;27286:7;27294:1;27286:10;;;;;;;;:::i;:::-;;;;;;;27261:9;:17;27271:3;27275:1;27271:6;;;;;;;;:::i;:::-;;;;;;;27261:17;;;;;;;;;;;:21;27279:2;-1:-1:-1;;;;;27261:21:0;-1:-1:-1;;;;;27261:21:0;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;-1:-1:-1;27241:3:0;;-1:-1:-1;27241:3:0;;;:::i;:::-;;;;27205:103;;;;27361:2;-1:-1:-1;;;;;27325:53:0;27357:1;-1:-1:-1;;;;;27325:53:0;27339:8;-1:-1:-1;;;;;27325:53:0;;27365:3;27370:7;27325:53;;;;;;;:::i;:::-;;;;;;;;27391:81;27427:8;27445:1;27449:2;27453:3;27458:7;27467:4;27391:35;:81::i;2357:387::-;2680:20;2728:8;;;2357:387::o;33425:242::-;33584:38;33596:7;33605:2;33609:6;33617:4;33584:11;:38::i;:::-;33633:16;;;;:12;:16;;;;;:26;;33653:6;;33633:16;:26;;33653:6;;33633:26;:::i;:::-;;;;-1:-1:-1;;;;;;33425:242:0:o;23383:1074::-;23610:7;:14;23596:3;:10;:28;23588:81;;;;-1:-1:-1;;;23588:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23688:16:0;;23680:66;;;;-1:-1:-1;;;23680:66:0;;;;;;;:::i;:::-;17181:10;23759:16;23876:421;23900:3;:10;23896:1;:14;23876:421;;;23932:10;23945:3;23949:1;23945:6;;;;;;;;:::i;:::-;;;;;;;23932:19;;23966:14;23983:7;23991:1;23983:10;;;;;;;;:::i;:::-;;;;;;;;;;;;24010:19;24032:13;;;;;;;;;;-1:-1:-1;;;;;24032:19:0;;;;;;;;;;;;23983:10;;-1:-1:-1;24074:21:0;;;;24066:76;;;;-1:-1:-1;;;24066:76:0;;;;;;;:::i;:::-;24186:9;:13;;;;;;;;;;;-1:-1:-1;;;;;24186:19:0;;;;;;;;;;24208:20;;;24186:42;;24258:17;;;;;;;:27;;24208:20;;24186:9;24258:27;;24208:20;;24258:27;:::i;:::-;;;;;;;;23917:380;;;23912:3;;;;:::i;:::-;;;23876:421;;;;24344:2;-1:-1:-1;;;;;24314:47:0;24338:4;-1:-1:-1;;;;;24314:47:0;24328:8;-1:-1:-1;;;;;24314:47:0;;24348:3;24353:7;24314:47;;;;;;;:::i;:::-;;;;;;;;24374:75;24410:8;24420:4;24426:2;24430:3;24435:7;24444:4;24374:35;:75::i;:::-;23577:880;23383:1074;;;;;:::o;36736:173::-;36811:6;;;-1:-1:-1;;;;;36828:17:0;;;-1:-1:-1;;;;;;36828:17:0;;;;;;;36861:40;;36811:6;;;36828:17;36811:6;;36861:40;;36792:16;;36861:40;36781:128;36736:173;:::o;25301:88::-;25368:13;;;;:4;;:13;;;;;:::i;22205:820::-;-1:-1:-1;;;;;22393:16:0;;22385:66;;;;-1:-1:-1;;;22385:66:0;;;;;;;:::i;:::-;17181:10;22508:96;17181:10;22539:4;22545:2;22549:21;22567:2;22549:17;:21::i;:::-;22572:25;22590:6;22572:17;:25::i;22508:96::-;22617:19;22639:13;;;;;;;;;;;-1:-1:-1;;;;;22639:19:0;;;;;;;;;;22677:21;;;;22669:76;;;;-1:-1:-1;;;22669:76:0;;;;;;;:::i;:::-;22781:9;:13;;;;;;;;;;;-1:-1:-1;;;;;22781:19:0;;;;;;;;;;22803:20;;;22781:42;;22845:17;;;;;;;:27;;22803:20;;22781:9;22845:27;;22803:20;;22845:27;:::i;:::-;;;;-1:-1:-1;;22890:46:0;;;20807:25:1;;;20863:2;20848:18;;20841:34;;;-1:-1:-1;;;;;22890:46:0;;;;;;;;;;;;;;20780:18:1;22890:46:0;;;;;;;22949:68;22980:8;22990:4;22996:2;23000;23004:6;23012:4;22949:30;:68::i;:::-;22374:651;;22205:820;;;;;:::o;31472:813::-;-1:-1:-1;;;;;31712:13:0;;2680:20;2728:8;31708:570;;31748:79;;-1:-1:-1;;;31748:79:0;;-1:-1:-1;;;;;31748:43:0;;;;;:79;;31792:8;;31802:4;;31808:3;;31813:7;;31822:4;;31748:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31748:79:0;;;;;;;;-1:-1:-1;;31748:79:0;;;;;;;;;;;;:::i;:::-;;;31744:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;32140:6;32133:14;;-1:-1:-1;;;32133:14:0;;;;;;;;:::i;31744:523::-;;;32189:62;;-1:-1:-1;;;32189:62:0;;11483:2:1;32189:62:0;;;11465:21:1;11522:2;11502:18;;;11495:30;11561:34;11541:18;;;11534:62;-1:-1:-1;;;11612:18:1;;;11605:50;11672:19;;32189:62:0;11281:416:1;31744:523:0;-1:-1:-1;;;;;;31909:60:0;;-1:-1:-1;;;31909:60:0;31905:159;;31994:50;;-1:-1:-1;;;31994:50:0;;;;;;;:::i;25790:599::-;-1:-1:-1;;;;;25948:21:0;;25940:67;;;;-1:-1:-1;;;25940:67:0;;;;;;;:::i;:::-;17181:10;26064:107;17181:10;26020:16;26107:7;26116:21;26134:2;26116:17;:21::i;26064:107::-;26184:9;:13;;;;;;;;;;;-1:-1:-1;;;;;26184:22:0;;;;;;;;;:32;;26210:6;;26184:9;:32;;26210:6;;26184:32;:::i;:::-;;;;-1:-1:-1;;26232:57:0;;;20807:25:1;;;20863:2;20848:18;;20841:34;;;-1:-1:-1;;;;;26232:57:0;;;;26265:1;;26232:57;;;;;;20780:18:1;26232:57:0;;;;;;;26302:79;26333:8;26351:1;26355:7;26364:2;26368:6;26376:4;26302:30;:79::i;32293:198::-;32413:16;;;32427:1;32413:16;;;;;;;;;32359;;32388:22;;32413:16;;;;;;;;;;;;-1:-1:-1;32413:16:0;32388:41;;32451:7;32440:5;32446:1;32440:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;32478:5;32293:198;-1:-1:-1;;32293:198:0:o;30720:744::-;-1:-1:-1;;;;;30935:13:0;;2680:20;2728:8;30931:526;;30971:72;;-1:-1:-1;;;30971:72:0;;-1:-1:-1;;;;;30971:38:0;;;;;:72;;31010:8;;31020:4;;31026:2;;31030:6;;31038:4;;30971:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30971:72:0;;;;;;;;-1:-1:-1;;30971:72:0;;;;;;;;;;;;:::i;:::-;;;30967:479;;;;:::i;:::-;-1:-1:-1;;;;;;31093:55:0;;-1:-1:-1;;;31093:55:0;31089:154;;31173:50;;-1:-1:-1;;;31173: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:741::-;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:169;1221:2;1218:1;1215:9;1207:169;;;1278:23;1297:3;1278:23;:::i;:::-;1266:36;;1322:12;;;;1354;;;;1239:1;1232:9;1207:169;;;-1:-1:-1;1394:6:1;;665:741;-1:-1:-1;;;;;;;665:741:1:o;1411:735::-;1465:5;1518:3;1511:4;1503:6;1499:17;1495:27;1485:55;;1536:1;1533;1526:12;1485:55;1572:6;1559:20;1598:4;1621:43;1661:2;1621:43;:::i;:::-;1693:2;1687:9;1705:31;1733:2;1725:6;1705:31;:::i;:::-;1771:18;;;1805:15;;;;-1:-1:-1;1840:15:1;;;1890:1;1886:10;;;1874:23;;1870:32;;1867:41;-1:-1:-1;1864:61:1;;;1921:1;1918;1911:12;1864:61;1943:1;1953:163;1967:2;1964:1;1961:9;1953:163;;;2024:17;;2012:30;;2062:12;;;;2094;;;;1985:1;1978:9;1953:163;;2151:160;2216:20;;2272:13;;2265:21;2255:32;;2245:60;;2301:1;2298;2291:12;2316:220;2358:5;2411:3;2404:4;2396:6;2392:17;2388:27;2378:55;;2429:1;2426;2419:12;2378:55;2451:79;2526:3;2517:6;2504:20;2497:4;2489:6;2485:17;2451:79;:::i;:::-;2442:88;2316:220;-1:-1:-1;;;2316:220:1:o;2541:186::-;2600:6;2653:2;2641:9;2632:7;2628:23;2624:32;2621:52;;;2669:1;2666;2659:12;2621:52;2692:29;2711:9;2692:29;:::i;2732:260::-;2800:6;2808;2861:2;2849:9;2840:7;2836:23;2832:32;2829:52;;;2877:1;2874;2867:12;2829:52;2900:29;2919:9;2900:29;:::i;:::-;2890:39;;2948:38;2982:2;2971:9;2967:18;2948:38;:::i;:::-;2938:48;;2732:260;;;;;:::o;2997:943::-;3151:6;3159;3167;3175;3183;3236:3;3224:9;3215:7;3211:23;3207:33;3204:53;;;3253:1;3250;3243:12;3204:53;3276:29;3295:9;3276:29;:::i;:::-;3266:39;;3324:38;3358:2;3347:9;3343:18;3324:38;:::i;:::-;3314:48;;3413:2;3402:9;3398:18;3385:32;3436:18;3477:2;3469:6;3466:14;3463:34;;;3493:1;3490;3483:12;3463:34;3516:61;3569:7;3560:6;3549:9;3545:22;3516:61;:::i;:::-;3506:71;;3630:2;3619:9;3615:18;3602:32;3586:48;;3659:2;3649:8;3646:16;3643:36;;;3675:1;3672;3665:12;3643:36;3698:63;3753:7;3742:8;3731:9;3727:24;3698:63;:::i;:::-;3688:73;;3814:3;3803:9;3799:19;3786:33;3770:49;;3844:2;3834:8;3831:16;3828:36;;;3860:1;3857;3850:12;3828:36;;3883:51;3926:7;3915:8;3904:9;3900:24;3883:51;:::i;:::-;3873:61;;;2997:943;;;;;;;;:::o;3945:606::-;4049:6;4057;4065;4073;4081;4134:3;4122:9;4113:7;4109:23;4105:33;4102:53;;;4151:1;4148;4141:12;4102:53;4174:29;4193:9;4174:29;:::i;:::-;4164:39;;4222:38;4256:2;4245:9;4241:18;4222:38;:::i;:::-;4212:48;;4307:2;4296:9;4292:18;4279:32;4269:42;;4358:2;4347:9;4343:18;4330:32;4320:42;;4413:3;4402:9;4398:19;4385:33;4441:18;4433:6;4430:30;4427:50;;;4473:1;4470;4463:12;4427:50;4496:49;4537:7;4528:6;4517:9;4513:22;4496:49;:::i;4556:254::-;4621:6;4629;4682:2;4670:9;4661:7;4657:23;4653:32;4650:52;;;4698:1;4695;4688:12;4650:52;4721:29;4740:9;4721:29;:::i;:::-;4711:39;;4769:35;4800:2;4789:9;4785:18;4769:35;:::i;4815:254::-;4883:6;4891;4944:2;4932:9;4923:7;4919:23;4915:32;4912:52;;;4960:1;4957;4950:12;4912:52;4983:29;5002:9;4983:29;:::i;:::-;4973:39;5059:2;5044:18;;;;5031:32;;-1:-1:-1;;;4815:254:1:o;5074:348::-;5158:6;5211:2;5199:9;5190:7;5186:23;5182:32;5179:52;;;5227:1;5224;5217:12;5179:52;5267:9;5254:23;5300:18;5292:6;5289:30;5286:50;;;5332:1;5329;5322:12;5286:50;5355:61;5408:7;5399:6;5388:9;5384:22;5355:61;:::i;:::-;5345:71;5074:348;-1:-1:-1;;;;5074:348:1:o;5427:595::-;5545:6;5553;5606:2;5594:9;5585:7;5581:23;5577:32;5574:52;;;5622:1;5619;5612:12;5574:52;5662:9;5649:23;5691:18;5732:2;5724:6;5721:14;5718:34;;;5748:1;5745;5738:12;5718:34;5771:61;5824:7;5815:6;5804:9;5800:22;5771:61;:::i;:::-;5761:71;;5885:2;5874:9;5870:18;5857:32;5841:48;;5914:2;5904:8;5901:16;5898:36;;;5930:1;5927;5920:12;5898:36;;5953:63;6008:7;5997:8;5986:9;5982:24;5953:63;:::i;:::-;5943:73;;;5427:595;;;;;:::o;6027:180::-;6083:6;6136:2;6124:9;6115:7;6111:23;6107:32;6104:52;;;6152:1;6149;6142:12;6104:52;6175:26;6191:9;6175:26;:::i;6212:245::-;6270:6;6323:2;6311:9;6302:7;6298:23;6294:32;6291:52;;;6339:1;6336;6329:12;6291:52;6378:9;6365:23;6397:30;6421:5;6397:30;:::i;6462:249::-;6531:6;6584:2;6572:9;6563:7;6559:23;6555:32;6552:52;;;6600:1;6597;6590:12;6552:52;6632:9;6626:16;6651:30;6675:5;6651:30;:::i;6716:450::-;6785:6;6838:2;6826:9;6817:7;6813:23;6809:32;6806:52;;;6854:1;6851;6844:12;6806:52;6894:9;6881:23;6927:18;6919:6;6916:30;6913:50;;;6959:1;6956;6949:12;6913:50;6982:22;;7035:4;7027:13;;7023:27;-1:-1:-1;7013:55:1;;7064:1;7061;7054:12;7013:55;7087:73;7152:7;7147:2;7134:16;7129:2;7125;7121:11;7087:73;:::i;7171:180::-;7230:6;7283:2;7271:9;7262:7;7258:23;7254:32;7251:52;;;7299:1;7296;7289:12;7251:52;-1:-1:-1;7322:23:1;;7171:180;-1:-1:-1;7171:180:1:o;7356:248::-;7424:6;7432;7485:2;7473:9;7464:7;7460:23;7456:32;7453:52;;;7501:1;7498;7491:12;7453:52;-1:-1:-1;;7524:23:1;;;7594:2;7579:18;;;7566:32;;-1:-1:-1;7356:248:1:o;7609:435::-;7662:3;7700:5;7694:12;7727:6;7722:3;7715:19;7753:4;7782:2;7777:3;7773:12;7766:19;;7819:2;7812:5;7808:14;7840:1;7850:169;7864:6;7861:1;7858:13;7850:169;;;7925:13;;7913:26;;7959:12;;;;7994:15;;;;7886:1;7879:9;7850:169;;;-1:-1:-1;8035:3:1;;7609:435;-1:-1:-1;;;;;7609:435:1:o;8049:471::-;8090:3;8128:5;8122:12;8155:6;8150:3;8143:19;8180:1;8190:162;8204:6;8201:1;8198:13;8190:162;;;8266:4;8322:13;;;8318:22;;8312:29;8294:11;;;8290:20;;8283:59;8219:12;8190:162;;;8370:6;8367:1;8364:13;8361:87;;;8436:1;8429:4;8420:6;8415:3;8411:16;8407:27;8400:38;8361:87;-1:-1:-1;8502:2:1;8481:15;-1:-1:-1;;8477:29:1;8468:39;;;;8509:4;8464:50;;8049:471;-1:-1:-1;;8049:471:1:o;8733:826::-;-1:-1:-1;;;;;9130:15:1;;;9112:34;;9182:15;;9177:2;9162:18;;9155:43;9092:3;9229:2;9214:18;;9207:31;;;9055:4;;9261:57;;9298:19;;9290:6;9261:57;:::i;:::-;9366:9;9358:6;9354:22;9349:2;9338:9;9334:18;9327:50;9400:44;9437:6;9429;9400:44;:::i;:::-;9386:58;;9493:9;9485:6;9481:22;9475:3;9464:9;9460:19;9453:51;9521:32;9546:6;9538;9521:32;:::i;:::-;9513:40;8733:826;-1:-1:-1;;;;;;;;8733:826:1:o;9564:560::-;-1:-1:-1;;;;;9861:15:1;;;9843:34;;9913:15;;9908:2;9893:18;;9886:43;9960:2;9945:18;;9938:34;;;10003:2;9988:18;;9981:34;;;9823:3;10046;10031:19;;10024:32;;;9786:4;;10073:45;;10098:19;;10090:6;10073:45;:::i;:::-;10065:53;9564:560;-1:-1:-1;;;;;;;9564:560:1:o;10129:261::-;10308:2;10297:9;10290:21;10271:4;10328:56;10380:2;10369:9;10365:18;10357:6;10328:56;:::i;10395:465::-;10652:2;10641:9;10634:21;10615:4;10678:56;10730:2;10719:9;10715:18;10707:6;10678:56;:::i;:::-;10782:9;10774:6;10770:22;10765:2;10754:9;10750:18;10743:50;10810:44;10847:6;10839;10810:44;:::i;:::-;10802:52;10395:465;-1:-1:-1;;;;;10395:465:1:o;11057:219::-;11206:2;11195:9;11188:21;11169:4;11226:44;11266:2;11255:9;11251:18;11243:6;11226:44;:::i;11702:404::-;11904:2;11886:21;;;11943:2;11923:18;;;11916:30;11982:34;11977:2;11962:18;;11955:62;-1:-1:-1;;;12048:2:1;12033:18;;12026:38;12096:3;12081:19;;11702:404::o;14461:403::-;14663:2;14645:21;;;14702:2;14682:18;;;14675:30;14741:34;14736:2;14721:18;;14714:62;-1:-1:-1;;;14807:2:1;14792:18;;14785:37;14854:3;14839:19;;14461:403::o;15282:401::-;15484:2;15466:21;;;15523:2;15503:18;;;15496:30;15562:34;15557:2;15542:18;;15535:62;-1:-1:-1;;;15628:2:1;15613:18;;15606:35;15673:3;15658:19;;15282:401::o;16518:406::-;16720:2;16702:21;;;16759:2;16739:18;;;16732:30;16798:34;16793:2;16778:18;;16771:62;-1:-1:-1;;;16864:2:1;16849:18;;16842:40;16914:3;16899:19;;16518:406::o;16929:::-;17131:2;17113:21;;;17170:2;17150:18;;;17143:30;17209:34;17204:2;17189:18;;17182:62;-1:-1:-1;;;17275:2:1;17260:18;;17253:40;17325:3;17310:19;;16929:406::o;17340:356::-;17542:2;17524:21;;;17561:18;;;17554:30;17620:34;17615:2;17600:18;;17593:62;17687:2;17672:18;;17340:356::o;19290:404::-;19492:2;19474:21;;;19531:2;19511:18;;;19504:30;19570:34;19565:2;19550:18;;19543:62;-1:-1:-1;;;19636:2:1;19621:18;;19614:38;19684:3;19669:19;;19290:404::o;19699:397::-;19901:2;19883:21;;;19940:2;19920:18;;;19913:30;19979:34;19974:2;19959:18;;19952:62;-1:-1:-1;;;20045:2:1;20030:18;;20023:31;20086:3;20071:19;;19699:397::o;20886:183::-;20946:4;20979:18;20971:6;20968:30;20965:56;;;21001:18;;:::i;:::-;-1:-1:-1;21046:1:1;21042:14;21058:4;21038:25;;20886:183::o;21074:128::-;21114:3;21145:1;21141:6;21138:1;21135:13;21132:39;;;21151:18;;:::i;:::-;-1:-1:-1;21187:9:1;;21074:128::o;21207:168::-;21247:7;21313:1;21309;21305:6;21301:14;21298:1;21295:21;21290:1;21283:9;21276:17;21272:45;21269:71;;;21320:18;;:::i;:::-;-1:-1:-1;21360:9:1;;21207:168::o;21380:380::-;21459:1;21455:12;;;;21502;;;21523:61;;21577:4;21569:6;21565:17;21555:27;;21523:61;21630:2;21622:6;21619:14;21599:18;21596:38;21593:161;;;21676:10;21671:3;21667:20;21664:1;21657:31;21711:4;21708:1;21701:15;21739:4;21736:1;21729:15;21593:161;;21380:380;;;:::o;21765:249::-;21875:2;21856:13;;-1:-1:-1;;21852:27:1;21840:40;;21910:18;21895:34;;21931:22;;;21892:62;21889:88;;;21957:18;;:::i;:::-;21993:2;21986:22;-1:-1:-1;;21765:249:1:o;22019:135::-;22058:3;-1:-1:-1;;22079:17:1;;22076:43;;;22099:18;;:::i;:::-;-1:-1:-1;22146:1:1;22135:13;;22019:135::o;22159:127::-;22220:10;22215:3;22211:20;22208:1;22201:31;22251:4;22248:1;22241:15;22275:4;22272:1;22265:15;22291:127;22352:10;22347:3;22343:20;22340:1;22333:31;22383:4;22380:1;22373:15;22407:4;22404:1;22397:15;22423:127;22484:10;22479:3;22475:20;22472:1;22465:31;22515:4;22512:1;22505:15;22539:4;22536:1;22529:15;22555:179;22590:3;22632:1;22614:16;22611:23;22608:120;;;22678:1;22675;22672;22657:23;-1:-1:-1;22715:1:1;22709:8;22704:3;22700:18;22608:120;22555:179;:::o;22739:671::-;22778:3;22820:4;22802:16;22799:26;22796:39;;;22739:671;:::o;22796:39::-;22862:2;22856:9;-1:-1:-1;;22927:16:1;22923:25;;22920:1;22856:9;22899:50;22978:4;22972:11;23002:16;23037:18;23108:2;23101:4;23093:6;23089:17;23086:25;23081:2;23073:6;23070:14;23067:45;23064:58;;;23115:5;;;;;22739:671;:::o;23064:58::-;23152:6;23146:4;23142:17;23131:28;;23188:3;23182:10;23215:2;23207:6;23204:14;23201:27;;;23221:5;;;;;;22739:671;:::o;23201:27::-;23305:2;23286:16;23280:4;23276:27;23272:36;23265:4;23256:6;23251:3;23247:16;23243:27;23240:69;23237:82;;;23312:5;;;;;;22739:671;:::o;23237:82::-;23328:57;23379:4;23370:6;23362;23358:19;23354:30;23348:4;23328:57;:::i;:::-;-1:-1:-1;23401:3:1;;22739:671;-1:-1:-1;;;;;22739:671:1:o;23415:131::-;-1:-1:-1;;;;;;23489:32:1;;23479:43;;23469:71;;23536:1;23533;23526:12

Swarm Source

ipfs://224d50f643d1064a89506385bc25897c3e4f7147f9d27a79800c4a91e1616c24
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.