ETH Price: $3,501.48 (+2.11%)
Gas: 2 Gwei

Token

 

Overview

Max Total Supply

105

Holders

78

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
harryswan.eth
0x1e23166b3b73dd2ee9d9db190aceeee8f8edd0aa
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:
TicketBayc

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-19
*/

// SPDX-License-Identifier: MIT
pragma solidity >=0.8.17 <0.9.0;


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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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


//import "../../utils/Context.sol";
/**
 * @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;
    }
}


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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


//import "../utils/introspection/IERC165.sol";
/**
 * @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);
}


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


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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must 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;
}


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

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


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


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

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

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

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

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

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

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

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

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

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

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

        return batchBalances;
    }

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not token 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: caller is not token 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();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, to, ids, amounts, 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);

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

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

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

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

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

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

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

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

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

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

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

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * 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 _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);

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

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

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

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

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

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

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

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

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

        address operator = _msgSender();

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

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

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

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

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `ids` and `amounts` 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 {}

    /**
     * @dev Hook that is called after 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 _afterTokenTransfer(
        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;
    }
}


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


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

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

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

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

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

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

        return (royalty.receiver, royaltyAmount);
    }

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

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

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

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

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

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

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


//import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}


//import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol';
/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}


//import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol";
interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}


//import {OperatorFilterer} from "./OperatorFilterer.sol";
/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}


//import "operator-filter-registry/src/DefaultOperatorFilterer.sol";
/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}


//import "./Common/IVinylERC1155Burnable.sol";
//-----------------------------------
// VINYL ERC1155 Burnable interface
//-----------------------------------
interface IVinylERC1155Burnable is IERC1155 {
    function burnTokenWithAmount( address owner, uint256 tokenId, uint256 amount ) external;
}


//------------------------------------------------------------
// TicketBayc
//------------------------------------------------------------
contract TicketBayc is Ownable, ReentrancyGuard, ERC1155, IVinylERC1155Burnable, ERC2981, DefaultOperatorFilterer {
    //--------------------------------------------------------
    // constant
    //--------------------------------------------------------
    // mainnet
    address constant private OWNER_ADDRESS = 0x66d1633c03a02DE32B25dA1A98D793c1D9A9fa1D;
    address constant private DISTRIBUTOR_ADDRESS = 0x63388b59413fFcE9e3B703A12Bb350629D917075;
    address constant private ROYALTY_ADDRESS = 0xcbe0990CEEdC78C175352288dCfA381c51405a70;

    // royalty
    uint96 constant private ROYALTY_FEE_NUMERATOR = 1000;    // 1000/10000 = 10%

    // tokenId
    uint256 constant private SALE_TOKEN_ID = 1;

    // enum: SALE STATUS
    uint256 constant private SALE_STATUS_NON = 0;
    uint256 constant private SALE_STATUS_PRIVATE = 1;
    uint256 constant private SALE_STATUS_PUBLIC = 2;

    // enum: INFO LABEL
    uint256 constant private INFO_SALE_SUSPENDED = 0;
    uint256 constant private INFO_SALE_PRICE = 1;
    uint256 constant private INFO_SALE_WHITELISTED = 2;
    uint256 constant private INFO_SALE_USER_MINTED = 3;
    uint256 constant private INFO_SALE_USER_MINTABLE = 4;
    uint256 constant private INFO_MAX = 5;
    uint256 constant private USER_INFO_SALE_TYPE = INFO_MAX;
    uint256 constant private USER_INFO_TOTAL_SUPPLY = INFO_MAX + 1;
    uint256 constant private USER_INFO_MINT_LIMIT = INFO_MAX + 2;
    uint256 constant private USER_INFO_MAX = INFO_MAX + 3;

    //--------------------------------------------------------
    // management
    //--------------------------------------------------------
    mapping( address => bool ) private _map_manager;
    address private _distributor;
    mapping( address => bool ) private _map_burnable;

    //--------------------------------------
    // storage
    //--------------------------------------
    uint256 private _sale_status;
    string private _uri_for_metadata;
    uint256 private _amount_reserved;
    uint256 private _mint_limit_per_tx;
    uint256 private _total_supply;

    // PRIVATE(whitelist)
    bool private _PRIVATE_SALE_is_suspended;
    uint256 private _PRIVATE_SALE_price;
    uint256 private _PRIVATE_SALE_mintable;
    bytes32 private _PRIVATE_SALE_merkle_root;
    mapping( address => uint256 ) private _PRIVATE_SALE_map_user_minted;

    // PUBLIC
    bool private _PUBLIC_SALE_is_suspended;
    uint256 private _PUBLIC_SALE_price;
    uint256 private _PUBLIC_SALE_mintable;
    mapping( address => uint256 ) private _PUBLIC_SALE_map_user_minted;

    //--------------------------------------------------------
    // [modifier] onlyOwnerOrManager
    //--------------------------------------------------------
    modifier onlyOwnerOrManager() {
        require( msg.sender == owner() || isManager(msg.sender), "caller is not the owner neither manager" );
        _;
    }

    //--------------------------------------------------------
    // [modifier] onlyBurnable
    //--------------------------------------------------------
    modifier onlyBurnable() {
        require( isBurnable(msg.sender), "caller is not burnable" );
        _;
    }

    //--------------------------------------------------------
    // [public] constructor
    //--------------------------------------------------------
    constructor() Ownable() ERC1155( "" ) {
        transferOwnership( OWNER_ADDRESS );

        _setDefaultRoyalty( ROYALTY_ADDRESS, ROYALTY_FEE_NUMERATOR );

        _map_manager[msg.sender] = true;
        _distributor = DISTRIBUTOR_ADDRESS;

        _amount_reserved = 100;
        _mint_limit_per_tx = 5;

        _sale_status = SALE_STATUS_NON;

        // mainnet
        _uri_for_metadata = "ipfs://Qmf6sQtnKqbKxPcFfEM5x8BKMPNnDnwHgXUmL6CZcUrUK2";

        //***********************
        // PRIVATE(whitelist)
        //***********************
        _PRIVATE_SALE_price = 250000000000000000;       // 0.25 ETH
        _PRIVATE_SALE_mintable = 5;                     // 5 nft
        _PRIVATE_SALE_merkle_root = 0xab27e2303733f8a6032c0b8d1a1082e4ff9d41ff16eb7a3abeb216cd31c804dd;
        
        //~~~~~~~~~~~~~~~~~~~~~~~
        // PUBLIC
        //~~~~~~~~~~~~~~~~~~~~~~~
        _PUBLIC_SALE_price = 300000000000000000;        // 0.30 ETH
        _PUBLIC_SALE_mintable = 0;                      // 0 nft(no limit)
    }

    //=======================================================================
    // [public/override] 
    //=======================================================================
    function supportsInterface(bytes4 interfaceId) public view override( IERC165, ERC1155, ERC2981 ) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

    //=======================================================================
    // [external/onlyOwnerOrManager] for ERC2981
    //=======================================================================
    function setDefaultRoyalty( address receiver, uint96 feeNumerator ) external onlyOwnerOrManager { _setDefaultRoyalty( receiver, feeNumerator ); }
    function deleteDefaultRoyalty() external onlyOwnerOrManager { _deleteDefaultRoyalty(); }
    function setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) external onlyOwnerOrManager { _setTokenRoyalty( tokenId, receiver, feeNumerator ); }
    function resetTokenRoyalty( uint256 tokenId ) external onlyOwnerOrManager { _resetTokenRoyalty( tokenId ); }

    //=======================================================================
    // [public/override/onlyAllowedOperatorApproval] for OperatorFilter
    //=======================================================================
    function setApprovalForAll(address operator, bool approved) public override( ERC1155, IERC1155 ) onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); }
    function safeTransferFrom(address from, address to, uint256 tokenId, uint256 amount, bytes memory data) public override( ERC1155, IERC1155 )  onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, amount, data); }
    function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public override( ERC1155, IERC1155 )  onlyAllowedOperator(from) { super.safeBatchTransferFrom(from, to, ids, amounts, data); }

    //--------------------------------------
    // [public] isManager
    //--------------------------------------
    function isManager( address target ) public view returns (bool) {
        return( _map_manager[target] );
    }

    //--------------------------------------
    // [external/onlyOwner] setManager
    //--------------------------------------
    function setManager( address target, bool flag ) external onlyOwner {
        if( flag ){
            _map_manager[target] = true;
        }else{
            delete _map_manager[target];
        }
    }

    //--------------------------------------------------------
    // [public] distributor
    //--------------------------------------------------------
    function distributor() public view returns (address) {
        return( _distributor );
    }

    //--------------------------------------------------------
    // [external/onlyOwnerOrManager] setDistributor
    //--------------------------------------------------------
    function setDistributor( address target ) external onlyOwnerOrManager {
        _distributor = target;
    }

    //--------------------------------------------------------
    // [public] isBurnable
    //--------------------------------------------------------
    function isBurnable( address target ) public view returns (bool) {
        return( _map_burnable[target] );
    }

    //--------------------------------------------------------
    // [external/onlyOwnerOrManager] setBurnable
    //--------------------------------------------------------
    function setBurnable( address target, bool flag ) external onlyOwnerOrManager {
        if( flag ){
            _map_burnable[target] = true;
        }else{
            delete _map_burnable[target];
        }
    }

    //--------------------------------------------------------
    // [external/override/onlyBurnable] burnTokenWithAmount
    //--------------------------------------------------------
    function burnTokenWithAmount( address owner, uint256 tokenId, uint256 amount ) external override onlyBurnable {
        require( owner != address(0x0), "invalid address" );
        require( amount > 0, "invalid amount" );

        _burn( owner, tokenId, amount );
    }

    //--------------------------------------------------------
    // [external] get
    //--------------------------------------------------------
    function saleStatus() external view returns (uint256) { return( _sale_status ); }
    function uriForMetadata() external view returns (string memory) { return( _uri_for_metadata ); }
    function amountReserved() external view returns (uint256) { return( _amount_reserved ); }
    function mintLimitPerTx() external view returns (uint256) { return( _mint_limit_per_tx ); }    
    function totalSupply() external view returns (uint256) { return( _total_supply ); }

    //--------------------------------------------------------
    // [external/onlyOwnerOrManager] set
    //--------------------------------------------------------
    function setSaleStatus( uint256 status ) external onlyOwnerOrManager { _sale_status = status; }
    function setUriForMetadata( string calldata newUri ) external onlyOwnerOrManager { _uri_for_metadata = newUri; }
    function setAmountReserved( uint256 reserved ) external onlyOwnerOrManager { _amount_reserved = reserved; }
    function setMintLimitPerTx( uint256 limit ) external onlyOwnerOrManager { _mint_limit_per_tx = limit; }

    //--------------------------------------------------------
    // [public/override] uri
    //--------------------------------------------------------
    function uri(uint256 tokenId ) public view override returns (string memory) {
        require( tokenId == SALE_TOKEN_ID, "invalid tokenId" );
        return( _uri_for_metadata );
    }

    //********************************************************
    // [public] getInfo - PRIVATE(whitelist)
    //********************************************************
    function PRIVATE_SALE_getInfo( address target, bytes32[] calldata merkleProof ) public view returns (uint256[INFO_MAX] memory) {
        uint256[INFO_MAX] memory arrRet;

        if( _PRIVATE_SALE_is_suspended ){ arrRet[INFO_SALE_SUSPENDED] = 1; }
        arrRet[INFO_SALE_PRICE] = _PRIVATE_SALE_price;
        if( _checkWhitelisted( target, merkleProof ) ){ arrRet[INFO_SALE_WHITELISTED] = 1; }
        arrRet[INFO_SALE_USER_MINTED] = _PRIVATE_SALE_map_user_minted[target];
        arrRet[INFO_SALE_USER_MINTABLE] = _PRIVATE_SALE_mintable;

        return( arrRet );
    }

    //********************************************************
    // [external/onlyOwnerOrManager] write - PRIVATE(whitelist)
    //********************************************************
    function PRIVATE_SALE_suspend( bool flag ) external onlyOwnerOrManager { _PRIVATE_SALE_is_suspended = flag; }
    function PRIVATE_SALE_setPrice( uint256 price ) external onlyOwnerOrManager { _PRIVATE_SALE_price = price; }
    function PRIVATE_SALE_setMintable( uint256 mintable ) external onlyOwnerOrManager { _PRIVATE_SALE_mintable = mintable; }
    function PRIVATE_SALE_setMerkleRoot( bytes32 root ) external onlyOwnerOrManager { _PRIVATE_SALE_merkle_root = root; }

    //********************************************************
    // [external/payable/nonReentrant] mint - PRIVATE(whitelist)
    //********************************************************
    function PRIVATE_SALE_mint( uint256 num, bytes32[] calldata merkleProof ) external payable nonReentrant {
        require( _sale_status == SALE_STATUS_PRIVATE, "PRIVATE SALE: not available" );

        uint256[INFO_MAX] memory arrInfo = PRIVATE_SALE_getInfo( msg.sender, merkleProof );
        require( arrInfo[INFO_SALE_SUSPENDED] == 0, "PRIVATE SALE: suspended" );
        require( arrInfo[INFO_SALE_WHITELISTED] == 1, "PRIVATE SALE: not whitelisted" );
        require( arrInfo[INFO_SALE_USER_MINTABLE] == 0 || arrInfo[INFO_SALE_USER_MINTABLE] >= (arrInfo[INFO_SALE_USER_MINTED]+num), "PRIVATE SALE: reached the limit" );

        _checkPayment( msg.sender, arrInfo[INFO_SALE_PRICE]*num, msg.value );

        _mintTokens( msg.sender, num );
        _PRIVATE_SALE_map_user_minted[msg.sender] += num;
    }

    //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    // [public] getInfo - PUBLIC
    //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    function PUBLIC_SALE_getInfo( address target, bytes32[] calldata merkleProof ) public view returns (uint256[INFO_MAX] memory) {
        uint256[INFO_MAX] memory arrRet;

        if( _PUBLIC_SALE_is_suspended ){ arrRet[INFO_SALE_SUSPENDED] = 1; }
        if( _checkWhitelisted( target, merkleProof ) ){ arrRet[INFO_SALE_PRICE] = _PRIVATE_SALE_price; }
        else{ arrRet[INFO_SALE_PRICE] = _PUBLIC_SALE_price; }
        arrRet[INFO_SALE_WHITELISTED] = 1;
        arrRet[INFO_SALE_USER_MINTED] = _PUBLIC_SALE_map_user_minted[target];
        arrRet[INFO_SALE_USER_MINTABLE] = _PUBLIC_SALE_mintable;

        return( arrRet );
    }

    //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    // [external/onlyOwnerOrManager] write - PUBLIC
    //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    function PUBLIC_SALE_suspend( bool flag ) external onlyOwnerOrManager { _PUBLIC_SALE_is_suspended = flag; }
    function PUBLIC_SALE_setPrice( uint256 price ) external onlyOwnerOrManager { _PUBLIC_SALE_price = price; }
    function PUBLIC_SALE_setMintable( uint256 mintable ) external onlyOwnerOrManager { _PUBLIC_SALE_mintable = mintable; }

    //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    // [external/payable/nonReentrant] mint - PUBLIC
    //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    function PUBLIC_SALE_mint( uint256 num, bytes32[] calldata merkleProof ) external payable nonReentrant {
        require( _sale_status == SALE_STATUS_PUBLIC, "PUBLIC SALE: not available" );

        uint256[INFO_MAX] memory arrInfo = PUBLIC_SALE_getInfo( msg.sender, merkleProof );
        require( arrInfo[INFO_SALE_SUSPENDED] == 0, "PUBLIC SALE: suspended" );
        require( arrInfo[INFO_SALE_USER_MINTABLE] == 0 || arrInfo[INFO_SALE_USER_MINTABLE] >= (arrInfo[INFO_SALE_USER_MINTED]+num), "PUBLIC SALE: reached the limit" );

        _checkPayment( msg.sender, arrInfo[INFO_SALE_PRICE]*num, msg.value );

        _mintTokens( msg.sender, num );
        _PUBLIC_SALE_map_user_minted[msg.sender] += num;
    }

    //--------------------------------------------------------
    // [internal] _checkWhitelisted
    //--------------------------------------------------------
    function _checkWhitelisted( address target, bytes32[] calldata merkleProof ) internal view returns (bool) {
        bytes32 node = keccak256( abi.encodePacked( target, uint256(1) ) );
        return( MerkleProof.verify( merkleProof, _PRIVATE_SALE_merkle_root, node ) );
    }

    //--------------------------------------------------------
    // [internal] _checkPayment
    //--------------------------------------------------------
    function _checkPayment( address msgSender, uint256 price, uint256 payment ) internal {
        require( price <= payment, "insufficient value" );

        // refund if overpaymented
        if( price < payment ){
            uint256 change = payment - price;
            address payable target = payable( msgSender );
            target.transfer( change );
        }
    }

    //--------------------------------------------------------
    // [internal] _mintTokens
    //--------------------------------------------------------
    function _mintTokens( address to, uint256 num ) internal {
        require( _total_supply >= _amount_reserved, "reservation not finished" );
        require( _mint_limit_per_tx == 0 || _mint_limit_per_tx >= num, "reached mint limitation" );

        _mint( to, SALE_TOKEN_ID, num, "" );
        _total_supply += num;
    }

    //--------------------------------------------------------
    // [external/onlyOwnerOrManager] reserveTokens
    //--------------------------------------------------------
    function reserveTokens() external onlyOwnerOrManager {
        require( _total_supply < _amount_reserved, "already reservation finished" );

        uint256 num = _amount_reserved - _total_supply;
        _mint( distributor(), SALE_TOKEN_ID, num, "" );
        _total_supply += num;
    }

    //--------------------------------------------------------
    // [external] getUserInfo
    //--------------------------------------------------------
    function getUserInfo( address target, bytes32[] calldata merkleProof ) external view returns (uint256[USER_INFO_MAX] memory) {
        uint256[USER_INFO_MAX] memory userInfo;
        uint256[INFO_MAX] memory info;

        // PRIVATE(whitelist)
        if( _sale_status == SALE_STATUS_PRIVATE ){
            info = PRIVATE_SALE_getInfo( target, merkleProof );
        }
        // PUBLIC
        else if( _sale_status == SALE_STATUS_PUBLIC ){
            info = PUBLIC_SALE_getInfo( target, merkleProof );
        }

        for( uint256 i=0; i<INFO_MAX; i++ ){
            userInfo[i] = info[i];
        }

        userInfo[USER_INFO_SALE_TYPE] = _sale_status;
        userInfo[USER_INFO_TOTAL_SUPPLY] = _total_supply;
        userInfo[USER_INFO_MINT_LIMIT] = _mint_limit_per_tx;

        return( userInfo );
    }

    //--------------------------------------------------------
    // [external] checkBalance
    //--------------------------------------------------------
    function checkBalance() external view returns (uint256) {
        return( address(this).balance );
    }

    //--------------------------------------------------------
    // [external/onlyOwnerOrManager] withdraw
    //--------------------------------------------------------
    function withdraw( uint256 amount ) external onlyOwnerOrManager {
        require( amount <= address(this).balance, "insufficient balance" );

        address payable target = payable( owner() );
        target.transfer( amount );
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"PRIVATE_SALE_getInfo","outputs":[{"internalType":"uint256[5]","name":"","type":"uint256[5]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"PRIVATE_SALE_mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"PRIVATE_SALE_setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintable","type":"uint256"}],"name":"PRIVATE_SALE_setMintable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"PRIVATE_SALE_setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"flag","type":"bool"}],"name":"PRIVATE_SALE_suspend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"PUBLIC_SALE_getInfo","outputs":[{"internalType":"uint256[5]","name":"","type":"uint256[5]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"PUBLIC_SALE_mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintable","type":"uint256"}],"name":"PUBLIC_SALE_setMintable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"PUBLIC_SALE_setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"flag","type":"bool"}],"name":"PUBLIC_SALE_suspend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"amountReserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnTokenWithAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"checkBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deleteDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"distributor","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"getUserInfo","outputs":[{"internalType":"uint256[8]","name":"","type":"uint256[8]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"isBurnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"isManager","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintLimitPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"resetTokenRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStatus","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"reserved","type":"uint256"}],"name":"setAmountReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bool","name":"flag","type":"bool"}],"name":"setBurnable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"setDistributor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bool","name":"flag","type":"bool"}],"name":"setManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"limit","type":"uint256"}],"name":"setMintLimitPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"status","type":"uint256"}],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setTokenRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newUri","type":"string"}],"name":"setUriForMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriForMetadata","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb6600160405180602001604052806000815250620000536200004d620002b260201b60201c565b620002b6565b60018055620000628162000306565b506daaeb6d7670e522a718067333cd4e3b15620001a8578015620000f657604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b158015620000d757600080fd5b505af1158015620000ec573d6000803e3d6000fd5b50505050620001a8565b6001600160a01b03821615620001475760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af290390604401620000bc565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200018e57600080fd5b505af1158015620001a3573d6000803e3d6000fd5b505050505b50620001ca90507366d1633c03a02de32b25da1a98d793c1d9a9fa1d62000318565b620001ec73cbe0990ceedc78c175352288dcfa381c51405a706103e86200039b565b336000908152600760209081526040808320805460ff19166001179055600880546001600160a01b0319167363388b59413ffce9e3b703a12bb350629d9170751790556064600c556005600d55600a9290925581516060810190925260358083529062003e4490830139600b906200026590826200059f565b506703782dace9d9000060105560056011557fab27e2303733f8a6032c0b8d1a1082e4ff9d41ff16eb7a3abeb216cd31c804dd601255670429d069189e000060155560006016556200066b565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60046200031482826200059f565b5050565b620003226200049c565b6001600160a01b0381166200038d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b6200039881620002b6565b50565b6127106001600160601b03821611156200040b5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b606482015260840162000384565b6001600160a01b038216620004635760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c696420726563656976657200000000000000604482015260640162000384565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600555565b6000546001600160a01b03163314620004f85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000384565b565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200052557607f821691505b6020821081036200054657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200059a57600081815260208120601f850160051c81016020861015620005755750805b601f850160051c820191505b81811015620005965782815560010162000581565b5050505b505050565b81516001600160401b03811115620005bb57620005bb620004fa565b620005d381620005cc845462000510565b846200054c565b602080601f8311600181146200060b5760008415620005f25750858301515b600019600386901b1c1916600185901b17855562000596565b600085815260208120601f198616915b828110156200063c578886015182559484019460019091019084016200061b565b50858210156200065b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6137c9806200067b6000396000f3fe6080604052600436106102925760003560e01c806375619ab51161015a578063be900d40116100c1578063f29f15af1161007a578063f29f15af14610833578063f2fde38b14610853578063f34e1ea114610873578063f3ae241514610893578063f9020e33146108b3578063f92e4ba5146108c857600080fd5b8063be900d4014610764578063bfe1092814610784578063c71daccb146107a2578063e985e9c5146107b5578063ea0d8da4146107fe578063f242432a1461081357600080fd5b8063a264c0ae11610113578063a264c0ae146106a2578063a5e90eee146106c2578063aa1b103f146106e2578063af2ee02a146106f7578063b01d98a714610724578063baa2fd1c1461074457600080fd5b806375619ab5146105e45780637c34441e146106045780638a616bc0146106245780638da5cb5b14610644578063988fe62c14610662578063a22cb4651461068257600080fd5b80632ff2b836116101fe5780634511edeb116101b75780634511edeb146105225780634e1273f4146105425780635944c7531461056f5780635d92c1ac1461058f57806371420259146105af578063715018a6146105cf57600080fd5b80632ff2b8361461042f5780633211c5701461044f578063325010bf1461046f57806332b915441461049c5780633d421ea2146104af57806341f43434146104e857600080fd5b80631ffd9211116102505780631ffd92111461037357806327ac36c4146103885780632a55205a1461039d5780632bfef143146103dc5780632e1a7d4d146103ef5780632eb2c2d61461040f57600080fd5b8062fdd58e1461029757806301ffc9a7146102ca57806304634d8d146102fa578063068b2fec1461031c5780630e89341c1461033157806318160ddd1461035e575b600080fd5b3480156102a357600080fd5b506102b76102b2366004612b00565b6108e8565b6040519081526020015b60405180910390f35b3480156102d657600080fd5b506102ea6102e5366004612b40565b610983565b60405190151581526020016102c1565b34801561030657600080fd5b5061031a610315366004612b74565b61098e565b005b34801561032857600080fd5b50600d546102b7565b34801561033d57600080fd5b5061035161034c366004612ba7565b6109d5565b6040516102c19190612c06565b34801561036a57600080fd5b50600e546102b7565b34801561037f57600080fd5b50610351610aab565b34801561039457600080fd5b5061031a610b3d565b3480156103a957600080fd5b506103bd6103b8366004612c19565b610c24565b604080516001600160a01b0390931683526020830191909152016102c1565b61031a6103ea366004612c7f565b610cd2565b3480156103fb57600080fd5b5061031a61040a366004612ba7565b610ef4565b34801561041b57600080fd5b5061031a61042a366004612e13565b610fb5565b34801561043b57600080fd5b5061031a61044a366004612ba7565b610fe4565b34801561045b57600080fd5b5061031a61046a366004612ebc565b611022565b34801561047b57600080fd5b5061048f61048a366004612f2d565b611068565b6040516102c19190612f66565b61031a6104aa366004612c7f565b61115c565b3480156104bb57600080fd5b506102ea6104ca366004612f98565b6001600160a01b031660009081526009602052604090205460ff1690565b3480156104f457600080fd5b5061050a6daaeb6d7670e522a718067333cd4e81565b6040516001600160a01b0390911681526020016102c1565b34801561052e57600080fd5b5061031a61053d366004612ba7565b611303565b34801561054e57600080fd5b5061056261055d366004612fb3565b611341565b6040516102c191906130b8565b34801561057b57600080fd5b5061031a61058a3660046130cb565b61146a565b34801561059b57600080fd5b5061031a6105aa366004613115565b6114ae565b3480156105bb57600080fd5b5061031a6105ca36600461314c565b611536565b3480156105db57600080fd5b5061031a611622565b3480156105f057600080fd5b5061031a6105ff366004612f98565b611636565b34801561061057600080fd5b5061031a61061f366004612ba7565b611691565b34801561063057600080fd5b5061031a61063f366004612ba7565b6116cf565b34801561065057600080fd5b506000546001600160a01b031661050a565b34801561066e57600080fd5b5061031a61067d366004612ba7565b61171c565b34801561068e57600080fd5b5061031a61069d366004613115565b61175a565b3480156106ae57600080fd5b5061031a6106bd366004612ba7565b61176e565b3480156106ce57600080fd5b5061031a6106dd366004613115565b6117ac565b3480156106ee57600080fd5b5061031a611803565b34801561070357600080fd5b50610717610712366004612f2d565b611846565b6040516102c1919061317f565b34801561073057600080fd5b5061031a61073f366004612ba7565b6118c6565b34801561075057600080fd5b5061071761075f366004612f2d565b611904565b34801561077057600080fd5b5061031a61077f366004612ba7565b61196d565b34801561079057600080fd5b506008546001600160a01b031661050a565b3480156107ae57600080fd5b50476102b7565b3480156107c157600080fd5b506102ea6107d03660046131a7565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205460ff1690565b34801561080a57600080fd5b50600c546102b7565b34801561081f57600080fd5b5061031a61082e3660046131d1565b6119ab565b34801561083f57600080fd5b5061031a61084e366004612ba7565b6119d2565b34801561085f57600080fd5b5061031a61086e366004612f98565b611a10565b34801561087f57600080fd5b5061031a61088e366004613235565b611a86565b34801561089f57600080fd5b506102ea6108ae366004612f98565b611ad2565b3480156108bf57600080fd5b50600a546102b7565b3480156108d457600080fd5b5061031a6108e3366004613235565b611af0565b60006001600160a01b0383166109585760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b5060008181526002602090815260408083206001600160a01b03861684529091529020545b92915050565b600061097d82611b3c565b6000546001600160a01b03163314806109ab57506109ab33611ad2565b6109c75760405162461bcd60e51b815260040161094f90613252565b6109d18282611b61565b5050565b606060018214610a195760405162461bcd60e51b815260206004820152600f60248201526e1a5b9d985b1a59081d1bdad95b9259608a1b604482015260640161094f565b600b8054610a2690613299565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5290613299565b8015610a9f5780601f10610a7457610100808354040283529160200191610a9f565b820191906000526020600020905b815481529060010190602001808311610a8257829003601f168201915b50505050509050919050565b6060600b8054610aba90613299565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae690613299565b8015610b335780601f10610b0857610100808354040283529160200191610b33565b820191906000526020600020905b815481529060010190602001808311610b1657829003601f168201915b5050505050905090565b6000546001600160a01b0316331480610b5a5750610b5a33611ad2565b610b765760405162461bcd60e51b815260040161094f90613252565b600c54600e5410610bc95760405162461bcd60e51b815260206004820152601c60248201527f616c7265616479207265736572766174696f6e2066696e697368656400000000604482015260640161094f565b6000600e54600c54610bdb91906132e9565b9050610c0a610bf26008546001600160a01b031690565b60018360405180602001604052806000815250611c1b565b80600e6000828254610c1c91906132fc565b909155505050565b60008281526006602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610c995750604080518082019091526005546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610cb8906001600160601b03168761330f565b610cc29190613326565b91519350909150505b9250929050565b600260015403610d245760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161094f565b60026001908155600a5414610d7b5760405162461bcd60e51b815260206004820152601b60248201527f505249564154452053414c453a206e6f7420617661696c61626c650000000000604482015260640161094f565b6000610d88338484611904565b805190915015610dda5760405162461bcd60e51b815260206004820152601760248201527f505249564154452053414c453a2073757370656e646564000000000000000000604482015260640161094f565b6040810151600114610e2e5760405162461bcd60e51b815260206004820152601d60248201527f505249564154452053414c453a206e6f742077686974656c6973746564000000604482015260640161094f565b60808101511580610e5257506060810151610e4a9085906132fc565b608082015110155b610e9e5760405162461bcd60e51b815260206004820152601f60248201527f505249564154452053414c453a207265616368656420746865206c696d697400604482015260640161094f565b610ebc33858360015b6020020151610eb6919061330f565b34611d31565b610ec63385611dc5565b3360009081526013602052604081208054869290610ee59084906132fc565b90915550506001805550505050565b6000546001600160a01b0316331480610f115750610f1133611ad2565b610f2d5760405162461bcd60e51b815260040161094f90613252565b47811115610f745760405162461bcd60e51b8152602060048201526014602482015273696e73756666696369656e742062616c616e636560601b604482015260640161094f565b600080546040516001600160a01b039091169182916108fc85150291859190818181858888f19350505050158015610fb0573d6000803e3d6000fd5b505050565b846001600160a01b0381163314610fcf57610fcf33611ead565b610fdc8686868686611f66565b505050505050565b6000546001600160a01b0316331480611001575061100133611ad2565b61101d5760405162461bcd60e51b815260040161094f90613252565b601655565b6000546001600160a01b031633148061103f575061103f33611ad2565b61105b5760405162461bcd60e51b815260040161094f90613252565b600b610fb08284836133a4565b611070612aa7565b611078612aa7565b611080612ac6565b6001600a540361109c57611095868686611904565b90506110b4565b6002600a54036110b4576110b1868686611846565b90505b60005b6005811015611100578181600581106110d2576110d2613348565b60200201518382600881106110e9576110e9613348565b6020020152806110f881613463565b9150506110b7565b50600a5460a0830152600e5482611119600560016132fc565b6008811061112957611129613348565b6020020152600d548261113e600560026132fc565b6008811061114e5761114e613348565b602002015250949350505050565b6002600154036111ae5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161094f565b60026001819055600a54146112055760405162461bcd60e51b815260206004820152601a60248201527f5055424c49432053414c453a206e6f7420617661696c61626c65000000000000604482015260640161094f565b6000611212338484611846565b80519091501561125d5760405162461bcd60e51b8152602060048201526016602482015275141550931250c814d053114e881cdd5cdc195b99195960521b604482015260640161094f565b60808101511580611281575060608101516112799085906132fc565b608082015110155b6112cd5760405162461bcd60e51b815260206004820152601e60248201527f5055424c49432053414c453a207265616368656420746865206c696d69740000604482015260640161094f565b6112da3385836001610ea7565b6112e43385611dc5565b3360009081526017602052604081208054869290610ee59084906132fc565b6000546001600160a01b0316331480611320575061132033611ad2565b61133c5760405162461bcd60e51b815260040161094f90613252565b600c55565b606081518351146113a65760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b606482015260840161094f565b600083516001600160401b038111156113c1576113c1612cca565b6040519080825280602002602001820160405280156113ea578160200160208202803683370190505b50905060005b84518110156114625761143585828151811061140e5761140e613348565b602002602001015185838151811061142857611428613348565b60200260200101516108e8565b82828151811061144757611447613348565b602090810291909101015261145b81613463565b90506113f0565b509392505050565b6000546001600160a01b0316331480611487575061148733611ad2565b6114a35760405162461bcd60e51b815260040161094f90613252565b610fb0838383611fb2565b6000546001600160a01b03163314806114cb57506114cb33611ad2565b6114e75760405162461bcd60e51b815260040161094f90613252565b8015611514576001600160a01b0382166000908152600960205260409020805460ff191660011790555050565b506001600160a01b03166000908152600960205260409020805460ff19169055565b3360009081526009602052604090205460ff1661158e5760405162461bcd60e51b815260206004820152601660248201527563616c6c6572206973206e6f74206275726e61626c6560501b604482015260640161094f565b6001600160a01b0383166115d65760405162461bcd60e51b815260206004820152600f60248201526e696e76616c6964206164647265737360881b604482015260640161094f565b600081116116175760405162461bcd60e51b815260206004820152600e60248201526d1a5b9d985b1a5908185b5bdd5b9d60921b604482015260640161094f565b610fb083838361207d565b61162a6121fc565b6116346000612256565b565b6000546001600160a01b0316331480611653575061165333611ad2565b61166f5760405162461bcd60e51b815260040161094f90613252565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314806116ae57506116ae33611ad2565b6116ca5760405162461bcd60e51b815260040161094f90613252565b601055565b6000546001600160a01b03163314806116ec57506116ec33611ad2565b6117085760405162461bcd60e51b815260040161094f90613252565b600090815260066020526040812055565b50565b6000546001600160a01b0316331480611739575061173933611ad2565b6117555760405162461bcd60e51b815260040161094f90613252565b601255565b8161176481611ead565b610fb083836122a6565b6000546001600160a01b031633148061178b575061178b33611ad2565b6117a75760405162461bcd60e51b815260040161094f90613252565b600d55565b6117b46121fc565b80156117e1576001600160a01b0382166000908152600760205260409020805460ff191660011790555050565b506001600160a01b03166000908152600760205260409020805460ff19169055565b6000546001600160a01b0316331480611820575061182033611ad2565b61183c5760405162461bcd60e51b815260040161094f90613252565b6116346000600555565b61184e612ac6565b611856612ac6565b60145460ff161561186657600181525b6118718585856122b1565b1561188357601054602082015261188c565b60155460208201525b60016040808301919091526001600160a01b03861660009081526017602052205460608201526016548160045b6020020152949350505050565b6000546001600160a01b03163314806118e357506118e333611ad2565b6118ff5760405162461bcd60e51b815260040161094f90613252565b601155565b61190c612ac6565b611914612ac6565b600f5460ff161561192457600181525b60105460208201526119378585856122b1565b1561194457600160408201525b6001600160a01b03851660009081526013602052604090205460608201526011548160046118b9565b6000546001600160a01b031633148061198a575061198a33611ad2565b6119a65760405162461bcd60e51b815260040161094f90613252565b601555565b846001600160a01b03811633146119c5576119c533611ead565b610fdc868686868661233e565b6000546001600160a01b03163314806119ef57506119ef33611ad2565b611a0b5760405162461bcd60e51b815260040161094f90613252565b600a55565b611a186121fc565b6001600160a01b038116611a7d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161094f565b61171981612256565b6000546001600160a01b0316331480611aa35750611aa333611ad2565b611abf5760405162461bcd60e51b815260040161094f90613252565b6014805460ff1916911515919091179055565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b0316331480611b0d5750611b0d33611ad2565b611b295760405162461bcd60e51b815260040161094f90613252565b600f805460ff1916911515919091179055565b60006001600160e01b0319821663152a902d60e11b148061097d575061097d82612383565b6127106001600160601b0382161115611b8c5760405162461bcd60e51b815260040161094f9061347c565b6001600160a01b038216611be25760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c696420726563656976657200000000000000604482015260640161094f565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600555565b6001600160a01b038416611c7b5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161094f565b336000611c87856123d3565b90506000611c94856123d3565b905060008681526002602090815260408083206001600160a01b038b16845290915281208054879290611cc89084906132fc565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611d288360008989898961241e565b50505050505050565b80821115611d765760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742076616c756560701b604482015260640161094f565b80821015610fb0576000611d8a83836132e9565b60405190915084906001600160a01b0382169083156108fc029084906000818181858888f19350505050158015610fdc573d6000803e3d6000fd5b600c54600e541015611e195760405162461bcd60e51b815260206004820152601860248201527f7265736572766174696f6e206e6f742066696e69736865640000000000000000604482015260640161094f565b600d541580611e2a575080600d5410155b611e765760405162461bcd60e51b815260206004820152601760248201527f72656163686564206d696e74206c696d69746174696f6e000000000000000000604482015260640161094f565b611e928260018360405180602001604052806000815250611c1b565b80600e6000828254611ea491906132fc565b90915550505050565b6daaeb6d7670e522a718067333cd4e3b1561171957604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611f1a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f3e91906134c6565b61171957604051633b79c77360e21b81526001600160a01b038216600482015260240161094f565b6001600160a01b038516331480611f825750611f8285336107d0565b611f9e5760405162461bcd60e51b815260040161094f906134e3565b611fab8585858585612579565b5050505050565b6127106001600160601b0382161115611fdd5760405162461bcd60e51b815260040161094f9061347c565b6001600160a01b0382166120335760405162461bcd60e51b815260206004820152601b60248201527f455243323938313a20496e76616c696420706172616d65746572730000000000604482015260640161094f565b6040805180820182526001600160a01b0393841681526001600160601b0392831660208083019182526000968752600690529190942093519051909116600160a01b029116179055565b6001600160a01b0383166120df5760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b606482015260840161094f565b3360006120eb846123d3565b905060006120f8846123d3565b6040805160208082018352600091829052888252600281528282206001600160a01b038b16835290522054909150848110156121825760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604482015263616e636560e01b606482015260840161094f565b60008681526002602090815260408083206001600160a01b038b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4604080516020810190915260009052611d28565b6000546001600160a01b031633146116345760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161094f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6109d1338383612751565b6040516bffffffffffffffffffffffff19606085901b166020820152600160348201526000908190605401604051602081830303815290604052805190602001209050612335848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506012549150849050612831565b95945050505050565b6001600160a01b03851633148061235a575061235a85336107d0565b6123765760405162461bcd60e51b815260040161094f906134e3565b611fab8585858585612847565b60006001600160e01b03198216636cdb3d1360e11b14806123b457506001600160e01b031982166303a24d0760e21b145b8061097d57506301ffc9a760e01b6001600160e01b031983161461097d565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061240d5761240d613348565b602090810291909101015292915050565b6001600160a01b0384163b15610fdc5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906124629089908990889088908890600401613532565b6020604051808303816000875af192505050801561249d575060408051601f3d908101601f1916820190925261249a91810190613577565b60015b612549576124a9613594565b806308c379a0036124e257506124bd6135b0565b806124c857506124e4565b8060405162461bcd60e51b815260040161094f9190612c06565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606482015260840161094f565b6001600160e01b0319811663f23a6e6160e01b14611d285760405162461bcd60e51b815260040161094f90613639565b81518351146125db5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b606482015260840161094f565b6001600160a01b0384166126015760405162461bcd60e51b815260040161094f90613681565b3360005b84518110156126eb57600085828151811061262257612622613348565b60200260200101519050600085838151811061264057612640613348565b60209081029190910181015160008481526002835260408082206001600160a01b038e1683529093529190912054909150818110156126915760405162461bcd60e51b815260040161094f906136c6565b60008381526002602090815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906126d09084906132fc565b92505081905550505050806126e490613463565b9050612605565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161273b929190613710565b60405180910390a4610fdc818787878787612975565b816001600160a01b0316836001600160a01b0316036127c45760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b606482015260840161094f565b6001600160a01b03838116600081815260036020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60008261283e8584612a30565b14949350505050565b6001600160a01b03841661286d5760405162461bcd60e51b815260040161094f90613681565b336000612879856123d3565b90506000612886856123d3565b905060008681526002602090815260408083206001600160a01b038c168452909152902054858110156128cb5760405162461bcd60e51b815260040161094f906136c6565b60008781526002602090815260408083206001600160a01b038d8116855292528083208985039055908a1682528120805488929061290a9084906132fc565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461296a848a8a8a8a8a61241e565b505050505050505050565b6001600160a01b0384163b15610fdc5760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906129b99089908990889088908890600401613735565b6020604051808303816000875af19250505080156129f4575060408051601f3d908101601f191682019092526129f191810190613577565b60015b612a00576124a9613594565b6001600160e01b0319811663bc197c8160e01b14611d285760405162461bcd60e51b815260040161094f90613639565b600081815b845181101561146257612a6182868381518110612a5457612a54613348565b6020026020010151612a75565b915080612a6d81613463565b915050612a35565b6000818310612a91576000828152602084905260409020612aa0565b60008381526020839052604090205b9392505050565b6040518061010001604052806008906020820280368337509192915050565b6040518060a001604052806005906020820280368337509192915050565b80356001600160a01b0381168114612afb57600080fd5b919050565b60008060408385031215612b1357600080fd5b612b1c83612ae4565b946020939093013593505050565b6001600160e01b03198116811461171957600080fd5b600060208284031215612b5257600080fd5b8135612aa081612b2a565b80356001600160601b0381168114612afb57600080fd5b60008060408385031215612b8757600080fd5b612b9083612ae4565b9150612b9e60208401612b5d565b90509250929050565b600060208284031215612bb957600080fd5b5035919050565b6000815180845260005b81811015612be657602081850181015186830182015201612bca565b506000602082860101526020601f19601f83011685010191505092915050565b602081526000612aa06020830184612bc0565b60008060408385031215612c2c57600080fd5b50508035926020909101359150565b60008083601f840112612c4d57600080fd5b5081356001600160401b03811115612c6457600080fd5b6020830191508360208260051b8501011115610ccb57600080fd5b600080600060408486031215612c9457600080fd5b8335925060208401356001600160401b03811115612cb157600080fd5b612cbd86828701612c3b565b9497909650939450505050565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b0381118282101715612d0557612d05612cca565b6040525050565b60006001600160401b03821115612d2557612d25612cca565b5060051b60200190565b600082601f830112612d4057600080fd5b81356020612d4d82612d0c565b604051612d5a8282612ce0565b83815260059390931b8501820192828101915086841115612d7a57600080fd5b8286015b84811015612d955780358352918301918301612d7e565b509695505050505050565b600082601f830112612db157600080fd5b81356001600160401b03811115612dca57612dca612cca565b604051612de1601f8301601f191660200182612ce0565b818152846020838601011115612df657600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a08688031215612e2b57600080fd5b612e3486612ae4565b9450612e4260208701612ae4565b935060408601356001600160401b0380821115612e5e57600080fd5b612e6a89838a01612d2f565b94506060880135915080821115612e8057600080fd5b612e8c89838a01612d2f565b93506080880135915080821115612ea257600080fd5b50612eaf88828901612da0565b9150509295509295909350565b60008060208385031215612ecf57600080fd5b82356001600160401b0380821115612ee657600080fd5b818501915085601f830112612efa57600080fd5b813581811115612f0957600080fd5b866020828501011115612f1b57600080fd5b60209290920196919550909350505050565b600080600060408486031215612f4257600080fd5b612f4b84612ae4565b925060208401356001600160401b03811115612cb157600080fd5b6101008101818360005b6008811015612f8f578151835260209283019290910190600101612f70565b50505092915050565b600060208284031215612faa57600080fd5b612aa082612ae4565b60008060408385031215612fc657600080fd5b82356001600160401b0380821115612fdd57600080fd5b818501915085601f830112612ff157600080fd5b81356020612ffe82612d0c565b60405161300b8282612ce0565b83815260059390931b850182019282810191508984111561302b57600080fd5b948201945b838610156130505761304186612ae4565b82529482019490820190613030565b9650508601359250508082111561306657600080fd5b5061307385828601612d2f565b9150509250929050565b600081518084526020808501945080840160005b838110156130ad57815187529582019590820190600101613091565b509495945050505050565b602081526000612aa0602083018461307d565b6000806000606084860312156130e057600080fd5b833592506130f060208501612ae4565b91506130fe60408501612b5d565b90509250925092565b801515811461171957600080fd5b6000806040838503121561312857600080fd5b61313183612ae4565b9150602083013561314181613107565b809150509250929050565b60008060006060848603121561316157600080fd5b61316a84612ae4565b95602085013595506040909401359392505050565b60a08101818360005b6005811015612f8f578151835260209283019290910190600101613188565b600080604083850312156131ba57600080fd5b6131c383612ae4565b9150612b9e60208401612ae4565b600080600080600060a086880312156131e957600080fd5b6131f286612ae4565b945061320060208701612ae4565b9350604086013592506060860135915060808601356001600160401b0381111561322957600080fd5b612eaf88828901612da0565b60006020828403121561324757600080fd5b8135612aa081613107565b60208082526027908201527f63616c6c6572206973206e6f7420746865206f776e6572206e6569746865722060408201526636b0b730b3b2b960c91b606082015260800190565b600181811c908216806132ad57607f821691505b6020821081036132cd57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561097d5761097d6132d3565b8082018082111561097d5761097d6132d3565b808202811582820484141761097d5761097d6132d3565b60008261334357634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b601f821115610fb057600081815260208120601f850160051c810160208610156133855750805b601f850160051c820191505b81811015610fdc57828155600101613391565b6001600160401b038311156133bb576133bb612cca565b6133cf836133c98354613299565b8361335e565b6000601f84116001811461340357600085156133eb5750838201355b600019600387901b1c1916600186901b178355611fab565b600083815260209020601f19861690835b828110156134345786850135825560209485019460019092019101613414565b50868210156134515760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b600060018201613475576134756132d3565b5060010190565b6020808252602a908201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646040820152692073616c65507269636560b01b606082015260800190565b6000602082840312156134d857600080fd5b8151612aa081613107565b6020808252602f908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526e195c881b9bdc88185c1c1c9bdd9959608a1b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061356c90830184612bc0565b979650505050505050565b60006020828403121561358957600080fd5b8151612aa081612b2a565b600060033d11156135ad5760046000803e5060005160e01c5b90565b600060443d10156135be5790565b6040516003193d81016004833e81513d6001600160401b0381602484011181841117156135ed57505050505090565b82850191508151818111156136055750505050505090565b843d870101602082850101111561361f5750505050505090565b61362e60208286010187612ce0565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b604081526000613723604083018561307d565b8281036020840152612335818561307d565b6001600160a01b0386811682528516602082015260a0604082018190526000906137619083018661307d565b8281036060840152613773818661307d565b905082810360808401526137878185612bc0565b9897505050505050505056fea2646970667358221220b6fba1a4a6e03e2070bb7fa8663599d6b80b5883f6aa4fb93ebf3b6550afde7064736f6c63430008110033697066733a2f2f516d66367351746e4b71624b7850634666454d357838424b4d504e6e446e77486758556d4c36435a635572554b32

Deployed Bytecode

0x6080604052600436106102925760003560e01c806375619ab51161015a578063be900d40116100c1578063f29f15af1161007a578063f29f15af14610833578063f2fde38b14610853578063f34e1ea114610873578063f3ae241514610893578063f9020e33146108b3578063f92e4ba5146108c857600080fd5b8063be900d4014610764578063bfe1092814610784578063c71daccb146107a2578063e985e9c5146107b5578063ea0d8da4146107fe578063f242432a1461081357600080fd5b8063a264c0ae11610113578063a264c0ae146106a2578063a5e90eee146106c2578063aa1b103f146106e2578063af2ee02a146106f7578063b01d98a714610724578063baa2fd1c1461074457600080fd5b806375619ab5146105e45780637c34441e146106045780638a616bc0146106245780638da5cb5b14610644578063988fe62c14610662578063a22cb4651461068257600080fd5b80632ff2b836116101fe5780634511edeb116101b75780634511edeb146105225780634e1273f4146105425780635944c7531461056f5780635d92c1ac1461058f57806371420259146105af578063715018a6146105cf57600080fd5b80632ff2b8361461042f5780633211c5701461044f578063325010bf1461046f57806332b915441461049c5780633d421ea2146104af57806341f43434146104e857600080fd5b80631ffd9211116102505780631ffd92111461037357806327ac36c4146103885780632a55205a1461039d5780632bfef143146103dc5780632e1a7d4d146103ef5780632eb2c2d61461040f57600080fd5b8062fdd58e1461029757806301ffc9a7146102ca57806304634d8d146102fa578063068b2fec1461031c5780630e89341c1461033157806318160ddd1461035e575b600080fd5b3480156102a357600080fd5b506102b76102b2366004612b00565b6108e8565b6040519081526020015b60405180910390f35b3480156102d657600080fd5b506102ea6102e5366004612b40565b610983565b60405190151581526020016102c1565b34801561030657600080fd5b5061031a610315366004612b74565b61098e565b005b34801561032857600080fd5b50600d546102b7565b34801561033d57600080fd5b5061035161034c366004612ba7565b6109d5565b6040516102c19190612c06565b34801561036a57600080fd5b50600e546102b7565b34801561037f57600080fd5b50610351610aab565b34801561039457600080fd5b5061031a610b3d565b3480156103a957600080fd5b506103bd6103b8366004612c19565b610c24565b604080516001600160a01b0390931683526020830191909152016102c1565b61031a6103ea366004612c7f565b610cd2565b3480156103fb57600080fd5b5061031a61040a366004612ba7565b610ef4565b34801561041b57600080fd5b5061031a61042a366004612e13565b610fb5565b34801561043b57600080fd5b5061031a61044a366004612ba7565b610fe4565b34801561045b57600080fd5b5061031a61046a366004612ebc565b611022565b34801561047b57600080fd5b5061048f61048a366004612f2d565b611068565b6040516102c19190612f66565b61031a6104aa366004612c7f565b61115c565b3480156104bb57600080fd5b506102ea6104ca366004612f98565b6001600160a01b031660009081526009602052604090205460ff1690565b3480156104f457600080fd5b5061050a6daaeb6d7670e522a718067333cd4e81565b6040516001600160a01b0390911681526020016102c1565b34801561052e57600080fd5b5061031a61053d366004612ba7565b611303565b34801561054e57600080fd5b5061056261055d366004612fb3565b611341565b6040516102c191906130b8565b34801561057b57600080fd5b5061031a61058a3660046130cb565b61146a565b34801561059b57600080fd5b5061031a6105aa366004613115565b6114ae565b3480156105bb57600080fd5b5061031a6105ca36600461314c565b611536565b3480156105db57600080fd5b5061031a611622565b3480156105f057600080fd5b5061031a6105ff366004612f98565b611636565b34801561061057600080fd5b5061031a61061f366004612ba7565b611691565b34801561063057600080fd5b5061031a61063f366004612ba7565b6116cf565b34801561065057600080fd5b506000546001600160a01b031661050a565b34801561066e57600080fd5b5061031a61067d366004612ba7565b61171c565b34801561068e57600080fd5b5061031a61069d366004613115565b61175a565b3480156106ae57600080fd5b5061031a6106bd366004612ba7565b61176e565b3480156106ce57600080fd5b5061031a6106dd366004613115565b6117ac565b3480156106ee57600080fd5b5061031a611803565b34801561070357600080fd5b50610717610712366004612f2d565b611846565b6040516102c1919061317f565b34801561073057600080fd5b5061031a61073f366004612ba7565b6118c6565b34801561075057600080fd5b5061071761075f366004612f2d565b611904565b34801561077057600080fd5b5061031a61077f366004612ba7565b61196d565b34801561079057600080fd5b506008546001600160a01b031661050a565b3480156107ae57600080fd5b50476102b7565b3480156107c157600080fd5b506102ea6107d03660046131a7565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205460ff1690565b34801561080a57600080fd5b50600c546102b7565b34801561081f57600080fd5b5061031a61082e3660046131d1565b6119ab565b34801561083f57600080fd5b5061031a61084e366004612ba7565b6119d2565b34801561085f57600080fd5b5061031a61086e366004612f98565b611a10565b34801561087f57600080fd5b5061031a61088e366004613235565b611a86565b34801561089f57600080fd5b506102ea6108ae366004612f98565b611ad2565b3480156108bf57600080fd5b50600a546102b7565b3480156108d457600080fd5b5061031a6108e3366004613235565b611af0565b60006001600160a01b0383166109585760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b5060008181526002602090815260408083206001600160a01b03861684529091529020545b92915050565b600061097d82611b3c565b6000546001600160a01b03163314806109ab57506109ab33611ad2565b6109c75760405162461bcd60e51b815260040161094f90613252565b6109d18282611b61565b5050565b606060018214610a195760405162461bcd60e51b815260206004820152600f60248201526e1a5b9d985b1a59081d1bdad95b9259608a1b604482015260640161094f565b600b8054610a2690613299565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5290613299565b8015610a9f5780601f10610a7457610100808354040283529160200191610a9f565b820191906000526020600020905b815481529060010190602001808311610a8257829003601f168201915b50505050509050919050565b6060600b8054610aba90613299565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae690613299565b8015610b335780601f10610b0857610100808354040283529160200191610b33565b820191906000526020600020905b815481529060010190602001808311610b1657829003601f168201915b5050505050905090565b6000546001600160a01b0316331480610b5a5750610b5a33611ad2565b610b765760405162461bcd60e51b815260040161094f90613252565b600c54600e5410610bc95760405162461bcd60e51b815260206004820152601c60248201527f616c7265616479207265736572766174696f6e2066696e697368656400000000604482015260640161094f565b6000600e54600c54610bdb91906132e9565b9050610c0a610bf26008546001600160a01b031690565b60018360405180602001604052806000815250611c1b565b80600e6000828254610c1c91906132fc565b909155505050565b60008281526006602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610c995750604080518082019091526005546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610cb8906001600160601b03168761330f565b610cc29190613326565b91519350909150505b9250929050565b600260015403610d245760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161094f565b60026001908155600a5414610d7b5760405162461bcd60e51b815260206004820152601b60248201527f505249564154452053414c453a206e6f7420617661696c61626c650000000000604482015260640161094f565b6000610d88338484611904565b805190915015610dda5760405162461bcd60e51b815260206004820152601760248201527f505249564154452053414c453a2073757370656e646564000000000000000000604482015260640161094f565b6040810151600114610e2e5760405162461bcd60e51b815260206004820152601d60248201527f505249564154452053414c453a206e6f742077686974656c6973746564000000604482015260640161094f565b60808101511580610e5257506060810151610e4a9085906132fc565b608082015110155b610e9e5760405162461bcd60e51b815260206004820152601f60248201527f505249564154452053414c453a207265616368656420746865206c696d697400604482015260640161094f565b610ebc33858360015b6020020151610eb6919061330f565b34611d31565b610ec63385611dc5565b3360009081526013602052604081208054869290610ee59084906132fc565b90915550506001805550505050565b6000546001600160a01b0316331480610f115750610f1133611ad2565b610f2d5760405162461bcd60e51b815260040161094f90613252565b47811115610f745760405162461bcd60e51b8152602060048201526014602482015273696e73756666696369656e742062616c616e636560601b604482015260640161094f565b600080546040516001600160a01b039091169182916108fc85150291859190818181858888f19350505050158015610fb0573d6000803e3d6000fd5b505050565b846001600160a01b0381163314610fcf57610fcf33611ead565b610fdc8686868686611f66565b505050505050565b6000546001600160a01b0316331480611001575061100133611ad2565b61101d5760405162461bcd60e51b815260040161094f90613252565b601655565b6000546001600160a01b031633148061103f575061103f33611ad2565b61105b5760405162461bcd60e51b815260040161094f90613252565b600b610fb08284836133a4565b611070612aa7565b611078612aa7565b611080612ac6565b6001600a540361109c57611095868686611904565b90506110b4565b6002600a54036110b4576110b1868686611846565b90505b60005b6005811015611100578181600581106110d2576110d2613348565b60200201518382600881106110e9576110e9613348565b6020020152806110f881613463565b9150506110b7565b50600a5460a0830152600e5482611119600560016132fc565b6008811061112957611129613348565b6020020152600d548261113e600560026132fc565b6008811061114e5761114e613348565b602002015250949350505050565b6002600154036111ae5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161094f565b60026001819055600a54146112055760405162461bcd60e51b815260206004820152601a60248201527f5055424c49432053414c453a206e6f7420617661696c61626c65000000000000604482015260640161094f565b6000611212338484611846565b80519091501561125d5760405162461bcd60e51b8152602060048201526016602482015275141550931250c814d053114e881cdd5cdc195b99195960521b604482015260640161094f565b60808101511580611281575060608101516112799085906132fc565b608082015110155b6112cd5760405162461bcd60e51b815260206004820152601e60248201527f5055424c49432053414c453a207265616368656420746865206c696d69740000604482015260640161094f565b6112da3385836001610ea7565b6112e43385611dc5565b3360009081526017602052604081208054869290610ee59084906132fc565b6000546001600160a01b0316331480611320575061132033611ad2565b61133c5760405162461bcd60e51b815260040161094f90613252565b600c55565b606081518351146113a65760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b606482015260840161094f565b600083516001600160401b038111156113c1576113c1612cca565b6040519080825280602002602001820160405280156113ea578160200160208202803683370190505b50905060005b84518110156114625761143585828151811061140e5761140e613348565b602002602001015185838151811061142857611428613348565b60200260200101516108e8565b82828151811061144757611447613348565b602090810291909101015261145b81613463565b90506113f0565b509392505050565b6000546001600160a01b0316331480611487575061148733611ad2565b6114a35760405162461bcd60e51b815260040161094f90613252565b610fb0838383611fb2565b6000546001600160a01b03163314806114cb57506114cb33611ad2565b6114e75760405162461bcd60e51b815260040161094f90613252565b8015611514576001600160a01b0382166000908152600960205260409020805460ff191660011790555050565b506001600160a01b03166000908152600960205260409020805460ff19169055565b3360009081526009602052604090205460ff1661158e5760405162461bcd60e51b815260206004820152601660248201527563616c6c6572206973206e6f74206275726e61626c6560501b604482015260640161094f565b6001600160a01b0383166115d65760405162461bcd60e51b815260206004820152600f60248201526e696e76616c6964206164647265737360881b604482015260640161094f565b600081116116175760405162461bcd60e51b815260206004820152600e60248201526d1a5b9d985b1a5908185b5bdd5b9d60921b604482015260640161094f565b610fb083838361207d565b61162a6121fc565b6116346000612256565b565b6000546001600160a01b0316331480611653575061165333611ad2565b61166f5760405162461bcd60e51b815260040161094f90613252565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314806116ae57506116ae33611ad2565b6116ca5760405162461bcd60e51b815260040161094f90613252565b601055565b6000546001600160a01b03163314806116ec57506116ec33611ad2565b6117085760405162461bcd60e51b815260040161094f90613252565b600090815260066020526040812055565b50565b6000546001600160a01b0316331480611739575061173933611ad2565b6117555760405162461bcd60e51b815260040161094f90613252565b601255565b8161176481611ead565b610fb083836122a6565b6000546001600160a01b031633148061178b575061178b33611ad2565b6117a75760405162461bcd60e51b815260040161094f90613252565b600d55565b6117b46121fc565b80156117e1576001600160a01b0382166000908152600760205260409020805460ff191660011790555050565b506001600160a01b03166000908152600760205260409020805460ff19169055565b6000546001600160a01b0316331480611820575061182033611ad2565b61183c5760405162461bcd60e51b815260040161094f90613252565b6116346000600555565b61184e612ac6565b611856612ac6565b60145460ff161561186657600181525b6118718585856122b1565b1561188357601054602082015261188c565b60155460208201525b60016040808301919091526001600160a01b03861660009081526017602052205460608201526016548160045b6020020152949350505050565b6000546001600160a01b03163314806118e357506118e333611ad2565b6118ff5760405162461bcd60e51b815260040161094f90613252565b601155565b61190c612ac6565b611914612ac6565b600f5460ff161561192457600181525b60105460208201526119378585856122b1565b1561194457600160408201525b6001600160a01b03851660009081526013602052604090205460608201526011548160046118b9565b6000546001600160a01b031633148061198a575061198a33611ad2565b6119a65760405162461bcd60e51b815260040161094f90613252565b601555565b846001600160a01b03811633146119c5576119c533611ead565b610fdc868686868661233e565b6000546001600160a01b03163314806119ef57506119ef33611ad2565b611a0b5760405162461bcd60e51b815260040161094f90613252565b600a55565b611a186121fc565b6001600160a01b038116611a7d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161094f565b61171981612256565b6000546001600160a01b0316331480611aa35750611aa333611ad2565b611abf5760405162461bcd60e51b815260040161094f90613252565b6014805460ff1916911515919091179055565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b0316331480611b0d5750611b0d33611ad2565b611b295760405162461bcd60e51b815260040161094f90613252565b600f805460ff1916911515919091179055565b60006001600160e01b0319821663152a902d60e11b148061097d575061097d82612383565b6127106001600160601b0382161115611b8c5760405162461bcd60e51b815260040161094f9061347c565b6001600160a01b038216611be25760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c696420726563656976657200000000000000604482015260640161094f565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600555565b6001600160a01b038416611c7b5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161094f565b336000611c87856123d3565b90506000611c94856123d3565b905060008681526002602090815260408083206001600160a01b038b16845290915281208054879290611cc89084906132fc565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611d288360008989898961241e565b50505050505050565b80821115611d765760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742076616c756560701b604482015260640161094f565b80821015610fb0576000611d8a83836132e9565b60405190915084906001600160a01b0382169083156108fc029084906000818181858888f19350505050158015610fdc573d6000803e3d6000fd5b600c54600e541015611e195760405162461bcd60e51b815260206004820152601860248201527f7265736572766174696f6e206e6f742066696e69736865640000000000000000604482015260640161094f565b600d541580611e2a575080600d5410155b611e765760405162461bcd60e51b815260206004820152601760248201527f72656163686564206d696e74206c696d69746174696f6e000000000000000000604482015260640161094f565b611e928260018360405180602001604052806000815250611c1b565b80600e6000828254611ea491906132fc565b90915550505050565b6daaeb6d7670e522a718067333cd4e3b1561171957604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611f1a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f3e91906134c6565b61171957604051633b79c77360e21b81526001600160a01b038216600482015260240161094f565b6001600160a01b038516331480611f825750611f8285336107d0565b611f9e5760405162461bcd60e51b815260040161094f906134e3565b611fab8585858585612579565b5050505050565b6127106001600160601b0382161115611fdd5760405162461bcd60e51b815260040161094f9061347c565b6001600160a01b0382166120335760405162461bcd60e51b815260206004820152601b60248201527f455243323938313a20496e76616c696420706172616d65746572730000000000604482015260640161094f565b6040805180820182526001600160a01b0393841681526001600160601b0392831660208083019182526000968752600690529190942093519051909116600160a01b029116179055565b6001600160a01b0383166120df5760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b606482015260840161094f565b3360006120eb846123d3565b905060006120f8846123d3565b6040805160208082018352600091829052888252600281528282206001600160a01b038b16835290522054909150848110156121825760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604482015263616e636560e01b606482015260840161094f565b60008681526002602090815260408083206001600160a01b038b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4604080516020810190915260009052611d28565b6000546001600160a01b031633146116345760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161094f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6109d1338383612751565b6040516bffffffffffffffffffffffff19606085901b166020820152600160348201526000908190605401604051602081830303815290604052805190602001209050612335848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506012549150849050612831565b95945050505050565b6001600160a01b03851633148061235a575061235a85336107d0565b6123765760405162461bcd60e51b815260040161094f906134e3565b611fab8585858585612847565b60006001600160e01b03198216636cdb3d1360e11b14806123b457506001600160e01b031982166303a24d0760e21b145b8061097d57506301ffc9a760e01b6001600160e01b031983161461097d565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061240d5761240d613348565b602090810291909101015292915050565b6001600160a01b0384163b15610fdc5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906124629089908990889088908890600401613532565b6020604051808303816000875af192505050801561249d575060408051601f3d908101601f1916820190925261249a91810190613577565b60015b612549576124a9613594565b806308c379a0036124e257506124bd6135b0565b806124c857506124e4565b8060405162461bcd60e51b815260040161094f9190612c06565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606482015260840161094f565b6001600160e01b0319811663f23a6e6160e01b14611d285760405162461bcd60e51b815260040161094f90613639565b81518351146125db5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b606482015260840161094f565b6001600160a01b0384166126015760405162461bcd60e51b815260040161094f90613681565b3360005b84518110156126eb57600085828151811061262257612622613348565b60200260200101519050600085838151811061264057612640613348565b60209081029190910181015160008481526002835260408082206001600160a01b038e1683529093529190912054909150818110156126915760405162461bcd60e51b815260040161094f906136c6565b60008381526002602090815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906126d09084906132fc565b92505081905550505050806126e490613463565b9050612605565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161273b929190613710565b60405180910390a4610fdc818787878787612975565b816001600160a01b0316836001600160a01b0316036127c45760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b606482015260840161094f565b6001600160a01b03838116600081815260036020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60008261283e8584612a30565b14949350505050565b6001600160a01b03841661286d5760405162461bcd60e51b815260040161094f90613681565b336000612879856123d3565b90506000612886856123d3565b905060008681526002602090815260408083206001600160a01b038c168452909152902054858110156128cb5760405162461bcd60e51b815260040161094f906136c6565b60008781526002602090815260408083206001600160a01b038d8116855292528083208985039055908a1682528120805488929061290a9084906132fc565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461296a848a8a8a8a8a61241e565b505050505050505050565b6001600160a01b0384163b15610fdc5760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906129b99089908990889088908890600401613735565b6020604051808303816000875af19250505080156129f4575060408051601f3d908101601f191682019092526129f191810190613577565b60015b612a00576124a9613594565b6001600160e01b0319811663bc197c8160e01b14611d285760405162461bcd60e51b815260040161094f90613639565b600081815b845181101561146257612a6182868381518110612a5457612a54613348565b6020026020010151612a75565b915080612a6d81613463565b915050612a35565b6000818310612a91576000828152602084905260409020612aa0565b60008381526020839052604090205b9392505050565b6040518061010001604052806008906020820280368337509192915050565b6040518060a001604052806005906020820280368337509192915050565b80356001600160a01b0381168114612afb57600080fd5b919050565b60008060408385031215612b1357600080fd5b612b1c83612ae4565b946020939093013593505050565b6001600160e01b03198116811461171957600080fd5b600060208284031215612b5257600080fd5b8135612aa081612b2a565b80356001600160601b0381168114612afb57600080fd5b60008060408385031215612b8757600080fd5b612b9083612ae4565b9150612b9e60208401612b5d565b90509250929050565b600060208284031215612bb957600080fd5b5035919050565b6000815180845260005b81811015612be657602081850181015186830182015201612bca565b506000602082860101526020601f19601f83011685010191505092915050565b602081526000612aa06020830184612bc0565b60008060408385031215612c2c57600080fd5b50508035926020909101359150565b60008083601f840112612c4d57600080fd5b5081356001600160401b03811115612c6457600080fd5b6020830191508360208260051b8501011115610ccb57600080fd5b600080600060408486031215612c9457600080fd5b8335925060208401356001600160401b03811115612cb157600080fd5b612cbd86828701612c3b565b9497909650939450505050565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b0381118282101715612d0557612d05612cca565b6040525050565b60006001600160401b03821115612d2557612d25612cca565b5060051b60200190565b600082601f830112612d4057600080fd5b81356020612d4d82612d0c565b604051612d5a8282612ce0565b83815260059390931b8501820192828101915086841115612d7a57600080fd5b8286015b84811015612d955780358352918301918301612d7e565b509695505050505050565b600082601f830112612db157600080fd5b81356001600160401b03811115612dca57612dca612cca565b604051612de1601f8301601f191660200182612ce0565b818152846020838601011115612df657600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a08688031215612e2b57600080fd5b612e3486612ae4565b9450612e4260208701612ae4565b935060408601356001600160401b0380821115612e5e57600080fd5b612e6a89838a01612d2f565b94506060880135915080821115612e8057600080fd5b612e8c89838a01612d2f565b93506080880135915080821115612ea257600080fd5b50612eaf88828901612da0565b9150509295509295909350565b60008060208385031215612ecf57600080fd5b82356001600160401b0380821115612ee657600080fd5b818501915085601f830112612efa57600080fd5b813581811115612f0957600080fd5b866020828501011115612f1b57600080fd5b60209290920196919550909350505050565b600080600060408486031215612f4257600080fd5b612f4b84612ae4565b925060208401356001600160401b03811115612cb157600080fd5b6101008101818360005b6008811015612f8f578151835260209283019290910190600101612f70565b50505092915050565b600060208284031215612faa57600080fd5b612aa082612ae4565b60008060408385031215612fc657600080fd5b82356001600160401b0380821115612fdd57600080fd5b818501915085601f830112612ff157600080fd5b81356020612ffe82612d0c565b60405161300b8282612ce0565b83815260059390931b850182019282810191508984111561302b57600080fd5b948201945b838610156130505761304186612ae4565b82529482019490820190613030565b9650508601359250508082111561306657600080fd5b5061307385828601612d2f565b9150509250929050565b600081518084526020808501945080840160005b838110156130ad57815187529582019590820190600101613091565b509495945050505050565b602081526000612aa0602083018461307d565b6000806000606084860312156130e057600080fd5b833592506130f060208501612ae4565b91506130fe60408501612b5d565b90509250925092565b801515811461171957600080fd5b6000806040838503121561312857600080fd5b61313183612ae4565b9150602083013561314181613107565b809150509250929050565b60008060006060848603121561316157600080fd5b61316a84612ae4565b95602085013595506040909401359392505050565b60a08101818360005b6005811015612f8f578151835260209283019290910190600101613188565b600080604083850312156131ba57600080fd5b6131c383612ae4565b9150612b9e60208401612ae4565b600080600080600060a086880312156131e957600080fd5b6131f286612ae4565b945061320060208701612ae4565b9350604086013592506060860135915060808601356001600160401b0381111561322957600080fd5b612eaf88828901612da0565b60006020828403121561324757600080fd5b8135612aa081613107565b60208082526027908201527f63616c6c6572206973206e6f7420746865206f776e6572206e6569746865722060408201526636b0b730b3b2b960c91b606082015260800190565b600181811c908216806132ad57607f821691505b6020821081036132cd57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561097d5761097d6132d3565b8082018082111561097d5761097d6132d3565b808202811582820484141761097d5761097d6132d3565b60008261334357634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b601f821115610fb057600081815260208120601f850160051c810160208610156133855750805b601f850160051c820191505b81811015610fdc57828155600101613391565b6001600160401b038311156133bb576133bb612cca565b6133cf836133c98354613299565b8361335e565b6000601f84116001811461340357600085156133eb5750838201355b600019600387901b1c1916600186901b178355611fab565b600083815260209020601f19861690835b828110156134345786850135825560209485019460019092019101613414565b50868210156134515760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b600060018201613475576134756132d3565b5060010190565b6020808252602a908201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646040820152692073616c65507269636560b01b606082015260800190565b6000602082840312156134d857600080fd5b8151612aa081613107565b6020808252602f908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526e195c881b9bdc88185c1c1c9bdd9959608a1b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061356c90830184612bc0565b979650505050505050565b60006020828403121561358957600080fd5b8151612aa081612b2a565b600060033d11156135ad5760046000803e5060005160e01c5b90565b600060443d10156135be5790565b6040516003193d81016004833e81513d6001600160401b0381602484011181841117156135ed57505050505090565b82850191508151818111156136055750505050505090565b843d870101602082850101111561361f5750505050505090565b61362e60208286010187612ce0565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b604081526000613723604083018561307d565b8281036020840152612335818561307d565b6001600160a01b0386811682528516602082015260a0604082018190526000906137619083018661307d565b8281036060840152613773818661307d565b905082810360808401526137878185612bc0565b9897505050505050505056fea2646970667358221220b6fba1a4a6e03e2070bb7fa8663599d6b80b5883f6aa4fb93ebf3b6550afde7064736f6c63430008110033

Deployed Bytecode Sourcemap

60003:18773:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22582:230;;;;;;;;;;-1:-1:-1;22582:230:0;;;;;:::i;:::-;;:::i;:::-;;;597:25:1;;;585:2;570:18;22582:230:0;;;;;;;;64651:174;;;;;;;;;;-1:-1:-1;64651:174:0;;;;;:::i;:::-;;:::i;:::-;;;1184:14:1;;1177:22;1159:41;;1147:2;1132:18;64651:174:0;1019:187:1;65041:145:0;;;;;;;;;;-1:-1:-1;65041:145:0;;;;;:::i;:::-;;:::i;:::-;;69226:91;;;;;;;;;;-1:-1:-1;69294:18:0;;69226:91;;70189:187;;;;;;;;;;-1:-1:-1;70189:187:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;69327:83::-;;;;;;;;;;-1:-1:-1;69392:13:0;;69327:83;;69029:96;;;;;;;;;;;;;:::i;76777:294::-;;;;;;;;;;;;;:::i;40432:442::-;;;;;;;;;;-1:-1:-1;40432:442:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;2941:32:1;;;2923:51;;3005:2;2990:18;;2983:34;;;;2896:18;40432:442:0;2749:274:1;72016:820:0;;;;;;:::i;:::-;;:::i;78532:241::-;;;;;;;;;;-1:-1:-1;78532:241:0;;;;;:::i;:::-;;:::i;66229:252::-;;;;;;;;;;-1:-1:-1;66229:252:0;;;;;:::i;:::-;;:::i;74062:118::-;;;;;;;;;;-1:-1:-1;74062:118:0;;;;;:::i;:::-;;:::i;69689:112::-;;;;;;;;;;-1:-1:-1;69689:112:0;;;;;:::i;:::-;;:::i;77238:837::-;;;;;;;;;;-1:-1:-1;77238:837:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;74370:723::-;;;;;;:::i;:::-;;:::i;67791:115::-;;;;;;;;;;-1:-1:-1;67791:115:0;;;;;:::i;:::-;-1:-1:-1;;;;;67875:21:0;67850:4;67875:21;;;:13;:21;;;;;;;;;67791:115;57078:143;;;;;;;;;;;;57178:42;57078:143;;;;;-1:-1:-1;;;;;8721:32:1;;;8703:51;;8691:2;8676:18;57078:143:0;8525:235:1;69807:107:0;;;;;;;;;;-1:-1:-1;69807:107:0;;;;;:::i;:::-;;:::i;22978:524::-;;;;;;;;;;-1:-1:-1;22978:524:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;65286:167::-;;;;;;;;;;-1:-1:-1;65286:167:0;;;;;:::i;:::-;;:::i;68092:220::-;;;;;;;;;;-1:-1:-1;68092:220:0;;;;;:::i;:::-;;:::i;68509:274::-;;;;;;;;;;-1:-1:-1;68509:274:0;;;;;:::i;:::-;;:::i;11083:103::-;;;;;;;;;;;;;:::i;67517:110::-;;;;;;;;;;-1:-1:-1;67517:110:0;;;;;:::i;:::-;;:::i;71457:108::-;;;;;;;;;;-1:-1:-1;71457:108:0;;;;;:::i;:::-;;:::i;65459:::-;;;;;;;;;;-1:-1:-1;65459:108:0;;;;;:::i;:::-;;:::i;10435:87::-;;;;;;;;;;-1:-1:-1;10481:7:0;10508:6;-1:-1:-1;;;;;10508:6:0;10435:87;;71697:117;;;;;;;;;;-1:-1:-1;71697:117:0;;;;;:::i;:::-;;:::i;65806:183::-;;;;;;;;;;-1:-1:-1;65806:183:0;;;;;:::i;:::-;;:::i;69920:103::-;;;;;;;;;;-1:-1:-1;69920:103:0;;;;;:::i;:::-;;:::i;66861:208::-;;;;;;;;;;-1:-1:-1;66861:208:0;;;;;:::i;:::-;;:::i;65192:88::-;;;;;;;;;;;;;:::i;73006:642::-;;;;;;;;;;-1:-1:-1;73006:642:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;71571:120::-;;;;;;;;;;-1:-1:-1;71571:120:0;;;;;:::i;:::-;;:::i;70558:583::-;;;;;;;;;;-1:-1:-1;70558:583:0;;;;;:::i;:::-;;:::i;73950:106::-;;;;;;;;;;-1:-1:-1;73950:106:0;;;;;:::i;:::-;;:::i;67234:94::-;;;;;;;;;;-1:-1:-1;67306:12:0;;-1:-1:-1;;;;;67306:12:0;67234:94;;78243:106;;;;;;;;;;-1:-1:-1;78318:21:0;78243:106;;23802:168;;;;;;;;;;-1:-1:-1;23802:168:0;;;;;:::i;:::-;-1:-1:-1;;;;;23925:27:0;;;23901:4;23925:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;23802:168;69131:89;;;;;;;;;;-1:-1:-1;69199:16:0;;69131:89;;65995:228;;;;;;;;;;-1:-1:-1;65995:228:0;;;;;:::i;:::-;;:::i;69588:95::-;;;;;;;;;;-1:-1:-1;69588:95:0;;;;;:::i;:::-;;:::i;11341:201::-;;;;;;;;;;-1:-1:-1;11341:201:0;;;;;:::i;:::-;;:::i;73837:107::-;;;;;;;;;;-1:-1:-1;73837:107:0;;;;;:::i;:::-;;:::i;66608:113::-;;;;;;;;;;-1:-1:-1;66608:113:0;;;;;:::i;:::-;;:::i;68942:81::-;;;;;;;;;;-1:-1:-1;69006:12:0;;68942:81;;71342:109;;;;;;;;;;-1:-1:-1;71342:109:0;;;;;:::i;:::-;;:::i;22582:230::-;22668:7;-1:-1:-1;;;;;22696:21:0;;22688:76;;;;-1:-1:-1;;;22688:76:0;;14002:2:1;22688:76:0;;;13984:21:1;14041:2;14021:18;;;14014:30;14080:34;14060:18;;;14053:62;-1:-1:-1;;;14131:18:1;;;14124:40;14181:19;;22688:76:0;;;;;;;;;-1:-1:-1;22782:13:0;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;22782:22:0;;;;;;;;;;22582:230;;;;;:::o;64651:174::-;64757:4;64781:36;64805:11;64781:23;:36::i;65041:145::-;10481:7;10508:6;-1:-1:-1;;;;;10508:6:0;62841:10;:21;;:46;;;62866:21;62876:10;62866:9;:21::i;:::-;62832:100;;;;-1:-1:-1;;;62832:100:0;;;;;;;:::i;:::-;65139:44:::1;65159:8;65169:12;65139:18;:44::i;:::-;65041:145:::0;;:::o;70189:187::-;70250:13;60722:1;70285:7;:24;70276:54;;;;-1:-1:-1;;;70276:54:0;;14821:2:1;70276:54:0;;;14803:21:1;14860:2;14840:18;;;14833:30;-1:-1:-1;;;14879:18:1;;;14872:45;14934:18;;70276:54:0;14619:339:1;70276:54:0;70349:17;70341:27;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70189:187;;;:::o;69029:96::-;69078:13;69103:17;69095:27;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69029:96;:::o;76777:294::-;10481:7;10508:6;-1:-1:-1;;;;;10508:6:0;62841:10;:21;;:46;;;62866:21;62876:10;62866:9;:21::i;:::-;62832:100;;;;-1:-1:-1;;;62832:100:0;;;;;;;:::i;:::-;76866:16:::1;;76850:13;;:32;76841:75;;;::::0;-1:-1:-1;;;76841:75:0;;15550:2:1;76841:75:0::1;::::0;::::1;15532:21:1::0;15589:2;15569:18;;;15562:30;15628;15608:18;;;15601:58;15676:18;;76841:75:0::1;15348:352:1::0;76841:75:0::1;76929:11;76962:13;;76943:16;;:32;;;;:::i;:::-;76929:46;;76986;76993:13;67306:12:::0;;-1:-1:-1;;;;;67306:12:0;;67234:94;76993:13:::1;60722:1;77023:3;76986:46;;;;;;;;;;;::::0;:5:::1;:46::i;:::-;77060:3;77043:13;;:20;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;76777:294:0:o;40432:442::-;40529:7;40587:27;;;:17;:27;;;;;;;;40558:56;;;;;;;;;-1:-1:-1;;;;;40558:56:0;;;;;-1:-1:-1;;;40558:56:0;;;-1:-1:-1;;;;;40558:56:0;;;;;;;;40529:7;;40627:92;;-1:-1:-1;40678:29:0;;;;;;;;;40688:19;40678:29;-1:-1:-1;;;;;40678:29:0;;;;-1:-1:-1;;;40678:29:0;;-1:-1:-1;;;;;40678:29:0;;;;;40627:92;40769:23;;;;40731:21;;41240:5;;40756:36;;-1:-1:-1;;;;;40756:36:0;:10;:36;:::i;:::-;40755:58;;;;:::i;:::-;40834:16;;;-1:-1:-1;40731:82:0;;-1:-1:-1;;40432:442:0;;;;;;:::o;72016:820::-;44648:1;45246:7;;:19;45238:63;;;;-1:-1:-1;;;45238:63:0;;16697:2:1;45238:63:0;;;16679:21:1;16736:2;16716:18;;;16709:30;16775:33;16755:18;;;16748:61;16826:18;;45238:63:0;16495:355:1;45238:63:0;44648:1;45379:7;:18;;;72140:12:::1;::::0;:35:::1;72131:77;;;::::0;-1:-1:-1;;;72131:77:0;;17057:2:1;72131:77:0::1;::::0;::::1;17039:21:1::0;17096:2;17076:18;;;17069:30;17135:29;17115:18;;;17108:57;17182:18;;72131:77:0::1;16855:351:1::0;72131:77:0::1;72221:32;72256:47;72278:10;72290:11;;72256:20;:47::i;:::-;72323:28:::0;;72221:82;;-1:-1:-1;72323:33:0;72314:71:::1;;;::::0;-1:-1:-1;;;72314:71:0;;17545:2:1;72314:71:0::1;::::0;::::1;17527:21:1::0;17584:2;17564:18;;;17557:30;17623:25;17603:18;;;17596:53;17666:18;;72314:71:0::1;17343:347:1::0;72314:71:0::1;72405:30:::0;;::::1;::::0;72439:1:::1;72405:35;72396:79;;;::::0;-1:-1:-1;;;72396:79:0;;17897:2:1;72396:79:0::1;::::0;::::1;17879:21:1::0;17936:2;17916:18;;;17909:30;17975:31;17955:18;;;17948:59;18024:18;;72396:79:0::1;17695:353:1::0;72396:79:0::1;72495:32:::0;;::::1;::::0;:37;;:113:::1;;-1:-1:-1::0;72573:30:0;;::::1;::::0;:34:::1;::::0;72604:3;;72573:34:::1;:::i;:::-;72536:32:::0;;::::1;::::0;:72:::1;;72495:113;72486:159;;;::::0;-1:-1:-1;;;72486:159:0;;18255:2:1;72486:159:0::1;::::0;::::1;18237:21:1::0;18294:2;18274:18;;;18267:30;18333:33;18313:18;;;18306:61;18384:18;;72486:159:0::1;18053:355:1::0;72486:159:0::1;72658:68;72673:10;72710:3:::0;72685:7;61043:1:::1;72685:24;;;;;:28;;;;:::i;:::-;72715:9;72658:13;:68::i;:::-;72739:30;72752:10;72764:3;72739:11;:30::i;:::-;72810:10;72780:41;::::0;;;:29:::1;:41;::::0;;;;:48;;72825:3;;72780:41;:48:::1;::::0;72825:3;;72780:48:::1;:::i;:::-;::::0;;;-1:-1:-1;;44604:1:0;45558:22;;-1:-1:-1;;;;72016:820:0:o;78532:241::-;10481:7;10508:6;-1:-1:-1;;;;;10508:6:0;62841:10;:21;;:46;;;62866:21;62876:10;62866:9;:21::i;:::-;62832:100;;;;-1:-1:-1;;;62832:100:0;;;;;;;:::i;:::-;78626:21:::1;78616:6;:31;;78607:66;;;::::0;-1:-1:-1;;;78607:66:0;;18615:2:1;78607:66:0::1;::::0;::::1;18597:21:1::0;18654:2;18634:18;;;18627:30;-1:-1:-1;;;18673:18:1;;;18666:50;18733:18;;78607:66:0::1;18413:344:1::0;78607:66:0::1;78686:22;10508:6:::0;;78740:25:::1;::::0;-1:-1:-1;;;;;10508:6:0;;;;;;78740:25:::1;::::0;::::1;;::::0;;;;;78686:22;78740:25;;10508:6;78740:25;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;78596:177;78532:241:::0;:::o;66229:252::-;66413:4;-1:-1:-1;;;;;58419:18:0;;58427:10;58419:18;58415:83;;58454:32;58475:10;58454:20;:32::i;:::-;66421:57:::1;66449:4;66455:2;66459:3;66464:7;66473:4;66421:27;:57::i;:::-;66229:252:::0;;;;;;:::o;74062:118::-;10481:7;10508:6;-1:-1:-1;;;;;10508:6:0;62841:10;:21;;:46;;;62866:21;62876:10;62866:9;:21::i;:::-;62832:100;;;;-1:-1:-1;;;62832:100:0;;;;;;;:::i;:::-;74145:21:::1;:32:::0;74062:118::o;69689:112::-;10481:7;10508:6;-1:-1:-1;;;;;10508:6:0;62841:10;:21;;:46;;;62866:21;62876:10;62866:9;:21::i;:::-;62832:100;;;;-1:-1:-1;;;62832:100:0;;;;;;;:::i;:::-;69772:17:::1;:26;69792:6:::0;;69772:17;:26:::1;:::i;77238:837::-:0;77332:29;;:::i;:::-;77374:38;;:::i;:::-;77423:29;;:::i;:::-;60856:1;77500:12;;:35;77496:268;;77559:43;77581:6;77589:11;;77559:20;:43::i;:::-;77552:50;;77496:268;;;60910:1;77652:12;;:34;77648:116;;77710:42;77731:6;77739:11;;77710:19;:42::i;:::-;77703:49;;77648:116;77781:9;77776:83;61260:1;77794;:10;77776:83;;;77840:4;77845:1;77840:7;;;;;;;:::i;:::-;;;;;77826:8;77835:1;77826:11;;;;;;;:::i;:::-;;;;:21;77806:3;;;;:::i;:::-;;;;77776:83;;;-1:-1:-1;77903:12:0;;77871:29;;;:44;77961:13;;77871:8;61380:12;61260:1;61391;61380:12;:::i;:::-;77926:32;;;;;;;:::i;:::-;;;;:48;78018:18;;77985:8;61447:12;61260:1;61458;61447:12;:::i;:::-;77985:30;;;;;;;:::i;:::-;;;;:51;-1:-1:-1;78057:8:0;77238:837;-1:-1:-1;;;;77238:837:0:o;74370:723::-;44648:1;45246:7;;:19;45238:63;;;;-1:-1:-1;;;45238:63:0;;16697:2:1;45238:63:0;;;16679:21:1;16736:2;16716:18;;;16709:30;16775:33;16755:18;;;16748:61;16826:18;;45238:63:0;16495:355:1;45238:63:0;44648:1;45379:7;:18;;;74493:12:::1;::::0;:34:::1;74484:75;;;::::0;-1:-1:-1;;;74484:75:0;;21162:2:1;74484:75:0::1;::::0;::::1;21144:21:1::0;21201:2;21181:18;;;21174:30;21240:28;21220:18;;;21213:56;21286:18;;74484:75:0::1;20960:350:1::0;74484:75:0::1;74572:32;74607:46;74628:10;74640:11;;74607:19;:46::i;:::-;74673:28:::0;;74572:81;;-1:-1:-1;74673:33:0;74664:70:::1;;;::::0;-1:-1:-1;;;74664:70:0;;21517:2:1;74664:70:0::1;::::0;::::1;21499:21:1::0;21556:2;21536:18;;;21529:30;-1:-1:-1;;;21575:18:1;;;21568:52;21637:18;;74664:70:0::1;21315:346:1::0;74664:70:0::1;74754:32:::0;;::::1;::::0;:37;;:113:::1;;-1:-1:-1::0;74832:30:0;;::::1;::::0;:34:::1;::::0;74863:3;;74832:34:::1;:::i;:::-;74795:32:::0;;::::1;::::0;:72:::1;;74754:113;74745:158;;;::::0;-1:-1:-1;;;74745:158:0;;21868:2:1;74745:158:0::1;::::0;::::1;21850:21:1::0;21907:2;21887:18;;;21880:30;21946:32;21926:18;;;21919:60;21996:18;;74745:158:0::1;21666:354:1::0;74745:158:0::1;74916:68;74931:10;74968:3:::0;74943:7;61043:1:::1;74943:24;::::0;74916:68:::1;74997:30;75010:10;75022:3;74997:11;:30::i;:::-;75067:10;75038:40;::::0;;;:28:::1;:40;::::0;;;;:47;;75082:3;;75038:40;:47:::1;::::0;75082:3;;75038:47:::1;:::i;69807:107::-:0;10481:7;10508:6;-1:-1:-1;;;;;10508:6:0;62841:10;:21;;:46;;;62866:21;62876:10;62866:9;:21::i;:::-;62832:100;;;;-1:-1:-1;;;62832:100:0;;;;;;;:::i;:::-;69884:16:::1;:27:::0;69807:107::o;22978:524::-;23134:16;23195:3;:10;23176:8;:15;:29;23168:83;;;;-1:-1:-1;;;23168:83:0;;22227:2:1;23168:83:0;;;22209:21:1;22266:2;22246:18;;;22239:30;22305:34;22285:18;;;22278:62;-1:-1:-1;;;22356:18:1;;;22349:39;22405:19;;23168:83:0;22025:405:1;23168:83:0;23264:30;23311:8;:15;-1:-1:-1;;;;;23297:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23297:30:0;;23264:63;;23345:9;23340:122;23364:8;:15;23360:1;:19;23340:122;;;23420:30;23430:8;23439:1;23430:11;;;;;;;;:::i;:::-;;;;;;;23443:3;23447:1;23443:6;;;;;;;;:::i;:::-;;;;;;;23420:9;:30::i;:::-;23401:13;23415:1;23401:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;23381:3;;;:::i;:::-;;;23340:122;;;-1:-1:-1;23481:13:0;22978:524;-1:-1:-1;;;22978:524:0:o;65286:167::-;10481:7;10508:6;-1:-1:-1;;;;;10508:6:0;62841:10;:21;;:46;;;62866:21;62876:10;62866:9;:21::i;:::-;62832:100;;;;-1:-1:-1;;;62832:100:0;;;;;;;:::i;:::-;65399:51:::1;65417:7;65426:8;65436:12;65399:16;:51::i;68092:220::-:0;10481:7;10508:6;-1:-1:-1;;;;;10508:6:0;62841:10;:21;;:46;;;62866:21;62876:10;62866:9;:21::i;:::-;62832:100;;;;-1:-1:-1;;;62832:100:0;;;;;;;:::i;:::-;68185:4:::1;68181:124;;;-1:-1:-1::0;;;;;68206:21:0;::::1;;::::0;;;:13:::1;:21;::::0;;;;:28;;-1:-1:-1;;68206:28:0::1;68230:4;68206:28;::::0;;65041:145;;:::o;68181:124::-:1;-1:-1:-1::0;;;;;;68272:21:0::1;;::::0;;;:13:::1;:21;::::0;;;;68265:28;;-1:-1:-1;;68265:28:0::1;::::0;;68092:220::o;68509:274::-;63175:10;67850:4;67875:21;;;:13;:21;;;;;;;;63155:59;;;;-1:-1:-1;;;63155:59:0;;22637:2:1;63155:59:0;;;22619:21:1;22676:2;22656:18;;;22649:30;-1:-1:-1;;;22695:18:1;;;22688:52;22757:18;;63155:59:0;22435:346:1;63155:59:0;-1:-1:-1;;;;;68639:21:0;::::1;68630:51;;;::::0;-1:-1:-1;;;68630:51:0;;22988:2:1;68630:51:0::1;::::0;::::1;22970:21:1::0;23027:2;23007:18;;;23000:30;-1:-1:-1;;;23046:18:1;;;23039:45;23101:18;;68630:51:0::1;22786:339:1::0;68630:51:0::1;68710:1;68701:6;:10;68692:39;;;::::0;-1:-1:-1;;;68692:39:0;;23332:2:1;68692:39:0::1;::::0;::::1;23314:21:1::0;23371:2;23351:18;;;23344:30;-1:-1:-1;;;23390:18:1;;;23383:44;23444:18;;68692:39:0::1;23130:338:1::0;68692:39:0::1;68744:31;68751:5;68758:7;68767:6;68744:5;:31::i;11083:103::-:0;10321:13;:11;:13::i;:::-;11148:30:::1;11175:1;11148:18;:30::i;:::-;11083:103::o:0;67517:110::-;10481:7;10508:6;-1:-1:-1;;;;;10508:6:0;62841:10;:21;;:46;;;62866:21;62876:10;62866:9;:21::i;:::-;62832:100;;;;-1:-1:-1;;;62832:100:0;;;;;;;:::i;:::-;67598:12:::1;:21:::0;;-1:-1:-1;;;;;;67598:21:0::1;-1:-1:-1::0;;;;;67598:21:0;;;::::1;::::0;;;::::1;::::0;;67517:110::o;71457:108::-;10481:7;10508:6;-1:-1:-1;;;;;10508:6:0;62841:10;:21;;:46;;;62866:21;62876:10;62866:9;:21::i;:::-;62832:100;;;;-1:-1:-1;;;62832:100:0;;;;;;;:::i;:::-;71535:19:::1;:27:::0;71457:108::o;65459:::-;10481:7;10508:6;-1:-1:-1;;;;;10508:6:0;62841:10;:21;;:46;;;62866:21;62876:10;62866:9;:21::i;:::-;62832:100;;;;-1:-1:-1;;;62832:100:0;;;;;;;:::i;:::-;42888:26;;;;:17;:26;;;;;42881:33;65459:108::o;65535:29::-:1;65459:108:::0;:::o;71697:117::-;10481:7;10508:6;-1:-1:-1;;;;;10508:6:0;62841:10;:21;;:46;;;62866:21;62876:10;62866:9;:21::i;:::-;62832:100;;;;-1:-1:-1;;;62832:100:0;;;;;;;:::i;:::-;71779:25:::1;:32:::0;71697:117::o;65806:183::-;65931:8;58599:30;58620:8;58599:20;:30::i;:::-;65943:43:::1;65967:8;65977;65943:23;:43::i;69920:103::-:0;10481:7;10508:6;-1:-1:-1;;;;;10508:6:0;62841:10;:21;;:46;;;62866:21;62876:10;62866:9;:21::i;:::-;62832:100;;;;-1:-1:-1;;;62832:100:0;;;;;;;:::i;:::-;69994:18:::1;:26:::0;69920:103::o;66861:208::-;10321:13;:11;:13::i;:::-;66944:4:::1;66940:122;;;-1:-1:-1::0;;;;;66965:20:0;::::1;;::::0;;;:12:::1;:20;::::0;;;;:27;;-1:-1:-1;;66965:27:0::1;66988:4;66965:27;::::0;;65041:145;;:::o;66940:122::-:1;-1:-1:-1::0;;;;;;67030:20:0::1;;::::0;;;:12:::1;:20;::::0;;;;67023:27;;-1:-1:-1;;67023:27:0::1;::::0;;66861:208::o;65192:88::-;10481:7;10508:6;-1:-1:-1;;;;;10508:6:0;62841:10;:21;;:46;;;62866:21;62876:10;62866:9;:21::i;:::-;62832:100;;;;-1:-1:-1;;;62832:100:0;;;;;;;:::i;:::-;65254:23:::1;42000:19:::0;;41993:26;41932:95;73006:642;73106:24;;:::i;:::-;73143:31;;:::i;:::-;73191:25;;;;73187:67;;;73250:1;73220:31;;73187:67;73268:40;73287:6;73295:11;;73268:17;:40::i;:::-;73264:159;;;73338:19;;73312:23;;;:45;73264:159;;;73402:18;;73376:23;;;:44;73264:159;73465:1;73433:29;;;;:33;;;;-1:-1:-1;;;;;73509:36:0;;;;;;:28;73433:29;73509:36;;;73477:29;;;:68;73590:21;;73433:6;61216:1;73556:31;;;;:55;73632:6;73006:642;-1:-1:-1;;;;73006:642:0:o;71571:120::-;10481:7;10508:6;-1:-1:-1;;;;;10508:6:0;62841:10;:21;;:46;;;62866:21;62876:10;62866:9;:21::i;:::-;62832:100;;;;-1:-1:-1;;;62832:100:0;;;;;;;:::i;:::-;71655:22:::1;:33:::0;71571:120::o;70558:583::-;70659:24;;:::i;:::-;70696:31;;:::i;:::-;70744:26;;;;70740:68;;;70804:1;70774:31;;70740:68;70844:19;;70818:23;;;:45;70878:40;70897:6;70905:11;;70878:17;:40::i;:::-;70874:84;;;70954:1;70922:29;;;:33;70874:84;-1:-1:-1;;;;;71000:37:0;;;;;;:29;:37;;;;;;70968:29;;;:69;71082:22;;70968:6;61216:1;71048:31;;73950:106;10481:7;10508:6;-1:-1:-1;;;;;10508:6:0;62841:10;:21;;:46;;;62866:21;62876:10;62866:9;:21::i;:::-;62832:100;;;;-1:-1:-1;;;62832:100:0;;;;;;;:::i;:::-;74027:18:::1;:26:::0;73950:106::o;65995:228::-;66157:4;-1:-1:-1;;;;;58419:18:0;;58427:10;58419:18;58415:83;;58454:32;58475:10;58454:20;:32::i;:::-;66165:55:::1;66188:4;66194:2;66198:7;66207:6;66215:4;66165:22;:55::i;69588:95::-:0;10481:7;10508:6;-1:-1:-1;;;;;10508:6:0;62841:10;:21;;:46;;;62866:21;62876:10;62866:9;:21::i;:::-;62832:100;;;;-1:-1:-1;;;62832:100:0;;;;;;;:::i;:::-;69659:12:::1;:21:::0;69588:95::o;11341:201::-;10321:13;:11;:13::i;:::-;-1:-1:-1;;;;;11430:22:0;::::1;11422:73;;;::::0;-1:-1:-1;;;11422:73:0;;23675:2:1;11422:73:0::1;::::0;::::1;23657:21:1::0;23714:2;23694:18;;;23687:30;23753:34;23733:18;;;23726:62;-1:-1:-1;;;23804:18:1;;;23797:36;23850:19;;11422:73:0::1;23473:402:1::0;11422:73:0::1;11506:28;11525:8;11506:18;:28::i;73837:107::-:0;10481:7;10508:6;-1:-1:-1;;;;;10508:6:0;62841:10;:21;;:46;;;62866:21;62876:10;62866:9;:21::i;:::-;62832:100;;;;-1:-1:-1;;;62832:100:0;;;;;;;:::i;:::-;73909:25:::1;:32:::0;;-1:-1:-1;;73909:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;73837:107::o;66608:113::-;-1:-1:-1;;;;;66691:20:0;66666:4;66691:20;;;:12;:20;;;;;;;;;66608:113::o;71342:109::-;10481:7;10508:6;-1:-1:-1;;;;;10508:6:0;62841:10;:21;;:46;;;62866:21;62876:10;62866:9;:21::i;:::-;62832:100;;;;-1:-1:-1;;;62832:100:0;;;;;;;:::i;:::-;71415:26:::1;:33:::0;;-1:-1:-1;;71415:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;71342:109::o;40162:215::-;40264:4;-1:-1:-1;;;;;;40288:41:0;;-1:-1:-1;;;40288:41:0;;:81;;;40333:36;40357:11;40333:23;:36::i;41524:332::-;41240:5;-1:-1:-1;;;;;41627:33:0;;;;41619:88;;;;-1:-1:-1;;;41619:88:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41726:22:0;;41718:60;;;;-1:-1:-1;;;41718:60:0;;24493:2:1;41718:60:0;;;24475:21:1;24532:2;24512:18;;;24505:30;24571:27;24551:18;;;24544:55;24616:18;;41718:60:0;24291:349:1;41718:60:0;41813:35;;;;;;;;;-1:-1:-1;;;;;41813:35:0;;;;;;-1:-1:-1;;;;;41813:35:0;;;;;;;;;;-1:-1:-1;;;41791:57:0;;;;:19;:57;41524:332::o;29225:729::-;-1:-1:-1;;;;;29378:16:0;;29370:62;;;;-1:-1:-1;;;29370:62:0;;24847:2:1;29370:62:0;;;24829:21:1;24886:2;24866:18;;;24859:30;24925:34;24905:18;;;24898:62;-1:-1:-1;;;24976:18:1;;;24969:31;25017:19;;29370:62:0;24645:397:1;29370:62:0;9166:10;29445:16;29510:21;29528:2;29510:17;:21::i;:::-;29487:44;;29542:24;29569:25;29587:6;29569:17;:25::i;:::-;29542:52;;29686:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;29686:17:0;;;;;;;;;:27;;29707:6;;29686:13;:27;;29707:6;;29686:27;:::i;:::-;;;;-1:-1:-1;;29729:52:0;;;25221:25:1;;;25277:2;25262:18;;25255:34;;;-1:-1:-1;;;;;29729:52:0;;;;29762:1;;29729:52;;;;;;25194:18:1;29729:52:0;;;;;;;29872:74;29903:8;29921:1;29925:2;29929;29933:6;29941:4;29872:30;:74::i;:::-;29359:595;;;29225:729;;;;:::o;75713:381::-;75827:7;75818:5;:16;;75809:49;;;;-1:-1:-1;;;75809:49:0;;25502:2:1;75809:49:0;;;25484:21:1;25541:2;25521:18;;;25514:30;-1:-1:-1;;;25560:18:1;;;25553:48;25618:18;;75809:49:0;25300:342:1;75809:49:0;75919:7;75911:5;:15;75907:180;;;75943:14;75960:15;75970:5;75960:7;:15;:::i;:::-;76050:25;;75943:32;;-1:-1:-1;76024:9:0;;-1:-1:-1;;;;;76050:15:0;;;:25;;;;;75943:32;;75990:22;76050:25;75990:22;76050:25;75943:32;76050:15;:25;;;;;;;;;;;;;;;;;;;76261:328;76355:16;;76338:13;;:33;;76329:72;;;;-1:-1:-1;;;76329:72:0;;25849:2:1;76329:72:0;;;25831:21:1;25888:2;25868:18;;;25861:30;25927:26;25907:18;;;25900:54;25971:18;;76329:72:0;25647:348:1;76329:72:0;76421:18;;:23;;:52;;;76470:3;76448:18;;:25;;76421:52;76412:90;;;;-1:-1:-1;;;76412:90:0;;26202:2:1;76412:90:0;;;26184:21:1;26241:2;26221:18;;;26214:30;26280:25;26260:18;;;26253:53;26323:18;;76412:90:0;26000:347:1;76412:90:0;76515:35;76522:2;60722:1;76541:3;76515:35;;;;;;;;;;;;:5;:35::i;:::-;76578:3;76561:13;;:20;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;76261:328:0:o;58657:419::-;57178:42;58848:45;:49;58844:225;;58919:67;;-1:-1:-1;;;58919:67:0;;58970:4;58919:67;;;26564:34:1;-1:-1:-1;;;;;26634:15:1;;26614:18;;;26607:43;57178:42:0;;58919;;26499:18:1;;58919:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58914:144;;59014:28;;-1:-1:-1;;;59014:28:0;;-1:-1:-1;;;;;8721:32:1;;59014:28:0;;;8703:51:1;8676:18;;59014:28:0;8525:235:1;24526:439:0;-1:-1:-1;;;;;24759:20:0;;9166:10;24759:20;;:60;;-1:-1:-1;24783:36:0;24800:4;9166:10;23802:168;:::i;24783:36::-;24737:157;;;;-1:-1:-1;;;24737:157:0;;;;;;;:::i;:::-;24905:52;24928:4;24934:2;24938:3;24943:7;24952:4;24905:22;:52::i;:::-;24526:439;;;;;:::o;42307:390::-;41240:5;-1:-1:-1;;;;;42459:33:0;;;;42451:88;;;;-1:-1:-1;;;42451:88:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42558:22:0;;42550:62;;;;-1:-1:-1;;;42550:62:0;;27529:2:1;42550:62:0;;;27511:21:1;27568:2;27548:18;;;27541:30;27607:29;27587:18;;;27580:57;27654:18;;42550:62:0;27327:351:1;42550:62:0;42654:35;;;;;;;;-1:-1:-1;;;;;42654:35:0;;;;;-1:-1:-1;;;;;42654:35:0;;;;;;;;;;-1:-1:-1;42625:26:0;;;:17;:26;;;;;;:64;;;;;;;-1:-1:-1;;;42625:64:0;;;;;;42307:390::o;31468:808::-;-1:-1:-1;;;;;31595:18:0;;31587:66;;;;-1:-1:-1;;;31587:66:0;;27885:2:1;31587:66:0;;;27867:21:1;27924:2;27904:18;;;27897:30;27963:34;27943:18;;;27936:62;-1:-1:-1;;;28014:18:1;;;28007:33;28057:19;;31587:66:0;27683:399:1;31587:66:0;9166:10;31666:16;31731:21;31749:2;31731:17;:21::i;:::-;31708:44;;31763:24;31790:25;31808:6;31790:17;:25::i;:::-;31828:66;;;;;;;;;-1:-1:-1;31828:66:0;;;;31929:13;;;:9;:13;;;;;-1:-1:-1;;;;;31929:19:0;;;;;;;;31763:52;;-1:-1:-1;31967:21:0;;;;31959:70;;;;-1:-1:-1;;;31959:70:0;;28289:2:1;31959:70:0;;;28271:21:1;28328:2;28308:18;;;28301:30;28367:34;28347:18;;;28340:62;-1:-1:-1;;;28418:18:1;;;28411:34;28462:19;;31959:70:0;28087:400:1;31959:70:0;32065:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;32065:19:0;;;;;;;;;;;;32087:20;;;32065:42;;32136:54;;25221:25:1;;;25262:18;;;25255:34;;;32065:19:0;;32136:54;;;;;;25194:18:1;32136:54:0;;;;;;;32203:65;;;;;;;;;32247:1;32203:65;;;66229:252;10600:132;10481:7;10508:6;-1:-1:-1;;;;;10508:6:0;9166:10;10664:23;10656:68;;;;-1:-1:-1;;;10656:68:0;;28694:2:1;10656:68:0;;;28676:21:1;;;28713:18;;;28706:30;28772:34;28752:18;;;28745:62;28824:18;;10656:68:0;28492:356:1;11702:191:0;11776:16;11795:6;;-1:-1:-1;;;;;11812:17:0;;;-1:-1:-1;;;;;;11812:17:0;;;;;;11845:40;;11795:6;;;;;;;11845:40;;11776:16;11845:40;11765:128;11702:191;:::o;23575:155::-;23670:52;9166:10;23703:8;23713;23670:18;:52::i;75266:278::-;75409:38;;-1:-1:-1;;29030:2:1;29026:15;;;29022:53;75409:38:0;;;29010:66:1;75443:1:0;29092:12:1;;;29085:28;75366:4:0;;;;29129:12:1;;75409:38:0;;;;;;;;;;;;75398:51;;;;;;75383:66;;75468;75488:11;;75468:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;75501:25:0;;;-1:-1:-1;75528:4:0;;-1:-1:-1;75468:18:0;:66::i;:::-;75460:76;75266:278;-1:-1:-1;;;;;75266:278:0:o;24042:407::-;-1:-1:-1;;;;;24250:20:0;;9166:10;24250:20;;:60;;-1:-1:-1;24274:36:0;24291:4;9166:10;23802:168;:::i;24274:36::-;24228:157;;;;-1:-1:-1;;;24228:157:0;;;;;;;:::i;:::-;24396:45;24414:4;24420:2;24424;24428:6;24436:4;24396:17;:45::i;21605:310::-;21707:4;-1:-1:-1;;;;;;21744:41:0;;-1:-1:-1;;;21744:41:0;;:110;;-1:-1:-1;;;;;;;21802:52:0;;-1:-1:-1;;;21802:52:0;21744:110;:163;;;-1:-1:-1;;;;;;;;;;13559:40:0;;;21871:36;13450:157;37904:198;38024:16;;;38038:1;38024:16;;;;;;;;;37970;;37999:22;;38024:16;;;;;;;;;;;;-1:-1:-1;38024:16:0;37999:41;;38062:7;38051:5;38057:1;38051:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;38089:5;37904:198;-1:-1:-1;;37904:198:0:o;36331:744::-;-1:-1:-1;;;;;36546:13:0;;1482:19;:23;36542:526;;36582:72;;-1:-1:-1;;;36582:72:0;;-1:-1:-1;;;;;36582:38:0;;;;;:72;;36621:8;;36631:4;;36637:2;;36641:6;;36649:4;;36582:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36582:72:0;;;;;;;;-1:-1:-1;;36582:72:0;;;;;;;;;;;;:::i;:::-;;;36578:479;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;36930:6;36923:14;;-1:-1:-1;;;36923:14:0;;;;;;;;:::i;36578:479::-;;;36979:62;;-1:-1:-1;;;36979:62:0;;31034:2:1;36979:62:0;;;31016:21:1;31073:2;31053:18;;;31046:30;31112:34;31092:18;;;31085:62;-1:-1:-1;;;31163:18:1;;;31156:50;31223:19;;36979:62:0;30832:416:1;36578:479:0;-1:-1:-1;;;;;;36704:55:0;;-1:-1:-1;;;36704:55:0;36700:154;;36784:50;;-1:-1:-1;;;36784:50:0;;;;;;;:::i;26761:1146::-;26988:7;:14;26974:3;:10;:28;26966:81;;;;-1:-1:-1;;;26966:81:0;;31864:2:1;26966:81:0;;;31846:21:1;31903:2;31883:18;;;31876:30;31942:34;31922:18;;;31915:62;-1:-1:-1;;;31993:18:1;;;31986:38;32041:19;;26966:81:0;31662:404:1;26966:81:0;-1:-1:-1;;;;;27066:16:0;;27058:66;;;;-1:-1:-1;;;27058:66:0;;;;;;;:::i;:::-;9166:10;27137:16;27254:421;27278:3;:10;27274:1;:14;27254:421;;;27310:10;27323:3;27327:1;27323:6;;;;;;;;:::i;:::-;;;;;;;27310:19;;27344:14;27361:7;27369:1;27361:10;;;;;;;;:::i;:::-;;;;;;;;;;;;27388:19;27410:13;;;:9;:13;;;;;;-1:-1:-1;;;;;27410:19:0;;;;;;;;;;;;27361:10;;-1:-1:-1;27452:21:0;;;;27444:76;;;;-1:-1:-1;;;27444:76:0;;;;;;;:::i;:::-;27564:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;27564:19:0;;;;;;;;;;27586:20;;;27564:42;;27636:17;;;;;;;:27;;27586:20;;27564:13;27636:27;;27586:20;;27636:27;:::i;:::-;;;;;;;;27295:380;;;27290:3;;;;:::i;:::-;;;27254:421;;;;27722:2;-1:-1:-1;;;;;27692:47:0;27716:4;-1:-1:-1;;;;;27692:47:0;27706:8;-1:-1:-1;;;;;27692:47:0;;27726:3;27731:7;27692:47;;;;;;;:::i;:::-;;;;;;;;27824:75;27860:8;27870:4;27876:2;27880:3;27885:7;27894:4;27824:35;:75::i;33638:331::-;33793:8;-1:-1:-1;;;;;33784:17:0;:5;-1:-1:-1;;;;;33784:17:0;;33776:71;;;;-1:-1:-1;;;33776:71:0;;33560:2:1;33776:71:0;;;33542:21:1;33599:2;33579:18;;;33572:30;33638:34;33618:18;;;33611:62;-1:-1:-1;;;33689:18:1;;;33682:39;33738:19;;33776:71:0;33358:405:1;33776:71:0;-1:-1:-1;;;;;33858:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;33858:46:0;;;;;;;;;;33920:41;;1159::1;;;33920::0;;1132:18:1;33920:41:0;;;;;;;33638:331;;;:::o;46700:190::-;46825:4;46878;46849:25;46862:5;46869:4;46849:12;:25::i;:::-;:33;;46700:190;-1:-1:-1;;;;46700:190:0:o;25429:974::-;-1:-1:-1;;;;;25617:16:0;;25609:66;;;;-1:-1:-1;;;25609:66:0;;;;;;;:::i;:::-;9166:10;25688:16;25753:21;25771:2;25753:17;:21::i;:::-;25730:44;;25785:24;25812:25;25830:6;25812:17;:25::i;:::-;25785:52;;25923:19;25945:13;;;:9;:13;;;;;;;;-1:-1:-1;;;;;25945:19:0;;;;;;;;;;25983:21;;;;25975:76;;;;-1:-1:-1;;;25975:76:0;;;;;;;:::i;:::-;26087:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;26087:19:0;;;;;;;;;;26109:20;;;26087:42;;26151:17;;;;;;;:27;;26109:20;;26087:13;26151:27;;26109:20;;26151:27;:::i;:::-;;;;-1:-1:-1;;26196:46:0;;;25221:25:1;;;25277:2;25262:18;;25255:34;;;-1:-1:-1;;;;;26196:46:0;;;;;;;;;;;;;;25194:18:1;26196:46:0;;;;;;;26327:68;26358:8;26368:4;26374:2;26378;26382:6;26390:4;26327:30;:68::i;:::-;25598:805;;;;25429:974;;;;;:::o;37083:813::-;-1:-1:-1;;;;;37323:13:0;;1482:19;:23;37319:570;;37359:79;;-1:-1:-1;;;37359:79:0;;-1:-1:-1;;;;;37359:43:0;;;;;:79;;37403:8;;37413:4;;37419:3;;37424:7;;37433:4;;37359:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37359:79:0;;;;;;;;-1:-1:-1;;37359:79:0;;;;;;;;;;;;:::i;:::-;;;37355:523;;;;:::i;:::-;-1:-1:-1;;;;;;37520:60:0;;-1:-1:-1;;;37520:60:0;37516:159;;37605:50;;-1:-1:-1;;;37605:50:0;;;;;;;:::i;47567:296::-;47650:7;47693:4;47650:7;47708:118;47732:5;:12;47728:1;:16;47708:118;;;47781:33;47791:12;47805:5;47811:1;47805:8;;;;;;;;:::i;:::-;;;;;;;47781:9;:33::i;:::-;47766:48;-1:-1:-1;47746:3:0;;;;:::i;:::-;;;;47708:118;;53774:149;53837:7;53868:1;53864;:5;:51;;53999:13;54093:15;;;54129:4;54122:15;;;54176:4;54160:21;;53864:51;;;53999:13;54093:15;;;54129:4;54122:15;;;54176:4;54160:21;;53872:20;53857:58;53774:149;-1:-1:-1;;;53774:149:0:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:254::-;260:6;268;321:2;309:9;300:7;296:23;292:32;289:52;;;337:1;334;327:12;289:52;360:29;379:9;360:29;:::i;:::-;350:39;436:2;421:18;;;;408:32;;-1:-1:-1;;;192:254:1:o;633:131::-;-1:-1:-1;;;;;;707:32:1;;697:43;;687:71;;754:1;751;744:12;769:245;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;935:9;922:23;954:30;978:5;954:30;:::i;1211:179::-;1278:20;;-1:-1:-1;;;;;1327:38:1;;1317:49;;1307:77;;1380:1;1377;1370:12;1395:258;1462:6;1470;1523:2;1511:9;1502:7;1498:23;1494:32;1491:52;;;1539:1;1536;1529:12;1491:52;1562:29;1581:9;1562:29;:::i;:::-;1552:39;;1610:37;1643:2;1632:9;1628:18;1610:37;:::i;:::-;1600:47;;1395:258;;;;;:::o;1658:180::-;1717:6;1770:2;1758:9;1749:7;1745:23;1741:32;1738:52;;;1786:1;1783;1776:12;1738:52;-1:-1:-1;1809:23:1;;1658:180;-1:-1:-1;1658:180:1:o;1843:423::-;1885:3;1923:5;1917:12;1950:6;1945:3;1938:19;1975:1;1985:162;1999:6;1996:1;1993:13;1985:162;;;2061:4;2117:13;;;2113:22;;2107:29;2089:11;;;2085:20;;2078:59;2014:12;1985:162;;;1989:3;2192:1;2185:4;2176:6;2171:3;2167:16;2163:27;2156:38;2255:4;2248:2;2244:7;2239:2;2231:6;2227:15;2223:29;2218:3;2214:39;2210:50;2203:57;;;1843:423;;;;:::o;2271:220::-;2420:2;2409:9;2402:21;2383:4;2440:45;2481:2;2470:9;2466:18;2458:6;2440:45;:::i;2496:248::-;2564:6;2572;2625:2;2613:9;2604:7;2600:23;2596:32;2593:52;;;2641:1;2638;2631:12;2593:52;-1:-1:-1;;2664:23:1;;;2734:2;2719:18;;;2706:32;;-1:-1:-1;2496:248:1:o;3028:367::-;3091:8;3101:6;3155:3;3148:4;3140:6;3136:17;3132:27;3122:55;;3173:1;3170;3163:12;3122:55;-1:-1:-1;3196:20:1;;-1:-1:-1;;;;;3228:30:1;;3225:50;;;3271:1;3268;3261:12;3225:50;3308:4;3300:6;3296:17;3284:29;;3368:3;3361:4;3351:6;3348:1;3344:14;3336:6;3332:27;3328:38;3325:47;3322:67;;;3385:1;3382;3375:12;3400:505;3495:6;3503;3511;3564:2;3552:9;3543:7;3539:23;3535:32;3532:52;;;3580:1;3577;3570:12;3532:52;3616:9;3603:23;3593:33;;3677:2;3666:9;3662:18;3649:32;-1:-1:-1;;;;;3696:6:1;3693:30;3690:50;;;3736:1;3733;3726:12;3690:50;3775:70;3837:7;3828:6;3817:9;3813:22;3775:70;:::i;:::-;3400:505;;3864:8;;-1:-1:-1;3749:96:1;;-1:-1:-1;;;;3400:505:1:o;3910:127::-;3971:10;3966:3;3962:20;3959:1;3952:31;4002:4;3999:1;3992:15;4026:4;4023:1;4016:15;4042:249;4152:2;4133:13;;-1:-1:-1;;4129:27:1;4117:40;;-1:-1:-1;;;;;4172:34:1;;4208:22;;;4169:62;4166:88;;;4234:18;;:::i;:::-;4270:2;4263:22;-1:-1:-1;;4042:249:1:o;4296:183::-;4356:4;-1:-1:-1;;;;;4381:6:1;4378:30;4375:56;;;4411:18;;:::i;:::-;-1:-1:-1;4456:1:1;4452:14;4468:4;4448:25;;4296:183::o;4484:724::-;4538:5;4591:3;4584:4;4576:6;4572:17;4568:27;4558:55;;4609:1;4606;4599:12;4558:55;4645:6;4632:20;4671:4;4694:43;4734:2;4694:43;:::i;:::-;4766:2;4760:9;4778:31;4806:2;4798:6;4778:31;:::i;:::-;4844:18;;;4936:1;4932:10;;;;4920:23;;4916:32;;;4878:15;;;;-1:-1:-1;4960:15:1;;;4957:35;;;4988:1;4985;4978:12;4957:35;5024:2;5016:6;5012:15;5036:142;5052:6;5047:3;5044:15;5036:142;;;5118:17;;5106:30;;5156:12;;;;5069;;5036:142;;;-1:-1:-1;5196:6:1;4484:724;-1:-1:-1;;;;;;4484:724:1:o;5213:555::-;5255:5;5308:3;5301:4;5293:6;5289:17;5285:27;5275:55;;5326:1;5323;5316:12;5275:55;5362:6;5349:20;-1:-1:-1;;;;;5384:2:1;5381:26;5378:52;;;5410:18;;:::i;:::-;5459:2;5453:9;5471:67;5526:2;5507:13;;-1:-1:-1;;5503:27:1;5532:4;5499:38;5453:9;5471:67;:::i;:::-;5562:2;5554:6;5547:18;5608:3;5601:4;5596:2;5588:6;5584:15;5580:26;5577:35;5574:55;;;5625:1;5622;5615:12;5574:55;5689:2;5682:4;5674:6;5670:17;5663:4;5655:6;5651:17;5638:54;5736:1;5712:15;;;5729:4;5708:26;5701:37;;;;5716:6;5213:555;-1:-1:-1;;;5213:555:1:o;5773:943::-;5927:6;5935;5943;5951;5959;6012:3;6000:9;5991:7;5987:23;5983:33;5980:53;;;6029:1;6026;6019:12;5980:53;6052:29;6071:9;6052:29;:::i;:::-;6042:39;;6100:38;6134:2;6123:9;6119:18;6100:38;:::i;:::-;6090:48;;6189:2;6178:9;6174:18;6161:32;-1:-1:-1;;;;;6253:2:1;6245:6;6242:14;6239:34;;;6269:1;6266;6259:12;6239:34;6292:61;6345:7;6336:6;6325:9;6321:22;6292:61;:::i;:::-;6282:71;;6406:2;6395:9;6391:18;6378:32;6362:48;;6435:2;6425:8;6422:16;6419:36;;;6451:1;6448;6441:12;6419:36;6474:63;6529:7;6518:8;6507:9;6503:24;6474:63;:::i;:::-;6464:73;;6590:3;6579:9;6575:19;6562:33;6546:49;;6620:2;6610:8;6607:16;6604:36;;;6636:1;6633;6626:12;6604:36;;6659:51;6702:7;6691:8;6680:9;6676:24;6659:51;:::i;:::-;6649:61;;;5773:943;;;;;;;;:::o;6721:592::-;6792:6;6800;6853:2;6841:9;6832:7;6828:23;6824:32;6821:52;;;6869:1;6866;6859:12;6821:52;6909:9;6896:23;-1:-1:-1;;;;;6979:2:1;6971:6;6968:14;6965:34;;;6995:1;6992;6985:12;6965:34;7033:6;7022:9;7018:22;7008:32;;7078:7;7071:4;7067:2;7063:13;7059:27;7049:55;;7100:1;7097;7090:12;7049:55;7140:2;7127:16;7166:2;7158:6;7155:14;7152:34;;;7182:1;7179;7172:12;7152:34;7227:7;7222:2;7213:6;7209:2;7205:15;7201:24;7198:37;7195:57;;;7248:1;7245;7238:12;7195:57;7279:2;7271:11;;;;;7301:6;;-1:-1:-1;6721:592:1;;-1:-1:-1;;;;6721:592:1:o;7318:511::-;7413:6;7421;7429;7482:2;7470:9;7461:7;7457:23;7453:32;7450:52;;;7498:1;7495;7488:12;7450:52;7521:29;7540:9;7521:29;:::i;:::-;7511:39;;7601:2;7590:9;7586:18;7573:32;-1:-1:-1;;;;;7620:6:1;7617:30;7614:50;;;7660:1;7657;7650:12;7834:495;8014:3;7999:19;;8003:9;8095:6;7972:4;8129:194;8143:4;8140:1;8137:11;8129:194;;;8202:13;;8190:26;;8239:4;8263:12;;;;8298:15;;;;8163:1;8156:9;8129:194;;;8133:3;;;7834:495;;;;:::o;8334:186::-;8393:6;8446:2;8434:9;8425:7;8421:23;8417:32;8414:52;;;8462:1;8459;8452:12;8414:52;8485:29;8504:9;8485:29;:::i;8765:1208::-;8883:6;8891;8944:2;8932:9;8923:7;8919:23;8915:32;8912:52;;;8960:1;8957;8950:12;8912:52;9000:9;8987:23;-1:-1:-1;;;;;9070:2:1;9062:6;9059:14;9056:34;;;9086:1;9083;9076:12;9056:34;9124:6;9113:9;9109:22;9099:32;;9169:7;9162:4;9158:2;9154:13;9150:27;9140:55;;9191:1;9188;9181:12;9140:55;9227:2;9214:16;9249:4;9272:43;9312:2;9272:43;:::i;:::-;9344:2;9338:9;9356:31;9384:2;9376:6;9356:31;:::i;:::-;9422:18;;;9510:1;9506:10;;;;9498:19;;9494:28;;;9456:15;;;;-1:-1:-1;9534:19:1;;;9531:39;;;9566:1;9563;9556:12;9531:39;9590:11;;;;9610:148;9626:6;9621:3;9618:15;9610:148;;;9692:23;9711:3;9692:23;:::i;:::-;9680:36;;9643:12;;;;9736;;;;9610:148;;;9777:6;-1:-1:-1;;9821:18:1;;9808:32;;-1:-1:-1;;9852:16:1;;;9849:36;;;9881:1;9878;9871:12;9849:36;;9904:63;9959:7;9948:8;9937:9;9933:24;9904:63;:::i;:::-;9894:73;;;8765:1208;;;;;:::o;9978:435::-;10031:3;10069:5;10063:12;10096:6;10091:3;10084:19;10122:4;10151:2;10146:3;10142:12;10135:19;;10188:2;10181:5;10177:14;10209:1;10219:169;10233:6;10230:1;10227:13;10219:169;;;10294:13;;10282:26;;10328:12;;;;10363:15;;;;10255:1;10248:9;10219:169;;;-1:-1:-1;10404:3:1;;9978:435;-1:-1:-1;;;;;9978:435:1:o;10418:261::-;10597:2;10586:9;10579:21;10560:4;10617:56;10669:2;10658:9;10654:18;10646:6;10617:56;:::i;10684:326::-;10760:6;10768;10776;10829:2;10817:9;10808:7;10804:23;10800:32;10797:52;;;10845:1;10842;10835:12;10797:52;10881:9;10868:23;10858:33;;10910:38;10944:2;10933:9;10929:18;10910:38;:::i;:::-;10900:48;;10967:37;11000:2;10989:9;10985:18;10967:37;:::i;:::-;10957:47;;10684:326;;;;;:::o;11015:118::-;11101:5;11094:13;11087:21;11080:5;11077:32;11067:60;;11123:1;11120;11113:12;11138:315;11203:6;11211;11264:2;11252:9;11243:7;11239:23;11235:32;11232:52;;;11280:1;11277;11270:12;11232:52;11303:29;11322:9;11303:29;:::i;:::-;11293:39;;11382:2;11371:9;11367:18;11354:32;11395:28;11417:5;11395:28;:::i;:::-;11442:5;11432:15;;;11138:315;;;;;:::o;11458:322::-;11535:6;11543;11551;11604:2;11592:9;11583:7;11579:23;11575:32;11572:52;;;11620:1;11617;11610:12;11572:52;11643:29;11662:9;11643:29;:::i;:::-;11633:39;11719:2;11704:18;;11691:32;;-1:-1:-1;11770:2:1;11755:18;;;11742:32;;11458:322;-1:-1:-1;;;11458:322:1:o;12178:495::-;12358:3;12343:19;;12347:9;12439:6;12316:4;12473:194;12487:4;12484:1;12481:11;12473:194;;;12546:13;;12534:26;;12583:4;12607:12;;;;12642:15;;;;12507:1;12500:9;12473:194;;12678:260;12746:6;12754;12807:2;12795:9;12786:7;12782:23;12778:32;12775:52;;;12823:1;12820;12813:12;12775:52;12846:29;12865:9;12846:29;:::i;:::-;12836:39;;12894:38;12928:2;12917:9;12913:18;12894:38;:::i;12943:606::-;13047:6;13055;13063;13071;13079;13132:3;13120:9;13111:7;13107:23;13103:33;13100:53;;;13149:1;13146;13139:12;13100:53;13172:29;13191:9;13172:29;:::i;:::-;13162:39;;13220:38;13254:2;13243:9;13239:18;13220:38;:::i;:::-;13210:48;;13305:2;13294:9;13290:18;13277:32;13267:42;;13356:2;13345:9;13341:18;13328:32;13318:42;;13411:3;13400:9;13396:19;13383:33;-1:-1:-1;;;;;13431:6:1;13428:30;13425:50;;;13471:1;13468;13461:12;13425:50;13494:49;13535:7;13526:6;13515:9;13511:22;13494:49;:::i;13554:241::-;13610:6;13663:2;13651:9;13642:7;13638:23;13634:32;13631:52;;;13679:1;13676;13669:12;13631:52;13718:9;13705:23;13737:28;13759:5;13737:28;:::i;14211:403::-;14413:2;14395:21;;;14452:2;14432:18;;;14425:30;14491:34;14486:2;14471:18;;14464:62;-1:-1:-1;;;14557:2:1;14542:18;;14535:37;14604:3;14589:19;;14211:403::o;14963:380::-;15042:1;15038:12;;;;15085;;;15106:61;;15160:4;15152:6;15148:17;15138:27;;15106:61;15213:2;15205:6;15202:14;15182:18;15179:38;15176:161;;15259:10;15254:3;15250:20;15247:1;15240:31;15294:4;15291:1;15284:15;15322:4;15319:1;15312:15;15176:161;;14963:380;;;:::o;15705:127::-;15766:10;15761:3;15757:20;15754:1;15747:31;15797:4;15794:1;15787:15;15821:4;15818:1;15811:15;15837:128;15904:9;;;15925:11;;;15922:37;;;15939:18;;:::i;15970:125::-;16035:9;;;16056:10;;;16053:36;;;16069:18;;:::i;16100:168::-;16173:9;;;16204;;16221:15;;;16215:22;;16201:37;16191:71;;16242:18;;:::i;16273:217::-;16313:1;16339;16329:132;;16383:10;16378:3;16374:20;16371:1;16364:31;16418:4;16415:1;16408:15;16446:4;16443:1;16436:15;16329:132;-1:-1:-1;16475:9:1;;16273:217::o;17211:127::-;17272:10;17267:3;17263:20;17260:1;17253:31;17303:4;17300:1;17293:15;17327:4;17324:1;17317:15;18888:545;18990:2;18985:3;18982:11;18979:448;;;19026:1;19051:5;19047:2;19040:17;19096:4;19092:2;19082:19;19166:2;19154:10;19150:19;19147:1;19143:27;19137:4;19133:38;19202:4;19190:10;19187:20;19184:47;;;-1:-1:-1;19225:4:1;19184:47;19280:2;19275:3;19271:12;19268:1;19264:20;19258:4;19254:31;19244:41;;19335:82;19353:2;19346:5;19343:13;19335:82;;;19398:17;;;19379:1;19368:13;19335:82;;19609:1206;-1:-1:-1;;;;;19728:3:1;19725:27;19722:53;;;19755:18;;:::i;:::-;19784:94;19874:3;19834:38;19866:4;19860:11;19834:38;:::i;:::-;19828:4;19784:94;:::i;:::-;19904:1;19929:2;19924:3;19921:11;19946:1;19941:616;;;;20601:1;20618:3;20615:93;;;-1:-1:-1;20674:19:1;;;20661:33;20615:93;-1:-1:-1;;19566:1:1;19562:11;;;19558:24;19554:29;19544:40;19590:1;19586:11;;;19541:57;20721:78;;19914:895;;19941:616;18835:1;18828:14;;;18872:4;18859:18;;-1:-1:-1;;19977:17:1;;;20078:9;20100:229;20114:7;20111:1;20108:14;20100:229;;;20203:19;;;20190:33;20175:49;;20310:4;20295:20;;;;20263:1;20251:14;;;;20130:12;20100:229;;;20104:3;20357;20348:7;20345:16;20342:159;;;20481:1;20477:6;20471:3;20465;20462:1;20458:11;20454:21;20450:34;20446:39;20433:9;20428:3;20424:19;20411:33;20407:79;20399:6;20392:95;20342:159;;;20544:1;20538:3;20535:1;20531:11;20527:19;20521:4;20514:33;19914:895;;19609:1206;;;:::o;20820:135::-;20859:3;20880:17;;;20877:43;;20900:18;;:::i;:::-;-1:-1:-1;20947:1:1;20936:13;;20820:135::o;23880:406::-;24082:2;24064:21;;;24121:2;24101:18;;;24094:30;24160:34;24155:2;24140:18;;24133:62;-1:-1:-1;;;24226:2:1;24211:18;;24204:40;24276:3;24261:19;;23880:406::o;26661:245::-;26728:6;26781:2;26769:9;26760:7;26756:23;26752:32;26749:52;;;26797:1;26794;26787:12;26749:52;26829:9;26823:16;26848:28;26870:5;26848:28;:::i;26911:411::-;27113:2;27095:21;;;27152:2;27132:18;;;27125:30;27191:34;27186:2;27171:18;;27164:62;-1:-1:-1;;;27257:2:1;27242:18;;27235:45;27312:3;27297:19;;26911:411::o;29152:561::-;-1:-1:-1;;;;;29449:15:1;;;29431:34;;29501:15;;29496:2;29481:18;;29474:43;29548:2;29533:18;;29526:34;;;29591:2;29576:18;;29569:34;;;29411:3;29634;29619:19;;29612:32;;;29374:4;;29661:46;;29687:19;;29679:6;29661:46;:::i;:::-;29653:54;29152:561;-1:-1:-1;;;;;;;29152:561:1:o;29718:249::-;29787:6;29840:2;29828:9;29819:7;29815:23;29811:32;29808:52;;;29856:1;29853;29846:12;29808:52;29888:9;29882:16;29907:30;29931:5;29907:30;:::i;29972:179::-;30007:3;30049:1;30031:16;30028:23;30025:120;;;30095:1;30092;30089;30074:23;-1:-1:-1;30132:1:1;30126:8;30121:3;30117:18;30025:120;29972:179;:::o;30156:671::-;30195:3;30237:4;30219:16;30216:26;30213:39;;;30156:671;:::o;30213:39::-;30279:2;30273:9;-1:-1:-1;;30344:16:1;30340:25;;30337:1;30273:9;30316:50;30395:4;30389:11;30419:16;-1:-1:-1;;;;;30525:2:1;30518:4;30510:6;30506:17;30503:25;30498:2;30490:6;30487:14;30484:45;30481:58;;;30532:5;;;;;30156:671;:::o;30481:58::-;30569:6;30563:4;30559:17;30548:28;;30605:3;30599:10;30632:2;30624:6;30621:14;30618:27;;;30638:5;;;;;;30156:671;:::o;30618:27::-;30722:2;30703:16;30697:4;30693:27;30689:36;30682:4;30673:6;30668:3;30664:16;30660:27;30657:69;30654:82;;;30729:5;;;;;;30156:671;:::o;30654:82::-;30745:57;30796:4;30787:6;30779;30775:19;30771:30;30765:4;30745:57;:::i;:::-;-1:-1:-1;30818:3:1;;30156:671;-1:-1:-1;;;;;30156:671:1:o;31253:404::-;31455:2;31437:21;;;31494:2;31474:18;;;31467:30;31533:34;31528:2;31513:18;;31506:62;-1:-1:-1;;;31599:2:1;31584:18;;31577:38;31647:3;31632:19;;31253:404::o;32071:401::-;32273:2;32255:21;;;32312:2;32292:18;;;32285:30;32351:34;32346:2;32331:18;;32324:62;-1:-1:-1;;;32417:2:1;32402:18;;32395:35;32462:3;32447:19;;32071:401::o;32477:406::-;32679:2;32661:21;;;32718:2;32698:18;;;32691:30;32757:34;32752:2;32737:18;;32730:62;-1:-1:-1;;;32823:2:1;32808:18;;32801:40;32873:3;32858:19;;32477:406::o;32888:465::-;33145:2;33134:9;33127:21;33108:4;33171:56;33223:2;33212:9;33208:18;33200:6;33171:56;:::i;:::-;33275:9;33267:6;33263:22;33258:2;33247:9;33243:18;33236:50;33303:44;33340:6;33332;33303:44;:::i;33768:827::-;-1:-1:-1;;;;;34165:15:1;;;34147:34;;34217:15;;34212:2;34197:18;;34190:43;34127:3;34264:2;34249:18;;34242:31;;;34090:4;;34296:57;;34333:19;;34325:6;34296:57;:::i;:::-;34401:9;34393:6;34389:22;34384:2;34373:9;34369:18;34362:50;34435:44;34472:6;34464;34435:44;:::i;:::-;34421:58;;34528:9;34520:6;34516:22;34510:3;34499:9;34495:19;34488:51;34556:33;34582:6;34574;34556:33;:::i;:::-;34548:41;33768:827;-1:-1:-1;;;;;;;;33768:827:1:o

Swarm Source

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