ETH Price: $2,883.80 (-11.02%)
Gas: 17 Gwei

Token

BentoBox (BENTOBOXNFT)
 

Overview

Max Total Supply

1,569 BENTOBOXNFT

Holders

495

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
rainbowfurby.eth
Balance
1 BENTOBOXNFT
0x203012cf17ad510213138655ee0cfb40b1682d3c
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:
BentoBox

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-05
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]





/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}


// File @openzeppelin/contracts/token/ERC721/[email protected]





/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]





/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}


// File @openzeppelin/contracts/utils/[email protected]





/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]





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

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


// File @openzeppelin/contracts/utils/[email protected]





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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]





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


// File @openzeppelin/contracts/token/ERC721/[email protected]











/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]





/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]






/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}


// File @openzeppelin/contracts/security/[email protected]





/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}


// File @openzeppelin/contracts/access/[email protected]





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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/math/[email protected]





// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}


// File contracts/BB.sol








abstract contract INCR {
  function ownerOf(uint256 tokenId) public virtual view returns (address);
  function tokenOfOwnerByIndex(address owner, uint256 index) public virtual view returns (uint256);
  function balanceOf(address owner) external virtual view returns (uint256 balance);
}

contract BentoBox is ERC721, ERC721Enumerable, Pausable, Ownable {
    
    using SafeMath for uint256;
    
    // A reference to the incrementum contract.
    INCR private incr = INCR(0xE2c435798da5F1E91C9c79156F39e42516689638);

    // The baseURI of the collection that points to the metadata storage.
    string public baseURI;
    
    // Is the Claim period active? The claim period is for the Incrementum holders
    // to mint their free BentoBox.
    bool public isClaimPeriodActive;
    
    // Is the Sale period active? The sale period lets you mint a BentoBox for 
    // the sale price.
    bool public isSalePeriodActive;
    
    // The total supply of claimable BentoBoxes.
    uint256 public maxClaimable;
    
    // The provenance hash. Lets you verify the following:
    // - The artwork linked via the metadata is legit.
    // - There is a limit on the total supply of the collection.
    string public provenance;
    
    // How many BentoBoxes can you mint in a single transaction?
    uint256 public maxBentoBoxPurchase;
    
    // The price of a single BentoBox.
    uint256 public bentoBoxPrice;
    
    // The total number of unclaimed BentoBoxes.
    uint256 private totalUnclaimed;
    
    // The total number of BentoBoxes that can exist.
    uint256 public totalBentoBoxSupply;
    
    
    constructor() ERC721("BentoBox", "BENTOBOXNFT") {
        baseURI = "https://raw.githubusercontent.com/recklesslabs/bentobox/main/";
        isClaimPeriodActive = false;
        isSalePeriodActive = false;
        maxClaimable = 4000;
        maxBentoBoxPurchase = 20;
        bentoBoxPrice = 50000000000000000; // 0.05 ETH
        totalBentoBoxSupply = 8000;
    }
    
    // - - - - - - - - - - - - G E T T E R S - - - - - - - - - - - - - - - - - - - - -

    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }

    function isMinted(uint256 tokenId) external view returns (bool) {
        return _exists(tokenId);
    }
    
    // - - - - - - - - - - - - S E T T E R S - - - - - - - - - - - - - - - - - - - - -
    
    function setTotalUnclaimed(uint256 n) public onlyOwner {
        totalUnclaimed = n;
    }
    
    function setBaseURI(string memory uri) public onlyOwner {
        baseURI = uri;
    }
    
    function setProvenanceHash(string memory provenanceHash) public onlyOwner {
        provenance = provenanceHash;
    }
    
    function flipClaimPeriodState() public onlyOwner {
        isClaimPeriodActive = !isClaimPeriodActive;
    }
    
    function flipSalePeriodState() public onlyOwner {
        isSalePeriodActive = !isSalePeriodActive;
    }
    
    // - - - - - - - - - - - - - P A U S I N G - - - - - - - - - - - - - - - - - - 


    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }


    // - - - - - - - - - - - - - W I T H D R A W - - - - - - - - - - - - - - - - -

    function withdraw(address payable wallet) public onlyOwner {
        uint balance = address(this).balance;
        wallet.transfer(balance);
    }


    // - - - - - - - - - - - - - O W N E R - - - - - - - - - - - - - - - - - - 

    function safeMint(address to, uint256 tokenId) public onlyOwner {
        _safeMint(to, tokenId);
    }
    
    function ownerMint(address[] memory ads, uint[] memory ids) public onlyOwner {
        for(uint i = 0; i < ads.length; i++) {
            _safeMint(ads[i], ids[i]);
        }
    }
    
    function safeMintMultiple(address to, uint256 tokenId) public onlyOwner {
        _safeMint(to, tokenId);
    }
    
    function reserveFromSale(uint howMany, uint fromWhere) public onlyOwner {        
        for (uint i = 0; i < howMany; i++) {
            _safeMint(msg.sender, fromWhere + i);
        }
    }
    
    // - - - - - - - - - - - - - C L A I M I N G / M I N T I N G - - - - - - - - - - - - - - - - - - 
    
    
    function mintBentoBoxes(uint numberOfTokens) public payable {
        require(isSalePeriodActive, "Sale must be active to mint BentoBoxes");
        require(numberOfTokens <= maxBentoBoxPurchase, "Can only mint 20 tokens at a time");
        require(totalSupply().add(numberOfTokens) <= totalBentoBoxSupply + totalUnclaimed, "Purchase would exceed max supply of BentoBoxes");
        require(bentoBoxPrice.mul(numberOfTokens) <= msg.value, "Ether value sent is not correct");
        
        for(uint i = 0; i < numberOfTokens; i++) {
            uint mintIndex = totalSupply() + totalUnclaimed;
            if (totalSupply() < totalBentoBoxSupply + totalUnclaimed) {
                _safeMint(msg.sender, mintIndex);
            }
        }
    }
    
    function claimOne(uint256 incrementumTokenId) public {
        require(isClaimPeriodActive, "Claim period must be active to claim a BentoBox");
        require(totalSupply() < maxClaimable, "Purchase would exceed max supply of Claimable BentoBoxes");
        require(incrementumTokenId < maxClaimable, "Requested tokenId exceeds upper bound");
        require(incr.ownerOf(incrementumTokenId) == msg.sender, "Must own the Incrementum for requested tokenId to claim a BentoBox");
    
        _safeMint(msg.sender, incrementumTokenId);
    }
    
    function claimN(uint256 startingIndex, uint256 totalToClaim) public {
        require(totalToClaim <= 50, "Cannot claim more than 50 at once. Reason: You might run out of gas. DM @derb to claim.");
        require(isClaimPeriodActive, "Claim period must be active to claim BentoBoxes");
        require(totalToClaim > 0, "Must mint at least one BentoBox");
        uint balance = incr.balanceOf(msg.sender);
        require(balance > 0, "Must hold at least one Incrementum to mint a BentoBox");
        require(balance >= startingIndex + totalToClaim, "Must hold at least as many Incrementums as the number of BentoBox you intend to claim");

        for(uint i = 0; i < balance && i < totalToClaim; i++) {
            require(totalSupply() < maxClaimable, "Cannot exceed max supply of claimable BentoBoxes");
            uint tokenId = incr.tokenOfOwnerByIndex(msg.sender, i + startingIndex);
            if (!_exists(tokenId)) {
                _safeMint(msg.sender, tokenId);
            } else {
                require(false, "Cannot mint an already claimed BentoBox");
            }
        }
    }

    // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    

    function _beforeTokenTransfer(address from, address to, uint256 tokenId)
        internal
        whenNotPaused
        override(ERC721, ERC721Enumerable)
    {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    // The following functions are overrides required by Solidity.

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bentoBoxPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"startingIndex","type":"uint256"},{"internalType":"uint256","name":"totalToClaim","type":"uint256"}],"name":"claimN","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"incrementumTokenId","type":"uint256"}],"name":"claimOne","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipClaimPeriodState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSalePeriodState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isClaimPeriodActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSalePeriodActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBentoBoxPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxClaimable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintBentoBoxes","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"ads","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenance","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"howMany","type":"uint256"},{"internalType":"uint256","name":"fromWhere","type":"uint256"}],"name":"reserveFromSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeMintMultiple","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"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":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"n","type":"uint256"}],"name":"setTotalUnclaimed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBentoBoxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"wallet","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405273e2c435798da5f1e91c9c79156f39e42516689638600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200006657600080fd5b506040518060400160405280600881526020017f42656e746f426f780000000000000000000000000000000000000000000000008152506040518060400160405280600b81526020017f42454e544f424f584e46540000000000000000000000000000000000000000008152508160009080519060200190620000eb929190620002a6565b50806001908051906020019062000104929190620002a6565b5050506000600a60006101000a81548160ff0219169083151502179055506200014262000136620001d860201b60201c565b620001e060201b60201c565b6040518060600160405280603d815260200162005c71603d9139600c908051906020019062000173929190620002a6565b506000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff021916908315150217905550610fa0600e81905550601460108190555066b1a2bc2ec50000601181905550611f40601381905550620003bb565b600033905090565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002b49062000356565b90600052602060002090601f016020900481019282620002d8576000855562000324565b82601f10620002f357805160ff191683800117855562000324565b8280016001018555821562000324579182015b828111156200032357825182559160200191906001019062000306565b5b50905062000333919062000337565b5090565b5b808211156200035257600081600090555060010162000338565b5090565b600060028204905060018216806200036f57607f821691505b602082108114156200038657620003856200038c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6158a680620003cb6000396000f3fe6080604052600436106102675760003560e01c80635c975abb116101445780639c812eae116100b6578063c87b56dd1161007a578063c87b56dd146108bd578063d037324e146108fa578063da35741f14610925578063e985e9c51461094e578063f03f80c31461098b578063f2fde38b146109b657610267565b80639c812eae14610800578063a144819414610817578063a22cb46514610840578063b88d4fde14610869578063c40f50de1461089257610267565b806370a082311161010857806370a0823114610714578063715018a61461075157806374ea186d146107685780638456cb59146107935780638da5cb5b146107aa57806395d89b41146107d557610267565b80635c975abb1461062f5780636352211e1461065a578063662331261461069757806369f7d2f2146106c05780636c0360eb146106e957610267565b806323b872dd116101dd57806342842e0e116101a157806342842e0e146105325780634c01072b1461055b5780634f6ccce71461058457806351cff8d9146105c1578063558f1118146105ea57806355f804b31461060657610267565b806323b872dd1461044d5780632f745c591461047657806333c41a90146104b35780633ca0c16d146104f05780633f4ba83a1461051b57610267565b8063104d060a1161022f578063104d060a14610365578063109695231461038e57806313d4fea5146103b757806318160ddd146103e05780631bb105581461040b5780632224770d1461043657610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b3146103115780630f7309e81461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613eea565b6109df565b6040516102a09190614ec3565b60405180910390f35b3480156102b557600080fd5b506102be6109f1565b6040516102cb9190614ede565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190613f7d565b610a83565b6040516103089190614e33565b60405180910390f35b34801561031d57600080fd5b5061033860048036038101906103339190613e42565b610b08565b005b34801561034657600080fd5b5061034f610c20565b60405161035c9190614ede565b60405180910390f35b34801561037157600080fd5b5061038c60048036038101906103879190613fcf565b610cae565b005b34801561039a57600080fd5b506103b560048036038101906103b09190613f3c565b611059565b005b3480156103c357600080fd5b506103de60048036038101906103d99190613fcf565b6110ef565b005b3480156103ec57600080fd5b506103f56111a3565b6040516104029190615360565b60405180910390f35b34801561041757600080fd5b506104206111b0565b60405161042d9190615360565b60405180910390f35b34801561044257600080fd5b5061044b6111b6565b005b34801561045957600080fd5b50610474600480360381019061046f9190613d3c565b61125e565b005b34801561048257600080fd5b5061049d60048036038101906104989190613e42565b6112be565b6040516104aa9190615360565b60405180910390f35b3480156104bf57600080fd5b506104da60048036038101906104d59190613f7d565b611363565b6040516104e79190614ec3565b60405180910390f35b3480156104fc57600080fd5b50610505611375565b6040516105129190615360565b60405180910390f35b34801561052757600080fd5b5061053061137b565b005b34801561053e57600080fd5b5061055960048036038101906105549190613d3c565b611401565b005b34801561056757600080fd5b50610582600480360381019061057d9190613f7d565b611421565b005b34801561059057600080fd5b506105ab60048036038101906105a69190613f7d565b6114a7565b6040516105b89190615360565b60405180910390f35b3480156105cd57600080fd5b506105e860048036038101906105e39190613cd7565b61153e565b005b61060460048036038101906105ff9190613f7d565b61160a565b005b34801561061257600080fd5b5061062d60048036038101906106289190613f3c565b6117c5565b005b34801561063b57600080fd5b5061064461185b565b6040516106519190614ec3565b60405180910390f35b34801561066657600080fd5b50610681600480360381019061067c9190613f7d565b611872565b60405161068e9190614e33565b60405180910390f35b3480156106a357600080fd5b506106be60048036038101906106b99190613f7d565b611924565b005b3480156106cc57600080fd5b506106e760048036038101906106e29190613e7e565b611b27565b005b3480156106f557600080fd5b506106fe611c51565b60405161070b9190614ede565b60405180910390f35b34801561072057600080fd5b5061073b60048036038101906107369190613c85565b611cdf565b6040516107489190615360565b60405180910390f35b34801561075d57600080fd5b50610766611d97565b005b34801561077457600080fd5b5061077d611e1f565b60405161078a9190614ec3565b60405180910390f35b34801561079f57600080fd5b506107a8611e32565b005b3480156107b657600080fd5b506107bf611eb8565b6040516107cc9190614e33565b60405180910390f35b3480156107e157600080fd5b506107ea611ee2565b6040516107f79190614ede565b60405180910390f35b34801561080c57600080fd5b50610815611f74565b005b34801561082357600080fd5b5061083e60048036038101906108399190613e42565b61201c565b005b34801561084c57600080fd5b5061086760048036038101906108629190613e06565b6120a6565b005b34801561087557600080fd5b50610890600480360381019061088b9190613d8b565b612227565b005b34801561089e57600080fd5b506108a7612289565b6040516108b49190615360565b60405180910390f35b3480156108c957600080fd5b506108e460048036038101906108df9190613f7d565b61228f565b6040516108f19190614ede565b60405180910390f35b34801561090657600080fd5b5061090f612336565b60405161091c9190614ec3565b60405180910390f35b34801561093157600080fd5b5061094c60048036038101906109479190613e42565b612349565b005b34801561095a57600080fd5b5061097560048036038101906109709190613d00565b6123d3565b6040516109829190614ec3565b60405180910390f35b34801561099757600080fd5b506109a0612467565b6040516109ad9190615360565b60405180910390f35b3480156109c257600080fd5b506109dd60048036038101906109d89190613c85565b61246d565b005b60006109ea82612565565b9050919050565b606060008054610a0090615684565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2c90615684565b8015610a795780601f10610a4e57610100808354040283529160200191610a79565b820191906000526020600020905b815481529060010190602001808311610a5c57829003601f168201915b5050505050905090565b6000610a8e826125df565b610acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac490615180565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b1382611872565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7b90615220565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ba361264b565b73ffffffffffffffffffffffffffffffffffffffff161480610bd25750610bd181610bcc61264b565b6123d3565b5b610c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c08906150e0565b60405180910390fd5b610c1b8383612653565b505050565b600f8054610c2d90615684565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5990615684565b8015610ca65780601f10610c7b57610100808354040283529160200191610ca6565b820191906000526020600020905b815481529060010190602001808311610c8957829003601f168201915b505050505081565b6032811115610cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce990615160565b60405180910390fd5b600d60009054906101000a900460ff16610d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3890614fa0565b60405180910390fd5b60008111610d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7b90615200565b60405180910390fd5b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610de19190614e33565b60206040518083038186803b158015610df957600080fd5b505afa158015610e0d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e319190613fa6565b905060008111610e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6d90614f00565b60405180910390fd5b8183610e8291906154a7565b811015610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb906152e0565b60405180910390fd5b60005b8181108015610ed557508281105b1561105357600e54610ee56111a3565b10610f25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1c90615080565b60405180910390fd5b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632f745c59338785610f7291906154a7565b6040518363ffffffff1660e01b8152600401610f8f929190614e9a565b60206040518083038186803b158015610fa757600080fd5b505afa158015610fbb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fdf9190613fa6565b9050610fea816125df565b610ffd57610ff8338261270c565b61103f565b600061103e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103590615240565b60405180910390fd5b5b50808061104b906156b6565b915050610ec7565b50505050565b61106161264b565b73ffffffffffffffffffffffffffffffffffffffff1661107f611eb8565b73ffffffffffffffffffffffffffffffffffffffff16146110d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cc906151a0565b60405180910390fd5b80600f90805190602001906110eb92919061393e565b5050565b6110f761264b565b73ffffffffffffffffffffffffffffffffffffffff16611115611eb8565b73ffffffffffffffffffffffffffffffffffffffff161461116b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611162906151a0565b60405180910390fd5b60005b8281101561119e5761118b33828461118691906154a7565b61270c565b8080611196906156b6565b91505061116e565b505050565b6000600880549050905090565b60135481565b6111be61264b565b73ffffffffffffffffffffffffffffffffffffffff166111dc611eb8565b73ffffffffffffffffffffffffffffffffffffffff1614611232576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611229906151a0565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b61126f61126961264b565b8261272a565b6112ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a590615260565b60405180910390fd5b6112b9838383612808565b505050565b60006112c983611cdf565b821061130a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130190614f40565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600061136e826125df565b9050919050565b60105481565b61138361264b565b73ffffffffffffffffffffffffffffffffffffffff166113a1611eb8565b73ffffffffffffffffffffffffffffffffffffffff16146113f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ee906151a0565b60405180910390fd5b6113ff612a64565b565b61141c83838360405180602001604052806000815250612227565b505050565b61142961264b565b73ffffffffffffffffffffffffffffffffffffffff16611447611eb8565b73ffffffffffffffffffffffffffffffffffffffff161461149d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611494906151a0565b60405180910390fd5b8060128190555050565b60006114b16111a3565b82106114f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e990615280565b60405180910390fd5b6008828154811061152c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b61154661264b565b73ffffffffffffffffffffffffffffffffffffffff16611564611eb8565b73ffffffffffffffffffffffffffffffffffffffff16146115ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b1906151a0565b60405180910390fd5b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611605573d6000803e3d6000fd5b505050565b600d60019054906101000a900460ff16611659576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611650906152c0565b60405180910390fd5b60105481111561169e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169590615060565b60405180910390fd5b6012546013546116ae91906154a7565b6116c8826116ba6111a3565b612b0690919063ffffffff16565b1115611709576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170090615340565b60405180910390fd5b3461171f82601154612b1c90919063ffffffff16565b1115611760576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175790615020565b60405180910390fd5b60005b818110156117c15760006012546117786111a3565b61178291906154a7565b905060125460135461179491906154a7565b61179c6111a3565b10156117ad576117ac338261270c565b5b5080806117b9906156b6565b915050611763565b5050565b6117cd61264b565b73ffffffffffffffffffffffffffffffffffffffff166117eb611eb8565b73ffffffffffffffffffffffffffffffffffffffff1614611841576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611838906151a0565b60405180910390fd5b80600c908051906020019061185792919061393e565b5050565b6000600a60009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561191b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191290615120565b60405180910390fd5b80915050919050565b600d60009054906101000a900460ff16611973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196a90615320565b60405180910390fd5b600e5461197e6111a3565b106119be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b5906152a0565b60405180910390fd5b600e548110611a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f9906150a0565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401611a749190615360565b60206040518083038186803b158015611a8c57600080fd5b505afa158015611aa0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ac49190613cae565b73ffffffffffffffffffffffffffffffffffffffff1614611b1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1190615300565b60405180910390fd5b611b24338261270c565b50565b611b2f61264b565b73ffffffffffffffffffffffffffffffffffffffff16611b4d611eb8565b73ffffffffffffffffffffffffffffffffffffffff1614611ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9a906151a0565b60405180910390fd5b60005b8251811015611c4c57611c39838281518110611beb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151838381518110611c2c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015161270c565b8080611c44906156b6565b915050611ba6565b505050565b600c8054611c5e90615684565b80601f0160208091040260200160405190810160405280929190818152602001828054611c8a90615684565b8015611cd75780601f10611cac57610100808354040283529160200191611cd7565b820191906000526020600020905b815481529060010190602001808311611cba57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4790615100565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611d9f61264b565b73ffffffffffffffffffffffffffffffffffffffff16611dbd611eb8565b73ffffffffffffffffffffffffffffffffffffffff1614611e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0a906151a0565b60405180910390fd5b611e1d6000612b32565b565b600d60009054906101000a900460ff1681565b611e3a61264b565b73ffffffffffffffffffffffffffffffffffffffff16611e58611eb8565b73ffffffffffffffffffffffffffffffffffffffff1614611eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea5906151a0565b60405180910390fd5b611eb6612bf8565b565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611ef190615684565b80601f0160208091040260200160405190810160405280929190818152602001828054611f1d90615684565b8015611f6a5780601f10611f3f57610100808354040283529160200191611f6a565b820191906000526020600020905b815481529060010190602001808311611f4d57829003601f168201915b5050505050905090565b611f7c61264b565b73ffffffffffffffffffffffffffffffffffffffff16611f9a611eb8565b73ffffffffffffffffffffffffffffffffffffffff1614611ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe7906151a0565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b61202461264b565b73ffffffffffffffffffffffffffffffffffffffff16612042611eb8565b73ffffffffffffffffffffffffffffffffffffffff1614612098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208f906151a0565b60405180910390fd5b6120a2828261270c565b5050565b6120ae61264b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561211c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211390615000565b60405180910390fd5b806005600061212961264b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166121d661264b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161221b9190614ec3565b60405180910390a35050565b61223861223261264b565b8361272a565b612277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226e90615260565b60405180910390fd5b61228384848484612c9b565b50505050565b60115481565b606061229a826125df565b6122d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d0906151e0565b60405180910390fd5b60006122e3612cf7565b90506000815111612303576040518060200160405280600081525061232e565b8061230d84612d89565b60405160200161231e929190614e0f565b6040516020818303038152906040525b915050919050565b600d60019054906101000a900460ff1681565b61235161264b565b73ffffffffffffffffffffffffffffffffffffffff1661236f611eb8565b73ffffffffffffffffffffffffffffffffffffffff16146123c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123bc906151a0565b60405180910390fd5b6123cf828261270c565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e5481565b61247561264b565b73ffffffffffffffffffffffffffffffffffffffff16612493611eb8565b73ffffffffffffffffffffffffffffffffffffffff16146124e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e0906151a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612559576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255090614f80565b60405180910390fd5b61256281612b32565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806125d857506125d782612f36565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166126c683611872565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b612726828260405180602001604052806000815250613018565b5050565b6000612735826125df565b612774576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276b90615040565b60405180910390fd5b600061277f83611872565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806127ee57508373ffffffffffffffffffffffffffffffffffffffff166127d684610a83565b73ffffffffffffffffffffffffffffffffffffffff16145b806127ff57506127fe81856123d3565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661282882611872565b73ffffffffffffffffffffffffffffffffffffffff161461287e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612875906151c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e590614fe0565b60405180910390fd5b6128f9838383613073565b612904600082612653565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129549190615588565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129ab91906154a7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612a6c61185b565b612aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa290614f20565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612aef61264b565b604051612afc9190614e33565b60405180910390a1565b60008183612b1491906154a7565b905092915050565b60008183612b2a919061552e565b905092915050565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c0061185b565b15612c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c37906150c0565b60405180910390fd5b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612c8461264b565b604051612c919190614e33565b60405180910390a1565b612ca6848484612808565b612cb2848484846130cb565b612cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce890614f60565b60405180910390fd5b50505050565b6060600c8054612d0690615684565b80601f0160208091040260200160405190810160405280929190818152602001828054612d3290615684565b8015612d7f5780601f10612d5457610100808354040283529160200191612d7f565b820191906000526020600020905b815481529060010190602001808311612d6257829003601f168201915b5050505050905090565b60606000821415612dd1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f31565b600082905060005b60008214612e03578080612dec906156b6565b915050600a82612dfc91906154fd565b9150612dd9565b60008167ffffffffffffffff811115612e45577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612e775781602001600182028036833780820191505090505b5090505b60008514612f2a57600182612e909190615588565b9150600a85612e9f91906156ff565b6030612eab91906154a7565b60f81b818381518110612ee7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f2391906154fd565b9450612e7b565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061300157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80613011575061301082613262565b5b9050919050565b61302283836132cc565b61302f60008484846130cb565b61306e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306590614f60565b60405180910390fd5b505050565b61307b61185b565b156130bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130b2906150c0565b60405180910390fd5b6130c683838361349a565b505050565b60006130ec8473ffffffffffffffffffffffffffffffffffffffff166135ae565b15613255578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261311561264b565b8786866040518563ffffffff1660e01b81526004016131379493929190614e4e565b602060405180830381600087803b15801561315157600080fd5b505af192505050801561318257506040513d601f19601f8201168201806040525081019061317f9190613f13565b60015b613205573d80600081146131b2576040519150601f19603f3d011682016040523d82523d6000602084013e6131b7565b606091505b506000815114156131fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131f490614f60565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061325a565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561333c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161333390615140565b60405180910390fd5b613345816125df565b15613385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161337c90614fc0565b60405180910390fd5b61339160008383613073565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133e191906154a7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6134a58383836135c1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156134e8576134e3816135c6565b613527565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461352657613525838261360f565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561356a576135658161377c565b6135a9565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146135a8576135a782826138bf565b5b5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161361c84611cdf565b6136269190615588565b905060006007600084815260200190815260200160002054905081811461370b576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506137909190615588565b90506000600960008481526020019081526020016000205490506000600883815481106137e6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811061382e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806138a3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006138ca83611cdf565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b82805461394a90615684565b90600052602060002090601f01602090048101928261396c57600085556139b3565b82601f1061398557805160ff19168380011785556139b3565b828001600101855582156139b3579182015b828111156139b2578251825591602001919060010190613997565b5b5090506139c091906139c4565b5090565b5b808211156139dd5760008160009055506001016139c5565b5090565b60006139f46139ef846153ac565b61537b565b90508083825260208201905082856020860282011115613a1357600080fd5b60005b85811015613a435781613a298882613b35565b845260208401935060208301925050600181019050613a16565b5050509392505050565b6000613a60613a5b846153d8565b61537b565b90508083825260208201905082856020860282011115613a7f57600080fd5b60005b85811015613aaf5781613a958882613c5b565b845260208401935060208301925050600181019050613a82565b5050509392505050565b6000613acc613ac784615404565b61537b565b905082815260208101848484011115613ae457600080fd5b613aef848285615642565b509392505050565b6000613b0a613b0584615434565b61537b565b905082815260208101848484011115613b2257600080fd5b613b2d848285615642565b509392505050565b600081359050613b44816157fd565b92915050565b600081519050613b59816157fd565b92915050565b600081359050613b6e81615814565b92915050565b600082601f830112613b8557600080fd5b8135613b958482602086016139e1565b91505092915050565b600082601f830112613baf57600080fd5b8135613bbf848260208601613a4d565b91505092915050565b600081359050613bd78161582b565b92915050565b600081359050613bec81615842565b92915050565b600081519050613c0181615842565b92915050565b600082601f830112613c1857600080fd5b8135613c28848260208601613ab9565b91505092915050565b600082601f830112613c4257600080fd5b8135613c52848260208601613af7565b91505092915050565b600081359050613c6a81615859565b92915050565b600081519050613c7f81615859565b92915050565b600060208284031215613c9757600080fd5b6000613ca584828501613b35565b91505092915050565b600060208284031215613cc057600080fd5b6000613cce84828501613b4a565b91505092915050565b600060208284031215613ce957600080fd5b6000613cf784828501613b5f565b91505092915050565b60008060408385031215613d1357600080fd5b6000613d2185828601613b35565b9250506020613d3285828601613b35565b9150509250929050565b600080600060608486031215613d5157600080fd5b6000613d5f86828701613b35565b9350506020613d7086828701613b35565b9250506040613d8186828701613c5b565b9150509250925092565b60008060008060808587031215613da157600080fd5b6000613daf87828801613b35565b9450506020613dc087828801613b35565b9350506040613dd187828801613c5b565b925050606085013567ffffffffffffffff811115613dee57600080fd5b613dfa87828801613c07565b91505092959194509250565b60008060408385031215613e1957600080fd5b6000613e2785828601613b35565b9250506020613e3885828601613bc8565b9150509250929050565b60008060408385031215613e5557600080fd5b6000613e6385828601613b35565b9250506020613e7485828601613c5b565b9150509250929050565b60008060408385031215613e9157600080fd5b600083013567ffffffffffffffff811115613eab57600080fd5b613eb785828601613b74565b925050602083013567ffffffffffffffff811115613ed457600080fd5b613ee085828601613b9e565b9150509250929050565b600060208284031215613efc57600080fd5b6000613f0a84828501613bdd565b91505092915050565b600060208284031215613f2557600080fd5b6000613f3384828501613bf2565b91505092915050565b600060208284031215613f4e57600080fd5b600082013567ffffffffffffffff811115613f6857600080fd5b613f7484828501613c31565b91505092915050565b600060208284031215613f8f57600080fd5b6000613f9d84828501613c5b565b91505092915050565b600060208284031215613fb857600080fd5b6000613fc684828501613c70565b91505092915050565b60008060408385031215613fe257600080fd5b6000613ff085828601613c5b565b925050602061400185828601613c5b565b9150509250929050565b614014816155bc565b82525050565b614023816155e0565b82525050565b600061403482615464565b61403e818561547a565b935061404e818560208601615651565b614057816157ec565b840191505092915050565b600061406d8261546f565b614077818561548b565b9350614087818560208601615651565b614090816157ec565b840191505092915050565b60006140a68261546f565b6140b0818561549c565b93506140c0818560208601615651565b80840191505092915050565b60006140d960358361548b565b91507f4d75737420686f6c64206174206c65617374206f6e6520496e6372656d656e7460008301527f756d20746f206d696e7420612042656e746f426f7800000000000000000000006020830152604082019050919050565b600061413f60148361548b565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b600061417f602b8361548b565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006141e560328361548b565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061424b60268361548b565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006142b1602f8361548b565b91507f436c61696d20706572696f64206d7573742062652061637469766520746f206360008301527f6c61696d2042656e746f426f78657300000000000000000000000000000000006020830152604082019050919050565b6000614317601c8361548b565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061435760248361548b565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006143bd60198361548b565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006143fd601f8361548b565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b600061443d602c8361548b565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006144a360218361548b565b91507f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d60008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061450960308361548b565b91507f43616e6e6f7420657863656564206d617820737570706c79206f6620636c616960008301527f6d61626c652042656e746f426f786573000000000000000000000000000000006020830152604082019050919050565b600061456f60258361548b565b91507f52657175657374656420746f6b656e496420657863656564732075707065722060008301527f626f756e640000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006145d560108361548b565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b600061461560388361548b565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061467b602a8361548b565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006146e160298361548b565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061474760208361548b565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b600061478760578361548b565b91507f43616e6e6f7420636c61696d206d6f7265207468616e203530206174206f6e6360008301527f652e20526561736f6e3a20596f75206d696768742072756e206f7574206f662060208301527f6761732e20444d20406465726220746f20636c61696d2e0000000000000000006040830152606082019050919050565b6000614813602c8361548b565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061487960208361548b565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006148b960298361548b565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061491f602f8361548b565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614985601f8361548b565b91507f4d757374206d696e74206174206c65617374206f6e652042656e746f426f78006000830152602082019050919050565b60006149c560218361548b565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a2b60278361548b565b91507f43616e6e6f74206d696e7420616e20616c726561647920636c61696d6564204260008301527f656e746f426f78000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a9160318361548b565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614af7602c8361548b565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000614b5d60388361548b565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f6620436c61696d61626c652042656e746f426f78657300000000000000006020830152604082019050919050565b6000614bc360268361548b565b91507f53616c65206d7573742062652061637469766520746f206d696e742042656e7460008301527f6f426f78657300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c2960558361548b565b91507f4d75737420686f6c64206174206c65617374206173206d616e7920496e63726560008301527f6d656e74756d7320617320746865206e756d626572206f662042656e746f426f60208301527f7820796f7520696e74656e6420746f20636c61696d00000000000000000000006040830152606082019050919050565b6000614cb560428361548b565b91507f4d757374206f776e2074686520496e6372656d656e74756d20666f722072657160008301527f75657374656420746f6b656e496420746f20636c61696d20612042656e746f4260208301527f6f780000000000000000000000000000000000000000000000000000000000006040830152606082019050919050565b6000614d41602f8361548b565b91507f436c61696d20706572696f64206d7573742062652061637469766520746f206360008301527f6c61696d20612042656e746f426f7800000000000000000000000000000000006020830152604082019050919050565b6000614da7602e8361548b565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f662042656e746f426f7865730000000000000000000000000000000000006020830152604082019050919050565b614e0981615638565b82525050565b6000614e1b828561409b565b9150614e27828461409b565b91508190509392505050565b6000602082019050614e48600083018461400b565b92915050565b6000608082019050614e63600083018761400b565b614e70602083018661400b565b614e7d6040830185614e00565b8181036060830152614e8f8184614029565b905095945050505050565b6000604082019050614eaf600083018561400b565b614ebc6020830184614e00565b9392505050565b6000602082019050614ed8600083018461401a565b92915050565b60006020820190508181036000830152614ef88184614062565b905092915050565b60006020820190508181036000830152614f19816140cc565b9050919050565b60006020820190508181036000830152614f3981614132565b9050919050565b60006020820190508181036000830152614f5981614172565b9050919050565b60006020820190508181036000830152614f79816141d8565b9050919050565b60006020820190508181036000830152614f998161423e565b9050919050565b60006020820190508181036000830152614fb9816142a4565b9050919050565b60006020820190508181036000830152614fd98161430a565b9050919050565b60006020820190508181036000830152614ff98161434a565b9050919050565b60006020820190508181036000830152615019816143b0565b9050919050565b60006020820190508181036000830152615039816143f0565b9050919050565b6000602082019050818103600083015261505981614430565b9050919050565b6000602082019050818103600083015261507981614496565b9050919050565b60006020820190508181036000830152615099816144fc565b9050919050565b600060208201905081810360008301526150b981614562565b9050919050565b600060208201905081810360008301526150d9816145c8565b9050919050565b600060208201905081810360008301526150f981614608565b9050919050565b600060208201905081810360008301526151198161466e565b9050919050565b60006020820190508181036000830152615139816146d4565b9050919050565b600060208201905081810360008301526151598161473a565b9050919050565b600060208201905081810360008301526151798161477a565b9050919050565b6000602082019050818103600083015261519981614806565b9050919050565b600060208201905081810360008301526151b98161486c565b9050919050565b600060208201905081810360008301526151d9816148ac565b9050919050565b600060208201905081810360008301526151f981614912565b9050919050565b6000602082019050818103600083015261521981614978565b9050919050565b60006020820190508181036000830152615239816149b8565b9050919050565b6000602082019050818103600083015261525981614a1e565b9050919050565b6000602082019050818103600083015261527981614a84565b9050919050565b6000602082019050818103600083015261529981614aea565b9050919050565b600060208201905081810360008301526152b981614b50565b9050919050565b600060208201905081810360008301526152d981614bb6565b9050919050565b600060208201905081810360008301526152f981614c1c565b9050919050565b6000602082019050818103600083015261531981614ca8565b9050919050565b6000602082019050818103600083015261533981614d34565b9050919050565b6000602082019050818103600083015261535981614d9a565b9050919050565b60006020820190506153756000830184614e00565b92915050565b6000604051905081810181811067ffffffffffffffff821117156153a2576153a16157bd565b5b8060405250919050565b600067ffffffffffffffff8211156153c7576153c66157bd565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156153f3576153f26157bd565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561541f5761541e6157bd565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561544f5761544e6157bd565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006154b282615638565b91506154bd83615638565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156154f2576154f1615730565b5b828201905092915050565b600061550882615638565b915061551383615638565b9250826155235761552261575f565b5b828204905092915050565b600061553982615638565b915061554483615638565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561557d5761557c615730565b5b828202905092915050565b600061559382615638565b915061559e83615638565b9250828210156155b1576155b0615730565b5b828203905092915050565b60006155c782615618565b9050919050565b60006155d982615618565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561566f578082015181840152602081019050615654565b8381111561567e576000848401525b50505050565b6000600282049050600182168061569c57607f821691505b602082108114156156b0576156af61578e565b5b50919050565b60006156c182615638565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156156f4576156f3615730565b5b600182019050919050565b600061570a82615638565b915061571583615638565b9250826157255761572461575f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b615806816155bc565b811461581157600080fd5b50565b61581d816155ce565b811461582857600080fd5b50565b615834816155e0565b811461583f57600080fd5b50565b61584b816155ec565b811461585657600080fd5b50565b61586281615638565b811461586d57600080fd5b5056fea264697066735822122091c12bd3fdd84bdc3274fec6a27d45e6dcfd97db1603d7dfdf3a9bbfd86e879464736f6c6343000800003368747470733a2f2f7261772e67697468756275736572636f6e74656e742e636f6d2f7265636b6c6573736c6162732f62656e746f626f782f6d61696e2f

Deployed Bytecode

0x6080604052600436106102675760003560e01c80635c975abb116101445780639c812eae116100b6578063c87b56dd1161007a578063c87b56dd146108bd578063d037324e146108fa578063da35741f14610925578063e985e9c51461094e578063f03f80c31461098b578063f2fde38b146109b657610267565b80639c812eae14610800578063a144819414610817578063a22cb46514610840578063b88d4fde14610869578063c40f50de1461089257610267565b806370a082311161010857806370a0823114610714578063715018a61461075157806374ea186d146107685780638456cb59146107935780638da5cb5b146107aa57806395d89b41146107d557610267565b80635c975abb1461062f5780636352211e1461065a578063662331261461069757806369f7d2f2146106c05780636c0360eb146106e957610267565b806323b872dd116101dd57806342842e0e116101a157806342842e0e146105325780634c01072b1461055b5780634f6ccce71461058457806351cff8d9146105c1578063558f1118146105ea57806355f804b31461060657610267565b806323b872dd1461044d5780632f745c591461047657806333c41a90146104b35780633ca0c16d146104f05780633f4ba83a1461051b57610267565b8063104d060a1161022f578063104d060a14610365578063109695231461038e57806313d4fea5146103b757806318160ddd146103e05780631bb105581461040b5780632224770d1461043657610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b3146103115780630f7309e81461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613eea565b6109df565b6040516102a09190614ec3565b60405180910390f35b3480156102b557600080fd5b506102be6109f1565b6040516102cb9190614ede565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190613f7d565b610a83565b6040516103089190614e33565b60405180910390f35b34801561031d57600080fd5b5061033860048036038101906103339190613e42565b610b08565b005b34801561034657600080fd5b5061034f610c20565b60405161035c9190614ede565b60405180910390f35b34801561037157600080fd5b5061038c60048036038101906103879190613fcf565b610cae565b005b34801561039a57600080fd5b506103b560048036038101906103b09190613f3c565b611059565b005b3480156103c357600080fd5b506103de60048036038101906103d99190613fcf565b6110ef565b005b3480156103ec57600080fd5b506103f56111a3565b6040516104029190615360565b60405180910390f35b34801561041757600080fd5b506104206111b0565b60405161042d9190615360565b60405180910390f35b34801561044257600080fd5b5061044b6111b6565b005b34801561045957600080fd5b50610474600480360381019061046f9190613d3c565b61125e565b005b34801561048257600080fd5b5061049d60048036038101906104989190613e42565b6112be565b6040516104aa9190615360565b60405180910390f35b3480156104bf57600080fd5b506104da60048036038101906104d59190613f7d565b611363565b6040516104e79190614ec3565b60405180910390f35b3480156104fc57600080fd5b50610505611375565b6040516105129190615360565b60405180910390f35b34801561052757600080fd5b5061053061137b565b005b34801561053e57600080fd5b5061055960048036038101906105549190613d3c565b611401565b005b34801561056757600080fd5b50610582600480360381019061057d9190613f7d565b611421565b005b34801561059057600080fd5b506105ab60048036038101906105a69190613f7d565b6114a7565b6040516105b89190615360565b60405180910390f35b3480156105cd57600080fd5b506105e860048036038101906105e39190613cd7565b61153e565b005b61060460048036038101906105ff9190613f7d565b61160a565b005b34801561061257600080fd5b5061062d60048036038101906106289190613f3c565b6117c5565b005b34801561063b57600080fd5b5061064461185b565b6040516106519190614ec3565b60405180910390f35b34801561066657600080fd5b50610681600480360381019061067c9190613f7d565b611872565b60405161068e9190614e33565b60405180910390f35b3480156106a357600080fd5b506106be60048036038101906106b99190613f7d565b611924565b005b3480156106cc57600080fd5b506106e760048036038101906106e29190613e7e565b611b27565b005b3480156106f557600080fd5b506106fe611c51565b60405161070b9190614ede565b60405180910390f35b34801561072057600080fd5b5061073b60048036038101906107369190613c85565b611cdf565b6040516107489190615360565b60405180910390f35b34801561075d57600080fd5b50610766611d97565b005b34801561077457600080fd5b5061077d611e1f565b60405161078a9190614ec3565b60405180910390f35b34801561079f57600080fd5b506107a8611e32565b005b3480156107b657600080fd5b506107bf611eb8565b6040516107cc9190614e33565b60405180910390f35b3480156107e157600080fd5b506107ea611ee2565b6040516107f79190614ede565b60405180910390f35b34801561080c57600080fd5b50610815611f74565b005b34801561082357600080fd5b5061083e60048036038101906108399190613e42565b61201c565b005b34801561084c57600080fd5b5061086760048036038101906108629190613e06565b6120a6565b005b34801561087557600080fd5b50610890600480360381019061088b9190613d8b565b612227565b005b34801561089e57600080fd5b506108a7612289565b6040516108b49190615360565b60405180910390f35b3480156108c957600080fd5b506108e460048036038101906108df9190613f7d565b61228f565b6040516108f19190614ede565b60405180910390f35b34801561090657600080fd5b5061090f612336565b60405161091c9190614ec3565b60405180910390f35b34801561093157600080fd5b5061094c60048036038101906109479190613e42565b612349565b005b34801561095a57600080fd5b5061097560048036038101906109709190613d00565b6123d3565b6040516109829190614ec3565b60405180910390f35b34801561099757600080fd5b506109a0612467565b6040516109ad9190615360565b60405180910390f35b3480156109c257600080fd5b506109dd60048036038101906109d89190613c85565b61246d565b005b60006109ea82612565565b9050919050565b606060008054610a0090615684565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2c90615684565b8015610a795780601f10610a4e57610100808354040283529160200191610a79565b820191906000526020600020905b815481529060010190602001808311610a5c57829003601f168201915b5050505050905090565b6000610a8e826125df565b610acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac490615180565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b1382611872565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7b90615220565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ba361264b565b73ffffffffffffffffffffffffffffffffffffffff161480610bd25750610bd181610bcc61264b565b6123d3565b5b610c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c08906150e0565b60405180910390fd5b610c1b8383612653565b505050565b600f8054610c2d90615684565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5990615684565b8015610ca65780601f10610c7b57610100808354040283529160200191610ca6565b820191906000526020600020905b815481529060010190602001808311610c8957829003601f168201915b505050505081565b6032811115610cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce990615160565b60405180910390fd5b600d60009054906101000a900460ff16610d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3890614fa0565b60405180910390fd5b60008111610d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7b90615200565b60405180910390fd5b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610de19190614e33565b60206040518083038186803b158015610df957600080fd5b505afa158015610e0d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e319190613fa6565b905060008111610e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6d90614f00565b60405180910390fd5b8183610e8291906154a7565b811015610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb906152e0565b60405180910390fd5b60005b8181108015610ed557508281105b1561105357600e54610ee56111a3565b10610f25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1c90615080565b60405180910390fd5b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632f745c59338785610f7291906154a7565b6040518363ffffffff1660e01b8152600401610f8f929190614e9a565b60206040518083038186803b158015610fa757600080fd5b505afa158015610fbb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fdf9190613fa6565b9050610fea816125df565b610ffd57610ff8338261270c565b61103f565b600061103e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103590615240565b60405180910390fd5b5b50808061104b906156b6565b915050610ec7565b50505050565b61106161264b565b73ffffffffffffffffffffffffffffffffffffffff1661107f611eb8565b73ffffffffffffffffffffffffffffffffffffffff16146110d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cc906151a0565b60405180910390fd5b80600f90805190602001906110eb92919061393e565b5050565b6110f761264b565b73ffffffffffffffffffffffffffffffffffffffff16611115611eb8565b73ffffffffffffffffffffffffffffffffffffffff161461116b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611162906151a0565b60405180910390fd5b60005b8281101561119e5761118b33828461118691906154a7565b61270c565b8080611196906156b6565b91505061116e565b505050565b6000600880549050905090565b60135481565b6111be61264b565b73ffffffffffffffffffffffffffffffffffffffff166111dc611eb8565b73ffffffffffffffffffffffffffffffffffffffff1614611232576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611229906151a0565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b61126f61126961264b565b8261272a565b6112ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a590615260565b60405180910390fd5b6112b9838383612808565b505050565b60006112c983611cdf565b821061130a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130190614f40565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600061136e826125df565b9050919050565b60105481565b61138361264b565b73ffffffffffffffffffffffffffffffffffffffff166113a1611eb8565b73ffffffffffffffffffffffffffffffffffffffff16146113f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ee906151a0565b60405180910390fd5b6113ff612a64565b565b61141c83838360405180602001604052806000815250612227565b505050565b61142961264b565b73ffffffffffffffffffffffffffffffffffffffff16611447611eb8565b73ffffffffffffffffffffffffffffffffffffffff161461149d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611494906151a0565b60405180910390fd5b8060128190555050565b60006114b16111a3565b82106114f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e990615280565b60405180910390fd5b6008828154811061152c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b61154661264b565b73ffffffffffffffffffffffffffffffffffffffff16611564611eb8565b73ffffffffffffffffffffffffffffffffffffffff16146115ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b1906151a0565b60405180910390fd5b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611605573d6000803e3d6000fd5b505050565b600d60019054906101000a900460ff16611659576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611650906152c0565b60405180910390fd5b60105481111561169e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169590615060565b60405180910390fd5b6012546013546116ae91906154a7565b6116c8826116ba6111a3565b612b0690919063ffffffff16565b1115611709576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170090615340565b60405180910390fd5b3461171f82601154612b1c90919063ffffffff16565b1115611760576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175790615020565b60405180910390fd5b60005b818110156117c15760006012546117786111a3565b61178291906154a7565b905060125460135461179491906154a7565b61179c6111a3565b10156117ad576117ac338261270c565b5b5080806117b9906156b6565b915050611763565b5050565b6117cd61264b565b73ffffffffffffffffffffffffffffffffffffffff166117eb611eb8565b73ffffffffffffffffffffffffffffffffffffffff1614611841576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611838906151a0565b60405180910390fd5b80600c908051906020019061185792919061393e565b5050565b6000600a60009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561191b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191290615120565b60405180910390fd5b80915050919050565b600d60009054906101000a900460ff16611973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196a90615320565b60405180910390fd5b600e5461197e6111a3565b106119be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b5906152a0565b60405180910390fd5b600e548110611a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f9906150a0565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401611a749190615360565b60206040518083038186803b158015611a8c57600080fd5b505afa158015611aa0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ac49190613cae565b73ffffffffffffffffffffffffffffffffffffffff1614611b1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1190615300565b60405180910390fd5b611b24338261270c565b50565b611b2f61264b565b73ffffffffffffffffffffffffffffffffffffffff16611b4d611eb8565b73ffffffffffffffffffffffffffffffffffffffff1614611ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9a906151a0565b60405180910390fd5b60005b8251811015611c4c57611c39838281518110611beb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151838381518110611c2c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015161270c565b8080611c44906156b6565b915050611ba6565b505050565b600c8054611c5e90615684565b80601f0160208091040260200160405190810160405280929190818152602001828054611c8a90615684565b8015611cd75780601f10611cac57610100808354040283529160200191611cd7565b820191906000526020600020905b815481529060010190602001808311611cba57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4790615100565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611d9f61264b565b73ffffffffffffffffffffffffffffffffffffffff16611dbd611eb8565b73ffffffffffffffffffffffffffffffffffffffff1614611e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0a906151a0565b60405180910390fd5b611e1d6000612b32565b565b600d60009054906101000a900460ff1681565b611e3a61264b565b73ffffffffffffffffffffffffffffffffffffffff16611e58611eb8565b73ffffffffffffffffffffffffffffffffffffffff1614611eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea5906151a0565b60405180910390fd5b611eb6612bf8565b565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611ef190615684565b80601f0160208091040260200160405190810160405280929190818152602001828054611f1d90615684565b8015611f6a5780601f10611f3f57610100808354040283529160200191611f6a565b820191906000526020600020905b815481529060010190602001808311611f4d57829003601f168201915b5050505050905090565b611f7c61264b565b73ffffffffffffffffffffffffffffffffffffffff16611f9a611eb8565b73ffffffffffffffffffffffffffffffffffffffff1614611ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe7906151a0565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b61202461264b565b73ffffffffffffffffffffffffffffffffffffffff16612042611eb8565b73ffffffffffffffffffffffffffffffffffffffff1614612098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208f906151a0565b60405180910390fd5b6120a2828261270c565b5050565b6120ae61264b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561211c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211390615000565b60405180910390fd5b806005600061212961264b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166121d661264b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161221b9190614ec3565b60405180910390a35050565b61223861223261264b565b8361272a565b612277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226e90615260565b60405180910390fd5b61228384848484612c9b565b50505050565b60115481565b606061229a826125df565b6122d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d0906151e0565b60405180910390fd5b60006122e3612cf7565b90506000815111612303576040518060200160405280600081525061232e565b8061230d84612d89565b60405160200161231e929190614e0f565b6040516020818303038152906040525b915050919050565b600d60019054906101000a900460ff1681565b61235161264b565b73ffffffffffffffffffffffffffffffffffffffff1661236f611eb8565b73ffffffffffffffffffffffffffffffffffffffff16146123c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123bc906151a0565b60405180910390fd5b6123cf828261270c565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e5481565b61247561264b565b73ffffffffffffffffffffffffffffffffffffffff16612493611eb8565b73ffffffffffffffffffffffffffffffffffffffff16146124e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e0906151a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612559576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255090614f80565b60405180910390fd5b61256281612b32565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806125d857506125d782612f36565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166126c683611872565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b612726828260405180602001604052806000815250613018565b5050565b6000612735826125df565b612774576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276b90615040565b60405180910390fd5b600061277f83611872565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806127ee57508373ffffffffffffffffffffffffffffffffffffffff166127d684610a83565b73ffffffffffffffffffffffffffffffffffffffff16145b806127ff57506127fe81856123d3565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661282882611872565b73ffffffffffffffffffffffffffffffffffffffff161461287e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612875906151c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e590614fe0565b60405180910390fd5b6128f9838383613073565b612904600082612653565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129549190615588565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129ab91906154a7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612a6c61185b565b612aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa290614f20565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612aef61264b565b604051612afc9190614e33565b60405180910390a1565b60008183612b1491906154a7565b905092915050565b60008183612b2a919061552e565b905092915050565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c0061185b565b15612c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c37906150c0565b60405180910390fd5b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612c8461264b565b604051612c919190614e33565b60405180910390a1565b612ca6848484612808565b612cb2848484846130cb565b612cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce890614f60565b60405180910390fd5b50505050565b6060600c8054612d0690615684565b80601f0160208091040260200160405190810160405280929190818152602001828054612d3290615684565b8015612d7f5780601f10612d5457610100808354040283529160200191612d7f565b820191906000526020600020905b815481529060010190602001808311612d6257829003601f168201915b5050505050905090565b60606000821415612dd1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f31565b600082905060005b60008214612e03578080612dec906156b6565b915050600a82612dfc91906154fd565b9150612dd9565b60008167ffffffffffffffff811115612e45577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612e775781602001600182028036833780820191505090505b5090505b60008514612f2a57600182612e909190615588565b9150600a85612e9f91906156ff565b6030612eab91906154a7565b60f81b818381518110612ee7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f2391906154fd565b9450612e7b565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061300157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80613011575061301082613262565b5b9050919050565b61302283836132cc565b61302f60008484846130cb565b61306e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306590614f60565b60405180910390fd5b505050565b61307b61185b565b156130bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130b2906150c0565b60405180910390fd5b6130c683838361349a565b505050565b60006130ec8473ffffffffffffffffffffffffffffffffffffffff166135ae565b15613255578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261311561264b565b8786866040518563ffffffff1660e01b81526004016131379493929190614e4e565b602060405180830381600087803b15801561315157600080fd5b505af192505050801561318257506040513d601f19601f8201168201806040525081019061317f9190613f13565b60015b613205573d80600081146131b2576040519150601f19603f3d011682016040523d82523d6000602084013e6131b7565b606091505b506000815114156131fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131f490614f60565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061325a565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561333c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161333390615140565b60405180910390fd5b613345816125df565b15613385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161337c90614fc0565b60405180910390fd5b61339160008383613073565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133e191906154a7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6134a58383836135c1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156134e8576134e3816135c6565b613527565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461352657613525838261360f565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561356a576135658161377c565b6135a9565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146135a8576135a782826138bf565b5b5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161361c84611cdf565b6136269190615588565b905060006007600084815260200190815260200160002054905081811461370b576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506137909190615588565b90506000600960008481526020019081526020016000205490506000600883815481106137e6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811061382e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806138a3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006138ca83611cdf565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b82805461394a90615684565b90600052602060002090601f01602090048101928261396c57600085556139b3565b82601f1061398557805160ff19168380011785556139b3565b828001600101855582156139b3579182015b828111156139b2578251825591602001919060010190613997565b5b5090506139c091906139c4565b5090565b5b808211156139dd5760008160009055506001016139c5565b5090565b60006139f46139ef846153ac565b61537b565b90508083825260208201905082856020860282011115613a1357600080fd5b60005b85811015613a435781613a298882613b35565b845260208401935060208301925050600181019050613a16565b5050509392505050565b6000613a60613a5b846153d8565b61537b565b90508083825260208201905082856020860282011115613a7f57600080fd5b60005b85811015613aaf5781613a958882613c5b565b845260208401935060208301925050600181019050613a82565b5050509392505050565b6000613acc613ac784615404565b61537b565b905082815260208101848484011115613ae457600080fd5b613aef848285615642565b509392505050565b6000613b0a613b0584615434565b61537b565b905082815260208101848484011115613b2257600080fd5b613b2d848285615642565b509392505050565b600081359050613b44816157fd565b92915050565b600081519050613b59816157fd565b92915050565b600081359050613b6e81615814565b92915050565b600082601f830112613b8557600080fd5b8135613b958482602086016139e1565b91505092915050565b600082601f830112613baf57600080fd5b8135613bbf848260208601613a4d565b91505092915050565b600081359050613bd78161582b565b92915050565b600081359050613bec81615842565b92915050565b600081519050613c0181615842565b92915050565b600082601f830112613c1857600080fd5b8135613c28848260208601613ab9565b91505092915050565b600082601f830112613c4257600080fd5b8135613c52848260208601613af7565b91505092915050565b600081359050613c6a81615859565b92915050565b600081519050613c7f81615859565b92915050565b600060208284031215613c9757600080fd5b6000613ca584828501613b35565b91505092915050565b600060208284031215613cc057600080fd5b6000613cce84828501613b4a565b91505092915050565b600060208284031215613ce957600080fd5b6000613cf784828501613b5f565b91505092915050565b60008060408385031215613d1357600080fd5b6000613d2185828601613b35565b9250506020613d3285828601613b35565b9150509250929050565b600080600060608486031215613d5157600080fd5b6000613d5f86828701613b35565b9350506020613d7086828701613b35565b9250506040613d8186828701613c5b565b9150509250925092565b60008060008060808587031215613da157600080fd5b6000613daf87828801613b35565b9450506020613dc087828801613b35565b9350506040613dd187828801613c5b565b925050606085013567ffffffffffffffff811115613dee57600080fd5b613dfa87828801613c07565b91505092959194509250565b60008060408385031215613e1957600080fd5b6000613e2785828601613b35565b9250506020613e3885828601613bc8565b9150509250929050565b60008060408385031215613e5557600080fd5b6000613e6385828601613b35565b9250506020613e7485828601613c5b565b9150509250929050565b60008060408385031215613e9157600080fd5b600083013567ffffffffffffffff811115613eab57600080fd5b613eb785828601613b74565b925050602083013567ffffffffffffffff811115613ed457600080fd5b613ee085828601613b9e565b9150509250929050565b600060208284031215613efc57600080fd5b6000613f0a84828501613bdd565b91505092915050565b600060208284031215613f2557600080fd5b6000613f3384828501613bf2565b91505092915050565b600060208284031215613f4e57600080fd5b600082013567ffffffffffffffff811115613f6857600080fd5b613f7484828501613c31565b91505092915050565b600060208284031215613f8f57600080fd5b6000613f9d84828501613c5b565b91505092915050565b600060208284031215613fb857600080fd5b6000613fc684828501613c70565b91505092915050565b60008060408385031215613fe257600080fd5b6000613ff085828601613c5b565b925050602061400185828601613c5b565b9150509250929050565b614014816155bc565b82525050565b614023816155e0565b82525050565b600061403482615464565b61403e818561547a565b935061404e818560208601615651565b614057816157ec565b840191505092915050565b600061406d8261546f565b614077818561548b565b9350614087818560208601615651565b614090816157ec565b840191505092915050565b60006140a68261546f565b6140b0818561549c565b93506140c0818560208601615651565b80840191505092915050565b60006140d960358361548b565b91507f4d75737420686f6c64206174206c65617374206f6e6520496e6372656d656e7460008301527f756d20746f206d696e7420612042656e746f426f7800000000000000000000006020830152604082019050919050565b600061413f60148361548b565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b600061417f602b8361548b565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006141e560328361548b565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061424b60268361548b565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006142b1602f8361548b565b91507f436c61696d20706572696f64206d7573742062652061637469766520746f206360008301527f6c61696d2042656e746f426f78657300000000000000000000000000000000006020830152604082019050919050565b6000614317601c8361548b565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061435760248361548b565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006143bd60198361548b565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006143fd601f8361548b565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b600061443d602c8361548b565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006144a360218361548b565b91507f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d60008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061450960308361548b565b91507f43616e6e6f7420657863656564206d617820737570706c79206f6620636c616960008301527f6d61626c652042656e746f426f786573000000000000000000000000000000006020830152604082019050919050565b600061456f60258361548b565b91507f52657175657374656420746f6b656e496420657863656564732075707065722060008301527f626f756e640000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006145d560108361548b565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b600061461560388361548b565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061467b602a8361548b565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006146e160298361548b565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061474760208361548b565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b600061478760578361548b565b91507f43616e6e6f7420636c61696d206d6f7265207468616e203530206174206f6e6360008301527f652e20526561736f6e3a20596f75206d696768742072756e206f7574206f662060208301527f6761732e20444d20406465726220746f20636c61696d2e0000000000000000006040830152606082019050919050565b6000614813602c8361548b565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061487960208361548b565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006148b960298361548b565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061491f602f8361548b565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614985601f8361548b565b91507f4d757374206d696e74206174206c65617374206f6e652042656e746f426f78006000830152602082019050919050565b60006149c560218361548b565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a2b60278361548b565b91507f43616e6e6f74206d696e7420616e20616c726561647920636c61696d6564204260008301527f656e746f426f78000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a9160318361548b565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614af7602c8361548b565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000614b5d60388361548b565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f6620436c61696d61626c652042656e746f426f78657300000000000000006020830152604082019050919050565b6000614bc360268361548b565b91507f53616c65206d7573742062652061637469766520746f206d696e742042656e7460008301527f6f426f78657300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c2960558361548b565b91507f4d75737420686f6c64206174206c65617374206173206d616e7920496e63726560008301527f6d656e74756d7320617320746865206e756d626572206f662042656e746f426f60208301527f7820796f7520696e74656e6420746f20636c61696d00000000000000000000006040830152606082019050919050565b6000614cb560428361548b565b91507f4d757374206f776e2074686520496e6372656d656e74756d20666f722072657160008301527f75657374656420746f6b656e496420746f20636c61696d20612042656e746f4260208301527f6f780000000000000000000000000000000000000000000000000000000000006040830152606082019050919050565b6000614d41602f8361548b565b91507f436c61696d20706572696f64206d7573742062652061637469766520746f206360008301527f6c61696d20612042656e746f426f7800000000000000000000000000000000006020830152604082019050919050565b6000614da7602e8361548b565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f662042656e746f426f7865730000000000000000000000000000000000006020830152604082019050919050565b614e0981615638565b82525050565b6000614e1b828561409b565b9150614e27828461409b565b91508190509392505050565b6000602082019050614e48600083018461400b565b92915050565b6000608082019050614e63600083018761400b565b614e70602083018661400b565b614e7d6040830185614e00565b8181036060830152614e8f8184614029565b905095945050505050565b6000604082019050614eaf600083018561400b565b614ebc6020830184614e00565b9392505050565b6000602082019050614ed8600083018461401a565b92915050565b60006020820190508181036000830152614ef88184614062565b905092915050565b60006020820190508181036000830152614f19816140cc565b9050919050565b60006020820190508181036000830152614f3981614132565b9050919050565b60006020820190508181036000830152614f5981614172565b9050919050565b60006020820190508181036000830152614f79816141d8565b9050919050565b60006020820190508181036000830152614f998161423e565b9050919050565b60006020820190508181036000830152614fb9816142a4565b9050919050565b60006020820190508181036000830152614fd98161430a565b9050919050565b60006020820190508181036000830152614ff98161434a565b9050919050565b60006020820190508181036000830152615019816143b0565b9050919050565b60006020820190508181036000830152615039816143f0565b9050919050565b6000602082019050818103600083015261505981614430565b9050919050565b6000602082019050818103600083015261507981614496565b9050919050565b60006020820190508181036000830152615099816144fc565b9050919050565b600060208201905081810360008301526150b981614562565b9050919050565b600060208201905081810360008301526150d9816145c8565b9050919050565b600060208201905081810360008301526150f981614608565b9050919050565b600060208201905081810360008301526151198161466e565b9050919050565b60006020820190508181036000830152615139816146d4565b9050919050565b600060208201905081810360008301526151598161473a565b9050919050565b600060208201905081810360008301526151798161477a565b9050919050565b6000602082019050818103600083015261519981614806565b9050919050565b600060208201905081810360008301526151b98161486c565b9050919050565b600060208201905081810360008301526151d9816148ac565b9050919050565b600060208201905081810360008301526151f981614912565b9050919050565b6000602082019050818103600083015261521981614978565b9050919050565b60006020820190508181036000830152615239816149b8565b9050919050565b6000602082019050818103600083015261525981614a1e565b9050919050565b6000602082019050818103600083015261527981614a84565b9050919050565b6000602082019050818103600083015261529981614aea565b9050919050565b600060208201905081810360008301526152b981614b50565b9050919050565b600060208201905081810360008301526152d981614bb6565b9050919050565b600060208201905081810360008301526152f981614c1c565b9050919050565b6000602082019050818103600083015261531981614ca8565b9050919050565b6000602082019050818103600083015261533981614d34565b9050919050565b6000602082019050818103600083015261535981614d9a565b9050919050565b60006020820190506153756000830184614e00565b92915050565b6000604051905081810181811067ffffffffffffffff821117156153a2576153a16157bd565b5b8060405250919050565b600067ffffffffffffffff8211156153c7576153c66157bd565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156153f3576153f26157bd565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561541f5761541e6157bd565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561544f5761544e6157bd565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006154b282615638565b91506154bd83615638565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156154f2576154f1615730565b5b828201905092915050565b600061550882615638565b915061551383615638565b9250826155235761552261575f565b5b828204905092915050565b600061553982615638565b915061554483615638565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561557d5761557c615730565b5b828202905092915050565b600061559382615638565b915061559e83615638565b9250828210156155b1576155b0615730565b5b828203905092915050565b60006155c782615618565b9050919050565b60006155d982615618565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561566f578082015181840152602081019050615654565b8381111561567e576000848401525b50505050565b6000600282049050600182168061569c57607f821691505b602082108114156156b0576156af61578e565b5b50919050565b60006156c182615638565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156156f4576156f3615730565b5b600182019050919050565b600061570a82615638565b915061571583615638565b9250826157255761572461575f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b615806816155bc565b811461581157600080fd5b50565b61581d816155ce565b811461582857600080fd5b50565b615834816155e0565b811461583f57600080fd5b50565b61584b816155ec565b811461585657600080fd5b50565b61586281615638565b811461586d57600080fd5b5056fea264697066735822122091c12bd3fdd84bdc3274fec6a27d45e6dcfd97db1603d7dfdf3a9bbfd86e879464736f6c63430008000033

Deployed Bytecode Sourcemap

52422:7153:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59360:212;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21425:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22984:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22507:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53359:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57816:1121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54790:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56162:196;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35130:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53738:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54922:110;;;;;;;;;;;;;:::i;:::-;;23874:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34798:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54374:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53462:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55321:65;;;;;;;;;;;;;:::i;:::-;;24284:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54586:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35320:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55482:149;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56485:760;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54690:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41695:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21119:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57257:547;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55841:184;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52740:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20849:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44513:94;;;;;;;;;;;;;:::i;:::-;;52895:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55252:61;;;;;;;;;;;;;:::i;:::-;;43862:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21594:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55044:107;;;;;;;;;;;;;:::i;:::-;;55724:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23277:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24540:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53549:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21769:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53044:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56037:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23643:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53137:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44762:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59360:212;59499:4;59528:36;59552:11;59528:23;:36::i;:::-;59521:43;;59360:212;;;:::o;21425:100::-;21479:13;21512:5;21505:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21425:100;:::o;22984:221::-;23060:7;23088:16;23096:7;23088;:16::i;:::-;23080:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23173:15;:24;23189:7;23173:24;;;;;;;;;;;;;;;;;;;;;23166:31;;22984:221;;;:::o;22507:411::-;22588:13;22604:23;22619:7;22604:14;:23::i;:::-;22588:39;;22652:5;22646:11;;:2;:11;;;;22638:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;22746:5;22730:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22755:37;22772:5;22779:12;:10;:12::i;:::-;22755:16;:37::i;:::-;22730:62;22708:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;22889:21;22898:2;22902:7;22889:8;:21::i;:::-;22507:411;;;:::o;53359:24::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;57816:1121::-;57919:2;57903:12;:18;;57895:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;58032:19;;;;;;;;;;;58024:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;58137:1;58122:12;:16;58114:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;58185:12;58200:4;;;;;;;;;;;:14;;;58215:10;58200:26;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58185:41;;58255:1;58245:7;:11;58237:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;58360:12;58344:13;:28;;;;:::i;:::-;58333:7;:39;;58325:137;;;;;;;;;;;;:::i;:::-;;;;;;;;;58479:6;58475:455;58495:7;58491:1;:11;:31;;;;;58510:12;58506:1;:16;58491:31;58475:455;;;58568:12;;58552:13;:11;:13::i;:::-;:28;58544:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;58648:12;58663:4;;;;;;;;;;;:24;;;58688:10;58704:13;58700:1;:17;;;;:::i;:::-;58663:55;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58648:70;;58738:16;58746:7;58738;:16::i;:::-;58733:186;;58775:30;58785:10;58797:7;58775:9;:30::i;:::-;58733:186;;;58854:5;58846:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;58733:186;58475:455;58524:3;;;;;:::i;:::-;;;;58475:455;;;;57816:1121;;;:::o;54790:120::-;44093:12;:10;:12::i;:::-;44082:23;;:7;:5;:7::i;:::-;:23;;;44074:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54888:14:::1;54875:10;:27;;;;;;;;;;;;:::i;:::-;;54790:120:::0;:::o;56162:196::-;44093:12;:10;:12::i;:::-;44082:23;;:7;:5;:7::i;:::-;:23;;;44074:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56258:6:::1;56253:98;56274:7;56270:1;:11;56253:98;;;56303:36;56313:10;56337:1;56325:9;:13;;;;:::i;:::-;56303:9;:36::i;:::-;56283:3;;;;;:::i;:::-;;;;56253:98;;;;56162:196:::0;;:::o;35130:113::-;35191:7;35218:10;:17;;;;35211:24;;35130:113;:::o;53738:34::-;;;;:::o;54922:110::-;44093:12;:10;:12::i;:::-;44082:23;;:7;:5;:7::i;:::-;:23;;;44074:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55005:19:::1;;;;;;;;;;;55004:20;54982:19;;:42;;;;;;;;;;;;;;;;;;54922:110::o:0;23874:339::-;24069:41;24088:12;:10;:12::i;:::-;24102:7;24069:18;:41::i;:::-;24061:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24177:28;24187:4;24193:2;24197:7;24177:9;:28::i;:::-;23874:339;;;:::o;34798:256::-;34895:7;34931:23;34948:5;34931:16;:23::i;:::-;34923:5;:31;34915:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;35020:12;:19;35033:5;35020:19;;;;;;;;;;;;;;;:26;35040:5;35020:26;;;;;;;;;;;;35013:33;;34798:256;;;;:::o;54374:106::-;54432:4;54456:16;54464:7;54456;:16::i;:::-;54449:23;;54374:106;;;:::o;53462:34::-;;;;:::o;55321:65::-;44093:12;:10;:12::i;:::-;44082:23;;:7;:5;:7::i;:::-;:23;;;44074:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55368:10:::1;:8;:10::i;:::-;55321:65::o:0;24284:185::-;24422:39;24439:4;24445:2;24449:7;24422:39;;;;;;;;;;;;:16;:39::i;:::-;24284:185;;;:::o;54586:92::-;44093:12;:10;:12::i;:::-;44082:23;;:7;:5;:7::i;:::-;:23;;;44074:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54669:1:::1;54652:14;:18;;;;54586:92:::0;:::o;35320:233::-;35395:7;35431:30;:28;:30::i;:::-;35423:5;:38;35415:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;35528:10;35539:5;35528:17;;;;;;;;;;;;;;;;;;;;;;;;35521:24;;35320:233;;;:::o;55482:149::-;44093:12;:10;:12::i;:::-;44082:23;;:7;:5;:7::i;:::-;:23;;;44074:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55552:12:::1;55567:21;55552:36;;55599:6;:15;;:24;55615:7;55599:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;44153:1;55482:149:::0;:::o;56485:760::-;56564:18;;;;;;;;;;;56556:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;56662:19;;56644:14;:37;;56636:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;56797:14;;56775:19;;:36;;;;:::i;:::-;56738:33;56756:14;56738:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:73;;56730:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;56918:9;56881:33;56899:14;56881:13;;:17;;:33;;;;:::i;:::-;:46;;56873:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;56988:6;56984:254;57004:14;57000:1;:18;56984:254;;;57040:14;57073;;57057:13;:11;:13::i;:::-;:30;;;;:::i;:::-;57040:47;;57144:14;;57122:19;;:36;;;;:::i;:::-;57106:13;:11;:13::i;:::-;:52;57102:125;;;57179:32;57189:10;57201:9;57179;:32::i;:::-;57102:125;56984:254;57020:3;;;;;:::i;:::-;;;;56984:254;;;;56485:760;:::o;54690:88::-;44093:12;:10;:12::i;:::-;44082:23;;:7;:5;:7::i;:::-;:23;;;44074:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54767:3:::1;54757:7;:13;;;;;;;;;;;;:::i;:::-;;54690:88:::0;:::o;41695:86::-;41742:4;41766:7;;;;;;;;;;;41759:14;;41695:86;:::o;21119:239::-;21191:7;21211:13;21227:7;:16;21235:7;21227:16;;;;;;;;;;;;;;;;;;;;;21211:32;;21279:1;21262:19;;:5;:19;;;;21254:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21345:5;21338:12;;;21119:239;;;:::o;57257:547::-;57329:19;;;;;;;;;;;57321:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;57435:12;;57419:13;:11;:13::i;:::-;:28;57411:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;57548:12;;57527:18;:33;57519:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;57657:10;57621:46;;:4;;;;;;;;;;;:12;;;57634:18;57621:32;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:46;;;57613:125;;;;;;;;;;;;:::i;:::-;;;;;;;;;57755:41;57765:10;57777:18;57755:9;:41::i;:::-;57257:547;:::o;55841:184::-;44093:12;:10;:12::i;:::-;44082:23;;:7;:5;:7::i;:::-;:23;;;44074:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55933:6:::1;55929:89;55949:3;:10;55945:1;:14;55929:89;;;55981:25;55991:3;55995:1;55991:6;;;;;;;;;;;;;;;;;;;;;;55999:3;56003:1;55999:6;;;;;;;;;;;;;;;;;;;;;;55981:9;:25::i;:::-;55961:3;;;;;:::i;:::-;;;;55929:89;;;;55841:184:::0;;:::o;52740:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20849:208::-;20921:7;20966:1;20949:19;;:5;:19;;;;20941:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21033:9;:16;21043:5;21033:16;;;;;;;;;;;;;;;;21026:23;;20849:208;;;:::o;44513:94::-;44093:12;:10;:12::i;:::-;44082:23;;:7;:5;:7::i;:::-;:23;;;44074:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44578:21:::1;44596:1;44578:9;:21::i;:::-;44513:94::o:0;52895:31::-;;;;;;;;;;;;;:::o;55252:61::-;44093:12;:10;:12::i;:::-;44082:23;;:7;:5;:7::i;:::-;:23;;;44074:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55297:8:::1;:6;:8::i;:::-;55252:61::o:0;43862:87::-;43908:7;43935:6;;;;;;;;;;;43928:13;;43862:87;:::o;21594:104::-;21650:13;21683:7;21676:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21594:104;:::o;55044:107::-;44093:12;:10;:12::i;:::-;44082:23;;:7;:5;:7::i;:::-;:23;;;44074:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55125:18:::1;;;;;;;;;;;55124:19;55103:18;;:40;;;;;;;;;;;;;;;;;;55044:107::o:0;55724:105::-;44093:12;:10;:12::i;:::-;44082:23;;:7;:5;:7::i;:::-;:23;;;44074:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55799:22:::1;55809:2;55813:7;55799:9;:22::i;:::-;55724:105:::0;;:::o;23277:295::-;23392:12;:10;:12::i;:::-;23380:24;;:8;:24;;;;23372:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23492:8;23447:18;:32;23466:12;:10;:12::i;:::-;23447:32;;;;;;;;;;;;;;;:42;23480:8;23447:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23545:8;23516:48;;23531:12;:10;:12::i;:::-;23516:48;;;23555:8;23516:48;;;;;;:::i;:::-;;;;;;;;23277:295;;:::o;24540:328::-;24715:41;24734:12;:10;:12::i;:::-;24748:7;24715:18;:41::i;:::-;24707:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24821:39;24835:4;24841:2;24845:7;24854:5;24821:13;:39::i;:::-;24540:328;;;;:::o;53549:28::-;;;;:::o;21769:334::-;21842:13;21876:16;21884:7;21876;:16::i;:::-;21868:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;21957:21;21981:10;:8;:10::i;:::-;21957:34;;22033:1;22015:7;22009:21;:25;:86;;;;;;;;;;;;;;;;;22061:7;22070:18;:7;:16;:18::i;:::-;22044:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22009:86;22002:93;;;21769:334;;;:::o;53044:30::-;;;;;;;;;;;;;:::o;56037:113::-;44093:12;:10;:12::i;:::-;44082:23;;:7;:5;:7::i;:::-;:23;;;44074:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56120:22:::1;56130:2;56134:7;56120:9;:22::i;:::-;56037:113:::0;;:::o;23643:164::-;23740:4;23764:18;:25;23783:5;23764:25;;;;;;;;;;;;;;;:35;23790:8;23764:35;;;;;;;;;;;;;;;;;;;;;;;;;23757:42;;23643:164;;;;:::o;53137:27::-;;;;:::o;44762:192::-;44093:12;:10;:12::i;:::-;44082:23;;:7;:5;:7::i;:::-;:23;;;44074:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44871:1:::1;44851:22;;:8;:22;;;;44843:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;44927:19;44937:8;44927:9;:19::i;:::-;44762:192:::0;:::o;34490:224::-;34592:4;34631:35;34616:50;;;:11;:50;;;;:90;;;;34670:36;34694:11;34670:23;:36::i;:::-;34616:90;34609:97;;34490:224;;;:::o;26378:127::-;26443:4;26495:1;26467:30;;:7;:16;26475:7;26467:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26460:37;;26378:127;;;:::o;15951:98::-;16004:7;16031:10;16024:17;;15951:98;:::o;30360:174::-;30462:2;30435:15;:24;30451:7;30435:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30518:7;30514:2;30480:46;;30489:23;30504:7;30489:14;:23::i;:::-;30480:46;;;;;;;;;;;;30360:174;;:::o;27362:110::-;27438:26;27448:2;27452:7;27438:26;;;;;;;;;;;;:9;:26::i;:::-;27362:110;;:::o;26672:348::-;26765:4;26790:16;26798:7;26790;:16::i;:::-;26782:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26866:13;26882:23;26897:7;26882:14;:23::i;:::-;26866:39;;26935:5;26924:16;;:7;:16;;;:51;;;;26968:7;26944:31;;:20;26956:7;26944:11;:20::i;:::-;:31;;;26924:51;:87;;;;26979:32;26996:5;27003:7;26979:16;:32::i;:::-;26924:87;26916:96;;;26672:348;;;;:::o;29664:578::-;29823:4;29796:31;;:23;29811:7;29796:14;:23::i;:::-;:31;;;29788:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29906:1;29892:16;;:2;:16;;;;29884:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;29962:39;29983:4;29989:2;29993:7;29962:20;:39::i;:::-;30066:29;30083:1;30087:7;30066:8;:29::i;:::-;30127:1;30108:9;:15;30118:4;30108:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30156:1;30139:9;:13;30149:2;30139:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30187:2;30168:7;:16;30176:7;30168:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30226:7;30222:2;30207:27;;30216:4;30207:27;;;;;;;;;;;;29664:578;;;:::o;42754:120::-;42298:8;:6;:8::i;:::-;42290:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;42823:5:::1;42813:7;;:15;;;;;;;;;;;;;;;;;;42844:22;42853:12;:10;:12::i;:::-;42844:22;;;;;;:::i;:::-;;;;;;;;42754:120::o:0;47919:98::-;47977:7;48008:1;48004;:5;;;;:::i;:::-;47997:12;;47919:98;;;;:::o;48657:::-;48715:7;48746:1;48742;:5;;;;:::i;:::-;48735:12;;48657:98;;;;:::o;44962:173::-;45018:16;45037:6;;;;;;;;;;;45018:25;;45063:8;45054:6;;:17;;;;;;;;;;;;;;;;;;45118:8;45087:40;;45108:8;45087:40;;;;;;;;;;;;44962:173;;:::o;42495:118::-;42021:8;:6;:8::i;:::-;42020:9;42012:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;42565:4:::1;42555:7;;:14;;;;;;;;;;;;;;;;;;42585:20;42592:12;:10;:12::i;:::-;42585:20;;;;;;:::i;:::-;;;;;;;;42495:118::o:0;25750:315::-;25907:28;25917:4;25923:2;25927:7;25907:9;:28::i;:::-;25954:48;25977:4;25983:2;25987:7;25996:5;25954:22;:48::i;:::-;25946:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25750:315;;;;:::o;54266:100::-;54318:13;54351:7;54344:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54266:100;:::o;16461:723::-;16517:13;16747:1;16738:5;:10;16734:53;;;16765:10;;;;;;;;;;;;;;;;;;;;;16734:53;16797:12;16812:5;16797:20;;16828:14;16853:78;16868:1;16860:4;:9;16853:78;;16886:8;;;;;:::i;:::-;;;;16917:2;16909:10;;;;;:::i;:::-;;;16853:78;;;16941:19;16973:6;16963:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16941:39;;16991:154;17007:1;16998:5;:10;16991:154;;17035:1;17025:11;;;;;:::i;:::-;;;17102:2;17094:5;:10;;;;:::i;:::-;17081:2;:24;;;;:::i;:::-;17068:39;;17051:6;17058;17051:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;17131:2;17122:11;;;;;:::i;:::-;;;16991:154;;;17169:6;17155:21;;;;;16461:723;;;;:::o;20480:305::-;20582:4;20634:25;20619:40;;;:11;:40;;;;:105;;;;20691:33;20676:48;;;:11;:48;;;;20619:105;:158;;;;20741:36;20765:11;20741:23;:36::i;:::-;20619:158;20599:178;;20480:305;;;:::o;27699:321::-;27829:18;27835:2;27839:7;27829:5;:18::i;:::-;27880:54;27911:1;27915:2;27919:7;27928:5;27880:22;:54::i;:::-;27858:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;27699:321;;;:::o;59055:227::-;42021:8;:6;:8::i;:::-;42020:9;42012:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;59229:45:::1;59256:4;59262:2;59266:7;59229:26;:45::i;:::-;59055:227:::0;;;:::o;31099:799::-;31254:4;31275:15;:2;:13;;;:15::i;:::-;31271:620;;;31327:2;31311:36;;;31348:12;:10;:12::i;:::-;31362:4;31368:7;31377:5;31311:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31307:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31570:1;31553:6;:13;:18;31549:272;;;31596:60;;;;;;;;;;:::i;:::-;;;;;;;;31549:272;31771:6;31765:13;31756:6;31752:2;31748:15;31741:38;31307:529;31444:41;;;31434:51;;;:6;:51;;;;31427:58;;;;;31271:620;31875:4;31868:11;;31099:799;;;;;;;:::o;19001:157::-;19086:4;19125:25;19110:40;;;:11;:40;;;;19103:47;;19001:157;;;:::o;28356:382::-;28450:1;28436:16;;:2;:16;;;;28428:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28509:16;28517:7;28509;:16::i;:::-;28508:17;28500:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28571:45;28600:1;28604:2;28608:7;28571:20;:45::i;:::-;28646:1;28629:9;:13;28639:2;28629:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28677:2;28658:7;:16;28666:7;28658:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28722:7;28718:2;28697:33;;28714:1;28697:33;;;;;;;;;;;;28356:382;;:::o;36166:589::-;36310:45;36337:4;36343:2;36347:7;36310:26;:45::i;:::-;36388:1;36372:18;;:4;:18;;;36368:187;;;36407:40;36439:7;36407:31;:40::i;:::-;36368:187;;;36477:2;36469:10;;:4;:10;;;36465:90;;36496:47;36529:4;36535:7;36496:32;:47::i;:::-;36465:90;36368:187;36583:1;36569:16;;:2;:16;;;36565:183;;;36602:45;36639:7;36602:36;:45::i;:::-;36565:183;;;36675:4;36669:10;;:2;:10;;;36665:83;;36696:40;36724:2;36728:7;36696:27;:40::i;:::-;36665:83;36565:183;36166:589;;;:::o;8010:387::-;8070:4;8278:12;8345:7;8333:20;8325:28;;8388:1;8381:4;:8;8374:15;;;8010:387;;;:::o;32470:126::-;;;;:::o;37478:164::-;37582:10;:17;;;;37555:15;:24;37571:7;37555:24;;;;;;;;;;;:44;;;;37610:10;37626:7;37610:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37478:164;:::o;38269:988::-;38535:22;38585:1;38560:22;38577:4;38560:16;:22::i;:::-;:26;;;;:::i;:::-;38535:51;;38597:18;38618:17;:26;38636:7;38618:26;;;;;;;;;;;;38597:47;;38765:14;38751:10;:28;38747:328;;38796:19;38818:12;:18;38831:4;38818:18;;;;;;;;;;;;;;;:34;38837:14;38818:34;;;;;;;;;;;;38796:56;;38902:11;38869:12;:18;38882:4;38869:18;;;;;;;;;;;;;;;:30;38888:10;38869:30;;;;;;;;;;;:44;;;;39019:10;38986:17;:30;39004:11;38986:30;;;;;;;;;;;:43;;;;38747:328;;39171:17;:26;39189:7;39171:26;;;;;;;;;;;39164:33;;;39215:12;:18;39228:4;39215:18;;;;;;;;;;;;;;;:34;39234:14;39215:34;;;;;;;;;;;39208:41;;;38269:988;;;;:::o;39552:1079::-;39805:22;39850:1;39830:10;:17;;;;:21;;;;:::i;:::-;39805:46;;39862:18;39883:15;:24;39899:7;39883:24;;;;;;;;;;;;39862:45;;40234:19;40256:10;40267:14;40256:26;;;;;;;;;;;;;;;;;;;;;;;;40234:48;;40320:11;40295:10;40306;40295:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;40431:10;40400:15;:28;40416:11;40400:28;;;;;;;;;;;:41;;;;40572:15;:24;40588:7;40572:24;;;;;;;;;;;40565:31;;;40607:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39552:1079;;;;:::o;37056:221::-;37141:14;37158:20;37175:2;37158:16;:20::i;:::-;37141:37;;37216:7;37189:12;:16;37202:2;37189:16;;;;;;;;;;;;;;;:24;37206:6;37189:24;;;;;;;;;;;:34;;;;37263:6;37234:17;:26;37252:7;37234:26;;;;;;;;;;;:35;;;;37056:221;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:622:1:-;;145:80;160:64;217:6;160:64;:::i;:::-;145:80;:::i;:::-;136:89;;245:5;273:6;266:5;259:21;299:4;292:5;288:16;281:23;;324:6;374:3;366:4;358:6;354:17;349:3;345:27;342:36;339:2;;;391:1;388;381:12;339:2;419:1;404:236;429:6;426:1;423:13;404:236;;;496:3;524:37;557:3;545:10;524:37;:::i;:::-;519:3;512:50;591:4;586:3;582:14;575:21;;625:4;620:3;616:14;609:21;;464:176;451:1;448;444:9;439:14;;404:236;;;408:14;126:520;;;;;;;:::o;669:622::-;;790:80;805:64;862:6;805:64;:::i;:::-;790:80;:::i;:::-;781:89;;890:5;918:6;911:5;904:21;944:4;937:5;933:16;926:23;;969:6;1019:3;1011:4;1003:6;999:17;994:3;990:27;987:36;984:2;;;1036:1;1033;1026:12;984:2;1064:1;1049:236;1074:6;1071:1;1068:13;1049:236;;;1141:3;1169:37;1202:3;1190:10;1169:37;:::i;:::-;1164:3;1157:50;1236:4;1231:3;1227:14;1220:21;;1270:4;1265:3;1261:14;1254:21;;1109:176;1096:1;1093;1089:9;1084:14;;1049:236;;;1053:14;771:520;;;;;;;:::o;1297:342::-;;1399:64;1414:48;1455:6;1414:48;:::i;:::-;1399:64;:::i;:::-;1390:73;;1486:6;1479:5;1472:21;1524:4;1517:5;1513:16;1562:3;1553:6;1548:3;1544:16;1541:25;1538:2;;;1579:1;1576;1569:12;1538:2;1592:41;1626:6;1621:3;1616;1592:41;:::i;:::-;1380:259;;;;;;:::o;1645:344::-;;1748:65;1763:49;1805:6;1763:49;:::i;:::-;1748:65;:::i;:::-;1739:74;;1836:6;1829:5;1822:21;1874:4;1867:5;1863:16;1912:3;1903:6;1898:3;1894:16;1891:25;1888:2;;;1929:1;1926;1919:12;1888:2;1942:41;1976:6;1971:3;1966;1942:41;:::i;:::-;1729:260;;;;;;:::o;1995:139::-;;2079:6;2066:20;2057:29;;2095:33;2122:5;2095:33;:::i;:::-;2047:87;;;;:::o;2140:143::-;;2228:6;2222:13;2213:22;;2244:33;2271:5;2244:33;:::i;:::-;2203:80;;;;:::o;2289:155::-;;2381:6;2368:20;2359:29;;2397:41;2432:5;2397:41;:::i;:::-;2349:95;;;;:::o;2467:303::-;;2587:3;2580:4;2572:6;2568:17;2564:27;2554:2;;2605:1;2602;2595:12;2554:2;2645:6;2632:20;2670:94;2760:3;2752:6;2745:4;2737:6;2733:17;2670:94;:::i;:::-;2661:103;;2544:226;;;;;:::o;2793:303::-;;2913:3;2906:4;2898:6;2894:17;2890:27;2880:2;;2931:1;2928;2921:12;2880:2;2971:6;2958:20;2996:94;3086:3;3078:6;3071:4;3063:6;3059:17;2996:94;:::i;:::-;2987:103;;2870:226;;;;;:::o;3102:133::-;;3183:6;3170:20;3161:29;;3199:30;3223:5;3199:30;:::i;:::-;3151:84;;;;:::o;3241:137::-;;3324:6;3311:20;3302:29;;3340:32;3366:5;3340:32;:::i;:::-;3292:86;;;;:::o;3384:141::-;;3471:6;3465:13;3456:22;;3487:32;3513:5;3487:32;:::i;:::-;3446:79;;;;:::o;3544:271::-;;3648:3;3641:4;3633:6;3629:17;3625:27;3615:2;;3666:1;3663;3656:12;3615:2;3706:6;3693:20;3731:78;3805:3;3797:6;3790:4;3782:6;3778:17;3731:78;:::i;:::-;3722:87;;3605:210;;;;;:::o;3835:273::-;;3940:3;3933:4;3925:6;3921:17;3917:27;3907:2;;3958:1;3955;3948:12;3907:2;3998:6;3985:20;4023:79;4098:3;4090:6;4083:4;4075:6;4071:17;4023:79;:::i;:::-;4014:88;;3897:211;;;;;:::o;4114:139::-;;4198:6;4185:20;4176:29;;4214:33;4241:5;4214:33;:::i;:::-;4166:87;;;;:::o;4259:143::-;;4347:6;4341:13;4332:22;;4363:33;4390:5;4363:33;:::i;:::-;4322:80;;;;:::o;4408:262::-;;4516:2;4504:9;4495:7;4491:23;4487:32;4484:2;;;4532:1;4529;4522:12;4484:2;4575:1;4600:53;4645:7;4636:6;4625:9;4621:22;4600:53;:::i;:::-;4590:63;;4546:117;4474:196;;;;:::o;4676:284::-;;4795:2;4783:9;4774:7;4770:23;4766:32;4763:2;;;4811:1;4808;4801:12;4763:2;4854:1;4879:64;4935:7;4926:6;4915:9;4911:22;4879:64;:::i;:::-;4869:74;;4825:128;4753:207;;;;:::o;4966:278::-;;5082:2;5070:9;5061:7;5057:23;5053:32;5050:2;;;5098:1;5095;5088:12;5050:2;5141:1;5166:61;5219:7;5210:6;5199:9;5195:22;5166:61;:::i;:::-;5156:71;;5112:125;5040:204;;;;:::o;5250:407::-;;;5375:2;5363:9;5354:7;5350:23;5346:32;5343:2;;;5391:1;5388;5381:12;5343:2;5434:1;5459:53;5504:7;5495:6;5484:9;5480:22;5459:53;:::i;:::-;5449:63;;5405:117;5561:2;5587:53;5632:7;5623:6;5612:9;5608:22;5587:53;:::i;:::-;5577:63;;5532:118;5333:324;;;;;:::o;5663:552::-;;;;5805:2;5793:9;5784:7;5780:23;5776:32;5773:2;;;5821:1;5818;5811:12;5773:2;5864:1;5889:53;5934:7;5925:6;5914:9;5910:22;5889:53;:::i;:::-;5879:63;;5835:117;5991:2;6017:53;6062:7;6053:6;6042:9;6038:22;6017:53;:::i;:::-;6007:63;;5962:118;6119:2;6145:53;6190:7;6181:6;6170:9;6166:22;6145:53;:::i;:::-;6135:63;;6090:118;5763:452;;;;;:::o;6221:809::-;;;;;6389:3;6377:9;6368:7;6364:23;6360:33;6357:2;;;6406:1;6403;6396:12;6357:2;6449:1;6474:53;6519:7;6510:6;6499:9;6495:22;6474:53;:::i;:::-;6464:63;;6420:117;6576:2;6602:53;6647:7;6638:6;6627:9;6623:22;6602:53;:::i;:::-;6592:63;;6547:118;6704:2;6730:53;6775:7;6766:6;6755:9;6751:22;6730:53;:::i;:::-;6720:63;;6675:118;6860:2;6849:9;6845:18;6832:32;6891:18;6883:6;6880:30;6877:2;;;6923:1;6920;6913:12;6877:2;6951:62;7005:7;6996:6;6985:9;6981:22;6951:62;:::i;:::-;6941:72;;6803:220;6347:683;;;;;;;:::o;7036:401::-;;;7158:2;7146:9;7137:7;7133:23;7129:32;7126:2;;;7174:1;7171;7164:12;7126:2;7217:1;7242:53;7287:7;7278:6;7267:9;7263:22;7242:53;:::i;:::-;7232:63;;7188:117;7344:2;7370:50;7412:7;7403:6;7392:9;7388:22;7370:50;:::i;:::-;7360:60;;7315:115;7116:321;;;;;:::o;7443:407::-;;;7568:2;7556:9;7547:7;7543:23;7539:32;7536:2;;;7584:1;7581;7574:12;7536:2;7627:1;7652:53;7697:7;7688:6;7677:9;7673:22;7652:53;:::i;:::-;7642:63;;7598:117;7754:2;7780:53;7825:7;7816:6;7805:9;7801:22;7780:53;:::i;:::-;7770:63;;7725:118;7526:324;;;;;:::o;7856:693::-;;;8031:2;8019:9;8010:7;8006:23;8002:32;7999:2;;;8047:1;8044;8037:12;7999:2;8118:1;8107:9;8103:17;8090:31;8148:18;8140:6;8137:30;8134:2;;;8180:1;8177;8170:12;8134:2;8208:78;8278:7;8269:6;8258:9;8254:22;8208:78;:::i;:::-;8198:88;;8061:235;8363:2;8352:9;8348:18;8335:32;8394:18;8386:6;8383:30;8380:2;;;8426:1;8423;8416:12;8380:2;8454:78;8524:7;8515:6;8504:9;8500:22;8454:78;:::i;:::-;8444:88;;8306:236;7989:560;;;;;:::o;8555:260::-;;8662:2;8650:9;8641:7;8637:23;8633:32;8630:2;;;8678:1;8675;8668:12;8630:2;8721:1;8746:52;8790:7;8781:6;8770:9;8766:22;8746:52;:::i;:::-;8736:62;;8692:116;8620:195;;;;:::o;8821:282::-;;8939:2;8927:9;8918:7;8914:23;8910:32;8907:2;;;8955:1;8952;8945:12;8907:2;8998:1;9023:63;9078:7;9069:6;9058:9;9054:22;9023:63;:::i;:::-;9013:73;;8969:127;8897:206;;;;:::o;9109:375::-;;9227:2;9215:9;9206:7;9202:23;9198:32;9195:2;;;9243:1;9240;9233:12;9195:2;9314:1;9303:9;9299:17;9286:31;9344:18;9336:6;9333:30;9330:2;;;9376:1;9373;9366:12;9330:2;9404:63;9459:7;9450:6;9439:9;9435:22;9404:63;:::i;:::-;9394:73;;9257:220;9185:299;;;;:::o;9490:262::-;;9598:2;9586:9;9577:7;9573:23;9569:32;9566:2;;;9614:1;9611;9604:12;9566:2;9657:1;9682:53;9727:7;9718:6;9707:9;9703:22;9682:53;:::i;:::-;9672:63;;9628:117;9556:196;;;;:::o;9758:284::-;;9877:2;9865:9;9856:7;9852:23;9848:32;9845:2;;;9893:1;9890;9883:12;9845:2;9936:1;9961:64;10017:7;10008:6;9997:9;9993:22;9961:64;:::i;:::-;9951:74;;9907:128;9835:207;;;;:::o;10048:407::-;;;10173:2;10161:9;10152:7;10148:23;10144:32;10141:2;;;10189:1;10186;10179:12;10141:2;10232:1;10257:53;10302:7;10293:6;10282:9;10278:22;10257:53;:::i;:::-;10247:63;;10203:117;10359:2;10385:53;10430:7;10421:6;10410:9;10406:22;10385:53;:::i;:::-;10375:63;;10330:118;10131:324;;;;;:::o;10461:118::-;10548:24;10566:5;10548:24;:::i;:::-;10543:3;10536:37;10526:53;;:::o;10585:109::-;10666:21;10681:5;10666:21;:::i;:::-;10661:3;10654:34;10644:50;;:::o;10700:360::-;;10814:38;10846:5;10814:38;:::i;:::-;10868:70;10931:6;10926:3;10868:70;:::i;:::-;10861:77;;10947:52;10992:6;10987:3;10980:4;10973:5;10969:16;10947:52;:::i;:::-;11024:29;11046:6;11024:29;:::i;:::-;11019:3;11015:39;11008:46;;10790:270;;;;;:::o;11066:364::-;;11182:39;11215:5;11182:39;:::i;:::-;11237:71;11301:6;11296:3;11237:71;:::i;:::-;11230:78;;11317:52;11362:6;11357:3;11350:4;11343:5;11339:16;11317:52;:::i;:::-;11394:29;11416:6;11394:29;:::i;:::-;11389:3;11385:39;11378:46;;11158:272;;;;;:::o;11436:377::-;;11570:39;11603:5;11570:39;:::i;:::-;11625:89;11707:6;11702:3;11625:89;:::i;:::-;11618:96;;11723:52;11768:6;11763:3;11756:4;11749:5;11745:16;11723:52;:::i;:::-;11800:6;11795:3;11791:16;11784:23;;11546:267;;;;;:::o;11819:385::-;;11982:67;12046:2;12041:3;11982:67;:::i;:::-;11975:74;;12079:34;12075:1;12070:3;12066:11;12059:55;12145:23;12140:2;12135:3;12131:12;12124:45;12195:2;12190:3;12186:12;12179:19;;11965:239;;;:::o;12210:318::-;;12373:67;12437:2;12432:3;12373:67;:::i;:::-;12366:74;;12470:22;12466:1;12461:3;12457:11;12450:43;12519:2;12514:3;12510:12;12503:19;;12356:172;;;:::o;12534:375::-;;12697:67;12761:2;12756:3;12697:67;:::i;:::-;12690:74;;12794:34;12790:1;12785:3;12781:11;12774:55;12860:13;12855:2;12850:3;12846:12;12839:35;12900:2;12895:3;12891:12;12884:19;;12680:229;;;:::o;12915:382::-;;13078:67;13142:2;13137:3;13078:67;:::i;:::-;13071:74;;13175:34;13171:1;13166:3;13162:11;13155:55;13241:20;13236:2;13231:3;13227:12;13220:42;13288:2;13283:3;13279:12;13272:19;;13061:236;;;:::o;13303:370::-;;13466:67;13530:2;13525:3;13466:67;:::i;:::-;13459:74;;13563:34;13559:1;13554:3;13550:11;13543:55;13629:8;13624:2;13619:3;13615:12;13608:30;13664:2;13659:3;13655:12;13648:19;;13449:224;;;:::o;13679:379::-;;13842:67;13906:2;13901:3;13842:67;:::i;:::-;13835:74;;13939:34;13935:1;13930:3;13926:11;13919:55;14005:17;14000:2;13995:3;13991:12;13984:39;14049:2;14044:3;14040:12;14033:19;;13825:233;;;:::o;14064:326::-;;14227:67;14291:2;14286:3;14227:67;:::i;:::-;14220:74;;14324:30;14320:1;14315:3;14311:11;14304:51;14381:2;14376:3;14372:12;14365:19;;14210:180;;;:::o;14396:368::-;;14559:67;14623:2;14618:3;14559:67;:::i;:::-;14552:74;;14656:34;14652:1;14647:3;14643:11;14636:55;14722:6;14717:2;14712:3;14708:12;14701:28;14755:2;14750:3;14746:12;14739:19;;14542:222;;;:::o;14770:323::-;;14933:67;14997:2;14992:3;14933:67;:::i;:::-;14926:74;;15030:27;15026:1;15021:3;15017:11;15010:48;15084:2;15079:3;15075:12;15068:19;;14916:177;;;:::o;15099:329::-;;15262:67;15326:2;15321:3;15262:67;:::i;:::-;15255:74;;15359:33;15355:1;15350:3;15346:11;15339:54;15419:2;15414:3;15410:12;15403:19;;15245:183;;;:::o;15434:376::-;;15597:67;15661:2;15656:3;15597:67;:::i;:::-;15590:74;;15694:34;15690:1;15685:3;15681:11;15674:55;15760:14;15755:2;15750:3;15746:12;15739:36;15801:2;15796:3;15792:12;15785:19;;15580:230;;;:::o;15816:365::-;;15979:67;16043:2;16038:3;15979:67;:::i;:::-;15972:74;;16076:34;16072:1;16067:3;16063:11;16056:55;16142:3;16137:2;16132:3;16128:12;16121:25;16172:2;16167:3;16163:12;16156:19;;15962:219;;;:::o;16187:380::-;;16350:67;16414:2;16409:3;16350:67;:::i;:::-;16343:74;;16447:34;16443:1;16438:3;16434:11;16427:55;16513:18;16508:2;16503:3;16499:12;16492:40;16558:2;16553:3;16549:12;16542:19;;16333:234;;;:::o;16573:369::-;;16736:67;16800:2;16795:3;16736:67;:::i;:::-;16729:74;;16833:34;16829:1;16824:3;16820:11;16813:55;16899:7;16894:2;16889:3;16885:12;16878:29;16933:2;16928:3;16924:12;16917:19;;16719:223;;;:::o;16948:314::-;;17111:67;17175:2;17170:3;17111:67;:::i;:::-;17104:74;;17208:18;17204:1;17199:3;17195:11;17188:39;17253:2;17248:3;17244:12;17237:19;;17094:168;;;:::o;17268:388::-;;17431:67;17495:2;17490:3;17431:67;:::i;:::-;17424:74;;17528:34;17524:1;17519:3;17515:11;17508:55;17594:26;17589:2;17584:3;17580:12;17573:48;17647:2;17642:3;17638:12;17631:19;;17414:242;;;:::o;17662:374::-;;17825:67;17889:2;17884:3;17825:67;:::i;:::-;17818:74;;17922:34;17918:1;17913:3;17909:11;17902:55;17988:12;17983:2;17978:3;17974:12;17967:34;18027:2;18022:3;18018:12;18011:19;;17808:228;;;:::o;18042:373::-;;18205:67;18269:2;18264:3;18205:67;:::i;:::-;18198:74;;18302:34;18298:1;18293:3;18289:11;18282:55;18368:11;18363:2;18358:3;18354:12;18347:33;18406:2;18401:3;18397:12;18390:19;;18188:227;;;:::o;18421:330::-;;18584:67;18648:2;18643:3;18584:67;:::i;:::-;18577:74;;18681:34;18677:1;18672:3;18668:11;18661:55;18742:2;18737:3;18733:12;18726:19;;18567:184;;;:::o;18757:453::-;;18920:67;18984:2;18979:3;18920:67;:::i;:::-;18913:74;;19017:34;19013:1;19008:3;19004:11;18997:55;19083:34;19078:2;19073:3;19069:12;19062:56;19149:25;19144:2;19139:3;19135:12;19128:47;19201:2;19196:3;19192:12;19185:19;;18903:307;;;:::o;19216:376::-;;19379:67;19443:2;19438:3;19379:67;:::i;:::-;19372:74;;19476:34;19472:1;19467:3;19463:11;19456:55;19542:14;19537:2;19532:3;19528:12;19521:36;19583:2;19578:3;19574:12;19567:19;;19362:230;;;:::o;19598:330::-;;19761:67;19825:2;19820:3;19761:67;:::i;:::-;19754:74;;19858:34;19854:1;19849:3;19845:11;19838:55;19919:2;19914:3;19910:12;19903:19;;19744:184;;;:::o;19934:373::-;;20097:67;20161:2;20156:3;20097:67;:::i;:::-;20090:74;;20194:34;20190:1;20185:3;20181:11;20174:55;20260:11;20255:2;20250:3;20246:12;20239:33;20298:2;20293:3;20289:12;20282:19;;20080:227;;;:::o;20313:379::-;;20476:67;20540:2;20535:3;20476:67;:::i;:::-;20469:74;;20573:34;20569:1;20564:3;20560:11;20553:55;20639:17;20634:2;20629:3;20625:12;20618:39;20683:2;20678:3;20674:12;20667:19;;20459:233;;;:::o;20698:329::-;;20861:67;20925:2;20920:3;20861:67;:::i;:::-;20854:74;;20958:33;20954:1;20949:3;20945:11;20938:54;21018:2;21013:3;21009:12;21002:19;;20844:183;;;:::o;21033:365::-;;21196:67;21260:2;21255:3;21196:67;:::i;:::-;21189:74;;21293:34;21289:1;21284:3;21280:11;21273:55;21359:3;21354:2;21349:3;21345:12;21338:25;21389:2;21384:3;21380:12;21373:19;;21179:219;;;:::o;21404:371::-;;21567:67;21631:2;21626:3;21567:67;:::i;:::-;21560:74;;21664:34;21660:1;21655:3;21651:11;21644:55;21730:9;21725:2;21720:3;21716:12;21709:31;21766:2;21761:3;21757:12;21750:19;;21550:225;;;:::o;21781:381::-;;21944:67;22008:2;22003:3;21944:67;:::i;:::-;21937:74;;22041:34;22037:1;22032:3;22028:11;22021:55;22107:19;22102:2;22097:3;22093:12;22086:41;22153:2;22148:3;22144:12;22137:19;;21927:235;;;:::o;22168:376::-;;22331:67;22395:2;22390:3;22331:67;:::i;:::-;22324:74;;22428:34;22424:1;22419:3;22415:11;22408:55;22494:14;22489:2;22484:3;22480:12;22473:36;22535:2;22530:3;22526:12;22519:19;;22314:230;;;:::o;22550:388::-;;22713:67;22777:2;22772:3;22713:67;:::i;:::-;22706:74;;22810:34;22806:1;22801:3;22797:11;22790:55;22876:26;22871:2;22866:3;22862:12;22855:48;22929:2;22924:3;22920:12;22913:19;;22696:242;;;:::o;22944:370::-;;23107:67;23171:2;23166:3;23107:67;:::i;:::-;23100:74;;23204:34;23200:1;23195:3;23191:11;23184:55;23270:8;23265:2;23260:3;23256:12;23249:30;23305:2;23300:3;23296:12;23289:19;;23090:224;;;:::o;23320:451::-;;23483:67;23547:2;23542:3;23483:67;:::i;:::-;23476:74;;23580:34;23576:1;23571:3;23567:11;23560:55;23646:34;23641:2;23636:3;23632:12;23625:56;23712:23;23707:2;23702:3;23698:12;23691:45;23762:2;23757:3;23753:12;23746:19;;23466:305;;;:::o;23777:432::-;;23940:67;24004:2;23999:3;23940:67;:::i;:::-;23933:74;;24037:34;24033:1;24028:3;24024:11;24017:55;24103:34;24098:2;24093:3;24089:12;24082:56;24169:4;24164:2;24159:3;24155:12;24148:26;24200:2;24195:3;24191:12;24184:19;;23923:286;;;:::o;24215:379::-;;24378:67;24442:2;24437:3;24378:67;:::i;:::-;24371:74;;24475:34;24471:1;24466:3;24462:11;24455:55;24541:17;24536:2;24531:3;24527:12;24520:39;24585:2;24580:3;24576:12;24569:19;;24361:233;;;:::o;24600:378::-;;24763:67;24827:2;24822:3;24763:67;:::i;:::-;24756:74;;24860:34;24856:1;24851:3;24847:11;24840:55;24926:16;24921:2;24916:3;24912:12;24905:38;24969:2;24964:3;24960:12;24953:19;;24746:232;;;:::o;24984:118::-;25071:24;25089:5;25071:24;:::i;:::-;25066:3;25059:37;25049:53;;:::o;25108:435::-;;25310:95;25401:3;25392:6;25310:95;:::i;:::-;25303:102;;25422:95;25513:3;25504:6;25422:95;:::i;:::-;25415:102;;25534:3;25527:10;;25292:251;;;;;:::o;25549:222::-;;25680:2;25669:9;25665:18;25657:26;;25693:71;25761:1;25750:9;25746:17;25737:6;25693:71;:::i;:::-;25647:124;;;;:::o;25777:640::-;;26010:3;25999:9;25995:19;25987:27;;26024:71;26092:1;26081:9;26077:17;26068:6;26024:71;:::i;:::-;26105:72;26173:2;26162:9;26158:18;26149:6;26105:72;:::i;:::-;26187;26255:2;26244:9;26240:18;26231:6;26187:72;:::i;:::-;26306:9;26300:4;26296:20;26291:2;26280:9;26276:18;26269:48;26334:76;26405:4;26396:6;26334:76;:::i;:::-;26326:84;;25977:440;;;;;;;:::o;26423:332::-;;26582:2;26571:9;26567:18;26559:26;;26595:71;26663:1;26652:9;26648:17;26639:6;26595:71;:::i;:::-;26676:72;26744:2;26733:9;26729:18;26720:6;26676:72;:::i;:::-;26549:206;;;;;:::o;26761:210::-;;26886:2;26875:9;26871:18;26863:26;;26899:65;26961:1;26950:9;26946:17;26937:6;26899:65;:::i;:::-;26853:118;;;;:::o;26977:313::-;;27128:2;27117:9;27113:18;27105:26;;27177:9;27171:4;27167:20;27163:1;27152:9;27148:17;27141:47;27205:78;27278:4;27269:6;27205:78;:::i;:::-;27197:86;;27095:195;;;;:::o;27296:419::-;;27500:2;27489:9;27485:18;27477:26;;27549:9;27543:4;27539:20;27535:1;27524:9;27520:17;27513:47;27577:131;27703:4;27577:131;:::i;:::-;27569:139;;27467:248;;;:::o;27721:419::-;;27925:2;27914:9;27910:18;27902:26;;27974:9;27968:4;27964:20;27960:1;27949:9;27945:17;27938:47;28002:131;28128:4;28002:131;:::i;:::-;27994:139;;27892:248;;;:::o;28146:419::-;;28350:2;28339:9;28335:18;28327:26;;28399:9;28393:4;28389:20;28385:1;28374:9;28370:17;28363:47;28427:131;28553:4;28427:131;:::i;:::-;28419:139;;28317:248;;;:::o;28571:419::-;;28775:2;28764:9;28760:18;28752:26;;28824:9;28818:4;28814:20;28810:1;28799:9;28795:17;28788:47;28852:131;28978:4;28852:131;:::i;:::-;28844:139;;28742:248;;;:::o;28996:419::-;;29200:2;29189:9;29185:18;29177:26;;29249:9;29243:4;29239:20;29235:1;29224:9;29220:17;29213:47;29277:131;29403:4;29277:131;:::i;:::-;29269:139;;29167:248;;;:::o;29421:419::-;;29625:2;29614:9;29610:18;29602:26;;29674:9;29668:4;29664:20;29660:1;29649:9;29645:17;29638:47;29702:131;29828:4;29702:131;:::i;:::-;29694:139;;29592:248;;;:::o;29846:419::-;;30050:2;30039:9;30035:18;30027:26;;30099:9;30093:4;30089:20;30085:1;30074:9;30070:17;30063:47;30127:131;30253:4;30127:131;:::i;:::-;30119:139;;30017:248;;;:::o;30271:419::-;;30475:2;30464:9;30460:18;30452:26;;30524:9;30518:4;30514:20;30510:1;30499:9;30495:17;30488:47;30552:131;30678:4;30552:131;:::i;:::-;30544:139;;30442:248;;;:::o;30696:419::-;;30900:2;30889:9;30885:18;30877:26;;30949:9;30943:4;30939:20;30935:1;30924:9;30920:17;30913:47;30977:131;31103:4;30977:131;:::i;:::-;30969:139;;30867:248;;;:::o;31121:419::-;;31325:2;31314:9;31310:18;31302:26;;31374:9;31368:4;31364:20;31360:1;31349:9;31345:17;31338:47;31402:131;31528:4;31402:131;:::i;:::-;31394:139;;31292:248;;;:::o;31546:419::-;;31750:2;31739:9;31735:18;31727:26;;31799:9;31793:4;31789:20;31785:1;31774:9;31770:17;31763:47;31827:131;31953:4;31827:131;:::i;:::-;31819:139;;31717:248;;;:::o;31971:419::-;;32175:2;32164:9;32160:18;32152:26;;32224:9;32218:4;32214:20;32210:1;32199:9;32195:17;32188:47;32252:131;32378:4;32252:131;:::i;:::-;32244:139;;32142:248;;;:::o;32396:419::-;;32600:2;32589:9;32585:18;32577:26;;32649:9;32643:4;32639:20;32635:1;32624:9;32620:17;32613:47;32677:131;32803:4;32677:131;:::i;:::-;32669:139;;32567:248;;;:::o;32821:419::-;;33025:2;33014:9;33010:18;33002:26;;33074:9;33068:4;33064:20;33060:1;33049:9;33045:17;33038:47;33102:131;33228:4;33102:131;:::i;:::-;33094:139;;32992:248;;;:::o;33246:419::-;;33450:2;33439:9;33435:18;33427:26;;33499:9;33493:4;33489:20;33485:1;33474:9;33470:17;33463:47;33527:131;33653:4;33527:131;:::i;:::-;33519:139;;33417:248;;;:::o;33671:419::-;;33875:2;33864:9;33860:18;33852:26;;33924:9;33918:4;33914:20;33910:1;33899:9;33895:17;33888:47;33952:131;34078:4;33952:131;:::i;:::-;33944:139;;33842:248;;;:::o;34096:419::-;;34300:2;34289:9;34285:18;34277:26;;34349:9;34343:4;34339:20;34335:1;34324:9;34320:17;34313:47;34377:131;34503:4;34377:131;:::i;:::-;34369:139;;34267:248;;;:::o;34521:419::-;;34725:2;34714:9;34710:18;34702:26;;34774:9;34768:4;34764:20;34760:1;34749:9;34745:17;34738:47;34802:131;34928:4;34802:131;:::i;:::-;34794:139;;34692:248;;;:::o;34946:419::-;;35150:2;35139:9;35135:18;35127:26;;35199:9;35193:4;35189:20;35185:1;35174:9;35170:17;35163:47;35227:131;35353:4;35227:131;:::i;:::-;35219:139;;35117:248;;;:::o;35371:419::-;;35575:2;35564:9;35560:18;35552:26;;35624:9;35618:4;35614:20;35610:1;35599:9;35595:17;35588:47;35652:131;35778:4;35652:131;:::i;:::-;35644:139;;35542:248;;;:::o;35796:419::-;;36000:2;35989:9;35985:18;35977:26;;36049:9;36043:4;36039:20;36035:1;36024:9;36020:17;36013:47;36077:131;36203:4;36077:131;:::i;:::-;36069:139;;35967:248;;;:::o;36221:419::-;;36425:2;36414:9;36410:18;36402:26;;36474:9;36468:4;36464:20;36460:1;36449:9;36445:17;36438:47;36502:131;36628:4;36502:131;:::i;:::-;36494:139;;36392:248;;;:::o;36646:419::-;;36850:2;36839:9;36835:18;36827:26;;36899:9;36893:4;36889:20;36885:1;36874:9;36870:17;36863:47;36927:131;37053:4;36927:131;:::i;:::-;36919:139;;36817:248;;;:::o;37071:419::-;;37275:2;37264:9;37260:18;37252:26;;37324:9;37318:4;37314:20;37310:1;37299:9;37295:17;37288:47;37352:131;37478:4;37352:131;:::i;:::-;37344:139;;37242:248;;;:::o;37496:419::-;;37700:2;37689:9;37685:18;37677:26;;37749:9;37743:4;37739:20;37735:1;37724:9;37720:17;37713:47;37777:131;37903:4;37777:131;:::i;:::-;37769:139;;37667:248;;;:::o;37921:419::-;;38125:2;38114:9;38110:18;38102:26;;38174:9;38168:4;38164:20;38160:1;38149:9;38145:17;38138:47;38202:131;38328:4;38202:131;:::i;:::-;38194:139;;38092:248;;;:::o;38346:419::-;;38550:2;38539:9;38535:18;38527:26;;38599:9;38593:4;38589:20;38585:1;38574:9;38570:17;38563:47;38627:131;38753:4;38627:131;:::i;:::-;38619:139;;38517:248;;;:::o;38771:419::-;;38975:2;38964:9;38960:18;38952:26;;39024:9;39018:4;39014:20;39010:1;38999:9;38995:17;38988:47;39052:131;39178:4;39052:131;:::i;:::-;39044:139;;38942:248;;;:::o;39196:419::-;;39400:2;39389:9;39385:18;39377:26;;39449:9;39443:4;39439:20;39435:1;39424:9;39420:17;39413:47;39477:131;39603:4;39477:131;:::i;:::-;39469:139;;39367:248;;;:::o;39621:419::-;;39825:2;39814:9;39810:18;39802:26;;39874:9;39868:4;39864:20;39860:1;39849:9;39845:17;39838:47;39902:131;40028:4;39902:131;:::i;:::-;39894:139;;39792:248;;;:::o;40046:419::-;;40250:2;40239:9;40235:18;40227:26;;40299:9;40293:4;40289:20;40285:1;40274:9;40270:17;40263:47;40327:131;40453:4;40327:131;:::i;:::-;40319:139;;40217:248;;;:::o;40471:419::-;;40675:2;40664:9;40660:18;40652:26;;40724:9;40718:4;40714:20;40710:1;40699:9;40695:17;40688:47;40752:131;40878:4;40752:131;:::i;:::-;40744:139;;40642:248;;;:::o;40896:419::-;;41100:2;41089:9;41085:18;41077:26;;41149:9;41143:4;41139:20;41135:1;41124:9;41120:17;41113:47;41177:131;41303:4;41177:131;:::i;:::-;41169:139;;41067:248;;;:::o;41321:419::-;;41525:2;41514:9;41510:18;41502:26;;41574:9;41568:4;41564:20;41560:1;41549:9;41545:17;41538:47;41602:131;41728:4;41602:131;:::i;:::-;41594:139;;41492:248;;;:::o;41746:419::-;;41950:2;41939:9;41935:18;41927:26;;41999:9;41993:4;41989:20;41985:1;41974:9;41970:17;41963:47;42027:131;42153:4;42027:131;:::i;:::-;42019:139;;41917:248;;;:::o;42171:222::-;;42302:2;42291:9;42287:18;42279:26;;42315:71;42383:1;42372:9;42368:17;42359:6;42315:71;:::i;:::-;42269:124;;;;:::o;42399:283::-;;42465:2;42459:9;42449:19;;42507:4;42499:6;42495:17;42614:6;42602:10;42599:22;42578:18;42566:10;42563:34;42560:62;42557:2;;;42625:18;;:::i;:::-;42557:2;42665:10;42661:2;42654:22;42439:243;;;;:::o;42688:311::-;;42855:18;42847:6;42844:30;42841:2;;;42877:18;;:::i;:::-;42841:2;42927:4;42919:6;42915:17;42907:25;;42987:4;42981;42977:15;42969:23;;42770:229;;;:::o;43005:311::-;;43172:18;43164:6;43161:30;43158:2;;;43194:18;;:::i;:::-;43158:2;43244:4;43236:6;43232:17;43224:25;;43304:4;43298;43294:15;43286:23;;43087:229;;;:::o;43322:331::-;;43473:18;43465:6;43462:30;43459:2;;;43495:18;;:::i;:::-;43459:2;43580:4;43576:9;43569:4;43561:6;43557:17;43553:33;43545:41;;43641:4;43635;43631:15;43623:23;;43388:265;;;:::o;43659:332::-;;43811:18;43803:6;43800:30;43797:2;;;43833:18;;:::i;:::-;43797:2;43918:4;43914:9;43907:4;43899:6;43895:17;43891:33;43883:41;;43979:4;43973;43969:15;43961:23;;43726:265;;;:::o;43997:98::-;;44082:5;44076:12;44066:22;;44055:40;;;:::o;44101:99::-;;44187:5;44181:12;44171:22;;44160:40;;;:::o;44206:168::-;;44323:6;44318:3;44311:19;44363:4;44358:3;44354:14;44339:29;;44301:73;;;;:::o;44380:169::-;;44498:6;44493:3;44486:19;44538:4;44533:3;44529:14;44514:29;;44476:73;;;;:::o;44555:148::-;;44694:3;44679:18;;44669:34;;;;:::o;44709:305::-;;44768:20;44786:1;44768:20;:::i;:::-;44763:25;;44802:20;44820:1;44802:20;:::i;:::-;44797:25;;44956:1;44888:66;44884:74;44881:1;44878:81;44875:2;;;44962:18;;:::i;:::-;44875:2;45006:1;45003;44999:9;44992:16;;44753:261;;;;:::o;45020:185::-;;45077:20;45095:1;45077:20;:::i;:::-;45072:25;;45111:20;45129:1;45111:20;:::i;:::-;45106:25;;45150:1;45140:2;;45155:18;;:::i;:::-;45140:2;45197:1;45194;45190:9;45185:14;;45062:143;;;;:::o;45211:348::-;;45274:20;45292:1;45274:20;:::i;:::-;45269:25;;45308:20;45326:1;45308:20;:::i;:::-;45303:25;;45496:1;45428:66;45424:74;45421:1;45418:81;45413:1;45406:9;45399:17;45395:105;45392:2;;;45503:18;;:::i;:::-;45392:2;45551:1;45548;45544:9;45533:20;;45259:300;;;;:::o;45565:191::-;;45625:20;45643:1;45625:20;:::i;:::-;45620:25;;45659:20;45677:1;45659:20;:::i;:::-;45654:25;;45698:1;45695;45692:8;45689:2;;;45703:18;;:::i;:::-;45689:2;45748:1;45745;45741:9;45733:17;;45610:146;;;;:::o;45762:96::-;;45828:24;45846:5;45828:24;:::i;:::-;45817:35;;45807:51;;;:::o;45864:104::-;;45938:24;45956:5;45938:24;:::i;:::-;45927:35;;45917:51;;;:::o;45974:90::-;;46051:5;46044:13;46037:21;46026:32;;46016:48;;;:::o;46070:149::-;;46146:66;46139:5;46135:78;46124:89;;46114:105;;;:::o;46225:126::-;;46302:42;46295:5;46291:54;46280:65;;46270:81;;;:::o;46357:77::-;;46423:5;46412:16;;46402:32;;;:::o;46440:154::-;46524:6;46519:3;46514;46501:30;46586:1;46577:6;46572:3;46568:16;46561:27;46491:103;;;:::o;46600:307::-;46668:1;46678:113;46692:6;46689:1;46686:13;46678:113;;;46777:1;46772:3;46768:11;46762:18;46758:1;46753:3;46749:11;46742:39;46714:2;46711:1;46707:10;46702:15;;46678:113;;;46809:6;46806:1;46803:13;46800:2;;;46889:1;46880:6;46875:3;46871:16;46864:27;46800:2;46649:258;;;;:::o;46913:320::-;;46994:1;46988:4;46984:12;46974:22;;47041:1;47035:4;47031:12;47062:18;47052:2;;47118:4;47110:6;47106:17;47096:27;;47052:2;47180;47172:6;47169:14;47149:18;47146:38;47143:2;;;47199:18;;:::i;:::-;47143:2;46964:269;;;;:::o;47239:233::-;;47301:24;47319:5;47301:24;:::i;:::-;47292:33;;47347:66;47340:5;47337:77;47334:2;;;47417:18;;:::i;:::-;47334:2;47464:1;47457:5;47453:13;47446:20;;47282:190;;;:::o;47478:176::-;;47527:20;47545:1;47527:20;:::i;:::-;47522:25;;47561:20;47579:1;47561:20;:::i;:::-;47556:25;;47600:1;47590:2;;47605:18;;:::i;:::-;47590:2;47646:1;47643;47639:9;47634:14;;47512:142;;;;:::o;47660:180::-;47708:77;47705:1;47698:88;47805:4;47802:1;47795:15;47829:4;47826:1;47819:15;47846:180;47894:77;47891:1;47884:88;47991:4;47988:1;47981:15;48015:4;48012:1;48005:15;48032:180;48080:77;48077:1;48070:88;48177:4;48174:1;48167:15;48201:4;48198:1;48191:15;48218:180;48266:77;48263:1;48256:88;48363:4;48360:1;48353:15;48387:4;48384:1;48377:15;48404:102;;48496:2;48492:7;48487:2;48480:5;48476:14;48472:28;48462:38;;48452:54;;;:::o;48512:122::-;48585:24;48603:5;48585:24;:::i;:::-;48578:5;48575:35;48565:2;;48624:1;48621;48614:12;48565:2;48555:79;:::o;48640:138::-;48721:32;48747:5;48721:32;:::i;:::-;48714:5;48711:43;48701:2;;48768:1;48765;48758:12;48701:2;48691:87;:::o;48784:116::-;48854:21;48869:5;48854:21;:::i;:::-;48847:5;48844:32;48834:2;;48890:1;48887;48880:12;48834:2;48824:76;:::o;48906:120::-;48978:23;48995:5;48978:23;:::i;:::-;48971:5;48968:34;48958:2;;49016:1;49013;49006:12;48958:2;48948:78;:::o;49032:122::-;49105:24;49123:5;49105:24;:::i;:::-;49098:5;49095:35;49085:2;;49144:1;49141;49134:12;49085:2;49075:79;:::o

Swarm Source

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