ETH Price: $2,658.09 (+1.62%)
Gas: 0.75 Gwei

Token

Dude Family NFT (PMXX)
 

Overview

Max Total Supply

1,000 PMXX

Holders

3

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

0xFe85Cb47c619175c44df99E1Df4E106931Ce7974
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:
DudeFamilyNFT

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-17
*/

pragma solidity ^0.8.4;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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

abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

        return batchBalances;
    }

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

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

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

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

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

        address operator = _msgSender();
        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}.
     *
     * 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`
     *
     * 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}.
     *
     * 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 a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC1155: setting approval status for self");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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


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

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

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

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

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

abstract contract ERC1155URIStorage is ERC1155 {
    using Strings for uint256;

    // Optional base URI
    string private _baseURI = "";

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the concatenation of the `_baseURI`
     * and the token-specific uri if the latter is set
     *
     * This enables the following behaviors:
     *
     * - if `_tokenURIs[tokenId]` is set, then the result is the concatenation
     *   of `_baseURI` and `_tokenURIs[tokenId]` (keep in mind that `_baseURI`
     *   is empty per default);
     *
     * - if `_tokenURIs[tokenId]` is NOT set then we fallback to `super.uri()`
     *   which in most cases will contain `ERC1155._uri`;
     *
     * - if `_tokenURIs[tokenId]` is NOT set, and if the parents do not have a
     *   uri value set, then the result is empty.
     */
    function uri(uint256 tokenId) public view virtual override returns (string memory) {
        string memory tokenURI = _tokenURIs[tokenId];

        // If token URI is set, concatenate base URI and tokenURI (via abi.encodePacked).
        return bytes(tokenURI).length > 0 ? string(abi.encodePacked(_baseURI, tokenURI)) : super.uri(tokenId);
    }

    /**
     * @dev Sets `tokenURI` as the tokenURI of `tokenId`.
     */
    function _setURI(uint256 tokenId, string memory tokenURI) internal virtual {
        _tokenURIs[tokenId] = tokenURI;
        emit URI(uri(tokenId), tokenId);
    }

    /**
     * @dev Sets `baseURI` as the `_baseURI` for all tokens
     */
    function _setBaseURI(string memory baseURI) internal virtual {
        _baseURI = baseURI;
    }
}




abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

contract DudeFamilyNFT is Ownable, ERC1155URIStorage {

    constructor()ERC1155("") {}

    function name() public view virtual returns (string memory) {
        return "Dude Family NFT";
    }

    function symbol() public view virtual returns (string memory) {
        return "PMXX";
    }

    function setURI(uint256 tokenId, string memory tokenURI) public onlyOwner {
        _setURI(tokenId, tokenURI);
    }

    function setBaseURI(string memory baseURI) public onlyOwner {
        _setBaseURI(baseURI);
    }


    function mint(address to, uint256 _id, uint256 _amount) external onlyOwner {
        _mint(to, _id, _amount, "");
    }

    function mintBatch(address to, uint256[] memory ids, uint256[] memory amounts) external onlyOwner {
        _mintBatch(to, ids, amounts, "");
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"tokenURI","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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"}]

608060405260405180602001604052806000815250600490805190602001906200002b9291906200016a565b503480156200003957600080fd5b50604051806020016040528060008152506200006a6200005e6200008260201b60201c565b6200008a60201b60201c565b6200007b816200014e60201b60201c565b506200027f565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060039080519060200190620001669291906200016a565b5050565b82805462000178906200021a565b90600052602060002090601f0160209004810192826200019c5760008555620001e8565b82601f10620001b757805160ff1916838001178555620001e8565b82800160010185558215620001e8579182015b82811115620001e7578251825591602001919060010190620001ca565b5b509050620001f79190620001fb565b5090565b5b8082111562000216576000816000905550600101620001fc565b5090565b600060028204905060018216806200023357607f821691505b602082108114156200024a576200024962000250565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61382b806200028f6000396000f3fe608060405234801561001057600080fd5b506004361061010a5760003560e01c8063715018a6116100a2578063a22cb46511610071578063a22cb465146102a3578063d81d0a15146102bf578063e985e9c5146102db578063f242432a1461030b578063f2fde38b146103275761010a565b8063715018a614610241578063862440e21461024b5780638da5cb5b1461026757806395d89b41146102855761010a565b8063156e29f6116100de578063156e29f6146101bd5780632eb2c2d6146101d95780634e1273f4146101f557806355f804b3146102255761010a565b8062fdd58e1461010f57806301ffc9a71461013f57806306fdde031461016f5780630e89341c1461018d575b600080fd5b61012960048036038101906101249190612614565b610343565b6040516101369190612eed565b60405180910390f35b6101596004803603810190610154919061270b565b61040d565b6040516101669190612d10565b60405180910390f35b6101776104ef565b6040516101849190612d2b565b60405180910390f35b6101a760048036038101906101a2919061279e565b61052c565b6040516101b49190612d2b565b60405180910390f35b6101d760048036038101906101d29190612650565b610611565b005b6101f360048036038101906101ee919061240b565b6106ad565b005b61020f600480360381019061020a919061269f565b61074e565b60405161021c9190612cb7565b60405180910390f35b61023f600480360381019061023a919061275d565b6108ff565b005b610249610987565b005b610265600480360381019061026091906127c7565b610a0f565b005b61026f610a99565b60405161027c9190612bda565b60405180910390f35b61028d610ac2565b60405161029a9190612d2b565b60405180910390f35b6102bd60048036038101906102b891906125d8565b610aff565b005b6102d960048036038101906102d49190612559565b610b15565b005b6102f560048036038101906102f091906123cf565b610bb1565b6040516103029190612d10565b60405180910390f35b610325600480360381019061032091906124ca565b610c45565b005b610341600480360381019061033c91906123a6565b610ce6565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156103b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab90612d8d565b60405180910390fd5b6001600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104d857507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104e857506104e782610dde565b5b9050919050565b60606040518060400160405280600f81526020017f447564652046616d696c79204e46540000000000000000000000000000000000815250905090565b6060600060056000848152602001908152602001600020805461054e906131ad565b80601f016020809104026020016040519081016040528092919081815260200182805461057a906131ad565b80156105c75780601f1061059c576101008083540402835291602001916105c7565b820191906000526020600020905b8154815290600101906020018083116105aa57829003601f168201915b5050505050905060008151116105e5576105e083610e48565b610609565b6004816040516020016105f9929190612bb6565b6040516020818303038152906040525b915050919050565b610619610edc565b73ffffffffffffffffffffffffffffffffffffffff16610637610a99565b73ffffffffffffffffffffffffffffffffffffffff161461068d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068490612e4d565b60405180910390fd5b6106a883838360405180602001604052806000815250610ee4565b505050565b6106b5610edc565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806106fb57506106fa856106f5610edc565b610bb1565b5b61073a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073190612e0d565b60405180910390fd5b6107478585858585611096565b5050505050565b60608151835114610794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078b90612e8d565b60405180910390fd5b6000835167ffffffffffffffff8111156107d7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156108055781602001602082028036833780820191505090505b50905060005b84518110156108f45761089e858281518110610850577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110610891577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151610343565b8282815181106108d7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050806108ed90613210565b905061080b565b508091505092915050565b610907610edc565b73ffffffffffffffffffffffffffffffffffffffff16610925610a99565b73ffffffffffffffffffffffffffffffffffffffff161461097b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097290612e4d565b60405180910390fd5b61098481611407565b50565b61098f610edc565b73ffffffffffffffffffffffffffffffffffffffff166109ad610a99565b73ffffffffffffffffffffffffffffffffffffffff1614610a03576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fa90612e4d565b60405180910390fd5b610a0d6000611421565b565b610a17610edc565b73ffffffffffffffffffffffffffffffffffffffff16610a35610a99565b73ffffffffffffffffffffffffffffffffffffffff1614610a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8290612e4d565b60405180910390fd5b610a9582826114e5565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600481526020017f504d585800000000000000000000000000000000000000000000000000000000815250905090565b610b11610b0a610edc565b8383611551565b5050565b610b1d610edc565b73ffffffffffffffffffffffffffffffffffffffff16610b3b610a99565b73ffffffffffffffffffffffffffffffffffffffff1614610b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8890612e4d565b60405180910390fd5b610bac838383604051806020016040528060008152506116be565b505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610c4d610edc565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610c935750610c9285610c8d610edc565b610bb1565b5b610cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc990612dcd565b60405180910390fd5b610cdf8585858585611938565b5050505050565b610cee610edc565b73ffffffffffffffffffffffffffffffffffffffff16610d0c610a99565b73ffffffffffffffffffffffffffffffffffffffff1614610d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5990612e4d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc990612dad565b60405180910390fd5b610ddb81611421565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b606060038054610e57906131ad565b80601f0160208091040260200160405190810160405280929190818152602001828054610e83906131ad565b8015610ed05780601f10610ea557610100808354040283529160200191610ed0565b820191906000526020600020905b815481529060010190602001808311610eb357829003601f168201915b50505050509050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415610f54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4b90612ecd565b60405180910390fd5b6000610f5e610edc565b90506000610f6b85611bd7565b90506000610f7885611bd7565b9050610f8983600089858589611c9d565b846001600088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fe991906130a1565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051611067929190612f08565b60405180910390a461107e83600089858589611ca5565b61108d83600089898989611cad565b50505050505050565b81518351146110da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d190612ead565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561114a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114190612ded565b60405180910390fd5b6000611154610edc565b9050611164818787878787611c9d565b60005b84518110156113645760008582815181106111ab577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060008583815181106111f0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060006001600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611292576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128990612e2d565b60405180910390fd5b8181036001600085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816001600085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461134991906130a1565b925050819055505050508061135d90613210565b9050611167565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516113db929190612cd9565b60405180910390a46113f1818787878787611ca5565b6113ff818787878787611e94565b505050505050565b806004908051906020019061141d92919061209e565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060056000848152602001908152602001600020908051906020019061150c92919061209e565b50817f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b6115388461052c565b6040516115459190612d2b565b60405180910390a25050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156115c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b790612e6d565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116b19190612d10565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561172e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172590612ecd565b60405180910390fd5b8151835114611772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176990612ead565b60405180910390fd5b600061177c610edc565b905061178d81600087878787611c9d565b60005b8451811015611893578381815181106117d2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160016000878481518110611817577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461187991906130a1565b92505081905550808061188b90613210565b915050611790565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161190b929190612cd9565b60405180910390a461192281600087878787611ca5565b61193181600087878787611e94565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156119a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199f90612ded565b60405180910390fd5b60006119b2610edc565b905060006119bf85611bd7565b905060006119cc85611bd7565b90506119dc838989858589611c9d565b60006001600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015611a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6b90612e2d565b60405180910390fd5b8581036001600089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550856001600089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b2b91906130a1565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a604051611ba8929190612f08565b60405180910390a4611bbe848a8a86868a611ca5565b611bcc848a8a8a8a8a611cad565b505050505050505050565b60606000600167ffffffffffffffff811115611c1c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611c4a5781602001602082028036833780820191505090505b5090508281600081518110611c88577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b505050505050565b505050505050565b611ccc8473ffffffffffffffffffffffffffffffffffffffff1661207b565b15611e8c578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611d12959493929190612c5d565b602060405180830381600087803b158015611d2c57600080fd5b505af1925050508015611d5d57506040513d601f19601f82011682018060405250810190611d5a9190612734565b60015b611e0357611d696132e6565b806308c379a01415611dc65750611d7e613703565b80611d895750611dc8565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbd9190612d2b565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfa90612d4d565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8190612d6d565b60405180910390fd5b505b505050505050565b611eb38473ffffffffffffffffffffffffffffffffffffffff1661207b565b15612073578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611ef9959493929190612bf5565b602060405180830381600087803b158015611f1357600080fd5b505af1925050508015611f4457506040513d601f19601f82011682018060405250810190611f419190612734565b60015b611fea57611f506132e6565b806308c379a01415611fad5750611f65613703565b80611f705750611faf565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa49190612d2b565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe190612d4d565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612071576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206890612d6d565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546120aa906131ad565b90600052602060002090601f0160209004810192826120cc5760008555612113565b82601f106120e557805160ff1916838001178555612113565b82800160010185558215612113579182015b828111156121125782518255916020019190600101906120f7565b5b5090506121209190612124565b5090565b5b8082111561213d576000816000905550600101612125565b5090565b600061215461214f84612f56565b612f31565b9050808382526020820190508285602086028201111561217357600080fd5b60005b858110156121a357816121898882612295565b845260208401935060208301925050600181019050612176565b5050509392505050565b60006121c06121bb84612f82565b612f31565b905080838252602082019050828560208602820111156121df57600080fd5b60005b8581101561220f57816121f58882612391565b8452602084019350602083019250506001810190506121e2565b5050509392505050565b600061222c61222784612fae565b612f31565b90508281526020810184848401111561224457600080fd5b61224f84828561316b565b509392505050565b600061226a61226584612fdf565b612f31565b90508281526020810184848401111561228257600080fd5b61228d84828561316b565b509392505050565b6000813590506122a481613799565b92915050565b600082601f8301126122bb57600080fd5b81356122cb848260208601612141565b91505092915050565b600082601f8301126122e557600080fd5b81356122f58482602086016121ad565b91505092915050565b60008135905061230d816137b0565b92915050565b600081359050612322816137c7565b92915050565b600081519050612337816137c7565b92915050565b600082601f83011261234e57600080fd5b813561235e848260208601612219565b91505092915050565b600082601f83011261237857600080fd5b8135612388848260208601612257565b91505092915050565b6000813590506123a0816137de565b92915050565b6000602082840312156123b857600080fd5b60006123c684828501612295565b91505092915050565b600080604083850312156123e257600080fd5b60006123f085828601612295565b925050602061240185828601612295565b9150509250929050565b600080600080600060a0868803121561242357600080fd5b600061243188828901612295565b955050602061244288828901612295565b945050604086013567ffffffffffffffff81111561245f57600080fd5b61246b888289016122d4565b935050606086013567ffffffffffffffff81111561248857600080fd5b612494888289016122d4565b925050608086013567ffffffffffffffff8111156124b157600080fd5b6124bd8882890161233d565b9150509295509295909350565b600080600080600060a086880312156124e257600080fd5b60006124f088828901612295565b955050602061250188828901612295565b945050604061251288828901612391565b935050606061252388828901612391565b925050608086013567ffffffffffffffff81111561254057600080fd5b61254c8882890161233d565b9150509295509295909350565b60008060006060848603121561256e57600080fd5b600061257c86828701612295565b935050602084013567ffffffffffffffff81111561259957600080fd5b6125a5868287016122d4565b925050604084013567ffffffffffffffff8111156125c257600080fd5b6125ce868287016122d4565b9150509250925092565b600080604083850312156125eb57600080fd5b60006125f985828601612295565b925050602061260a858286016122fe565b9150509250929050565b6000806040838503121561262757600080fd5b600061263585828601612295565b925050602061264685828601612391565b9150509250929050565b60008060006060848603121561266557600080fd5b600061267386828701612295565b935050602061268486828701612391565b925050604061269586828701612391565b9150509250925092565b600080604083850312156126b257600080fd5b600083013567ffffffffffffffff8111156126cc57600080fd5b6126d8858286016122aa565b925050602083013567ffffffffffffffff8111156126f557600080fd5b612701858286016122d4565b9150509250929050565b60006020828403121561271d57600080fd5b600061272b84828501612313565b91505092915050565b60006020828403121561274657600080fd5b600061275484828501612328565b91505092915050565b60006020828403121561276f57600080fd5b600082013567ffffffffffffffff81111561278957600080fd5b61279584828501612367565b91505092915050565b6000602082840312156127b057600080fd5b60006127be84828501612391565b91505092915050565b600080604083850312156127da57600080fd5b60006127e885828601612391565b925050602083013567ffffffffffffffff81111561280557600080fd5b61281185828601612367565b9150509250929050565b60006128278383612b98565b60208301905092915050565b61283c816130f7565b82525050565b600061284d82613035565b6128578185613063565b935061286283613010565b8060005b8381101561289357815161287a888261281b565b975061288583613056565b925050600181019050612866565b5085935050505092915050565b6128a981613109565b82525050565b60006128ba82613040565b6128c48185613074565b93506128d481856020860161317a565b6128dd81613308565b840191505092915050565b60006128f38261304b565b6128fd8185613085565b935061290d81856020860161317a565b61291681613308565b840191505092915050565b600061292c8261304b565b6129368185613096565b935061294681856020860161317a565b80840191505092915050565b6000815461295f816131ad565b6129698186613096565b945060018216600081146129845760018114612995576129c8565b60ff198316865281860193506129c8565b61299e85613020565b60005b838110156129c0578154818901526001820191506020810190506129a1565b838801955050505b50505092915050565b60006129de603483613085565b91506129e982613326565b604082019050919050565b6000612a01602883613085565b9150612a0c82613375565b604082019050919050565b6000612a24602b83613085565b9150612a2f826133c4565b604082019050919050565b6000612a47602683613085565b9150612a5282613413565b604082019050919050565b6000612a6a602983613085565b9150612a7582613462565b604082019050919050565b6000612a8d602583613085565b9150612a98826134b1565b604082019050919050565b6000612ab0603283613085565b9150612abb82613500565b604082019050919050565b6000612ad3602a83613085565b9150612ade8261354f565b604082019050919050565b6000612af6602083613085565b9150612b018261359e565b602082019050919050565b6000612b19602983613085565b9150612b24826135c7565b604082019050919050565b6000612b3c602983613085565b9150612b4782613616565b604082019050919050565b6000612b5f602883613085565b9150612b6a82613665565b604082019050919050565b6000612b82602183613085565b9150612b8d826136b4565b604082019050919050565b612ba181613161565b82525050565b612bb081613161565b82525050565b6000612bc28285612952565b9150612bce8284612921565b91508190509392505050565b6000602082019050612bef6000830184612833565b92915050565b600060a082019050612c0a6000830188612833565b612c176020830187612833565b8181036040830152612c298186612842565b90508181036060830152612c3d8185612842565b90508181036080830152612c5181846128af565b90509695505050505050565b600060a082019050612c726000830188612833565b612c7f6020830187612833565b612c8c6040830186612ba7565b612c996060830185612ba7565b8181036080830152612cab81846128af565b90509695505050505050565b60006020820190508181036000830152612cd18184612842565b905092915050565b60006040820190508181036000830152612cf38185612842565b90508181036020830152612d078184612842565b90509392505050565b6000602082019050612d2560008301846128a0565b92915050565b60006020820190508181036000830152612d4581846128e8565b905092915050565b60006020820190508181036000830152612d66816129d1565b9050919050565b60006020820190508181036000830152612d86816129f4565b9050919050565b60006020820190508181036000830152612da681612a17565b9050919050565b60006020820190508181036000830152612dc681612a3a565b9050919050565b60006020820190508181036000830152612de681612a5d565b9050919050565b60006020820190508181036000830152612e0681612a80565b9050919050565b60006020820190508181036000830152612e2681612aa3565b9050919050565b60006020820190508181036000830152612e4681612ac6565b9050919050565b60006020820190508181036000830152612e6681612ae9565b9050919050565b60006020820190508181036000830152612e8681612b0c565b9050919050565b60006020820190508181036000830152612ea681612b2f565b9050919050565b60006020820190508181036000830152612ec681612b52565b9050919050565b60006020820190508181036000830152612ee681612b75565b9050919050565b6000602082019050612f026000830184612ba7565b92915050565b6000604082019050612f1d6000830185612ba7565b612f2a6020830184612ba7565b9392505050565b6000612f3b612f4c565b9050612f4782826131df565b919050565b6000604051905090565b600067ffffffffffffffff821115612f7157612f706132b7565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612f9d57612f9c6132b7565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612fc957612fc86132b7565b5b612fd282613308565b9050602081019050919050565b600067ffffffffffffffff821115612ffa57612ff96132b7565b5b61300382613308565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006130ac82613161565b91506130b783613161565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130ec576130eb613259565b5b828201905092915050565b600061310282613141565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561319857808201518184015260208101905061317d565b838111156131a7576000848401525b50505050565b600060028204905060018216806131c557607f821691505b602082108114156131d9576131d8613288565b5b50919050565b6131e882613308565b810181811067ffffffffffffffff82111715613207576132066132b7565b5b80604052505050565b600061321b82613161565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561324e5761324d613259565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156133055760046000803e613302600051613319565b90505b90565b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d101561371357613796565b61371b612f4c565b60043d036004823e80513d602482011167ffffffffffffffff82111715613743575050613796565b808201805167ffffffffffffffff8111156137615750505050613796565b80602083010160043d03850181111561377e575050505050613796565b61378d826020018501866131df565b82955050505050505b90565b6137a2816130f7565b81146137ad57600080fd5b50565b6137b981613109565b81146137c457600080fd5b50565b6137d081613115565b81146137db57600080fd5b50565b6137e781613161565b81146137f257600080fd5b5056fea26469706673582212205cd1765b9ecc01e5753fcc06f6a35667d5003bb896dfd8571d8d4372f30b515364736f6c63430008040033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010a5760003560e01c8063715018a6116100a2578063a22cb46511610071578063a22cb465146102a3578063d81d0a15146102bf578063e985e9c5146102db578063f242432a1461030b578063f2fde38b146103275761010a565b8063715018a614610241578063862440e21461024b5780638da5cb5b1461026757806395d89b41146102855761010a565b8063156e29f6116100de578063156e29f6146101bd5780632eb2c2d6146101d95780634e1273f4146101f557806355f804b3146102255761010a565b8062fdd58e1461010f57806301ffc9a71461013f57806306fdde031461016f5780630e89341c1461018d575b600080fd5b61012960048036038101906101249190612614565b610343565b6040516101369190612eed565b60405180910390f35b6101596004803603810190610154919061270b565b61040d565b6040516101669190612d10565b60405180910390f35b6101776104ef565b6040516101849190612d2b565b60405180910390f35b6101a760048036038101906101a2919061279e565b61052c565b6040516101b49190612d2b565b60405180910390f35b6101d760048036038101906101d29190612650565b610611565b005b6101f360048036038101906101ee919061240b565b6106ad565b005b61020f600480360381019061020a919061269f565b61074e565b60405161021c9190612cb7565b60405180910390f35b61023f600480360381019061023a919061275d565b6108ff565b005b610249610987565b005b610265600480360381019061026091906127c7565b610a0f565b005b61026f610a99565b60405161027c9190612bda565b60405180910390f35b61028d610ac2565b60405161029a9190612d2b565b60405180910390f35b6102bd60048036038101906102b891906125d8565b610aff565b005b6102d960048036038101906102d49190612559565b610b15565b005b6102f560048036038101906102f091906123cf565b610bb1565b6040516103029190612d10565b60405180910390f35b610325600480360381019061032091906124ca565b610c45565b005b610341600480360381019061033c91906123a6565b610ce6565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156103b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab90612d8d565b60405180910390fd5b6001600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104d857507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104e857506104e782610dde565b5b9050919050565b60606040518060400160405280600f81526020017f447564652046616d696c79204e46540000000000000000000000000000000000815250905090565b6060600060056000848152602001908152602001600020805461054e906131ad565b80601f016020809104026020016040519081016040528092919081815260200182805461057a906131ad565b80156105c75780601f1061059c576101008083540402835291602001916105c7565b820191906000526020600020905b8154815290600101906020018083116105aa57829003601f168201915b5050505050905060008151116105e5576105e083610e48565b610609565b6004816040516020016105f9929190612bb6565b6040516020818303038152906040525b915050919050565b610619610edc565b73ffffffffffffffffffffffffffffffffffffffff16610637610a99565b73ffffffffffffffffffffffffffffffffffffffff161461068d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068490612e4d565b60405180910390fd5b6106a883838360405180602001604052806000815250610ee4565b505050565b6106b5610edc565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806106fb57506106fa856106f5610edc565b610bb1565b5b61073a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073190612e0d565b60405180910390fd5b6107478585858585611096565b5050505050565b60608151835114610794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078b90612e8d565b60405180910390fd5b6000835167ffffffffffffffff8111156107d7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156108055781602001602082028036833780820191505090505b50905060005b84518110156108f45761089e858281518110610850577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110610891577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151610343565b8282815181106108d7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050806108ed90613210565b905061080b565b508091505092915050565b610907610edc565b73ffffffffffffffffffffffffffffffffffffffff16610925610a99565b73ffffffffffffffffffffffffffffffffffffffff161461097b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097290612e4d565b60405180910390fd5b61098481611407565b50565b61098f610edc565b73ffffffffffffffffffffffffffffffffffffffff166109ad610a99565b73ffffffffffffffffffffffffffffffffffffffff1614610a03576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fa90612e4d565b60405180910390fd5b610a0d6000611421565b565b610a17610edc565b73ffffffffffffffffffffffffffffffffffffffff16610a35610a99565b73ffffffffffffffffffffffffffffffffffffffff1614610a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8290612e4d565b60405180910390fd5b610a9582826114e5565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600481526020017f504d585800000000000000000000000000000000000000000000000000000000815250905090565b610b11610b0a610edc565b8383611551565b5050565b610b1d610edc565b73ffffffffffffffffffffffffffffffffffffffff16610b3b610a99565b73ffffffffffffffffffffffffffffffffffffffff1614610b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8890612e4d565b60405180910390fd5b610bac838383604051806020016040528060008152506116be565b505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610c4d610edc565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610c935750610c9285610c8d610edc565b610bb1565b5b610cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc990612dcd565b60405180910390fd5b610cdf8585858585611938565b5050505050565b610cee610edc565b73ffffffffffffffffffffffffffffffffffffffff16610d0c610a99565b73ffffffffffffffffffffffffffffffffffffffff1614610d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5990612e4d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc990612dad565b60405180910390fd5b610ddb81611421565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b606060038054610e57906131ad565b80601f0160208091040260200160405190810160405280929190818152602001828054610e83906131ad565b8015610ed05780601f10610ea557610100808354040283529160200191610ed0565b820191906000526020600020905b815481529060010190602001808311610eb357829003601f168201915b50505050509050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415610f54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4b90612ecd565b60405180910390fd5b6000610f5e610edc565b90506000610f6b85611bd7565b90506000610f7885611bd7565b9050610f8983600089858589611c9d565b846001600088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fe991906130a1565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051611067929190612f08565b60405180910390a461107e83600089858589611ca5565b61108d83600089898989611cad565b50505050505050565b81518351146110da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d190612ead565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561114a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114190612ded565b60405180910390fd5b6000611154610edc565b9050611164818787878787611c9d565b60005b84518110156113645760008582815181106111ab577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060008583815181106111f0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060006001600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611292576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128990612e2d565b60405180910390fd5b8181036001600085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816001600085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461134991906130a1565b925050819055505050508061135d90613210565b9050611167565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516113db929190612cd9565b60405180910390a46113f1818787878787611ca5565b6113ff818787878787611e94565b505050505050565b806004908051906020019061141d92919061209e565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060056000848152602001908152602001600020908051906020019061150c92919061209e565b50817f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b6115388461052c565b6040516115459190612d2b565b60405180910390a25050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156115c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b790612e6d565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116b19190612d10565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561172e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172590612ecd565b60405180910390fd5b8151835114611772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176990612ead565b60405180910390fd5b600061177c610edc565b905061178d81600087878787611c9d565b60005b8451811015611893578381815181106117d2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160016000878481518110611817577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461187991906130a1565b92505081905550808061188b90613210565b915050611790565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161190b929190612cd9565b60405180910390a461192281600087878787611ca5565b61193181600087878787611e94565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156119a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199f90612ded565b60405180910390fd5b60006119b2610edc565b905060006119bf85611bd7565b905060006119cc85611bd7565b90506119dc838989858589611c9d565b60006001600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015611a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6b90612e2d565b60405180910390fd5b8581036001600089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550856001600089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b2b91906130a1565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a604051611ba8929190612f08565b60405180910390a4611bbe848a8a86868a611ca5565b611bcc848a8a8a8a8a611cad565b505050505050505050565b60606000600167ffffffffffffffff811115611c1c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611c4a5781602001602082028036833780820191505090505b5090508281600081518110611c88577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b505050505050565b505050505050565b611ccc8473ffffffffffffffffffffffffffffffffffffffff1661207b565b15611e8c578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611d12959493929190612c5d565b602060405180830381600087803b158015611d2c57600080fd5b505af1925050508015611d5d57506040513d601f19601f82011682018060405250810190611d5a9190612734565b60015b611e0357611d696132e6565b806308c379a01415611dc65750611d7e613703565b80611d895750611dc8565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbd9190612d2b565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfa90612d4d565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8190612d6d565b60405180910390fd5b505b505050505050565b611eb38473ffffffffffffffffffffffffffffffffffffffff1661207b565b15612073578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611ef9959493929190612bf5565b602060405180830381600087803b158015611f1357600080fd5b505af1925050508015611f4457506040513d601f19601f82011682018060405250810190611f419190612734565b60015b611fea57611f506132e6565b806308c379a01415611fad5750611f65613703565b80611f705750611faf565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa49190612d2b565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe190612d4d565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612071576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206890612d6d565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546120aa906131ad565b90600052602060002090601f0160209004810192826120cc5760008555612113565b82601f106120e557805160ff1916838001178555612113565b82800160010185558215612113579182015b828111156121125782518255916020019190600101906120f7565b5b5090506121209190612124565b5090565b5b8082111561213d576000816000905550600101612125565b5090565b600061215461214f84612f56565b612f31565b9050808382526020820190508285602086028201111561217357600080fd5b60005b858110156121a357816121898882612295565b845260208401935060208301925050600181019050612176565b5050509392505050565b60006121c06121bb84612f82565b612f31565b905080838252602082019050828560208602820111156121df57600080fd5b60005b8581101561220f57816121f58882612391565b8452602084019350602083019250506001810190506121e2565b5050509392505050565b600061222c61222784612fae565b612f31565b90508281526020810184848401111561224457600080fd5b61224f84828561316b565b509392505050565b600061226a61226584612fdf565b612f31565b90508281526020810184848401111561228257600080fd5b61228d84828561316b565b509392505050565b6000813590506122a481613799565b92915050565b600082601f8301126122bb57600080fd5b81356122cb848260208601612141565b91505092915050565b600082601f8301126122e557600080fd5b81356122f58482602086016121ad565b91505092915050565b60008135905061230d816137b0565b92915050565b600081359050612322816137c7565b92915050565b600081519050612337816137c7565b92915050565b600082601f83011261234e57600080fd5b813561235e848260208601612219565b91505092915050565b600082601f83011261237857600080fd5b8135612388848260208601612257565b91505092915050565b6000813590506123a0816137de565b92915050565b6000602082840312156123b857600080fd5b60006123c684828501612295565b91505092915050565b600080604083850312156123e257600080fd5b60006123f085828601612295565b925050602061240185828601612295565b9150509250929050565b600080600080600060a0868803121561242357600080fd5b600061243188828901612295565b955050602061244288828901612295565b945050604086013567ffffffffffffffff81111561245f57600080fd5b61246b888289016122d4565b935050606086013567ffffffffffffffff81111561248857600080fd5b612494888289016122d4565b925050608086013567ffffffffffffffff8111156124b157600080fd5b6124bd8882890161233d565b9150509295509295909350565b600080600080600060a086880312156124e257600080fd5b60006124f088828901612295565b955050602061250188828901612295565b945050604061251288828901612391565b935050606061252388828901612391565b925050608086013567ffffffffffffffff81111561254057600080fd5b61254c8882890161233d565b9150509295509295909350565b60008060006060848603121561256e57600080fd5b600061257c86828701612295565b935050602084013567ffffffffffffffff81111561259957600080fd5b6125a5868287016122d4565b925050604084013567ffffffffffffffff8111156125c257600080fd5b6125ce868287016122d4565b9150509250925092565b600080604083850312156125eb57600080fd5b60006125f985828601612295565b925050602061260a858286016122fe565b9150509250929050565b6000806040838503121561262757600080fd5b600061263585828601612295565b925050602061264685828601612391565b9150509250929050565b60008060006060848603121561266557600080fd5b600061267386828701612295565b935050602061268486828701612391565b925050604061269586828701612391565b9150509250925092565b600080604083850312156126b257600080fd5b600083013567ffffffffffffffff8111156126cc57600080fd5b6126d8858286016122aa565b925050602083013567ffffffffffffffff8111156126f557600080fd5b612701858286016122d4565b9150509250929050565b60006020828403121561271d57600080fd5b600061272b84828501612313565b91505092915050565b60006020828403121561274657600080fd5b600061275484828501612328565b91505092915050565b60006020828403121561276f57600080fd5b600082013567ffffffffffffffff81111561278957600080fd5b61279584828501612367565b91505092915050565b6000602082840312156127b057600080fd5b60006127be84828501612391565b91505092915050565b600080604083850312156127da57600080fd5b60006127e885828601612391565b925050602083013567ffffffffffffffff81111561280557600080fd5b61281185828601612367565b9150509250929050565b60006128278383612b98565b60208301905092915050565b61283c816130f7565b82525050565b600061284d82613035565b6128578185613063565b935061286283613010565b8060005b8381101561289357815161287a888261281b565b975061288583613056565b925050600181019050612866565b5085935050505092915050565b6128a981613109565b82525050565b60006128ba82613040565b6128c48185613074565b93506128d481856020860161317a565b6128dd81613308565b840191505092915050565b60006128f38261304b565b6128fd8185613085565b935061290d81856020860161317a565b61291681613308565b840191505092915050565b600061292c8261304b565b6129368185613096565b935061294681856020860161317a565b80840191505092915050565b6000815461295f816131ad565b6129698186613096565b945060018216600081146129845760018114612995576129c8565b60ff198316865281860193506129c8565b61299e85613020565b60005b838110156129c0578154818901526001820191506020810190506129a1565b838801955050505b50505092915050565b60006129de603483613085565b91506129e982613326565b604082019050919050565b6000612a01602883613085565b9150612a0c82613375565b604082019050919050565b6000612a24602b83613085565b9150612a2f826133c4565b604082019050919050565b6000612a47602683613085565b9150612a5282613413565b604082019050919050565b6000612a6a602983613085565b9150612a7582613462565b604082019050919050565b6000612a8d602583613085565b9150612a98826134b1565b604082019050919050565b6000612ab0603283613085565b9150612abb82613500565b604082019050919050565b6000612ad3602a83613085565b9150612ade8261354f565b604082019050919050565b6000612af6602083613085565b9150612b018261359e565b602082019050919050565b6000612b19602983613085565b9150612b24826135c7565b604082019050919050565b6000612b3c602983613085565b9150612b4782613616565b604082019050919050565b6000612b5f602883613085565b9150612b6a82613665565b604082019050919050565b6000612b82602183613085565b9150612b8d826136b4565b604082019050919050565b612ba181613161565b82525050565b612bb081613161565b82525050565b6000612bc28285612952565b9150612bce8284612921565b91508190509392505050565b6000602082019050612bef6000830184612833565b92915050565b600060a082019050612c0a6000830188612833565b612c176020830187612833565b8181036040830152612c298186612842565b90508181036060830152612c3d8185612842565b90508181036080830152612c5181846128af565b90509695505050505050565b600060a082019050612c726000830188612833565b612c7f6020830187612833565b612c8c6040830186612ba7565b612c996060830185612ba7565b8181036080830152612cab81846128af565b90509695505050505050565b60006020820190508181036000830152612cd18184612842565b905092915050565b60006040820190508181036000830152612cf38185612842565b90508181036020830152612d078184612842565b90509392505050565b6000602082019050612d2560008301846128a0565b92915050565b60006020820190508181036000830152612d4581846128e8565b905092915050565b60006020820190508181036000830152612d66816129d1565b9050919050565b60006020820190508181036000830152612d86816129f4565b9050919050565b60006020820190508181036000830152612da681612a17565b9050919050565b60006020820190508181036000830152612dc681612a3a565b9050919050565b60006020820190508181036000830152612de681612a5d565b9050919050565b60006020820190508181036000830152612e0681612a80565b9050919050565b60006020820190508181036000830152612e2681612aa3565b9050919050565b60006020820190508181036000830152612e4681612ac6565b9050919050565b60006020820190508181036000830152612e6681612ae9565b9050919050565b60006020820190508181036000830152612e8681612b0c565b9050919050565b60006020820190508181036000830152612ea681612b2f565b9050919050565b60006020820190508181036000830152612ec681612b52565b9050919050565b60006020820190508181036000830152612ee681612b75565b9050919050565b6000602082019050612f026000830184612ba7565b92915050565b6000604082019050612f1d6000830185612ba7565b612f2a6020830184612ba7565b9392505050565b6000612f3b612f4c565b9050612f4782826131df565b919050565b6000604051905090565b600067ffffffffffffffff821115612f7157612f706132b7565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612f9d57612f9c6132b7565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612fc957612fc86132b7565b5b612fd282613308565b9050602081019050919050565b600067ffffffffffffffff821115612ffa57612ff96132b7565b5b61300382613308565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006130ac82613161565b91506130b783613161565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130ec576130eb613259565b5b828201905092915050565b600061310282613141565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561319857808201518184015260208101905061317d565b838111156131a7576000848401525b50505050565b600060028204905060018216806131c557607f821691505b602082108114156131d9576131d8613288565b5b50919050565b6131e882613308565b810181811067ffffffffffffffff82111715613207576132066132b7565b5b80604052505050565b600061321b82613161565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561324e5761324d613259565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156133055760046000803e613302600051613319565b90505b90565b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d101561371357613796565b61371b612f4c565b60043d036004823e80513d602482011167ffffffffffffffff82111715613743575050613796565b808201805167ffffffffffffffff8111156137615750505050613796565b80602083010160043d03850181111561377e575050505050613796565b61378d826020018501866131df565b82955050505050505b90565b6137a2816130f7565b81146137ad57600080fd5b50565b6137b981613109565b81146137c457600080fd5b50565b6137d081613115565b81146137db57600080fd5b50565b6137e781613161565b81146137f257600080fd5b5056fea26469706673582212205cd1765b9ecc01e5753fcc06f6a35667d5003bb896dfd8571d8d4372f30b515364736f6c63430008040033

Deployed Bytecode Sourcemap

39371:829:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18408:231;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17443:298;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39468:103;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36691:351;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39917:121;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20327:442;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18805:504;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39808:99;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38554:103;;;:::i;:::-;;39681:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37903:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39579:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19382:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40046:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19609:168;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19849:401;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38812:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18408:231;18494:7;18541:1;18522:21;;:7;:21;;;;18514:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;18609:9;:13;18619:2;18609:13;;;;;;;;;;;:22;18623:7;18609:22;;;;;;;;;;;;;;;;18602:29;;18408:231;;;;:::o;17443:298::-;17545:4;17593:26;17578:41;;;:11;:41;;;;:106;;;;17647:37;17632:52;;;:11;:52;;;;17578:106;:155;;;;17697:36;17721:11;17697:23;:36::i;:::-;17578:155;17562:171;;17443:298;;;:::o;39468:103::-;39513:13;39539:24;;;;;;;;;;;;;;;;;;;39468:103;:::o;36691:351::-;36759:13;36785:22;36810:10;:19;36821:7;36810:19;;;;;;;;;;;36785:44;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36965:1;36946:8;36940:22;:26;:94;;37016:18;37026:7;37016:9;:18::i;:::-;36940:94;;;36993:8;37003;36976:36;;;;;;;;;:::i;:::-;;;;;;;;;;;;;36940:94;36933:101;;;36691:351;;;:::o;39917:121::-;38134:12;:10;:12::i;:::-;38123:23;;:7;:5;:7::i;:::-;:23;;;38115:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40003:27:::1;40009:2;40013:3;40018:7;40003:27;;;;;;;;;;;::::0;:5:::1;:27::i;:::-;39917:121:::0;;;:::o;20327:442::-;20568:12;:10;:12::i;:::-;20560:20;;:4;:20;;;:60;;;;20584:36;20601:4;20607:12;:10;:12::i;:::-;20584:16;:36::i;:::-;20560:60;20538:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;20709:52;20732:4;20738:2;20742:3;20747:7;20756:4;20709:22;:52::i;:::-;20327:442;;;;;:::o;18805:504::-;18941:16;19002:3;:10;18983:8;:15;:29;18975:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;19071:30;19118:8;:15;19104:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19071:63;;19152:9;19147:122;19171:8;:15;19167:1;:19;19147:122;;;19227:30;19237:8;19246:1;19237:11;;;;;;;;;;;;;;;;;;;;;;19250:3;19254:1;19250:6;;;;;;;;;;;;;;;;;;;;;;19227:9;:30::i;:::-;19208:13;19222:1;19208:16;;;;;;;;;;;;;;;;;;;;;:49;;;;;19188:3;;;;:::i;:::-;;;19147:122;;;;19288:13;19281:20;;;18805:504;;;;:::o;39808:99::-;38134:12;:10;:12::i;:::-;38123:23;;:7;:5;:7::i;:::-;:23;;;38115:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39879:20:::1;39891:7;39879:11;:20::i;:::-;39808:99:::0;:::o;38554:103::-;38134:12;:10;:12::i;:::-;38123:23;;:7;:5;:7::i;:::-;:23;;;38115:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38619:30:::1;38646:1;38619:18;:30::i;:::-;38554:103::o:0;39681:119::-;38134:12;:10;:12::i;:::-;38123:23;;:7;:5;:7::i;:::-;:23;;;38115:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39766:26:::1;39774:7;39783:8;39766:7;:26::i;:::-;39681:119:::0;;:::o;37903:87::-;37949:7;37976:6;;;;;;;;;;;37969:13;;37903:87;:::o;39579:94::-;39626:13;39652;;;;;;;;;;;;;;;;;;;39579:94;:::o;19382:155::-;19477:52;19496:12;:10;:12::i;:::-;19510:8;19520;19477:18;:52::i;:::-;19382:155;;:::o;40046:149::-;38134:12;:10;:12::i;:::-;38123:23;;:7;:5;:7::i;:::-;:23;;;38115:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40155:32:::1;40166:2;40170:3;40175:7;40155:32;;;;;;;;;;;::::0;:10:::1;:32::i;:::-;40046:149:::0;;;:::o;19609:168::-;19708:4;19732:18;:27;19751:7;19732:27;;;;;;;;;;;;;;;:37;19760:8;19732:37;;;;;;;;;;;;;;;;;;;;;;;;;19725:44;;19609:168;;;;:::o;19849:401::-;20065:12;:10;:12::i;:::-;20057:20;;:4;:20;;;:60;;;;20081:36;20098:4;20104:12;:10;:12::i;:::-;20081:16;:36::i;:::-;20057:60;20035:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;20197:45;20215:4;20221:2;20225;20229:6;20237:4;20197:17;:45::i;:::-;19849:401;;;;;:::o;38812:201::-;38134:12;:10;:12::i;:::-;38123:23;;:7;:5;:7::i;:::-;:23;;;38115:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38921:1:::1;38901:22;;:8;:22;;;;38893:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;38977:28;38996:8;38977:18;:28::i;:::-;38812:201:::0;:::o;1131:157::-;1216:4;1255:25;1240:40;;;:11;:40;;;;1233:47;;1131:157;;;:::o;18152:105::-;18212:13;18245:4;18238:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18152:105;;;:::o;60:98::-;113:7;140:10;133:17;;60:98;:::o;25005:729::-;25172:1;25158:16;;:2;:16;;;;25150:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;25225:16;25244:12;:10;:12::i;:::-;25225:31;;25267:20;25290:21;25308:2;25290:17;:21::i;:::-;25267:44;;25322:24;25349:25;25367:6;25349:17;:25::i;:::-;25322:52;;25387:66;25408:8;25426:1;25430:2;25434:3;25439:7;25448:4;25387:20;:66::i;:::-;25487:6;25466:9;:13;25476:2;25466:13;;;;;;;;;;;:17;25480:2;25466:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;25546:2;25509:52;;25542:1;25509:52;;25524:8;25509:52;;;25550:2;25554:6;25509:52;;;;;;;:::i;:::-;;;;;;;;25574:65;25594:8;25612:1;25616:2;25620:3;25625:7;25634:4;25574:19;:65::i;:::-;25652:74;25683:8;25701:1;25705:2;25709;25713:6;25721:4;25652:30;:74::i;:::-;25005:729;;;;;;;:::o;22553:1134::-;22780:7;:14;22766:3;:10;:28;22758:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;22872:1;22858:16;;:2;:16;;;;22850:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;22929:16;22948:12;:10;:12::i;:::-;22929:31;;22973:60;22994:8;23004:4;23010:2;23014:3;23019:7;23028:4;22973:20;:60::i;:::-;23051:9;23046:409;23070:3;:10;23066:1;:14;23046:409;;;23102:10;23115:3;23119:1;23115:6;;;;;;;;;;;;;;;;;;;;;;23102:19;;23136:14;23153:7;23161:1;23153:10;;;;;;;;;;;;;;;;;;;;;;23136:27;;23180:19;23202:9;:13;23212:2;23202:13;;;;;;;;;;;:19;23216:4;23202:19;;;;;;;;;;;;;;;;23180:41;;23259:6;23244:11;:21;;23236:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;23384:6;23370:11;:20;23348:9;:13;23358:2;23348:13;;;;;;;;;;;:19;23362:4;23348:19;;;;;;;;;;;;;;;:42;;;;23437:6;23416:9;:13;23426:2;23416:13;;;;;;;;;;;:17;23430:2;23416:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;23046:409;;;23082:3;;;;:::i;:::-;;;23046:409;;;;23502:2;23472:47;;23496:4;23472:47;;23486:8;23472:47;;;23506:3;23511:7;23472:47;;;;;;;:::i;:::-;;;;;;;;23532:59;23552:8;23562:4;23568:2;23572:3;23577:7;23586:4;23532:19;:59::i;:::-;23604:75;23640:8;23650:4;23656:2;23660:3;23665:7;23674:4;23604:35;:75::i;:::-;22553:1134;;;;;;:::o;37380:98::-;37463:7;37452:8;:18;;;;;;;;;;;;:::i;:::-;;37380:98;:::o;39173:191::-;39247:16;39266:6;;;;;;;;;;;39247:25;;39292:8;39283:6;;:17;;;;;;;;;;;;;;;;;;39347:8;39316:40;;39337:8;39316:40;;;;;;;;;;;;39173:191;;:::o;37127:166::-;37235:8;37213:10;:19;37224:7;37213:19;;;;;;;;;;;:30;;;;;;;;;;;;:::i;:::-;;37277:7;37259:26;37263:12;37267:7;37263:3;:12::i;:::-;37259:26;;;;;;:::i;:::-;;;;;;;;37127:166;;:::o;29251:331::-;29406:8;29397:17;;:5;:17;;;;29389:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;29509:8;29471:18;:25;29490:5;29471:25;;;;;;;;;;;;;;;:35;29497:8;29471:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;29555:8;29533:41;;29548:5;29533:41;;;29565:8;29533:41;;;;;;:::i;:::-;;;;;;;;29251:331;;;:::o;26090:813::-;26282:1;26268:16;;:2;:16;;;;26260:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;26355:7;:14;26341:3;:10;:28;26333:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;26427:16;26446:12;:10;:12::i;:::-;26427:31;;26471:66;26492:8;26510:1;26514:2;26518:3;26523:7;26532:4;26471:20;:66::i;:::-;26555:9;26550:103;26574:3;:10;26570:1;:14;26550:103;;;26631:7;26639:1;26631:10;;;;;;;;;;;;;;;;;;;;;;26606:9;:17;26616:3;26620:1;26616:6;;;;;;;;;;;;;;;;;;;;;;26606:17;;;;;;;;;;;:21;26624:2;26606:21;;;;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;;;;;26586:3;;;;;:::i;:::-;;;;26550:103;;;;26706:2;26670:53;;26702:1;26670:53;;26684:8;26670:53;;;26710:3;26715:7;26670:53;;;;;;;:::i;:::-;;;;;;;;26736:65;26756:8;26774:1;26778:2;26782:3;26787:7;26796:4;26736:19;:65::i;:::-;26814:81;26850:8;26868:1;26872:2;26876:3;26881:7;26890:4;26814:35;:81::i;:::-;26090:813;;;;;:::o;21233:962::-;21435:1;21421:16;;:2;:16;;;;21413:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;21492:16;21511:12;:10;:12::i;:::-;21492:31;;21534:20;21557:21;21575:2;21557:17;:21::i;:::-;21534:44;;21589:24;21616:25;21634:6;21616:17;:25::i;:::-;21589:52;;21654:60;21675:8;21685:4;21691:2;21695:3;21700:7;21709:4;21654:20;:60::i;:::-;21727:19;21749:9;:13;21759:2;21749:13;;;;;;;;;;;:19;21763:4;21749:19;;;;;;;;;;;;;;;;21727:41;;21802:6;21787:11;:21;;21779:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;21919:6;21905:11;:20;21883:9;:13;21893:2;21883:13;;;;;;;;;;;:19;21897:4;21883:19;;;;;;;;;;;;;;;:42;;;;21964:6;21943:9;:13;21953:2;21943:13;;;;;;;;;;;:17;21957:2;21943:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;22019:2;21988:46;;22013:4;21988:46;;22003:8;21988:46;;;22023:2;22027:6;21988:46;;;;;;;:::i;:::-;;;;;;;;22047:59;22067:8;22077:4;22083:2;22087:3;22092:7;22101:4;22047:19;:59::i;:::-;22119:68;22150:8;22160:4;22166:2;22170;22174:6;22182:4;22119:30;:68::i;:::-;21233:962;;;;;;;;;:::o;33515:198::-;33581:16;33610:22;33649:1;33635:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33610:41;;33673:7;33662:5;33668:1;33662:8;;;;;;;;;;;;;;;;;;;;;:18;;;;;33700:5;33693:12;;;33515:198;;;:::o;30538:221::-;;;;;;;:::o;31714:220::-;;;;;;;:::o;31942:744::-;32157:15;:2;:13;;;:15::i;:::-;32153:526;;;32210:2;32193:38;;;32232:8;32242:4;32248:2;32252:6;32260:4;32193:72;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;32189:479;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;32541:6;32534:14;;;;;;;;;;;:::i;:::-;;;;;;;;32189:479;;;32590:62;;;;;;;;;;:::i;:::-;;;;;;;;32189:479;32327:43;;;32315:55;;;:8;:55;;;;32311:154;;32395:50;;;;;;;;;;:::i;:::-;;;;;;;;32311:154;32266:214;32153:526;31942:744;;;;;;:::o;32694:813::-;32934:15;:2;:13;;;:15::i;:::-;32930:570;;;32987:2;32970:43;;;33014:8;33024:4;33030:3;33035:7;33044:4;32970:79;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;32966:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;33362:6;33355:14;;;;;;;;;;;:::i;:::-;;;;;;;;32966:523;;;33411:62;;;;;;;;;;:::i;:::-;;;;;;;;32966:523;33143:48;;;33131:60;;;:8;:60;;;;33127:159;;33216:50;;;;;;;;;;:::i;:::-;;;;;;;;33127:159;33050:251;32930:570;32694:813;;;;;;:::o;2374:326::-;2434:4;2691:1;2669:7;:19;;;:23;2662:30;;2374:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:655:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:2;;;414:1;411;404:12;350:2;450:1;435:238;460:6;457:1;454:13;435:238;;;528:3;557:37;590:3;578:10;557:37;:::i;:::-;552:3;545:50;624:4;619:3;615:14;608:21;;658:4;653:3;649:14;642:21;;495:178;482:1;479;475:9;470:14;;435:238;;;439:14;126:553;;;;;;;:::o;702:655::-;798:5;823:81;839:64;896:6;839:64;:::i;:::-;823:81;:::i;:::-;814:90;;924:5;953:6;946:5;939:21;987:4;980:5;976:16;969:23;;1013:6;1063:3;1055:4;1047:6;1043:17;1038:3;1034:27;1031:36;1028:2;;;1092:1;1089;1082:12;1028:2;1128:1;1113:238;1138:6;1135:1;1132:13;1113:238;;;1206:3;1235:37;1268:3;1256:10;1235:37;:::i;:::-;1230:3;1223:50;1302:4;1297:3;1293:14;1286:21;;1336:4;1331:3;1327:14;1320:21;;1173:178;1160:1;1157;1153:9;1148:14;;1113:238;;;1117:14;804:553;;;;;;;:::o;1363:343::-;1440:5;1465:65;1481:48;1522:6;1481:48;:::i;:::-;1465:65;:::i;:::-;1456:74;;1553:6;1546:5;1539:21;1591:4;1584:5;1580:16;1629:3;1620:6;1615:3;1611:16;1608:25;1605:2;;;1646:1;1643;1636:12;1605:2;1659:41;1693:6;1688:3;1683;1659:41;:::i;:::-;1446:260;;;;;;:::o;1712:345::-;1790:5;1815:66;1831:49;1873:6;1831:49;:::i;:::-;1815:66;:::i;:::-;1806:75;;1904:6;1897:5;1890:21;1942:4;1935:5;1931:16;1980:3;1971:6;1966:3;1962:16;1959:25;1956:2;;;1997:1;1994;1987:12;1956:2;2010:41;2044:6;2039:3;2034;2010:41;:::i;:::-;1796:261;;;;;;:::o;2063:139::-;2109:5;2147:6;2134:20;2125:29;;2163:33;2190:5;2163:33;:::i;:::-;2115:87;;;;:::o;2225:303::-;2296:5;2345:3;2338:4;2330:6;2326:17;2322:27;2312:2;;2363:1;2360;2353:12;2312:2;2403:6;2390:20;2428:94;2518:3;2510:6;2503:4;2495:6;2491:17;2428:94;:::i;:::-;2419:103;;2302:226;;;;;:::o;2551:303::-;2622:5;2671:3;2664:4;2656:6;2652:17;2648:27;2638:2;;2689:1;2686;2679:12;2638:2;2729:6;2716:20;2754:94;2844:3;2836:6;2829:4;2821:6;2817:17;2754:94;:::i;:::-;2745:103;;2628:226;;;;;:::o;2860:133::-;2903:5;2941:6;2928:20;2919:29;;2957:30;2981:5;2957:30;:::i;:::-;2909:84;;;;:::o;2999:137::-;3044:5;3082:6;3069:20;3060:29;;3098:32;3124:5;3098:32;:::i;:::-;3050:86;;;;:::o;3142:141::-;3198:5;3229:6;3223:13;3214:22;;3245:32;3271:5;3245:32;:::i;:::-;3204:79;;;;:::o;3302:271::-;3357:5;3406:3;3399:4;3391:6;3387:17;3383:27;3373:2;;3424:1;3421;3414:12;3373:2;3464:6;3451:20;3489:78;3563:3;3555:6;3548:4;3540:6;3536:17;3489:78;:::i;:::-;3480:87;;3363:210;;;;;:::o;3593:273::-;3649:5;3698:3;3691:4;3683:6;3679:17;3675:27;3665:2;;3716:1;3713;3706:12;3665:2;3756:6;3743:20;3781:79;3856:3;3848:6;3841:4;3833:6;3829:17;3781:79;:::i;:::-;3772:88;;3655:211;;;;;:::o;3872:139::-;3918:5;3956:6;3943:20;3934:29;;3972:33;3999:5;3972:33;:::i;:::-;3924:87;;;;:::o;4017:262::-;4076:6;4125:2;4113:9;4104:7;4100:23;4096:32;4093:2;;;4141:1;4138;4131:12;4093:2;4184:1;4209:53;4254:7;4245:6;4234:9;4230:22;4209:53;:::i;:::-;4199:63;;4155:117;4083:196;;;;:::o;4285:407::-;4353:6;4361;4410:2;4398:9;4389:7;4385:23;4381:32;4378:2;;;4426:1;4423;4416:12;4378:2;4469:1;4494:53;4539:7;4530:6;4519:9;4515:22;4494:53;:::i;:::-;4484:63;;4440:117;4596:2;4622:53;4667:7;4658:6;4647:9;4643:22;4622:53;:::i;:::-;4612:63;;4567:118;4368:324;;;;;:::o;4698:1241::-;4852:6;4860;4868;4876;4884;4933:3;4921:9;4912:7;4908:23;4904:33;4901:2;;;4950:1;4947;4940:12;4901:2;4993:1;5018:53;5063:7;5054:6;5043:9;5039:22;5018:53;:::i;:::-;5008:63;;4964:117;5120:2;5146:53;5191:7;5182:6;5171:9;5167:22;5146:53;:::i;:::-;5136:63;;5091:118;5276:2;5265:9;5261:18;5248:32;5307:18;5299:6;5296:30;5293:2;;;5339:1;5336;5329:12;5293:2;5367:78;5437:7;5428:6;5417:9;5413:22;5367:78;:::i;:::-;5357:88;;5219:236;5522:2;5511:9;5507:18;5494:32;5553:18;5545:6;5542:30;5539:2;;;5585:1;5582;5575:12;5539:2;5613:78;5683:7;5674:6;5663:9;5659:22;5613:78;:::i;:::-;5603:88;;5465:236;5768:3;5757:9;5753:19;5740:33;5800:18;5792:6;5789:30;5786:2;;;5832:1;5829;5822:12;5786:2;5860:62;5914:7;5905:6;5894:9;5890:22;5860:62;:::i;:::-;5850:72;;5711:221;4891:1048;;;;;;;;:::o;5945:955::-;6049:6;6057;6065;6073;6081;6130:3;6118:9;6109:7;6105:23;6101:33;6098:2;;;6147:1;6144;6137:12;6098:2;6190:1;6215:53;6260:7;6251:6;6240:9;6236:22;6215:53;:::i;:::-;6205:63;;6161:117;6317:2;6343:53;6388:7;6379:6;6368:9;6364:22;6343:53;:::i;:::-;6333:63;;6288:118;6445:2;6471:53;6516:7;6507:6;6496:9;6492:22;6471:53;:::i;:::-;6461:63;;6416:118;6573:2;6599:53;6644:7;6635:6;6624:9;6620:22;6599:53;:::i;:::-;6589:63;;6544:118;6729:3;6718:9;6714:19;6701:33;6761:18;6753:6;6750:30;6747:2;;;6793:1;6790;6783:12;6747:2;6821:62;6875:7;6866:6;6855:9;6851:22;6821:62;:::i;:::-;6811:72;;6672:221;6088:812;;;;;;;;:::o;6906:838::-;7033:6;7041;7049;7098:2;7086:9;7077:7;7073:23;7069:32;7066:2;;;7114:1;7111;7104:12;7066:2;7157:1;7182:53;7227:7;7218:6;7207:9;7203:22;7182:53;:::i;:::-;7172:63;;7128:117;7312:2;7301:9;7297:18;7284:32;7343:18;7335:6;7332:30;7329:2;;;7375:1;7372;7365:12;7329:2;7403:78;7473:7;7464:6;7453:9;7449:22;7403:78;:::i;:::-;7393:88;;7255:236;7558:2;7547:9;7543:18;7530:32;7589:18;7581:6;7578:30;7575:2;;;7621:1;7618;7611:12;7575:2;7649:78;7719:7;7710:6;7699:9;7695:22;7649:78;:::i;:::-;7639:88;;7501:236;7056:688;;;;;:::o;7750:401::-;7815:6;7823;7872:2;7860:9;7851:7;7847:23;7843:32;7840:2;;;7888:1;7885;7878:12;7840:2;7931:1;7956:53;8001:7;7992:6;7981:9;7977:22;7956:53;:::i;:::-;7946:63;;7902:117;8058:2;8084:50;8126:7;8117:6;8106:9;8102:22;8084:50;:::i;:::-;8074:60;;8029:115;7830:321;;;;;:::o;8157:407::-;8225:6;8233;8282:2;8270:9;8261:7;8257:23;8253:32;8250:2;;;8298:1;8295;8288:12;8250:2;8341:1;8366:53;8411:7;8402:6;8391:9;8387:22;8366:53;:::i;:::-;8356:63;;8312:117;8468:2;8494:53;8539:7;8530:6;8519:9;8515:22;8494:53;:::i;:::-;8484:63;;8439:118;8240:324;;;;;:::o;8570:552::-;8647:6;8655;8663;8712:2;8700:9;8691:7;8687:23;8683:32;8680:2;;;8728:1;8725;8718:12;8680:2;8771:1;8796:53;8841:7;8832:6;8821:9;8817:22;8796:53;:::i;:::-;8786:63;;8742:117;8898:2;8924:53;8969:7;8960:6;8949:9;8945:22;8924:53;:::i;:::-;8914:63;;8869:118;9026:2;9052:53;9097:7;9088:6;9077:9;9073:22;9052:53;:::i;:::-;9042:63;;8997:118;8670:452;;;;;:::o;9128:693::-;9246:6;9254;9303:2;9291:9;9282:7;9278:23;9274:32;9271:2;;;9319:1;9316;9309:12;9271:2;9390:1;9379:9;9375:17;9362:31;9420:18;9412:6;9409:30;9406:2;;;9452:1;9449;9442:12;9406:2;9480:78;9550:7;9541:6;9530:9;9526:22;9480:78;:::i;:::-;9470:88;;9333:235;9635:2;9624:9;9620:18;9607:32;9666:18;9658:6;9655:30;9652:2;;;9698:1;9695;9688:12;9652:2;9726:78;9796:7;9787:6;9776:9;9772:22;9726:78;:::i;:::-;9716:88;;9578:236;9261:560;;;;;:::o;9827:260::-;9885:6;9934:2;9922:9;9913:7;9909:23;9905:32;9902:2;;;9950:1;9947;9940:12;9902:2;9993:1;10018:52;10062:7;10053:6;10042:9;10038:22;10018:52;:::i;:::-;10008:62;;9964:116;9892:195;;;;:::o;10093:282::-;10162:6;10211:2;10199:9;10190:7;10186:23;10182:32;10179:2;;;10227:1;10224;10217:12;10179:2;10270:1;10295:63;10350:7;10341:6;10330:9;10326:22;10295:63;:::i;:::-;10285:73;;10241:127;10169:206;;;;:::o;10381:375::-;10450:6;10499:2;10487:9;10478:7;10474:23;10470:32;10467:2;;;10515:1;10512;10505:12;10467:2;10586:1;10575:9;10571:17;10558:31;10616:18;10608:6;10605:30;10602:2;;;10648:1;10645;10638:12;10602:2;10676:63;10731:7;10722:6;10711:9;10707:22;10676:63;:::i;:::-;10666:73;;10529:220;10457:299;;;;:::o;10762:262::-;10821:6;10870:2;10858:9;10849:7;10845:23;10841:32;10838:2;;;10886:1;10883;10876:12;10838:2;10929:1;10954:53;10999:7;10990:6;10979:9;10975:22;10954:53;:::i;:::-;10944:63;;10900:117;10828:196;;;;:::o;11030:520::-;11108:6;11116;11165:2;11153:9;11144:7;11140:23;11136:32;11133:2;;;11181:1;11178;11171:12;11133:2;11224:1;11249:53;11294:7;11285:6;11274:9;11270:22;11249:53;:::i;:::-;11239:63;;11195:117;11379:2;11368:9;11364:18;11351:32;11410:18;11402:6;11399:30;11396:2;;;11442:1;11439;11432:12;11396:2;11470:63;11525:7;11516:6;11505:9;11501:22;11470:63;:::i;:::-;11460:73;;11322:221;11123:427;;;;;:::o;11556:179::-;11625:10;11646:46;11688:3;11680:6;11646:46;:::i;:::-;11724:4;11719:3;11715:14;11701:28;;11636:99;;;;:::o;11741:118::-;11828:24;11846:5;11828:24;:::i;:::-;11823:3;11816:37;11806:53;;:::o;11895:732::-;12014:3;12043:54;12091:5;12043:54;:::i;:::-;12113:86;12192:6;12187:3;12113:86;:::i;:::-;12106:93;;12223:56;12273:5;12223:56;:::i;:::-;12302:7;12333:1;12318:284;12343:6;12340:1;12337:13;12318:284;;;12419:6;12413:13;12446:63;12505:3;12490:13;12446:63;:::i;:::-;12439:70;;12532:60;12585:6;12532:60;:::i;:::-;12522:70;;12378:224;12365:1;12362;12358:9;12353:14;;12318:284;;;12322:14;12618:3;12611:10;;12019:608;;;;;;;:::o;12633:109::-;12714:21;12729:5;12714:21;:::i;:::-;12709:3;12702:34;12692:50;;:::o;12748:360::-;12834:3;12862:38;12894:5;12862:38;:::i;:::-;12916:70;12979:6;12974:3;12916:70;:::i;:::-;12909:77;;12995:52;13040:6;13035:3;13028:4;13021:5;13017:16;12995:52;:::i;:::-;13072:29;13094:6;13072:29;:::i;:::-;13067:3;13063:39;13056:46;;12838:270;;;;;:::o;13114:364::-;13202:3;13230:39;13263:5;13230:39;:::i;:::-;13285:71;13349:6;13344:3;13285:71;:::i;:::-;13278:78;;13365:52;13410:6;13405:3;13398:4;13391:5;13387:16;13365:52;:::i;:::-;13442:29;13464:6;13442:29;:::i;:::-;13437:3;13433:39;13426:46;;13206:272;;;;;:::o;13484:377::-;13590:3;13618:39;13651:5;13618:39;:::i;:::-;13673:89;13755:6;13750:3;13673:89;:::i;:::-;13666:96;;13771:52;13816:6;13811:3;13804:4;13797:5;13793:16;13771:52;:::i;:::-;13848:6;13843:3;13839:16;13832:23;;13594:267;;;;;:::o;13891:845::-;13994:3;14031:5;14025:12;14060:36;14086:9;14060:36;:::i;:::-;14112:89;14194:6;14189:3;14112:89;:::i;:::-;14105:96;;14232:1;14221:9;14217:17;14248:1;14243:137;;;;14394:1;14389:341;;;;14210:520;;14243:137;14327:4;14323:9;14312;14308:25;14303:3;14296:38;14363:6;14358:3;14354:16;14347:23;;14243:137;;14389:341;14456:38;14488:5;14456:38;:::i;:::-;14516:1;14530:154;14544:6;14541:1;14538:13;14530:154;;;14618:7;14612:14;14608:1;14603:3;14599:11;14592:35;14668:1;14659:7;14655:15;14644:26;;14566:4;14563:1;14559:12;14554:17;;14530:154;;;14713:6;14708:3;14704:16;14697:23;;14396:334;;14210:520;;13998:738;;;;;;:::o;14742:366::-;14884:3;14905:67;14969:2;14964:3;14905:67;:::i;:::-;14898:74;;14981:93;15070:3;14981:93;:::i;:::-;15099:2;15094:3;15090:12;15083:19;;14888:220;;;:::o;15114:366::-;15256:3;15277:67;15341:2;15336:3;15277:67;:::i;:::-;15270:74;;15353:93;15442:3;15353:93;:::i;:::-;15471:2;15466:3;15462:12;15455:19;;15260:220;;;:::o;15486:366::-;15628:3;15649:67;15713:2;15708:3;15649:67;:::i;:::-;15642:74;;15725:93;15814:3;15725:93;:::i;:::-;15843:2;15838:3;15834:12;15827:19;;15632:220;;;:::o;15858:366::-;16000:3;16021:67;16085:2;16080:3;16021:67;:::i;:::-;16014:74;;16097:93;16186:3;16097:93;:::i;:::-;16215:2;16210:3;16206:12;16199:19;;16004:220;;;:::o;16230:366::-;16372:3;16393:67;16457:2;16452:3;16393:67;:::i;:::-;16386:74;;16469:93;16558:3;16469:93;:::i;:::-;16587:2;16582:3;16578:12;16571:19;;16376:220;;;:::o;16602:366::-;16744:3;16765:67;16829:2;16824:3;16765:67;:::i;:::-;16758:74;;16841:93;16930:3;16841:93;:::i;:::-;16959:2;16954:3;16950:12;16943:19;;16748:220;;;:::o;16974:366::-;17116:3;17137:67;17201:2;17196:3;17137:67;:::i;:::-;17130:74;;17213:93;17302:3;17213:93;:::i;:::-;17331:2;17326:3;17322:12;17315:19;;17120:220;;;:::o;17346:366::-;17488:3;17509:67;17573:2;17568:3;17509:67;:::i;:::-;17502:74;;17585:93;17674:3;17585:93;:::i;:::-;17703:2;17698:3;17694:12;17687:19;;17492:220;;;:::o;17718:366::-;17860:3;17881:67;17945:2;17940:3;17881:67;:::i;:::-;17874:74;;17957:93;18046:3;17957:93;:::i;:::-;18075:2;18070:3;18066:12;18059:19;;17864:220;;;:::o;18090:366::-;18232:3;18253:67;18317:2;18312:3;18253:67;:::i;:::-;18246:74;;18329:93;18418:3;18329:93;:::i;:::-;18447:2;18442:3;18438:12;18431:19;;18236:220;;;:::o;18462:366::-;18604:3;18625:67;18689:2;18684:3;18625:67;:::i;:::-;18618:74;;18701:93;18790:3;18701:93;:::i;:::-;18819:2;18814:3;18810:12;18803:19;;18608:220;;;:::o;18834:366::-;18976:3;18997:67;19061:2;19056:3;18997:67;:::i;:::-;18990:74;;19073:93;19162:3;19073:93;:::i;:::-;19191:2;19186:3;19182:12;19175:19;;18980:220;;;:::o;19206:366::-;19348:3;19369:67;19433:2;19428:3;19369:67;:::i;:::-;19362:74;;19445:93;19534:3;19445:93;:::i;:::-;19563:2;19558:3;19554:12;19547:19;;19352:220;;;:::o;19578:108::-;19655:24;19673:5;19655:24;:::i;:::-;19650:3;19643:37;19633:53;;:::o;19692:118::-;19779:24;19797:5;19779:24;:::i;:::-;19774:3;19767:37;19757:53;;:::o;19816:429::-;19993:3;20015:92;20103:3;20094:6;20015:92;:::i;:::-;20008:99;;20124:95;20215:3;20206:6;20124:95;:::i;:::-;20117:102;;20236:3;20229:10;;19997:248;;;;;:::o;20251:222::-;20344:4;20382:2;20371:9;20367:18;20359:26;;20395:71;20463:1;20452:9;20448:17;20439:6;20395:71;:::i;:::-;20349:124;;;;:::o;20479:1053::-;20802:4;20840:3;20829:9;20825:19;20817:27;;20854:71;20922:1;20911:9;20907:17;20898:6;20854:71;:::i;:::-;20935:72;21003:2;20992:9;20988:18;20979:6;20935:72;:::i;:::-;21054:9;21048:4;21044:20;21039:2;21028:9;21024:18;21017:48;21082:108;21185:4;21176:6;21082:108;:::i;:::-;21074:116;;21237:9;21231:4;21227:20;21222:2;21211:9;21207:18;21200:48;21265:108;21368:4;21359:6;21265:108;:::i;:::-;21257:116;;21421:9;21415:4;21411:20;21405:3;21394:9;21390:19;21383:49;21449:76;21520:4;21511:6;21449:76;:::i;:::-;21441:84;;20807:725;;;;;;;;:::o;21538:751::-;21761:4;21799:3;21788:9;21784:19;21776:27;;21813:71;21881:1;21870:9;21866:17;21857:6;21813:71;:::i;:::-;21894:72;21962:2;21951:9;21947:18;21938:6;21894:72;:::i;:::-;21976;22044:2;22033:9;22029:18;22020:6;21976:72;:::i;:::-;22058;22126:2;22115:9;22111:18;22102:6;22058:72;:::i;:::-;22178:9;22172:4;22168:20;22162:3;22151:9;22147:19;22140:49;22206:76;22277:4;22268:6;22206:76;:::i;:::-;22198:84;;21766:523;;;;;;;;:::o;22295:373::-;22438:4;22476:2;22465:9;22461:18;22453:26;;22525:9;22519:4;22515:20;22511:1;22500:9;22496:17;22489:47;22553:108;22656:4;22647:6;22553:108;:::i;:::-;22545:116;;22443:225;;;;:::o;22674:634::-;22895:4;22933:2;22922:9;22918:18;22910:26;;22982:9;22976:4;22972:20;22968:1;22957:9;22953:17;22946:47;23010:108;23113:4;23104:6;23010:108;:::i;:::-;23002:116;;23165:9;23159:4;23155:20;23150:2;23139:9;23135:18;23128:48;23193:108;23296:4;23287:6;23193:108;:::i;:::-;23185:116;;22900:408;;;;;:::o;23314:210::-;23401:4;23439:2;23428:9;23424:18;23416:26;;23452:65;23514:1;23503:9;23499:17;23490:6;23452:65;:::i;:::-;23406:118;;;;:::o;23530:313::-;23643:4;23681:2;23670:9;23666:18;23658:26;;23730:9;23724:4;23720:20;23716:1;23705:9;23701:17;23694:47;23758:78;23831:4;23822:6;23758:78;:::i;:::-;23750:86;;23648:195;;;;:::o;23849:419::-;24015:4;24053:2;24042:9;24038:18;24030:26;;24102:9;24096:4;24092:20;24088:1;24077:9;24073:17;24066:47;24130:131;24256:4;24130:131;:::i;:::-;24122:139;;24020:248;;;:::o;24274:419::-;24440:4;24478:2;24467:9;24463:18;24455:26;;24527:9;24521:4;24517:20;24513:1;24502:9;24498:17;24491:47;24555:131;24681:4;24555:131;:::i;:::-;24547:139;;24445:248;;;:::o;24699:419::-;24865:4;24903:2;24892:9;24888:18;24880:26;;24952:9;24946:4;24942:20;24938:1;24927:9;24923:17;24916:47;24980:131;25106:4;24980:131;:::i;:::-;24972:139;;24870:248;;;:::o;25124:419::-;25290:4;25328:2;25317:9;25313:18;25305:26;;25377:9;25371:4;25367:20;25363:1;25352:9;25348:17;25341:47;25405:131;25531:4;25405:131;:::i;:::-;25397:139;;25295:248;;;:::o;25549:419::-;25715:4;25753:2;25742:9;25738:18;25730:26;;25802:9;25796:4;25792:20;25788:1;25777:9;25773:17;25766:47;25830:131;25956:4;25830:131;:::i;:::-;25822:139;;25720:248;;;:::o;25974:419::-;26140:4;26178:2;26167:9;26163:18;26155:26;;26227:9;26221:4;26217:20;26213:1;26202:9;26198:17;26191:47;26255:131;26381:4;26255:131;:::i;:::-;26247:139;;26145:248;;;:::o;26399:419::-;26565:4;26603:2;26592:9;26588:18;26580:26;;26652:9;26646:4;26642:20;26638:1;26627:9;26623:17;26616:47;26680:131;26806:4;26680:131;:::i;:::-;26672:139;;26570:248;;;:::o;26824:419::-;26990:4;27028:2;27017:9;27013:18;27005:26;;27077:9;27071:4;27067:20;27063:1;27052:9;27048:17;27041:47;27105:131;27231:4;27105:131;:::i;:::-;27097:139;;26995:248;;;:::o;27249:419::-;27415:4;27453:2;27442:9;27438:18;27430:26;;27502:9;27496:4;27492:20;27488:1;27477:9;27473:17;27466:47;27530:131;27656:4;27530:131;:::i;:::-;27522:139;;27420:248;;;:::o;27674:419::-;27840:4;27878:2;27867:9;27863:18;27855:26;;27927:9;27921:4;27917:20;27913:1;27902:9;27898:17;27891:47;27955:131;28081:4;27955:131;:::i;:::-;27947:139;;27845:248;;;:::o;28099:419::-;28265:4;28303:2;28292:9;28288:18;28280:26;;28352:9;28346:4;28342:20;28338:1;28327:9;28323:17;28316:47;28380:131;28506:4;28380:131;:::i;:::-;28372:139;;28270:248;;;:::o;28524:419::-;28690:4;28728:2;28717:9;28713:18;28705:26;;28777:9;28771:4;28767:20;28763:1;28752:9;28748:17;28741:47;28805:131;28931:4;28805:131;:::i;:::-;28797:139;;28695:248;;;:::o;28949:419::-;29115:4;29153:2;29142:9;29138:18;29130:26;;29202:9;29196:4;29192:20;29188:1;29177:9;29173:17;29166:47;29230:131;29356:4;29230:131;:::i;:::-;29222:139;;29120:248;;;:::o;29374:222::-;29467:4;29505:2;29494:9;29490:18;29482:26;;29518:71;29586:1;29575:9;29571:17;29562:6;29518:71;:::i;:::-;29472:124;;;;:::o;29602:332::-;29723:4;29761:2;29750:9;29746:18;29738:26;;29774:71;29842:1;29831:9;29827:17;29818:6;29774:71;:::i;:::-;29855:72;29923:2;29912:9;29908:18;29899:6;29855:72;:::i;:::-;29728:206;;;;;:::o;29940:129::-;29974:6;30001:20;;:::i;:::-;29991:30;;30030:33;30058:4;30050:6;30030:33;:::i;:::-;29981:88;;;:::o;30075:75::-;30108:6;30141:2;30135:9;30125:19;;30115:35;:::o;30156:311::-;30233:4;30323:18;30315:6;30312:30;30309:2;;;30345:18;;:::i;:::-;30309:2;30395:4;30387:6;30383:17;30375:25;;30455:4;30449;30445:15;30437:23;;30238:229;;;:::o;30473:311::-;30550:4;30640:18;30632:6;30629:30;30626:2;;;30662:18;;:::i;:::-;30626:2;30712:4;30704:6;30700:17;30692:25;;30772:4;30766;30762:15;30754:23;;30555:229;;;:::o;30790:307::-;30851:4;30941:18;30933:6;30930:30;30927:2;;;30963:18;;:::i;:::-;30927:2;31001:29;31023:6;31001:29;:::i;:::-;30993:37;;31085:4;31079;31075:15;31067:23;;30856:241;;;:::o;31103:308::-;31165:4;31255:18;31247:6;31244:30;31241:2;;;31277:18;;:::i;:::-;31241:2;31315:29;31337:6;31315:29;:::i;:::-;31307:37;;31399:4;31393;31389:15;31381:23;;31170:241;;;:::o;31417:132::-;31484:4;31507:3;31499:11;;31537:4;31532:3;31528:14;31520:22;;31489:60;;;:::o;31555:141::-;31604:4;31627:3;31619:11;;31650:3;31647:1;31640:14;31684:4;31681:1;31671:18;31663:26;;31609:87;;;:::o;31702:114::-;31769:6;31803:5;31797:12;31787:22;;31776:40;;;:::o;31822:98::-;31873:6;31907:5;31901:12;31891:22;;31880:40;;;:::o;31926:99::-;31978:6;32012:5;32006:12;31996:22;;31985:40;;;:::o;32031:113::-;32101:4;32133;32128:3;32124:14;32116:22;;32106:38;;;:::o;32150:184::-;32249:11;32283:6;32278:3;32271:19;32323:4;32318:3;32314:14;32299:29;;32261:73;;;;:::o;32340:168::-;32423:11;32457:6;32452:3;32445:19;32497:4;32492:3;32488:14;32473:29;;32435:73;;;;:::o;32514:169::-;32598:11;32632:6;32627:3;32620:19;32672:4;32667:3;32663:14;32648:29;;32610:73;;;;:::o;32689:148::-;32791:11;32828:3;32813:18;;32803:34;;;;:::o;32843:305::-;32883:3;32902:20;32920:1;32902:20;:::i;:::-;32897:25;;32936:20;32954:1;32936:20;:::i;:::-;32931:25;;33090:1;33022:66;33018:74;33015:1;33012:81;33009:2;;;33096:18;;:::i;:::-;33009:2;33140:1;33137;33133:9;33126:16;;32887:261;;;;:::o;33154:96::-;33191:7;33220:24;33238:5;33220:24;:::i;:::-;33209:35;;33199:51;;;:::o;33256:90::-;33290:7;33333:5;33326:13;33319:21;33308:32;;33298:48;;;:::o;33352:149::-;33388:7;33428:66;33421:5;33417:78;33406:89;;33396:105;;;:::o;33507:126::-;33544:7;33584:42;33577:5;33573:54;33562:65;;33552:81;;;:::o;33639:77::-;33676:7;33705:5;33694:16;;33684:32;;;:::o;33722:154::-;33806:6;33801:3;33796;33783:30;33868:1;33859:6;33854:3;33850:16;33843:27;33773:103;;;:::o;33882:307::-;33950:1;33960:113;33974:6;33971:1;33968:13;33960:113;;;34059:1;34054:3;34050:11;34044:18;34040:1;34035:3;34031:11;34024:39;33996:2;33993:1;33989:10;33984:15;;33960:113;;;34091:6;34088:1;34085:13;34082:2;;;34171:1;34162:6;34157:3;34153:16;34146:27;34082:2;33931:258;;;;:::o;34195:320::-;34239:6;34276:1;34270:4;34266:12;34256:22;;34323:1;34317:4;34313:12;34344:18;34334:2;;34400:4;34392:6;34388:17;34378:27;;34334:2;34462;34454:6;34451:14;34431:18;34428:38;34425:2;;;34481:18;;:::i;:::-;34425:2;34246:269;;;;:::o;34521:281::-;34604:27;34626:4;34604:27;:::i;:::-;34596:6;34592:40;34734:6;34722:10;34719:22;34698:18;34686:10;34683:34;34680:62;34677:2;;;34745:18;;:::i;:::-;34677:2;34785:10;34781:2;34774:22;34564:238;;;:::o;34808:233::-;34847:3;34870:24;34888:5;34870:24;:::i;:::-;34861:33;;34916:66;34909:5;34906:77;34903:2;;;34986:18;;:::i;:::-;34903:2;35033:1;35026:5;35022:13;35015:20;;34851:190;;;:::o;35047:180::-;35095:77;35092:1;35085:88;35192:4;35189:1;35182:15;35216:4;35213:1;35206:15;35233:180;35281:77;35278:1;35271:88;35378:4;35375:1;35368:15;35402:4;35399:1;35392:15;35419:180;35467:77;35464:1;35457:88;35564:4;35561:1;35554:15;35588:4;35585:1;35578:15;35605:183;35640:3;35678:1;35660:16;35657:23;35654:2;;;35716:1;35713;35710;35695:23;35738:34;35769:1;35763:8;35738:34;:::i;:::-;35731:41;;35654:2;35644:144;:::o;35794:102::-;35835:6;35886:2;35882:7;35877:2;35870:5;35866:14;35862:28;35852:38;;35842:54;;;:::o;35902:106::-;35946:8;35995:5;35990:3;35986:15;35965:36;;35955:53;;;:::o;36014:239::-;36154:34;36150:1;36142:6;36138:14;36131:58;36223:22;36218:2;36210:6;36206:15;36199:47;36120:133;:::o;36259:227::-;36399:34;36395:1;36387:6;36383:14;36376:58;36468:10;36463:2;36455:6;36451:15;36444:35;36365:121;:::o;36492:230::-;36632:34;36628:1;36620:6;36616:14;36609:58;36701:13;36696:2;36688:6;36684:15;36677:38;36598:124;:::o;36728:225::-;36868:34;36864:1;36856:6;36852:14;36845:58;36937:8;36932:2;36924:6;36920:15;36913:33;36834:119;:::o;36959:228::-;37099:34;37095:1;37087:6;37083:14;37076:58;37168:11;37163:2;37155:6;37151:15;37144:36;37065:122;:::o;37193:224::-;37333:34;37329:1;37321:6;37317:14;37310:58;37402:7;37397:2;37389:6;37385:15;37378:32;37299:118;:::o;37423:237::-;37563:34;37559:1;37551:6;37547:14;37540:58;37632:20;37627:2;37619:6;37615:15;37608:45;37529:131;:::o;37666:229::-;37806:34;37802:1;37794:6;37790:14;37783:58;37875:12;37870:2;37862:6;37858:15;37851:37;37772:123;:::o;37901:182::-;38041:34;38037:1;38029:6;38025:14;38018:58;38007:76;:::o;38089:228::-;38229:34;38225:1;38217:6;38213:14;38206:58;38298:11;38293:2;38285:6;38281:15;38274:36;38195:122;:::o;38323:228::-;38463:34;38459:1;38451:6;38447:14;38440:58;38532:11;38527:2;38519:6;38515:15;38508:36;38429:122;:::o;38557:227::-;38697:34;38693:1;38685:6;38681:14;38674:58;38766:10;38761:2;38753:6;38749:15;38742:35;38663:121;:::o;38790:220::-;38930:34;38926:1;38918:6;38914:14;38907:58;38999:3;38994:2;38986:6;38982:15;38975:28;38896:114;:::o;39016:711::-;39055:3;39093:4;39075:16;39072:26;39069:2;;;39101:5;;39069:2;39130:20;;:::i;:::-;39205:1;39187:16;39183:24;39180:1;39174:4;39159:49;39238:4;39232:11;39337:16;39330:4;39322:6;39318:17;39315:39;39282:18;39274:6;39271:30;39255:113;39252:2;;;39383:5;;;;39252:2;39429:6;39423:4;39419:17;39465:3;39459:10;39492:18;39484:6;39481:30;39478:2;;;39514:5;;;;;;39478:2;39562:6;39555:4;39550:3;39546:14;39542:27;39621:1;39603:16;39599:24;39593:4;39589:35;39584:3;39581:44;39578:2;;;39628:5;;;;;;;39578:2;39645:57;39693:6;39687:4;39683:17;39675:6;39671:30;39665:4;39645:57;:::i;:::-;39718:3;39711:10;;39059:668;;;;;;;:::o;39733:122::-;39806:24;39824:5;39806:24;:::i;:::-;39799:5;39796:35;39786:2;;39845:1;39842;39835:12;39786:2;39776:79;:::o;39861:116::-;39931:21;39946:5;39931:21;:::i;:::-;39924:5;39921:32;39911:2;;39967:1;39964;39957:12;39911:2;39901:76;:::o;39983:120::-;40055:23;40072:5;40055:23;:::i;:::-;40048:5;40045:34;40035:2;;40093:1;40090;40083:12;40035:2;40025:78;:::o;40109:122::-;40182:24;40200:5;40182:24;:::i;:::-;40175:5;40172:35;40162:2;;40221:1;40218;40211:12;40162:2;40152:79;:::o

Swarm Source

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