ETH Price: $3,262.22 (-0.60%)
Gas: 3 Gwei

Token

 

Overview

Max Total Supply

231

Holders

231

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0xDfF3789d4C45eB099F3d9EA4E0F1Ce59f8e58cc2
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:
ClownSquadElements

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-27
*/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @dev 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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return batchBalances;
    }

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

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

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

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

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

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

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

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

        return array;
    }
}

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

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

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

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

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

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

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

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

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

contract ClownSquadElements is ERC1155, Ownable {

    string[] public items;

    mapping(address => bool) public validators;

    constructor() ERC1155("") {
    }

    function setNewURI(string memory newuri) public onlyOwner {
        _setURI(newuri);
    }

    function mint(address[] memory list, uint256 collection) public onlyOwner {

        for (uint256 roll = 0; roll < list.length; roll++) {
            _mint(list[roll], collection, 1, "");
        }

    }

    function uri(uint256 id) public view override returns (string memory) {
        return items[id];
    }

    function editUri(uint256 id, string memory newuri) public onlyOwner {
        items[id] = newuri;
    }

    function addUri(string memory newuri) public onlyOwner {
        items.push(newuri);
    }

    function burn(
        address from,
        uint256 id,
        uint256 amount
    ) public {
        require(validators[msg.sender] == true, "Clown Squad Elements: you are not a validator.");
        _burn(from, id, amount);
    }

    function toggleValidator(address addr) public onlyOwner {
        if (validators[addr]) {
            validators[addr] = false;
        } else {
            validators[addr] = true;
        }
    }

}

// Creator: Elit Deus (Bleiserman)

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":"string","name":"newuri","type":"string"}],"name":"addUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"string","name":"newuri","type":"string"}],"name":"editUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"items","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"list","type":"address[]"},{"internalType":"uint256","name":"collection","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","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":"newuri","type":"string"}],"name":"setNewURI","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":[{"internalType":"address","name":"addr","type":"address"}],"name":"toggleValidator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"validators","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506040518060200160405280600081525062000033816200005a60201b60201c565b5062000054620000486200007660201b60201c565b6200007e60201b60201c565b62000259565b80600290805190602001906200007292919062000144565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200015290620001f4565b90600052602060002090601f016020900481019282620001765760008555620001c2565b82601f106200019157805160ff1916838001178555620001c2565b82800160010185558215620001c2579182015b82811115620001c1578251825591602001919060010190620001a4565b5b509050620001d19190620001d5565b5090565b5b80821115620001f0576000816000905550600101620001d6565b5090565b600060028204905060018216806200020d57607f821691505b602082108114156200022457620002236200022a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61371980620002696000396000f3fe608060405234801561001057600080fd5b50600436106101205760003560e01c80638da5cb5b116100ad578063f242432a11610071578063f242432a14610315578063f2fde38b14610331578063f5298aca1461034d578063fa52c7d814610369578063fe3138e61461039957610120565b80638da5cb5b1461025f578063a22cb4651461027d578063bfb231d214610299578063e985e9c5146102c9578063ea66696c146102f957610120565b80631124e56f116100f45780631124e56f146101d15780632eb2c2d6146101ed5780634bcc7d7d146102095780634e1273f414610225578063715018a61461025557610120565b8062fdd58e1461012557806301ffc9a7146101555780630e709b1b146101855780630e89341c146101a1575b600080fd5b61013f600480360381019061013a91906123fe565b6103b5565b60405161014c9190612d15565b60405180910390f35b61016f600480360381019061016a9190612565565b61047e565b60405161017c9190612af8565b60405180910390f35b61019f600480360381019061019a91906125bf565b610560565b005b6101bb60048036038101906101b69190612608565b610574565b6040516101c89190612b13565b60405180910390f35b6101eb60048036038101906101e691906121eb565b610624565b005b61020760048036038101906102029190612258565b610737565b005b610223600480360381019061021e9190612635565b6107d8565b005b61023f600480360381019061023a9190612491565b610817565b60405161024c9190612a9f565b60405180910390f35b61025d610930565b005b610267610944565b60405161027491906129c2565b60405180910390f35b610297600480360381019061029291906123be565b61096e565b005b6102b360048036038101906102ae9190612608565b610984565b6040516102c09190612b13565b60405180910390f35b6102e360048036038101906102de9190612218565b610a30565b6040516102f09190612af8565b60405180910390f35b610313600480360381019061030e9190612509565b610ac4565b005b61032f600480360381019061032a9190612327565b610b26565b005b61034b600480360381019061034691906121eb565b610bc7565b005b6103676004803603810190610362919061243e565b610c4b565b005b610383600480360381019061037e91906121eb565b610cee565b6040516103909190612af8565b60405180910390f35b6103b360048036038101906103ae91906125bf565b610d0e565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161041d90612b95565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061054957507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610559575061055882610d55565b5b9050919050565b610568610dbf565b61057181610e3d565b50565b60606004828154811061058a576105896130bf565b5b90600052602060002001805461059f90612fb5565b80601f01602080910402602001604051908101604052809291908181526020018280546105cb90612fb5565b80156106185780601f106105ed57610100808354040283529160200191610618565b820191906000526020600020905b8154815290600101906020018083116105fb57829003601f168201915b50505050509050919050565b61062c610dbf565b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156106db576000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610734565b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b50565b61073f610e57565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061078557506107848561077f610e57565b610a30565b5b6107c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107bb90612bb5565b60405180910390fd5b6107d18585858585610e5f565b5050505050565b6107e0610dbf565b80600483815481106107f5576107f46130bf565b5b906000526020600020019080519060200190610812929190611ec3565b505050565b6060815183511461085d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085490612c95565b60405180910390fd5b6000835167ffffffffffffffff81111561087a576108796130ee565b5b6040519080825280602002602001820160405280156108a85781602001602082028036833780820191505090505b50905060005b8451811015610925576108f58582815181106108cd576108cc6130bf565b5b60200260200101518583815181106108e8576108e76130bf565b5b60200260200101516103b5565b828281518110610908576109076130bf565b5b6020026020010181815250508061091e90613018565b90506108ae565b508091505092915050565b610938610dbf565b6109426000611181565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610980610979610e57565b8383611247565b5050565b6004818154811061099457600080fd5b9060005260206000200160009150905080546109af90612fb5565b80601f01602080910402602001604051908101604052809291908181526020018280546109db90612fb5565b8015610a285780601f106109fd57610100808354040283529160200191610a28565b820191906000526020600020905b815481529060010190602001808311610a0b57829003601f168201915b505050505081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610acc610dbf565b60005b8251811015610b2157610b0e838281518110610aee57610aed6130bf565b5b6020026020010151836001604051806020016040528060008152506113b4565b8080610b1990613018565b915050610acf565b505050565b610b2e610e57565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610b745750610b7385610b6e610e57565b610a30565b5b610bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baa90612bb5565b60405180910390fd5b610bc08585858585611565565b5050505050565b610bcf610dbf565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3690612b55565b60405180910390fd5b610c4881611181565b50565b60011515600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610cde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd590612c35565b60405180910390fd5b610ce9838383611801565b505050565b60056020528060005260406000206000915054906101000a900460ff1681565b610d16610dbf565b600481908060018154018082558091505060019003906000526020600020016000909190919091509080519060200190610d51929190611ec3565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610dc7610e57565b73ffffffffffffffffffffffffffffffffffffffff16610de5610944565b73ffffffffffffffffffffffffffffffffffffffff1614610e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3290612c55565b60405180910390fd5b565b8060029080519060200190610e53929190611ec3565b5050565b600033905090565b8151835114610ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9a90612cb5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415610f13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0a90612bd5565b60405180910390fd5b6000610f1d610e57565b9050610f2d818787878787611a48565b60005b84518110156110de576000858281518110610f4e57610f4d6130bf565b5b602002602001015190506000858381518110610f6d57610f6c6130bf565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561100e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100590612c15565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110c39190612ea9565b92505081905550505050806110d790613018565b9050610f30565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611155929190612ac1565b60405180910390a461116b818787878787611a50565b611179818787878787611a58565b505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ad90612c75565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113a79190612af8565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141b90612cd5565b60405180910390fd5b600061142e610e57565b9050600061143b85611c3f565b9050600061144885611c3f565b905061145983600089858589611a48565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114b89190612ea9565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051611536929190612d30565b60405180910390a461154d83600089858589611a50565b61155c83600089898989611cb9565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156115d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cc90612bd5565b60405180910390fd5b60006115df610e57565b905060006115ec85611c3f565b905060006115f985611c3f565b9050611609838989858589611a48565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050858110156116a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169790612c15565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117559190612ea9565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a6040516117d2929190612d30565b60405180910390a46117e8848a8a86868a611a50565b6117f6848a8a8a8a8a611cb9565b505050505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611871576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186890612bf5565b60405180910390fd5b600061187b610e57565b9050600061188884611c3f565b9050600061189584611c3f565b90506118b583876000858560405180602001604052806000815250611a48565b600080600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508481101561194c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194390612b75565b60405180910390fd5b84810360008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051611a19929190612d30565b60405180910390a4611a3f84886000868660405180602001604052806000815250611a50565b50505050505050565b505050505050565b505050505050565b611a778473ffffffffffffffffffffffffffffffffffffffff16611ea0565b15611c37578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611abd9594939291906129dd565b602060405180830381600087803b158015611ad757600080fd5b505af1925050508015611b0857506040513d601f19601f82011682018060405250810190611b059190612592565b60015b611bae57611b1461311d565b806308c379a01415611b715750611b296135f1565b80611b345750611b73565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b689190612b13565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba590612cf5565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2c90612b35565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115611c5e57611c5d6130ee565b5b604051908082528060200260200182016040528015611c8c5781602001602082028036833780820191505090505b5090508281600081518110611ca457611ca36130bf565b5b60200260200101818152505080915050919050565b611cd88473ffffffffffffffffffffffffffffffffffffffff16611ea0565b15611e98578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611d1e959493929190612a45565b602060405180830381600087803b158015611d3857600080fd5b505af1925050508015611d6957506040513d601f19601f82011682018060405250810190611d669190612592565b60015b611e0f57611d7561311d565b806308c379a01415611dd25750611d8a6135f1565b80611d955750611dd4565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc99190612b13565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0690612cf5565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611e96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8d90612b35565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054611ecf90612fb5565b90600052602060002090601f016020900481019282611ef15760008555611f38565b82601f10611f0a57805160ff1916838001178555611f38565b82800160010185558215611f38579182015b82811115611f37578251825591602001919060010190611f1c565b5b509050611f459190611f49565b5090565b5b80821115611f62576000816000905550600101611f4a565b5090565b6000611f79611f7484612d7e565b612d59565b90508083825260208201905082856020860282011115611f9c57611f9b613144565b5b60005b85811015611fcc5781611fb288826120ca565b845260208401935060208301925050600181019050611f9f565b5050509392505050565b6000611fe9611fe484612daa565b612d59565b9050808382526020820190508285602086028201111561200c5761200b613144565b5b60005b8581101561203c578161202288826121d6565b84526020840193506020830192505060018101905061200f565b5050509392505050565b600061205961205484612dd6565b612d59565b90508281526020810184848401111561207557612074613149565b5b612080848285612f73565b509392505050565b600061209b61209684612e07565b612d59565b9050828152602081018484840111156120b7576120b6613149565b5b6120c2848285612f73565b509392505050565b6000813590506120d981613687565b92915050565b600082601f8301126120f4576120f361313f565b5b8135612104848260208601611f66565b91505092915050565b600082601f8301126121225761212161313f565b5b8135612132848260208601611fd6565b91505092915050565b60008135905061214a8161369e565b92915050565b60008135905061215f816136b5565b92915050565b600081519050612174816136b5565b92915050565b600082601f83011261218f5761218e61313f565b5b813561219f848260208601612046565b91505092915050565b600082601f8301126121bd576121bc61313f565b5b81356121cd848260208601612088565b91505092915050565b6000813590506121e5816136cc565b92915050565b60006020828403121561220157612200613153565b5b600061220f848285016120ca565b91505092915050565b6000806040838503121561222f5761222e613153565b5b600061223d858286016120ca565b925050602061224e858286016120ca565b9150509250929050565b600080600080600060a0868803121561227457612273613153565b5b6000612282888289016120ca565b9550506020612293888289016120ca565b945050604086013567ffffffffffffffff8111156122b4576122b361314e565b5b6122c08882890161210d565b935050606086013567ffffffffffffffff8111156122e1576122e061314e565b5b6122ed8882890161210d565b925050608086013567ffffffffffffffff81111561230e5761230d61314e565b5b61231a8882890161217a565b9150509295509295909350565b600080600080600060a0868803121561234357612342613153565b5b6000612351888289016120ca565b9550506020612362888289016120ca565b9450506040612373888289016121d6565b9350506060612384888289016121d6565b925050608086013567ffffffffffffffff8111156123a5576123a461314e565b5b6123b18882890161217a565b9150509295509295909350565b600080604083850312156123d5576123d4613153565b5b60006123e3858286016120ca565b92505060206123f48582860161213b565b9150509250929050565b6000806040838503121561241557612414613153565b5b6000612423858286016120ca565b9250506020612434858286016121d6565b9150509250929050565b60008060006060848603121561245757612456613153565b5b6000612465868287016120ca565b9350506020612476868287016121d6565b9250506040612487868287016121d6565b9150509250925092565b600080604083850312156124a8576124a7613153565b5b600083013567ffffffffffffffff8111156124c6576124c561314e565b5b6124d2858286016120df565b925050602083013567ffffffffffffffff8111156124f3576124f261314e565b5b6124ff8582860161210d565b9150509250929050565b600080604083850312156125205761251f613153565b5b600083013567ffffffffffffffff81111561253e5761253d61314e565b5b61254a858286016120df565b925050602061255b858286016121d6565b9150509250929050565b60006020828403121561257b5761257a613153565b5b600061258984828501612150565b91505092915050565b6000602082840312156125a8576125a7613153565b5b60006125b684828501612165565b91505092915050565b6000602082840312156125d5576125d4613153565b5b600082013567ffffffffffffffff8111156125f3576125f261314e565b5b6125ff848285016121a8565b91505092915050565b60006020828403121561261e5761261d613153565b5b600061262c848285016121d6565b91505092915050565b6000806040838503121561264c5761264b613153565b5b600061265a858286016121d6565b925050602083013567ffffffffffffffff81111561267b5761267a61314e565b5b612687858286016121a8565b9150509250929050565b600061269d83836129a4565b60208301905092915050565b6126b281612eff565b82525050565b60006126c382612e48565b6126cd8185612e76565b93506126d883612e38565b8060005b838110156127095781516126f08882612691565b97506126fb83612e69565b9250506001810190506126dc565b5085935050505092915050565b61271f81612f11565b82525050565b600061273082612e53565b61273a8185612e87565b935061274a818560208601612f82565b61275381613158565b840191505092915050565b600061276982612e5e565b6127738185612e98565b9350612783818560208601612f82565b61278c81613158565b840191505092915050565b60006127a4602883612e98565b91506127af82613176565b604082019050919050565b60006127c7602683612e98565b91506127d2826131c5565b604082019050919050565b60006127ea602483612e98565b91506127f582613214565b604082019050919050565b600061280d602a83612e98565b915061281882613263565b604082019050919050565b6000612830602e83612e98565b915061283b826132b2565b604082019050919050565b6000612853602583612e98565b915061285e82613301565b604082019050919050565b6000612876602383612e98565b915061288182613350565b604082019050919050565b6000612899602a83612e98565b91506128a48261339f565b604082019050919050565b60006128bc602e83612e98565b91506128c7826133ee565b604082019050919050565b60006128df602083612e98565b91506128ea8261343d565b602082019050919050565b6000612902602983612e98565b915061290d82613466565b604082019050919050565b6000612925602983612e98565b9150612930826134b5565b604082019050919050565b6000612948602883612e98565b915061295382613504565b604082019050919050565b600061296b602183612e98565b915061297682613553565b604082019050919050565b600061298e603483612e98565b9150612999826135a2565b604082019050919050565b6129ad81612f69565b82525050565b6129bc81612f69565b82525050565b60006020820190506129d760008301846126a9565b92915050565b600060a0820190506129f260008301886126a9565b6129ff60208301876126a9565b8181036040830152612a1181866126b8565b90508181036060830152612a2581856126b8565b90508181036080830152612a398184612725565b90509695505050505050565b600060a082019050612a5a60008301886126a9565b612a6760208301876126a9565b612a7460408301866129b3565b612a8160608301856129b3565b8181036080830152612a938184612725565b90509695505050505050565b60006020820190508181036000830152612ab981846126b8565b905092915050565b60006040820190508181036000830152612adb81856126b8565b90508181036020830152612aef81846126b8565b90509392505050565b6000602082019050612b0d6000830184612716565b92915050565b60006020820190508181036000830152612b2d818461275e565b905092915050565b60006020820190508181036000830152612b4e81612797565b9050919050565b60006020820190508181036000830152612b6e816127ba565b9050919050565b60006020820190508181036000830152612b8e816127dd565b9050919050565b60006020820190508181036000830152612bae81612800565b9050919050565b60006020820190508181036000830152612bce81612823565b9050919050565b60006020820190508181036000830152612bee81612846565b9050919050565b60006020820190508181036000830152612c0e81612869565b9050919050565b60006020820190508181036000830152612c2e8161288c565b9050919050565b60006020820190508181036000830152612c4e816128af565b9050919050565b60006020820190508181036000830152612c6e816128d2565b9050919050565b60006020820190508181036000830152612c8e816128f5565b9050919050565b60006020820190508181036000830152612cae81612918565b9050919050565b60006020820190508181036000830152612cce8161293b565b9050919050565b60006020820190508181036000830152612cee8161295e565b9050919050565b60006020820190508181036000830152612d0e81612981565b9050919050565b6000602082019050612d2a60008301846129b3565b92915050565b6000604082019050612d4560008301856129b3565b612d5260208301846129b3565b9392505050565b6000612d63612d74565b9050612d6f8282612fe7565b919050565b6000604051905090565b600067ffffffffffffffff821115612d9957612d986130ee565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612dc557612dc46130ee565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612df157612df06130ee565b5b612dfa82613158565b9050602081019050919050565b600067ffffffffffffffff821115612e2257612e216130ee565b5b612e2b82613158565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b6000612eb482612f69565b9150612ebf83612f69565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ef457612ef3613061565b5b828201905092915050565b6000612f0a82612f49565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612fa0578082015181840152602081019050612f85565b83811115612faf576000848401525b50505050565b60006002820490506001821680612fcd57607f821691505b60208210811415612fe157612fe0613090565b5b50919050565b612ff082613158565b810181811067ffffffffffffffff8211171561300f5761300e6130ee565b5b80604052505050565b600061302382612f69565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561305657613055613061565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d111561313c5760046000803e613139600051613169565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206f7220617070726f766564000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f436c6f776e20537175616420456c656d656e74733a20796f7520617265206e6f60008201527f7420612076616c696461746f722e000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f206e6f6e2d4552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b600060443d101561360157613684565b613609612d74565b60043d036004823e80513d602482011167ffffffffffffffff82111715613631575050613684565b808201805167ffffffffffffffff81111561364f5750505050613684565b80602083010160043d03850181111561366c575050505050613684565b61367b82602001850186612fe7565b82955050505050505b90565b61369081612eff565b811461369b57600080fd5b50565b6136a781612f11565b81146136b257600080fd5b50565b6136be81612f1d565b81146136c957600080fd5b50565b6136d581612f69565b81146136e057600080fd5b5056fea26469706673582212200e732acc87f6204810b561f0bc84995d07924d5db29f62751499574c1cf3f76064736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101205760003560e01c80638da5cb5b116100ad578063f242432a11610071578063f242432a14610315578063f2fde38b14610331578063f5298aca1461034d578063fa52c7d814610369578063fe3138e61461039957610120565b80638da5cb5b1461025f578063a22cb4651461027d578063bfb231d214610299578063e985e9c5146102c9578063ea66696c146102f957610120565b80631124e56f116100f45780631124e56f146101d15780632eb2c2d6146101ed5780634bcc7d7d146102095780634e1273f414610225578063715018a61461025557610120565b8062fdd58e1461012557806301ffc9a7146101555780630e709b1b146101855780630e89341c146101a1575b600080fd5b61013f600480360381019061013a91906123fe565b6103b5565b60405161014c9190612d15565b60405180910390f35b61016f600480360381019061016a9190612565565b61047e565b60405161017c9190612af8565b60405180910390f35b61019f600480360381019061019a91906125bf565b610560565b005b6101bb60048036038101906101b69190612608565b610574565b6040516101c89190612b13565b60405180910390f35b6101eb60048036038101906101e691906121eb565b610624565b005b61020760048036038101906102029190612258565b610737565b005b610223600480360381019061021e9190612635565b6107d8565b005b61023f600480360381019061023a9190612491565b610817565b60405161024c9190612a9f565b60405180910390f35b61025d610930565b005b610267610944565b60405161027491906129c2565b60405180910390f35b610297600480360381019061029291906123be565b61096e565b005b6102b360048036038101906102ae9190612608565b610984565b6040516102c09190612b13565b60405180910390f35b6102e360048036038101906102de9190612218565b610a30565b6040516102f09190612af8565b60405180910390f35b610313600480360381019061030e9190612509565b610ac4565b005b61032f600480360381019061032a9190612327565b610b26565b005b61034b600480360381019061034691906121eb565b610bc7565b005b6103676004803603810190610362919061243e565b610c4b565b005b610383600480360381019061037e91906121eb565b610cee565b6040516103909190612af8565b60405180910390f35b6103b360048036038101906103ae91906125bf565b610d0e565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161041d90612b95565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061054957507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610559575061055882610d55565b5b9050919050565b610568610dbf565b61057181610e3d565b50565b60606004828154811061058a576105896130bf565b5b90600052602060002001805461059f90612fb5565b80601f01602080910402602001604051908101604052809291908181526020018280546105cb90612fb5565b80156106185780601f106105ed57610100808354040283529160200191610618565b820191906000526020600020905b8154815290600101906020018083116105fb57829003601f168201915b50505050509050919050565b61062c610dbf565b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156106db576000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610734565b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b50565b61073f610e57565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061078557506107848561077f610e57565b610a30565b5b6107c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107bb90612bb5565b60405180910390fd5b6107d18585858585610e5f565b5050505050565b6107e0610dbf565b80600483815481106107f5576107f46130bf565b5b906000526020600020019080519060200190610812929190611ec3565b505050565b6060815183511461085d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085490612c95565b60405180910390fd5b6000835167ffffffffffffffff81111561087a576108796130ee565b5b6040519080825280602002602001820160405280156108a85781602001602082028036833780820191505090505b50905060005b8451811015610925576108f58582815181106108cd576108cc6130bf565b5b60200260200101518583815181106108e8576108e76130bf565b5b60200260200101516103b5565b828281518110610908576109076130bf565b5b6020026020010181815250508061091e90613018565b90506108ae565b508091505092915050565b610938610dbf565b6109426000611181565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610980610979610e57565b8383611247565b5050565b6004818154811061099457600080fd5b9060005260206000200160009150905080546109af90612fb5565b80601f01602080910402602001604051908101604052809291908181526020018280546109db90612fb5565b8015610a285780601f106109fd57610100808354040283529160200191610a28565b820191906000526020600020905b815481529060010190602001808311610a0b57829003601f168201915b505050505081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610acc610dbf565b60005b8251811015610b2157610b0e838281518110610aee57610aed6130bf565b5b6020026020010151836001604051806020016040528060008152506113b4565b8080610b1990613018565b915050610acf565b505050565b610b2e610e57565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610b745750610b7385610b6e610e57565b610a30565b5b610bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baa90612bb5565b60405180910390fd5b610bc08585858585611565565b5050505050565b610bcf610dbf565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3690612b55565b60405180910390fd5b610c4881611181565b50565b60011515600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610cde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd590612c35565b60405180910390fd5b610ce9838383611801565b505050565b60056020528060005260406000206000915054906101000a900460ff1681565b610d16610dbf565b600481908060018154018082558091505060019003906000526020600020016000909190919091509080519060200190610d51929190611ec3565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610dc7610e57565b73ffffffffffffffffffffffffffffffffffffffff16610de5610944565b73ffffffffffffffffffffffffffffffffffffffff1614610e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3290612c55565b60405180910390fd5b565b8060029080519060200190610e53929190611ec3565b5050565b600033905090565b8151835114610ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9a90612cb5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415610f13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0a90612bd5565b60405180910390fd5b6000610f1d610e57565b9050610f2d818787878787611a48565b60005b84518110156110de576000858281518110610f4e57610f4d6130bf565b5b602002602001015190506000858381518110610f6d57610f6c6130bf565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561100e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100590612c15565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110c39190612ea9565b92505081905550505050806110d790613018565b9050610f30565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611155929190612ac1565b60405180910390a461116b818787878787611a50565b611179818787878787611a58565b505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ad90612c75565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113a79190612af8565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141b90612cd5565b60405180910390fd5b600061142e610e57565b9050600061143b85611c3f565b9050600061144885611c3f565b905061145983600089858589611a48565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114b89190612ea9565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051611536929190612d30565b60405180910390a461154d83600089858589611a50565b61155c83600089898989611cb9565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156115d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cc90612bd5565b60405180910390fd5b60006115df610e57565b905060006115ec85611c3f565b905060006115f985611c3f565b9050611609838989858589611a48565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050858110156116a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169790612c15565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117559190612ea9565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a6040516117d2929190612d30565b60405180910390a46117e8848a8a86868a611a50565b6117f6848a8a8a8a8a611cb9565b505050505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611871576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186890612bf5565b60405180910390fd5b600061187b610e57565b9050600061188884611c3f565b9050600061189584611c3f565b90506118b583876000858560405180602001604052806000815250611a48565b600080600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508481101561194c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194390612b75565b60405180910390fd5b84810360008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051611a19929190612d30565b60405180910390a4611a3f84886000868660405180602001604052806000815250611a50565b50505050505050565b505050505050565b505050505050565b611a778473ffffffffffffffffffffffffffffffffffffffff16611ea0565b15611c37578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611abd9594939291906129dd565b602060405180830381600087803b158015611ad757600080fd5b505af1925050508015611b0857506040513d601f19601f82011682018060405250810190611b059190612592565b60015b611bae57611b1461311d565b806308c379a01415611b715750611b296135f1565b80611b345750611b73565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b689190612b13565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba590612cf5565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2c90612b35565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115611c5e57611c5d6130ee565b5b604051908082528060200260200182016040528015611c8c5781602001602082028036833780820191505090505b5090508281600081518110611ca457611ca36130bf565b5b60200260200101818152505080915050919050565b611cd88473ffffffffffffffffffffffffffffffffffffffff16611ea0565b15611e98578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611d1e959493929190612a45565b602060405180830381600087803b158015611d3857600080fd5b505af1925050508015611d6957506040513d601f19601f82011682018060405250810190611d669190612592565b60015b611e0f57611d7561311d565b806308c379a01415611dd25750611d8a6135f1565b80611d955750611dd4565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc99190612b13565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0690612cf5565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611e96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8d90612b35565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054611ecf90612fb5565b90600052602060002090601f016020900481019282611ef15760008555611f38565b82601f10611f0a57805160ff1916838001178555611f38565b82800160010185558215611f38579182015b82811115611f37578251825591602001919060010190611f1c565b5b509050611f459190611f49565b5090565b5b80821115611f62576000816000905550600101611f4a565b5090565b6000611f79611f7484612d7e565b612d59565b90508083825260208201905082856020860282011115611f9c57611f9b613144565b5b60005b85811015611fcc5781611fb288826120ca565b845260208401935060208301925050600181019050611f9f565b5050509392505050565b6000611fe9611fe484612daa565b612d59565b9050808382526020820190508285602086028201111561200c5761200b613144565b5b60005b8581101561203c578161202288826121d6565b84526020840193506020830192505060018101905061200f565b5050509392505050565b600061205961205484612dd6565b612d59565b90508281526020810184848401111561207557612074613149565b5b612080848285612f73565b509392505050565b600061209b61209684612e07565b612d59565b9050828152602081018484840111156120b7576120b6613149565b5b6120c2848285612f73565b509392505050565b6000813590506120d981613687565b92915050565b600082601f8301126120f4576120f361313f565b5b8135612104848260208601611f66565b91505092915050565b600082601f8301126121225761212161313f565b5b8135612132848260208601611fd6565b91505092915050565b60008135905061214a8161369e565b92915050565b60008135905061215f816136b5565b92915050565b600081519050612174816136b5565b92915050565b600082601f83011261218f5761218e61313f565b5b813561219f848260208601612046565b91505092915050565b600082601f8301126121bd576121bc61313f565b5b81356121cd848260208601612088565b91505092915050565b6000813590506121e5816136cc565b92915050565b60006020828403121561220157612200613153565b5b600061220f848285016120ca565b91505092915050565b6000806040838503121561222f5761222e613153565b5b600061223d858286016120ca565b925050602061224e858286016120ca565b9150509250929050565b600080600080600060a0868803121561227457612273613153565b5b6000612282888289016120ca565b9550506020612293888289016120ca565b945050604086013567ffffffffffffffff8111156122b4576122b361314e565b5b6122c08882890161210d565b935050606086013567ffffffffffffffff8111156122e1576122e061314e565b5b6122ed8882890161210d565b925050608086013567ffffffffffffffff81111561230e5761230d61314e565b5b61231a8882890161217a565b9150509295509295909350565b600080600080600060a0868803121561234357612342613153565b5b6000612351888289016120ca565b9550506020612362888289016120ca565b9450506040612373888289016121d6565b9350506060612384888289016121d6565b925050608086013567ffffffffffffffff8111156123a5576123a461314e565b5b6123b18882890161217a565b9150509295509295909350565b600080604083850312156123d5576123d4613153565b5b60006123e3858286016120ca565b92505060206123f48582860161213b565b9150509250929050565b6000806040838503121561241557612414613153565b5b6000612423858286016120ca565b9250506020612434858286016121d6565b9150509250929050565b60008060006060848603121561245757612456613153565b5b6000612465868287016120ca565b9350506020612476868287016121d6565b9250506040612487868287016121d6565b9150509250925092565b600080604083850312156124a8576124a7613153565b5b600083013567ffffffffffffffff8111156124c6576124c561314e565b5b6124d2858286016120df565b925050602083013567ffffffffffffffff8111156124f3576124f261314e565b5b6124ff8582860161210d565b9150509250929050565b600080604083850312156125205761251f613153565b5b600083013567ffffffffffffffff81111561253e5761253d61314e565b5b61254a858286016120df565b925050602061255b858286016121d6565b9150509250929050565b60006020828403121561257b5761257a613153565b5b600061258984828501612150565b91505092915050565b6000602082840312156125a8576125a7613153565b5b60006125b684828501612165565b91505092915050565b6000602082840312156125d5576125d4613153565b5b600082013567ffffffffffffffff8111156125f3576125f261314e565b5b6125ff848285016121a8565b91505092915050565b60006020828403121561261e5761261d613153565b5b600061262c848285016121d6565b91505092915050565b6000806040838503121561264c5761264b613153565b5b600061265a858286016121d6565b925050602083013567ffffffffffffffff81111561267b5761267a61314e565b5b612687858286016121a8565b9150509250929050565b600061269d83836129a4565b60208301905092915050565b6126b281612eff565b82525050565b60006126c382612e48565b6126cd8185612e76565b93506126d883612e38565b8060005b838110156127095781516126f08882612691565b97506126fb83612e69565b9250506001810190506126dc565b5085935050505092915050565b61271f81612f11565b82525050565b600061273082612e53565b61273a8185612e87565b935061274a818560208601612f82565b61275381613158565b840191505092915050565b600061276982612e5e565b6127738185612e98565b9350612783818560208601612f82565b61278c81613158565b840191505092915050565b60006127a4602883612e98565b91506127af82613176565b604082019050919050565b60006127c7602683612e98565b91506127d2826131c5565b604082019050919050565b60006127ea602483612e98565b91506127f582613214565b604082019050919050565b600061280d602a83612e98565b915061281882613263565b604082019050919050565b6000612830602e83612e98565b915061283b826132b2565b604082019050919050565b6000612853602583612e98565b915061285e82613301565b604082019050919050565b6000612876602383612e98565b915061288182613350565b604082019050919050565b6000612899602a83612e98565b91506128a48261339f565b604082019050919050565b60006128bc602e83612e98565b91506128c7826133ee565b604082019050919050565b60006128df602083612e98565b91506128ea8261343d565b602082019050919050565b6000612902602983612e98565b915061290d82613466565b604082019050919050565b6000612925602983612e98565b9150612930826134b5565b604082019050919050565b6000612948602883612e98565b915061295382613504565b604082019050919050565b600061296b602183612e98565b915061297682613553565b604082019050919050565b600061298e603483612e98565b9150612999826135a2565b604082019050919050565b6129ad81612f69565b82525050565b6129bc81612f69565b82525050565b60006020820190506129d760008301846126a9565b92915050565b600060a0820190506129f260008301886126a9565b6129ff60208301876126a9565b8181036040830152612a1181866126b8565b90508181036060830152612a2581856126b8565b90508181036080830152612a398184612725565b90509695505050505050565b600060a082019050612a5a60008301886126a9565b612a6760208301876126a9565b612a7460408301866129b3565b612a8160608301856129b3565b8181036080830152612a938184612725565b90509695505050505050565b60006020820190508181036000830152612ab981846126b8565b905092915050565b60006040820190508181036000830152612adb81856126b8565b90508181036020830152612aef81846126b8565b90509392505050565b6000602082019050612b0d6000830184612716565b92915050565b60006020820190508181036000830152612b2d818461275e565b905092915050565b60006020820190508181036000830152612b4e81612797565b9050919050565b60006020820190508181036000830152612b6e816127ba565b9050919050565b60006020820190508181036000830152612b8e816127dd565b9050919050565b60006020820190508181036000830152612bae81612800565b9050919050565b60006020820190508181036000830152612bce81612823565b9050919050565b60006020820190508181036000830152612bee81612846565b9050919050565b60006020820190508181036000830152612c0e81612869565b9050919050565b60006020820190508181036000830152612c2e8161288c565b9050919050565b60006020820190508181036000830152612c4e816128af565b9050919050565b60006020820190508181036000830152612c6e816128d2565b9050919050565b60006020820190508181036000830152612c8e816128f5565b9050919050565b60006020820190508181036000830152612cae81612918565b9050919050565b60006020820190508181036000830152612cce8161293b565b9050919050565b60006020820190508181036000830152612cee8161295e565b9050919050565b60006020820190508181036000830152612d0e81612981565b9050919050565b6000602082019050612d2a60008301846129b3565b92915050565b6000604082019050612d4560008301856129b3565b612d5260208301846129b3565b9392505050565b6000612d63612d74565b9050612d6f8282612fe7565b919050565b6000604051905090565b600067ffffffffffffffff821115612d9957612d986130ee565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612dc557612dc46130ee565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612df157612df06130ee565b5b612dfa82613158565b9050602081019050919050565b600067ffffffffffffffff821115612e2257612e216130ee565b5b612e2b82613158565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b6000612eb482612f69565b9150612ebf83612f69565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ef457612ef3613061565b5b828201905092915050565b6000612f0a82612f49565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612fa0578082015181840152602081019050612f85565b83811115612faf576000848401525b50505050565b60006002820490506001821680612fcd57607f821691505b60208210811415612fe157612fe0613090565b5b50919050565b612ff082613158565b810181811067ffffffffffffffff8211171561300f5761300e6130ee565b5b80604052505050565b600061302382612f69565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561305657613055613061565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d111561313c5760046000803e613139600051613169565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206f7220617070726f766564000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f436c6f776e20537175616420456c656d656e74733a20796f7520617265206e6f60008201527f7420612076616c696461746f722e000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f206e6f6e2d4552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b600060443d101561360157613684565b613609612d74565b60043d036004823e80513d602482011167ffffffffffffffff82111715613631575050613684565b808201805167ffffffffffffffff81111561364f5750505050613684565b80602083010160043d03850181111561366c575050505050613684565b61367b82602001850186612fe7565b82955050505050505b90565b61369081612eff565b811461369b57600080fd5b50565b6136a781612f11565b81146136b257600080fd5b50565b6136be81612f1d565b81146136c957600080fd5b50565b6136d581612f69565b81146136e057600080fd5b5056fea26469706673582212200e732acc87f6204810b561f0bc84995d07924d5db29f62751499574c1cf3f76064736f6c63430008070033

Deployed Bytecode Sourcemap

38629:1279:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20562:230;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19585:310;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38809:92;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39127:105;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39700:203;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22505:438;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39240:105;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20958:524;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37812:103;;;:::i;:::-;;37164:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21555:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38686:21;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21782:168;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38909:210;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22022:406;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38070:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39453:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38716:42;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39353:92;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20562:230;20648:7;20695:1;20676:21;;:7;:21;;;;20668:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;20762:9;:13;20772:2;20762:13;;;;;;;;;;;:22;20776:7;20762:22;;;;;;;;;;;;;;;;20755:29;;20562:230;;;;:::o;19585:310::-;19687:4;19739:26;19724:41;;;:11;:41;;;;:110;;;;19797:37;19782:52;;;:11;:52;;;;19724:110;:163;;;;19851:36;19875:11;19851:23;:36::i;:::-;19724:163;19704:183;;19585:310;;;:::o;38809:92::-;37050:13;:11;:13::i;:::-;38878:15:::1;38886:6;38878:7;:15::i;:::-;38809:92:::0;:::o;39127:105::-;39182:13;39215:5;39221:2;39215:9;;;;;;;;:::i;:::-;;;;;;;;;39208:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39127:105;;;:::o;39700:203::-;37050:13;:11;:13::i;:::-;39771:10:::1;:16;39782:4;39771:16;;;;;;;;;;;;;;;;;;;;;;;;;39767:129;;;39823:5;39804:10;:16;39815:4;39804:16;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;39767:129;;;39880:4;39861:10;:16;39872:4;39861:16;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;39767:129;39700:203:::0;:::o;22505:438::-;22746:12;:10;:12::i;:::-;22738:20;;:4;:20;;;:60;;;;22762:36;22779:4;22785:12;:10;:12::i;:::-;22762:16;:36::i;:::-;22738:60;22716:156;;;;;;;;;;;;:::i;:::-;;;;;;;;;22883:52;22906:4;22912:2;22916:3;22921:7;22930:4;22883:22;:52::i;:::-;22505:438;;;;;:::o;39240:105::-;37050:13;:11;:13::i;:::-;39331:6:::1;39319:5;39325:2;39319:9;;;;;;;;:::i;:::-;;;;;;;;;:18;;;;;;;;;;;;:::i;:::-;;39240:105:::0;;:::o;20958:524::-;21114:16;21175:3;:10;21156:8;:15;:29;21148:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;21244:30;21291:8;:15;21277:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21244:63;;21325:9;21320:122;21344:8;:15;21340:1;:19;21320:122;;;21400:30;21410:8;21419:1;21410:11;;;;;;;;:::i;:::-;;;;;;;;21423:3;21427:1;21423:6;;;;;;;;:::i;:::-;;;;;;;;21400:9;:30::i;:::-;21381:13;21395:1;21381:16;;;;;;;;:::i;:::-;;;;;;;:49;;;;;21361:3;;;;:::i;:::-;;;21320:122;;;;21461:13;21454:20;;;20958:524;;;;:::o;37812:103::-;37050:13;:11;:13::i;:::-;37877:30:::1;37904:1;37877:18;:30::i;:::-;37812:103::o:0;37164:87::-;37210:7;37237:6;;;;;;;;;;;37230:13;;37164:87;:::o;21555:155::-;21650:52;21669:12;:10;:12::i;:::-;21683:8;21693;21650:18;:52::i;:::-;21555:155;;:::o;38686:21::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21782:168::-;21881:4;21905:18;:27;21924:7;21905:27;;;;;;;;;;;;;;;:37;21933:8;21905:37;;;;;;;;;;;;;;;;;;;;;;;;;21898:44;;21782:168;;;;:::o;38909:210::-;37050:13;:11;:13::i;:::-;39001:12:::1;38996:114;39026:4;:11;39019:4;:18;38996:114;;;39062:36;39068:4;39073;39068:10;;;;;;;;:::i;:::-;;;;;;;;39080;39092:1;39062:36;;;;;;;;;;;::::0;:5:::1;:36::i;:::-;39039:6;;;;;:::i;:::-;;;;38996:114;;;;38909:210:::0;;:::o;22022:406::-;22238:12;:10;:12::i;:::-;22230:20;;:4;:20;;;:60;;;;22254:36;22271:4;22277:12;:10;:12::i;:::-;22254:16;:36::i;:::-;22230:60;22208:156;;;;;;;;;;;;:::i;:::-;;;;;;;;;22375:45;22393:4;22399:2;22403;22407:6;22415:4;22375:17;:45::i;:::-;22022:406;;;;;:::o;38070:201::-;37050:13;:11;:13::i;:::-;38179:1:::1;38159:22;;:8;:22;;;;38151:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;38235:28;38254:8;38235:18;:28::i;:::-;38070:201:::0;:::o;39453:239::-;39595:4;39569:30;;:10;:22;39580:10;39569:22;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;39561:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;39661:23;39667:4;39673:2;39677:6;39661:5;:23::i;:::-;39453:239;;;:::o;38716:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;39353:92::-;37050:13;:11;:13::i;:::-;39419:5:::1;39430:6;39419:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;39353:92:::0;:::o;18511:157::-;18596:4;18635:25;18620:40;;;:11;:40;;;;18613:47;;18511:157;;;:::o;37329:132::-;37404:12;:10;:12::i;:::-;37393:23;;:7;:5;:7::i;:::-;:23;;;37385:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37329:132::o;26729:88::-;26803:6;26796:4;:13;;;;;;;;;;;;:::i;:::-;;26729:88;:::o;17599:98::-;17652:7;17679:10;17672:17;;17599:98;:::o;24739:1146::-;24966:7;:14;24952:3;:10;:28;24944:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;25058:1;25044:16;;:2;:16;;;;25036:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;25115:16;25134:12;:10;:12::i;:::-;25115:31;;25159:60;25180:8;25190:4;25196:2;25200:3;25205:7;25214:4;25159:20;:60::i;:::-;25237:9;25232:421;25256:3;:10;25252:1;:14;25232:421;;;25288:10;25301:3;25305:1;25301:6;;;;;;;;:::i;:::-;;;;;;;;25288:19;;25322:14;25339:7;25347:1;25339:10;;;;;;;;:::i;:::-;;;;;;;;25322:27;;25366:19;25388:9;:13;25398:2;25388:13;;;;;;;;;;;:19;25402:4;25388:19;;;;;;;;;;;;;;;;25366:41;;25445:6;25430:11;:21;;25422:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;25578:6;25564:11;:20;25542:9;:13;25552:2;25542:13;;;;;;;;;;;:19;25556:4;25542:19;;;;;;;;;;;;;;;:42;;;;25635:6;25614:9;:13;25624:2;25614:13;;;;;;;;;;;:17;25628:2;25614:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;25273:380;;;25268:3;;;;:::i;:::-;;;25232:421;;;;25700:2;25670:47;;25694:4;25670:47;;25684:8;25670:47;;;25704:3;25709:7;25670:47;;;;;;;:::i;:::-;;;;;;;;25730:59;25750:8;25760:4;25766:2;25770:3;25775:7;25784:4;25730:19;:59::i;:::-;25802:75;25838:8;25848:4;25854:2;25858:3;25863:7;25872:4;25802:35;:75::i;:::-;24933:952;24739:1146;;;;;:::o;38431:191::-;38505:16;38524:6;;;;;;;;;;;38505:25;;38550:8;38541:6;;:17;;;;;;;;;;;;;;;;;;38605:8;38574:40;;38595:8;38574:40;;;;;;;;;;;;38494:128;38431:191;:::o;31616:331::-;31771:8;31762:17;;:5;:17;;;;31754:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;31874:8;31836:18;:25;31855:5;31836:25;;;;;;;;;;;;;;;:35;31862:8;31836:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;31920:8;31898:41;;31913:5;31898:41;;;31930:8;31898:41;;;;;;:::i;:::-;;;;;;;;31616:331;;;:::o;27203:729::-;27370:1;27356:16;;:2;:16;;;;27348:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;27423:16;27442:12;:10;:12::i;:::-;27423:31;;27465:20;27488:21;27506:2;27488:17;:21::i;:::-;27465:44;;27520:24;27547:25;27565:6;27547:17;:25::i;:::-;27520:52;;27585:66;27606:8;27624:1;27628:2;27632:3;27637:7;27646:4;27585:20;:66::i;:::-;27685:6;27664:9;:13;27674:2;27664:13;;;;;;;;;;;:17;27678:2;27664:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;27744:2;27707:52;;27740:1;27707:52;;27722:8;27707:52;;;27748:2;27752:6;27707:52;;;;;;;:::i;:::-;;;;;;;;27772:65;27792:8;27810:1;27814:2;27818:3;27823:7;27832:4;27772:19;:65::i;:::-;27850:74;27881:8;27899:1;27903:2;27907;27911:6;27919:4;27850:30;:74::i;:::-;27337:595;;;27203:729;;;;:::o;23407:974::-;23609:1;23595:16;;:2;:16;;;;23587:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;23666:16;23685:12;:10;:12::i;:::-;23666:31;;23708:20;23731:21;23749:2;23731:17;:21::i;:::-;23708:44;;23763:24;23790:25;23808:6;23790:17;:25::i;:::-;23763:52;;23828:60;23849:8;23859:4;23865:2;23869:3;23874:7;23883:4;23828:20;:60::i;:::-;23901:19;23923:9;:13;23933:2;23923:13;;;;;;;;;;;:19;23937:4;23923:19;;;;;;;;;;;;;;;;23901:41;;23976:6;23961:11;:21;;23953:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;24101:6;24087:11;:20;24065:9;:13;24075:2;24065:13;;;;;;;;;;;:19;24079:4;24065:19;;;;;;;;;;;;;;;:42;;;;24150:6;24129:9;:13;24139:2;24129:13;;;;;;;;;;;:17;24143:2;24129:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;24205:2;24174:46;;24199:4;24174:46;;24189:8;24174:46;;;24209:2;24213:6;24174:46;;;;;;;:::i;:::-;;;;;;;;24233:59;24253:8;24263:4;24269:2;24273:3;24278:7;24287:4;24233:19;:59::i;:::-;24305:68;24336:8;24346:4;24352:2;24356;24360:6;24368:4;24305:30;:68::i;:::-;23576:805;;;;23407:974;;;;;:::o;29446:808::-;29589:1;29573:18;;:4;:18;;;;29565:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;29644:16;29663:12;:10;:12::i;:::-;29644:31;;29686:20;29709:21;29727:2;29709:17;:21::i;:::-;29686:44;;29741:24;29768:25;29786:6;29768:17;:25::i;:::-;29741:52;;29806:66;29827:8;29837:4;29851:1;29855:3;29860:7;29806:66;;;;;;;;;;;;:20;:66::i;:::-;29885:19;29907:9;:13;29917:2;29907:13;;;;;;;;;;;:19;29921:4;29907:19;;;;;;;;;;;;;;;;29885:41;;29960:6;29945:11;:21;;29937:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;30079:6;30065:11;:20;30043:9;:13;30053:2;30043:13;;;;;;;;;;;:19;30057:4;30043:19;;;;;;;;;;;;;;;:42;;;;30153:1;30114:54;;30139:4;30114:54;;30129:8;30114:54;;;30157:2;30161:6;30114:54;;;;;;;:::i;:::-;;;;;;;;30181:65;30201:8;30211:4;30225:1;30229:3;30234:7;30181:65;;;;;;;;;;;;:19;:65::i;:::-;29554:700;;;;29446:808;;;:::o;32905:221::-;;;;;;;:::o;34081:220::-;;;;;;;:::o;35061:813::-;35301:15;:2;:13;;;:15::i;:::-;35297:570;;;35354:2;35337:43;;;35381:8;35391:4;35397:3;35402:7;35411:4;35337:79;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35333:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;35729:6;35722:14;;;;;;;;;;;:::i;:::-;;;;;;;;35333:523;;;35778:62;;;;;;;;;;:::i;:::-;;;;;;;;35333:523;35510:48;;;35498:60;;;:8;:60;;;;35494:159;;35583:50;;;;;;;;;;:::i;:::-;;;;;;;;35494:159;35417:251;35297:570;35061:813;;;;;;:::o;35882:198::-;35948:16;35977:22;36016:1;36002:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35977:41;;36040:7;36029:5;36035:1;36029:8;;;;;;;;:::i;:::-;;;;;;;:18;;;;;36067:5;36060:12;;;35882:198;;;:::o;34309:744::-;34524:15;:2;:13;;;:15::i;:::-;34520:526;;;34577:2;34560:38;;;34599:8;34609:4;34615:2;34619:6;34627:4;34560:72;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;34556:479;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;34908:6;34901:14;;;;;;;;;;;:::i;:::-;;;;;;;;34556:479;;;34957:62;;;;;;;;;;:::i;:::-;;;;;;;;34556:479;34694:43;;;34682:55;;;:8;:55;;;;34678:154;;34762:50;;;;;;;;;;:::i;:::-;;;;;;;;34678:154;34633:214;34520:526;34309:744;;;;;;:::o;8864:326::-;8924:4;9181:1;9159:7;:19;;;:23;9152:30;;8864:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722: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:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;769:::-;865:5;890:81;906:64;963:6;906:64;:::i;:::-;890:81;:::i;:::-;881:90;;991:5;1020:6;1013:5;1006:21;1054:4;1047:5;1043:16;1036:23;;1080:6;1130:3;1122:4;1114:6;1110:17;1105:3;1101:27;1098:36;1095:143;;;1149:79;;:::i;:::-;1095:143;1262:1;1247:238;1272:6;1269:1;1266:13;1247:238;;;1340:3;1369:37;1402:3;1390:10;1369:37;:::i;:::-;1364:3;1357:50;1436:4;1431:3;1427:14;1420:21;;1470:4;1465:3;1461:14;1454:21;;1307:178;1294:1;1291;1287:9;1282:14;;1247:238;;;1251:14;871:620;;769:722;;;;;:::o;1497:410::-;1574:5;1599:65;1615:48;1656:6;1615:48;:::i;:::-;1599:65;:::i;:::-;1590:74;;1687:6;1680:5;1673:21;1725:4;1718:5;1714:16;1763:3;1754:6;1749:3;1745:16;1742:25;1739:112;;;1770:79;;:::i;:::-;1739:112;1860:41;1894:6;1889:3;1884;1860:41;:::i;:::-;1580:327;1497:410;;;;;:::o;1913:412::-;1991:5;2016:66;2032:49;2074:6;2032:49;:::i;:::-;2016:66;:::i;:::-;2007:75;;2105:6;2098:5;2091:21;2143:4;2136:5;2132:16;2181:3;2172:6;2167:3;2163:16;2160:25;2157:112;;;2188:79;;:::i;:::-;2157:112;2278:41;2312:6;2307:3;2302;2278:41;:::i;:::-;1997:328;1913:412;;;;;:::o;2331:139::-;2377:5;2415:6;2402:20;2393:29;;2431:33;2458:5;2431:33;:::i;:::-;2331:139;;;;:::o;2493:370::-;2564:5;2613:3;2606:4;2598:6;2594:17;2590:27;2580:122;;2621:79;;:::i;:::-;2580:122;2738:6;2725:20;2763:94;2853:3;2845:6;2838:4;2830:6;2826:17;2763:94;:::i;:::-;2754:103;;2570:293;2493:370;;;;:::o;2886:::-;2957:5;3006:3;2999:4;2991:6;2987:17;2983:27;2973:122;;3014:79;;:::i;:::-;2973:122;3131:6;3118:20;3156:94;3246:3;3238:6;3231:4;3223:6;3219:17;3156:94;:::i;:::-;3147:103;;2963:293;2886:370;;;;:::o;3262:133::-;3305:5;3343:6;3330:20;3321:29;;3359:30;3383:5;3359:30;:::i;:::-;3262:133;;;;:::o;3401:137::-;3446:5;3484:6;3471:20;3462:29;;3500:32;3526:5;3500:32;:::i;:::-;3401:137;;;;:::o;3544:141::-;3600:5;3631:6;3625:13;3616:22;;3647:32;3673:5;3647:32;:::i;:::-;3544:141;;;;:::o;3704:338::-;3759:5;3808:3;3801:4;3793:6;3789:17;3785:27;3775:122;;3816:79;;:::i;:::-;3775:122;3933:6;3920:20;3958:78;4032:3;4024:6;4017:4;4009:6;4005:17;3958:78;:::i;:::-;3949:87;;3765:277;3704:338;;;;:::o;4062:340::-;4118:5;4167:3;4160:4;4152:6;4148:17;4144:27;4134:122;;4175:79;;:::i;:::-;4134:122;4292:6;4279:20;4317:79;4392:3;4384:6;4377:4;4369:6;4365:17;4317:79;:::i;:::-;4308:88;;4124:278;4062:340;;;;:::o;4408:139::-;4454:5;4492:6;4479:20;4470:29;;4508:33;4535:5;4508:33;:::i;:::-;4408:139;;;;:::o;4553:329::-;4612:6;4661:2;4649:9;4640:7;4636:23;4632:32;4629:119;;;4667:79;;:::i;:::-;4629:119;4787:1;4812:53;4857:7;4848:6;4837:9;4833:22;4812:53;:::i;:::-;4802:63;;4758:117;4553:329;;;;:::o;4888:474::-;4956:6;4964;5013:2;5001:9;4992:7;4988:23;4984:32;4981:119;;;5019:79;;:::i;:::-;4981:119;5139:1;5164:53;5209:7;5200:6;5189:9;5185:22;5164:53;:::i;:::-;5154:63;;5110:117;5266:2;5292:53;5337:7;5328:6;5317:9;5313:22;5292:53;:::i;:::-;5282:63;;5237:118;4888:474;;;;;:::o;5368:1509::-;5522:6;5530;5538;5546;5554;5603:3;5591:9;5582:7;5578:23;5574:33;5571:120;;;5610:79;;:::i;:::-;5571:120;5730:1;5755:53;5800:7;5791:6;5780:9;5776:22;5755:53;:::i;:::-;5745:63;;5701:117;5857:2;5883:53;5928:7;5919:6;5908:9;5904:22;5883:53;:::i;:::-;5873:63;;5828:118;6013:2;6002:9;5998:18;5985:32;6044:18;6036:6;6033:30;6030:117;;;6066:79;;:::i;:::-;6030:117;6171:78;6241:7;6232:6;6221:9;6217:22;6171:78;:::i;:::-;6161:88;;5956:303;6326:2;6315:9;6311:18;6298:32;6357:18;6349:6;6346:30;6343:117;;;6379:79;;:::i;:::-;6343:117;6484:78;6554:7;6545:6;6534:9;6530:22;6484:78;:::i;:::-;6474:88;;6269:303;6639:3;6628:9;6624:19;6611:33;6671:18;6663:6;6660:30;6657:117;;;6693:79;;:::i;:::-;6657:117;6798:62;6852:7;6843:6;6832:9;6828:22;6798:62;:::i;:::-;6788:72;;6582:288;5368:1509;;;;;;;;:::o;6883:1089::-;6987:6;6995;7003;7011;7019;7068:3;7056:9;7047:7;7043:23;7039:33;7036:120;;;7075:79;;:::i;:::-;7036:120;7195:1;7220:53;7265:7;7256:6;7245:9;7241:22;7220:53;:::i;:::-;7210:63;;7166:117;7322:2;7348:53;7393:7;7384:6;7373:9;7369:22;7348:53;:::i;:::-;7338:63;;7293:118;7450:2;7476:53;7521:7;7512:6;7501:9;7497:22;7476:53;:::i;:::-;7466:63;;7421:118;7578:2;7604:53;7649:7;7640:6;7629:9;7625:22;7604:53;:::i;:::-;7594:63;;7549:118;7734:3;7723:9;7719:19;7706:33;7766:18;7758:6;7755:30;7752:117;;;7788:79;;:::i;:::-;7752:117;7893:62;7947:7;7938:6;7927:9;7923:22;7893:62;:::i;:::-;7883:72;;7677:288;6883:1089;;;;;;;;:::o;7978:468::-;8043:6;8051;8100:2;8088:9;8079:7;8075:23;8071:32;8068:119;;;8106:79;;:::i;:::-;8068:119;8226:1;8251:53;8296:7;8287:6;8276:9;8272:22;8251:53;:::i;:::-;8241:63;;8197:117;8353:2;8379:50;8421:7;8412:6;8401:9;8397:22;8379:50;:::i;:::-;8369:60;;8324:115;7978:468;;;;;:::o;8452:474::-;8520:6;8528;8577:2;8565:9;8556:7;8552:23;8548:32;8545:119;;;8583:79;;:::i;:::-;8545:119;8703:1;8728:53;8773:7;8764:6;8753:9;8749:22;8728:53;:::i;:::-;8718:63;;8674:117;8830:2;8856:53;8901:7;8892:6;8881:9;8877:22;8856:53;:::i;:::-;8846:63;;8801:118;8452:474;;;;;:::o;8932:619::-;9009:6;9017;9025;9074:2;9062:9;9053:7;9049:23;9045:32;9042:119;;;9080:79;;:::i;:::-;9042:119;9200:1;9225:53;9270:7;9261:6;9250:9;9246:22;9225:53;:::i;:::-;9215:63;;9171:117;9327:2;9353:53;9398:7;9389:6;9378:9;9374:22;9353:53;:::i;:::-;9343:63;;9298:118;9455:2;9481:53;9526:7;9517:6;9506:9;9502:22;9481:53;:::i;:::-;9471:63;;9426:118;8932:619;;;;;:::o;9557:894::-;9675:6;9683;9732:2;9720:9;9711:7;9707:23;9703:32;9700:119;;;9738:79;;:::i;:::-;9700:119;9886:1;9875:9;9871:17;9858:31;9916:18;9908:6;9905:30;9902:117;;;9938:79;;:::i;:::-;9902:117;10043:78;10113:7;10104:6;10093:9;10089:22;10043:78;:::i;:::-;10033:88;;9829:302;10198:2;10187:9;10183:18;10170:32;10229:18;10221:6;10218:30;10215:117;;;10251:79;;:::i;:::-;10215:117;10356:78;10426:7;10417:6;10406:9;10402:22;10356:78;:::i;:::-;10346:88;;10141:303;9557:894;;;;;:::o;10457:684::-;10550:6;10558;10607:2;10595:9;10586:7;10582:23;10578:32;10575:119;;;10613:79;;:::i;:::-;10575:119;10761:1;10750:9;10746:17;10733:31;10791:18;10783:6;10780:30;10777:117;;;10813:79;;:::i;:::-;10777:117;10918:78;10988:7;10979:6;10968:9;10964:22;10918:78;:::i;:::-;10908:88;;10704:302;11045:2;11071:53;11116:7;11107:6;11096:9;11092:22;11071:53;:::i;:::-;11061:63;;11016:118;10457:684;;;;;:::o;11147:327::-;11205:6;11254:2;11242:9;11233:7;11229:23;11225:32;11222:119;;;11260:79;;:::i;:::-;11222:119;11380:1;11405:52;11449:7;11440:6;11429:9;11425:22;11405:52;:::i;:::-;11395:62;;11351:116;11147:327;;;;:::o;11480:349::-;11549:6;11598:2;11586:9;11577:7;11573:23;11569:32;11566:119;;;11604:79;;:::i;:::-;11566:119;11724:1;11749:63;11804:7;11795:6;11784:9;11780:22;11749:63;:::i;:::-;11739:73;;11695:127;11480:349;;;;:::o;11835:509::-;11904:6;11953:2;11941:9;11932:7;11928:23;11924:32;11921:119;;;11959:79;;:::i;:::-;11921:119;12107:1;12096:9;12092:17;12079:31;12137:18;12129:6;12126:30;12123:117;;;12159:79;;:::i;:::-;12123:117;12264:63;12319:7;12310:6;12299:9;12295:22;12264:63;:::i;:::-;12254:73;;12050:287;11835:509;;;;:::o;12350:329::-;12409:6;12458:2;12446:9;12437:7;12433:23;12429:32;12426:119;;;12464:79;;:::i;:::-;12426:119;12584:1;12609:53;12654:7;12645:6;12634:9;12630:22;12609:53;:::i;:::-;12599:63;;12555:117;12350:329;;;;:::o;12685:654::-;12763:6;12771;12820:2;12808:9;12799:7;12795:23;12791:32;12788:119;;;12826:79;;:::i;:::-;12788:119;12946:1;12971:53;13016:7;13007:6;12996:9;12992:22;12971:53;:::i;:::-;12961:63;;12917:117;13101:2;13090:9;13086:18;13073:32;13132:18;13124:6;13121:30;13118:117;;;13154:79;;:::i;:::-;13118:117;13259:63;13314:7;13305:6;13294:9;13290:22;13259:63;:::i;:::-;13249:73;;13044:288;12685:654;;;;;:::o;13345:179::-;13414:10;13435:46;13477:3;13469:6;13435:46;:::i;:::-;13513:4;13508:3;13504:14;13490:28;;13345:179;;;;:::o;13530:118::-;13617:24;13635:5;13617:24;:::i;:::-;13612:3;13605:37;13530:118;;:::o;13684:732::-;13803:3;13832:54;13880:5;13832:54;:::i;:::-;13902:86;13981:6;13976:3;13902:86;:::i;:::-;13895:93;;14012:56;14062:5;14012:56;:::i;:::-;14091:7;14122:1;14107:284;14132:6;14129:1;14126:13;14107:284;;;14208:6;14202:13;14235:63;14294:3;14279:13;14235:63;:::i;:::-;14228:70;;14321:60;14374:6;14321:60;:::i;:::-;14311:70;;14167:224;14154:1;14151;14147:9;14142:14;;14107:284;;;14111:14;14407:3;14400:10;;13808:608;;;13684:732;;;;:::o;14422:109::-;14503:21;14518:5;14503:21;:::i;:::-;14498:3;14491:34;14422:109;;:::o;14537:360::-;14623:3;14651:38;14683:5;14651:38;:::i;:::-;14705:70;14768:6;14763:3;14705:70;:::i;:::-;14698:77;;14784:52;14829:6;14824:3;14817:4;14810:5;14806:16;14784:52;:::i;:::-;14861:29;14883:6;14861:29;:::i;:::-;14856:3;14852:39;14845:46;;14627:270;14537:360;;;;:::o;14903:364::-;14991:3;15019:39;15052:5;15019:39;:::i;:::-;15074:71;15138:6;15133:3;15074:71;:::i;:::-;15067:78;;15154:52;15199:6;15194:3;15187:4;15180:5;15176:16;15154:52;:::i;:::-;15231:29;15253:6;15231:29;:::i;:::-;15226:3;15222:39;15215:46;;14995:272;14903:364;;;;:::o;15273:366::-;15415:3;15436:67;15500:2;15495:3;15436:67;:::i;:::-;15429:74;;15512:93;15601:3;15512:93;:::i;:::-;15630:2;15625:3;15621:12;15614:19;;15273:366;;;:::o;15645:::-;15787:3;15808:67;15872:2;15867:3;15808:67;:::i;:::-;15801:74;;15884:93;15973:3;15884:93;:::i;:::-;16002:2;15997:3;15993:12;15986:19;;15645:366;;;:::o;16017:::-;16159:3;16180:67;16244:2;16239:3;16180:67;:::i;:::-;16173:74;;16256:93;16345:3;16256:93;:::i;:::-;16374:2;16369:3;16365:12;16358:19;;16017:366;;;:::o;16389:::-;16531:3;16552:67;16616:2;16611:3;16552:67;:::i;:::-;16545:74;;16628:93;16717:3;16628:93;:::i;:::-;16746:2;16741:3;16737:12;16730:19;;16389:366;;;:::o;16761:::-;16903:3;16924:67;16988:2;16983:3;16924:67;:::i;:::-;16917:74;;17000:93;17089:3;17000:93;:::i;:::-;17118:2;17113:3;17109:12;17102:19;;16761:366;;;:::o;17133:::-;17275:3;17296:67;17360:2;17355:3;17296:67;:::i;:::-;17289:74;;17372:93;17461:3;17372:93;:::i;:::-;17490:2;17485:3;17481:12;17474:19;;17133:366;;;:::o;17505:::-;17647:3;17668:67;17732:2;17727:3;17668:67;:::i;:::-;17661:74;;17744:93;17833:3;17744:93;:::i;:::-;17862:2;17857:3;17853:12;17846:19;;17505:366;;;:::o;17877:::-;18019:3;18040:67;18104:2;18099:3;18040:67;:::i;:::-;18033:74;;18116:93;18205:3;18116:93;:::i;:::-;18234:2;18229:3;18225:12;18218:19;;17877:366;;;:::o;18249:::-;18391:3;18412:67;18476:2;18471:3;18412:67;:::i;:::-;18405:74;;18488:93;18577:3;18488:93;:::i;:::-;18606:2;18601:3;18597:12;18590:19;;18249:366;;;:::o;18621:::-;18763:3;18784:67;18848:2;18843:3;18784:67;:::i;:::-;18777:74;;18860:93;18949:3;18860:93;:::i;:::-;18978:2;18973:3;18969:12;18962:19;;18621:366;;;:::o;18993:::-;19135:3;19156:67;19220:2;19215:3;19156:67;:::i;:::-;19149:74;;19232:93;19321:3;19232:93;:::i;:::-;19350:2;19345:3;19341:12;19334:19;;18993:366;;;:::o;19365:::-;19507:3;19528:67;19592:2;19587:3;19528:67;:::i;:::-;19521:74;;19604:93;19693:3;19604:93;:::i;:::-;19722:2;19717:3;19713:12;19706:19;;19365:366;;;:::o;19737:::-;19879:3;19900:67;19964:2;19959:3;19900:67;:::i;:::-;19893:74;;19976:93;20065:3;19976:93;:::i;:::-;20094:2;20089:3;20085:12;20078:19;;19737:366;;;:::o;20109:::-;20251:3;20272:67;20336:2;20331:3;20272:67;:::i;:::-;20265:74;;20348:93;20437:3;20348:93;:::i;:::-;20466:2;20461:3;20457:12;20450:19;;20109:366;;;:::o;20481:::-;20623:3;20644:67;20708:2;20703:3;20644:67;:::i;:::-;20637:74;;20720:93;20809:3;20720:93;:::i;:::-;20838:2;20833:3;20829:12;20822:19;;20481:366;;;:::o;20853:108::-;20930:24;20948:5;20930:24;:::i;:::-;20925:3;20918:37;20853:108;;:::o;20967:118::-;21054:24;21072:5;21054:24;:::i;:::-;21049:3;21042:37;20967:118;;:::o;21091:222::-;21184:4;21222:2;21211:9;21207:18;21199:26;;21235:71;21303:1;21292:9;21288:17;21279:6;21235:71;:::i;:::-;21091:222;;;;:::o;21319:1053::-;21642:4;21680:3;21669:9;21665:19;21657:27;;21694:71;21762:1;21751:9;21747:17;21738:6;21694:71;:::i;:::-;21775:72;21843:2;21832:9;21828:18;21819:6;21775:72;:::i;:::-;21894:9;21888:4;21884:20;21879:2;21868:9;21864:18;21857:48;21922:108;22025:4;22016:6;21922:108;:::i;:::-;21914:116;;22077:9;22071:4;22067:20;22062:2;22051:9;22047:18;22040:48;22105:108;22208:4;22199:6;22105:108;:::i;:::-;22097:116;;22261:9;22255:4;22251:20;22245:3;22234:9;22230:19;22223:49;22289:76;22360:4;22351:6;22289:76;:::i;:::-;22281:84;;21319:1053;;;;;;;;:::o;22378:751::-;22601:4;22639:3;22628:9;22624:19;22616:27;;22653:71;22721:1;22710:9;22706:17;22697:6;22653:71;:::i;:::-;22734:72;22802:2;22791:9;22787:18;22778:6;22734:72;:::i;:::-;22816;22884:2;22873:9;22869:18;22860:6;22816:72;:::i;:::-;22898;22966:2;22955:9;22951:18;22942:6;22898:72;:::i;:::-;23018:9;23012:4;23008:20;23002:3;22991:9;22987:19;22980:49;23046:76;23117:4;23108:6;23046:76;:::i;:::-;23038:84;;22378:751;;;;;;;;:::o;23135:373::-;23278:4;23316:2;23305:9;23301:18;23293:26;;23365:9;23359:4;23355:20;23351:1;23340:9;23336:17;23329:47;23393:108;23496:4;23487:6;23393:108;:::i;:::-;23385:116;;23135:373;;;;:::o;23514:634::-;23735:4;23773:2;23762:9;23758:18;23750:26;;23822:9;23816:4;23812:20;23808:1;23797:9;23793:17;23786:47;23850:108;23953:4;23944:6;23850:108;:::i;:::-;23842:116;;24005:9;23999:4;23995:20;23990:2;23979:9;23975:18;23968:48;24033:108;24136:4;24127:6;24033:108;:::i;:::-;24025:116;;23514:634;;;;;:::o;24154:210::-;24241:4;24279:2;24268:9;24264:18;24256:26;;24292:65;24354:1;24343:9;24339:17;24330:6;24292:65;:::i;:::-;24154:210;;;;:::o;24370:313::-;24483:4;24521:2;24510:9;24506:18;24498:26;;24570:9;24564:4;24560:20;24556:1;24545:9;24541:17;24534:47;24598:78;24671:4;24662:6;24598:78;:::i;:::-;24590:86;;24370:313;;;;:::o;24689:419::-;24855:4;24893:2;24882:9;24878:18;24870:26;;24942:9;24936:4;24932:20;24928:1;24917:9;24913:17;24906:47;24970:131;25096:4;24970:131;:::i;:::-;24962:139;;24689:419;;;:::o;25114:::-;25280:4;25318:2;25307:9;25303:18;25295:26;;25367:9;25361:4;25357:20;25353:1;25342:9;25338:17;25331:47;25395:131;25521:4;25395:131;:::i;:::-;25387:139;;25114:419;;;:::o;25539:::-;25705:4;25743:2;25732:9;25728:18;25720:26;;25792:9;25786:4;25782:20;25778:1;25767:9;25763:17;25756:47;25820:131;25946:4;25820:131;:::i;:::-;25812:139;;25539:419;;;:::o;25964:::-;26130:4;26168:2;26157:9;26153:18;26145:26;;26217:9;26211:4;26207:20;26203:1;26192:9;26188:17;26181:47;26245:131;26371:4;26245:131;:::i;:::-;26237:139;;25964:419;;;:::o;26389:::-;26555:4;26593:2;26582:9;26578:18;26570:26;;26642:9;26636:4;26632:20;26628:1;26617:9;26613:17;26606:47;26670:131;26796:4;26670:131;:::i;:::-;26662:139;;26389:419;;;:::o;26814:::-;26980:4;27018:2;27007:9;27003:18;26995:26;;27067:9;27061:4;27057:20;27053:1;27042:9;27038:17;27031:47;27095:131;27221:4;27095:131;:::i;:::-;27087:139;;26814:419;;;:::o;27239:::-;27405:4;27443:2;27432:9;27428:18;27420:26;;27492:9;27486:4;27482:20;27478:1;27467:9;27463:17;27456:47;27520:131;27646:4;27520:131;:::i;:::-;27512:139;;27239:419;;;:::o;27664:::-;27830:4;27868:2;27857:9;27853:18;27845:26;;27917:9;27911:4;27907:20;27903:1;27892:9;27888:17;27881:47;27945:131;28071:4;27945:131;:::i;:::-;27937:139;;27664:419;;;:::o;28089:::-;28255:4;28293:2;28282:9;28278:18;28270:26;;28342:9;28336:4;28332:20;28328:1;28317:9;28313:17;28306:47;28370:131;28496:4;28370:131;:::i;:::-;28362:139;;28089:419;;;:::o;28514:::-;28680:4;28718:2;28707:9;28703:18;28695:26;;28767:9;28761:4;28757:20;28753:1;28742:9;28738:17;28731:47;28795:131;28921:4;28795:131;:::i;:::-;28787:139;;28514:419;;;:::o;28939:::-;29105:4;29143:2;29132:9;29128:18;29120:26;;29192:9;29186:4;29182:20;29178:1;29167:9;29163:17;29156:47;29220:131;29346:4;29220:131;:::i;:::-;29212:139;;28939:419;;;:::o;29364:::-;29530:4;29568:2;29557:9;29553:18;29545:26;;29617:9;29611:4;29607:20;29603:1;29592:9;29588:17;29581:47;29645:131;29771:4;29645:131;:::i;:::-;29637:139;;29364:419;;;:::o;29789:::-;29955:4;29993:2;29982:9;29978:18;29970:26;;30042:9;30036:4;30032:20;30028:1;30017:9;30013:17;30006:47;30070:131;30196:4;30070:131;:::i;:::-;30062:139;;29789:419;;;:::o;30214:::-;30380:4;30418:2;30407:9;30403:18;30395:26;;30467:9;30461:4;30457:20;30453:1;30442:9;30438:17;30431:47;30495:131;30621:4;30495:131;:::i;:::-;30487:139;;30214:419;;;:::o;30639:::-;30805:4;30843:2;30832:9;30828:18;30820:26;;30892:9;30886:4;30882:20;30878:1;30867:9;30863:17;30856:47;30920:131;31046:4;30920:131;:::i;:::-;30912:139;;30639:419;;;:::o;31064:222::-;31157:4;31195:2;31184:9;31180:18;31172:26;;31208:71;31276:1;31265:9;31261:17;31252:6;31208:71;:::i;:::-;31064:222;;;;:::o;31292:332::-;31413:4;31451:2;31440:9;31436:18;31428:26;;31464:71;31532:1;31521:9;31517:17;31508:6;31464:71;:::i;:::-;31545:72;31613:2;31602:9;31598:18;31589:6;31545:72;:::i;:::-;31292:332;;;;;:::o;31630:129::-;31664:6;31691:20;;:::i;:::-;31681:30;;31720:33;31748:4;31740:6;31720:33;:::i;:::-;31630:129;;;:::o;31765:75::-;31798:6;31831:2;31825:9;31815:19;;31765:75;:::o;31846:311::-;31923:4;32013:18;32005:6;32002:30;31999:56;;;32035:18;;:::i;:::-;31999:56;32085:4;32077:6;32073:17;32065:25;;32145:4;32139;32135:15;32127:23;;31846:311;;;:::o;32163:::-;32240:4;32330:18;32322:6;32319:30;32316:56;;;32352:18;;:::i;:::-;32316:56;32402:4;32394:6;32390:17;32382:25;;32462:4;32456;32452:15;32444:23;;32163:311;;;:::o;32480:307::-;32541:4;32631:18;32623:6;32620:30;32617:56;;;32653:18;;:::i;:::-;32617:56;32691:29;32713:6;32691:29;:::i;:::-;32683:37;;32775:4;32769;32765:15;32757:23;;32480:307;;;:::o;32793:308::-;32855:4;32945:18;32937:6;32934:30;32931:56;;;32967:18;;:::i;:::-;32931:56;33005:29;33027:6;33005:29;:::i;:::-;32997:37;;33089:4;33083;33079:15;33071:23;;32793:308;;;:::o;33107:132::-;33174:4;33197:3;33189:11;;33227:4;33222:3;33218:14;33210:22;;33107:132;;;:::o;33245:114::-;33312:6;33346:5;33340:12;33330:22;;33245:114;;;:::o;33365:98::-;33416:6;33450:5;33444:12;33434:22;;33365:98;;;:::o;33469:99::-;33521:6;33555:5;33549:12;33539:22;;33469:99;;;:::o;33574:113::-;33644:4;33676;33671:3;33667:14;33659:22;;33574:113;;;:::o;33693:184::-;33792:11;33826:6;33821:3;33814:19;33866:4;33861:3;33857:14;33842:29;;33693:184;;;;:::o;33883:168::-;33966:11;34000:6;33995:3;33988:19;34040:4;34035:3;34031:14;34016:29;;33883:168;;;;:::o;34057:169::-;34141:11;34175:6;34170:3;34163:19;34215:4;34210:3;34206:14;34191:29;;34057:169;;;;:::o;34232:305::-;34272:3;34291:20;34309:1;34291:20;:::i;:::-;34286:25;;34325:20;34343:1;34325:20;:::i;:::-;34320:25;;34479:1;34411:66;34407:74;34404:1;34401:81;34398:107;;;34485:18;;:::i;:::-;34398:107;34529:1;34526;34522:9;34515:16;;34232:305;;;;:::o;34543:96::-;34580:7;34609:24;34627:5;34609:24;:::i;:::-;34598:35;;34543:96;;;:::o;34645:90::-;34679:7;34722:5;34715:13;34708:21;34697:32;;34645:90;;;:::o;34741:149::-;34777:7;34817:66;34810:5;34806:78;34795:89;;34741:149;;;:::o;34896:126::-;34933:7;34973:42;34966:5;34962:54;34951:65;;34896:126;;;:::o;35028:77::-;35065:7;35094:5;35083:16;;35028:77;;;:::o;35111:154::-;35195:6;35190:3;35185;35172:30;35257:1;35248:6;35243:3;35239:16;35232:27;35111:154;;;:::o;35271:307::-;35339:1;35349:113;35363:6;35360:1;35357:13;35349:113;;;35448:1;35443:3;35439:11;35433:18;35429:1;35424:3;35420:11;35413:39;35385:2;35382:1;35378:10;35373:15;;35349:113;;;35480:6;35477:1;35474:13;35471:101;;;35560:1;35551:6;35546:3;35542:16;35535:27;35471:101;35320:258;35271:307;;;:::o;35584:320::-;35628:6;35665:1;35659:4;35655:12;35645:22;;35712:1;35706:4;35702:12;35733:18;35723:81;;35789:4;35781:6;35777:17;35767:27;;35723:81;35851:2;35843:6;35840:14;35820:18;35817:38;35814:84;;;35870:18;;:::i;:::-;35814:84;35635:269;35584:320;;;:::o;35910:281::-;35993:27;36015:4;35993:27;:::i;:::-;35985:6;35981:40;36123:6;36111:10;36108:22;36087:18;36075:10;36072:34;36069:62;36066:88;;;36134:18;;:::i;:::-;36066:88;36174:10;36170:2;36163:22;35953:238;35910:281;;:::o;36197:233::-;36236:3;36259:24;36277:5;36259:24;:::i;:::-;36250:33;;36305:66;36298:5;36295:77;36292:103;;;36375:18;;:::i;:::-;36292:103;36422:1;36415:5;36411:13;36404:20;;36197:233;;;:::o;36436:180::-;36484:77;36481:1;36474:88;36581:4;36578:1;36571:15;36605:4;36602:1;36595:15;36622:180;36670:77;36667:1;36660:88;36767:4;36764:1;36757:15;36791:4;36788:1;36781:15;36808:180;36856:77;36853:1;36846:88;36953:4;36950:1;36943:15;36977:4;36974:1;36967:15;36994:180;37042:77;37039:1;37032:88;37139:4;37136:1;37129:15;37163:4;37160:1;37153:15;37180:183;37215:3;37253:1;37235:16;37232:23;37229:128;;;37291:1;37288;37285;37270:23;37313:34;37344:1;37338:8;37313:34;:::i;:::-;37306:41;;37229:128;37180:183;:::o;37369:117::-;37478:1;37475;37468:12;37492:117;37601:1;37598;37591:12;37615:117;37724:1;37721;37714:12;37738:117;37847:1;37844;37837:12;37861:117;37970:1;37967;37960:12;37984:102;38025:6;38076:2;38072:7;38067:2;38060:5;38056:14;38052:28;38042:38;;37984:102;;;:::o;38092:106::-;38136:8;38185:5;38180:3;38176:15;38155:36;;38092:106;;;:::o;38204:227::-;38344:34;38340:1;38332:6;38328:14;38321:58;38413:10;38408:2;38400:6;38396:15;38389:35;38204:227;:::o;38437:225::-;38577:34;38573:1;38565:6;38561:14;38554:58;38646:8;38641:2;38633:6;38629:15;38622:33;38437:225;:::o;38668:223::-;38808:34;38804:1;38796:6;38792:14;38785:58;38877:6;38872:2;38864:6;38860:15;38853:31;38668:223;:::o;38897:229::-;39037:34;39033:1;39025:6;39021:14;39014:58;39106:12;39101:2;39093:6;39089:15;39082:37;38897:229;:::o;39132:233::-;39272:34;39268:1;39260:6;39256:14;39249:58;39341:16;39336:2;39328:6;39324:15;39317:41;39132:233;:::o;39371:224::-;39511:34;39507:1;39499:6;39495:14;39488:58;39580:7;39575:2;39567:6;39563:15;39556:32;39371:224;:::o;39601:222::-;39741:34;39737:1;39729:6;39725:14;39718:58;39810:5;39805:2;39797:6;39793:15;39786:30;39601:222;:::o;39829:229::-;39969:34;39965:1;39957:6;39953:14;39946:58;40038:12;40033:2;40025:6;40021:15;40014:37;39829:229;:::o;40064:233::-;40204:34;40200:1;40192:6;40188:14;40181:58;40273:16;40268:2;40260:6;40256:15;40249:41;40064:233;:::o;40303:182::-;40443:34;40439:1;40431:6;40427:14;40420:58;40303:182;:::o;40491:228::-;40631:34;40627:1;40619:6;40615:14;40608:58;40700:11;40695:2;40687:6;40683:15;40676:36;40491:228;:::o;40725:::-;40865:34;40861:1;40853:6;40849:14;40842:58;40934:11;40929:2;40921:6;40917:15;40910:36;40725:228;:::o;40959:227::-;41099:34;41095:1;41087:6;41083:14;41076:58;41168:10;41163:2;41155:6;41151:15;41144:35;40959:227;:::o;41192:220::-;41332:34;41328:1;41320:6;41316:14;41309:58;41401:3;41396:2;41388:6;41384:15;41377:28;41192:220;:::o;41418:239::-;41558:34;41554:1;41546:6;41542:14;41535:58;41627:22;41622:2;41614:6;41610:15;41603:47;41418:239;:::o;41663:711::-;41702:3;41740:4;41722:16;41719:26;41716:39;;;41748:5;;41716:39;41777:20;;:::i;:::-;41852:1;41834:16;41830:24;41827:1;41821:4;41806:49;41885:4;41879:11;41984:16;41977:4;41969:6;41965:17;41962:39;41929:18;41921:6;41918:30;41902:113;41899:146;;;42030:5;;;;41899:146;42076:6;42070:4;42066:17;42112:3;42106:10;42139:18;42131:6;42128:30;42125:43;;;42161:5;;;;;;42125:43;42209:6;42202:4;42197:3;42193:14;42189:27;42268:1;42250:16;42246:24;42240:4;42236:35;42231:3;42228:44;42225:57;;;42275:5;;;;;;;42225:57;42292;42340:6;42334:4;42330:17;42322:6;42318:30;42312:4;42292:57;:::i;:::-;42365:3;42358:10;;41706:668;;;;;41663:711;;:::o;42380:122::-;42453:24;42471:5;42453:24;:::i;:::-;42446:5;42443:35;42433:63;;42492:1;42489;42482:12;42433:63;42380:122;:::o;42508:116::-;42578:21;42593:5;42578:21;:::i;:::-;42571:5;42568:32;42558:60;;42614:1;42611;42604:12;42558:60;42508:116;:::o;42630:120::-;42702:23;42719:5;42702:23;:::i;:::-;42695:5;42692:34;42682:62;;42740:1;42737;42730:12;42682:62;42630:120;:::o;42756:122::-;42829:24;42847:5;42829:24;:::i;:::-;42822:5;42819:35;42809:63;;42868:1;42865;42858:12;42809:63;42756:122;:::o

Swarm Source

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