ETH Price: $3,481.06 (+7.21%)
Gas: 12 Gwei

Token

Fractional Bricks (FBNFT)
 

Overview

Max Total Supply

29 FBNFT

Holders

26

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
goodjuju.eth
Balance
1 FBNFT
0x3597d8267d2c09579fa19bdfa1c16772d6e29a0e
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:
FractionalBricks

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

//SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Counters.sol



pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol



pragma solidity ^0.8.0;

/**
 * @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/Address.sol



pragma solidity ^0.8.0;

/**
 * @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/token/ERC721/IERC721Receiver.sol



pragma solidity ^0.8.0;

/**
 * @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/utils/introspection/IERC165.sol



pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol



pragma solidity ^0.8.0;


/**
 * @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/IERC721.sol



pragma solidity ^0.8.0;


/**
 * @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/extensions/IERC721Enumerable.sol



pragma solidity ^0.8.0;


/**
 * @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/IERC721Metadata.sol



pragma solidity ^0.8.0;


/**
 * @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/Context.sol



pragma solidity ^0.8.0;

/**
 * @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/token/ERC721/ERC721.sol



pragma solidity ^0.8.0;








/**
 * @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/ERC721Enumerable.sol



pragma solidity ^0.8.0;



/**
 * @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/access/Ownable.sol



pragma solidity ^0.8.0;


/**
 * @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: contracts/Payments.sol


pragma solidity 0.8.7;
/*
  Fractional Bricks to the mooon baby!
*/






contract FractionalBricks is ERC721, ERC721Enumerable, Ownable {
  using Strings for uint256;
 

  string baseURI;
  string public notRevealedURI;
  // Immutable integers
  uint256 public cost = 700000000000000000; // 0.07 eth
  uint256 public  maxSupply = 10000;
  uint256 public  maxMintAmount = 1000;
  bool public paused = false;
  bool public publicMintIsActive = false;
  bool public revealed = false;
  bool public governanceWhitelisted = true;
  bool public onlyWhitelisted = true;
  address payable public payments;
  address[] public whitelistedAddresses;
  address[] public governanceWhitelistedAddresses;
 
  /**
  * Contract initialization.
  * The `constructor` is executed only once when the contract is created.
  */
  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI,
    string memory _initNotRevealedURI,
    address _payments)
    ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedURI);
    payments = payable(_payments);
    _safeMint(msg.sender, 1);
  }
 
  function governanceMint(uint256 _mintAmount) public payable {
    require(!paused, "Contract is paused!");
    require(_mintAmount == 1);
    uint256 supply = totalSupply();
    require(_mintAmount <= maxMintAmount, "Can only mint 1000 NFT's at a time!");
    require(supply + _mintAmount <= maxSupply, "Purchase would exceed max supply of this collection");
    if (msg.sender != owner()) {
        if(governanceWhitelisted == true){
            require(isGovernanceWhitelisted(msg.sender), "User is not governance whitelisted!");
            uint256 ownerTokenCount = balanceOf(msg.sender);
            require(ownerTokenCount < maxMintAmount);
            for(uint256 i = 1; i <= _mintAmount; i++){
                _safeMint(msg.sender, supply + i);
            }
        }
    }
  }
 
 
  // admin can mint them for giveaways, airdrops etc
    function adminMint(uint256 qty, address to) public onlyOwner {
        uint256 giveaway = 150;
        require(qty <= giveaway);
        require(qty > 0, "minimum 1 token");
        require(totalSupply() + qty <= maxSupply, "out of stock");
        for (uint256 i = 0; i < qty; i++) {
            _safeMint(to, totalSupply() + 1);
        }
    }
   
  function presaleMint(uint256 _mintAmount) public payable {
    require(!paused, "Contract is paused!");
    require(_mintAmount > 0);
    require(_mintAmount <= maxMintAmount, "Can only mint 1000 NFT's at a time!");
    require(totalSupply() + _mintAmount <= maxSupply, "Purchase would exceed max supply of this collection");
    if (msg.sender != owner()) {
        if(onlyWhitelisted == true){
            uint256 ownerTokenCount = balanceOf(msg.sender);
            require(ownerTokenCount < maxMintAmount);
            require(msg.value >= cost * _mintAmount, "Not Enough Funds!");
            for(uint256 i = 1; i <= _mintAmount; i++){
                _safeMint(msg.sender, totalSupply() + i);
            }
        }
    }
  }

  function Mint(uint256 _mintAmount) public payable {
    require(!paused, "Contract is paused!");
    require(_mintAmount > 0);
    require(_mintAmount <= maxMintAmount, "Can only mint 1000 NFT's at a time!");
    require(totalSupply() + _mintAmount <= maxSupply, "Purchase would exceed max supply of this collection");
    require(msg.value >= cost * _mintAmount, "Not Enough Funds!");
    if( publicMintIsActive == true){
        require(msg.value >= cost * _mintAmount, "Not Enough Funds!");
        for(uint256 i = 1; i <= _mintAmount; i++){
            _safeMint(msg.sender, totalSupply() + i);
        }
    }
  }
 
  function isGovernanceWhitelisted(address _user) public view returns(bool){
     for(uint256 i = 0; i < governanceWhitelistedAddresses.length; i++){
         if(governanceWhitelistedAddresses[i] == _user){
            return true;
         }
     }
     return false;
  }
 
  function isWhitelisted(address _user) public view returns(bool){
     for(uint256 i = 0; i < whitelistedAddresses.length; i++){
         if(whitelistedAddresses[i] == _user){
            return true;
         }
     }
     return false;
  }

  function walletOfOwner(address _owner) public view returns (uint256[] memory) {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory){
    require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");
    //Check to the see if the function has been revealed or not if not show URI of Unrevealed image
    if(revealed == false){
        return notRevealedURI;
    }
    else{
    string memory currentBaseURI = _baseURI();
    return string(abi.encodePacked(currentBaseURI, "/", _tokenId.toString(), ".json"));
    }
}
  /**
     * Override for ERC721 & ERC721Enumerable
     */
    function supportsInterface(bytes4 interfaceId) public
        view
        override (ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
 
  /**
  * Override for ERC721 and ERC271Enumerable
  */
  function _beforeTokenTransfer(
    address from,
    address to,
    uint256 tokenId
    ) internal override(ERC721, ERC721Enumerable) {
      super._beforeTokenTransfer(from, to, tokenId);
    }

  //only owner functions
  function reveal() public onlyOwner() {
      revealed = true;
  }
 
  function setCost(uint256 _newCost) public onlyOwner() {
    cost = _newCost;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner() {
    maxMintAmount = _newmaxMintAmount;
  }

  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedURI = _notRevealedURI;
  }
 
  function _baseURI() internal view virtual override returns (string memory) {
    return baseURI;
  }
 
  /**
     * @dev Internal function to set the base URI for all token IDs. It is
     * automatically added as a prefix to the value returned in {tokenURI},
     * or to the token ID if {tokenURI} is empty.
  */
  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

 

  function setActivePublicMint(bool _state) public onlyOwner {
    publicMintIsActive = _state;
  }
 

  function setOnlyWhitelisted(bool _state) public onlyOwner {
    onlyWhitelisted = _state;
  }
 
 function setgovernanceWhitelisted(bool _state) public onlyOwner {
    onlyWhitelisted = _state;
  }
  /**
  * Read-only function to retrieve the number of NFTs that can be minted in one txn
  */
  function getCurrentMintLimit() public pure returns (uint64) {
    return 1000;
  }
 
  function whitelistUsers(address[] calldata _users) public onlyOwner{
    delete whitelistedAddresses;
    whitelistedAddresses = _users;
  }
 
  function governanceWhitelistUsers(address[] calldata _users) public onlyOwner{
    delete governanceWhitelistedAddresses;
    governanceWhitelistedAddresses = _users;
  }
 
  function withdraw() public payable onlyOwner {
    (bool success, ) = payable(payments).call{value: address(this).balance}("");
    require(success);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedURI","type":"string"},{"internalType":"address","name":"_payments","type":"address"}],"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":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"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentMintLimit","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"governanceMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"governanceWhitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"governanceWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"governanceWhitelistedAddresses","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":[{"internalType":"address","name":"_user","type":"address"}],"name":"isGovernanceWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"payments","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicMintIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"bool","name":"_state","type":"bool"}],"name":"setActivePublicMint","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setgovernanceWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","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":"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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526709b6e64a8ec60000600d55612710600e556103e8600f556000601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff0219169083151502179055506000601060026101000a81548160ff0219169083151502179055506001601060036101000a81548160ff0219169083151502179055506001601060046101000a81548160ff021916908315150217905550348015620000b057600080fd5b5060405162006e2538038062006e258339818101604052810190620000d6919062000f8e565b84848160009080519060200190620000f092919062000e00565b5080600190805190602001906200010992919062000e00565b5050506200012c62000120620001ad60201b60201c565b620001b560201b60201c565b6200013d836200027b60201b60201c565b6200014e826200032660201b60201c565b80601060056101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001a2336001620003d160201b60201c565b505050505062001743565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200028b620001ad60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002b1620003f760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200030a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003019062001294565b60405180910390fd5b80600b90805190602001906200032292919062000e00565b5050565b62000336620001ad60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200035c620003f760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003b5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003ac9062001294565b60405180910390fd5b80600c9080519060200190620003cd92919062000e00565b5050565b620003f38282604051806020016040528060008152506200042160201b60201c565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200043383836200048f60201b60201c565b6200044860008484846200067560201b60201c565b6200048a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000481906200120c565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000502576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004f99062001272565b60405180910390fd5b62000513816200082f60201b60201c565b1562000556576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200054d906200122e565b60405180910390fd5b6200056a600083836200089b60201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620005bc919062001342565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620006a38473ffffffffffffffffffffffffffffffffffffffff16620008b860201b620028c01760201c565b1562000822578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620006d5620001ad60201b60201c565b8786866040518563ffffffff1660e01b8152600401620006f99493929190620011b8565b602060405180830381600087803b1580156200071457600080fd5b505af19250505080156200074857506040513d601f19601f8201168201806040525081019062000745919062000f5c565b60015b620007d1573d80600081146200077b576040519150601f19603f3d011682016040523d82523d6000602084013e62000780565b606091505b50600081511415620007c9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007c0906200120c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000827565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b620008b3838383620008cb60201b620028d31760201c565b505050565b600080823b905060008111915050919050565b620008e383838362000a1260201b620029e71760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000930576200092a8162000a1760201b60201c565b62000978565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614620009775762000976838262000a6060201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620009c557620009bf8162000bdd60201b60201c565b62000a0d565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000a0c5762000a0b828262000cb960201b60201c565b5b5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600162000a7a8462000d4560201b62001b251760201c565b62000a8691906200139f565b905060006007600084815260200190815260200160002054905081811462000b6c576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000bf391906200139f565b905060006009600084815260200190815260200160002054905060006008838154811062000c265762000c2562001573565b5b90600052602060002001549050806008838154811062000c4b5762000c4a62001573565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000c9d5762000c9c62001544565b5b6001900381819060005260206000200160009055905550505050565b600062000cd18362000d4560201b62001b251760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000db9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000db09062001250565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000e0e906200147a565b90600052602060002090601f01602090048101928262000e32576000855562000e7e565b82601f1062000e4d57805160ff191683800117855562000e7e565b8280016001018555821562000e7e579182015b8281111562000e7d57825182559160200191906001019062000e60565b5b50905062000e8d919062000e91565b5090565b5b8082111562000eac57600081600090555060010162000e92565b5090565b600062000ec762000ec184620012df565b620012b6565b90508281526020810184848401111562000ee65762000ee5620015d6565b5b62000ef384828562001444565b509392505050565b60008151905062000f0c816200170f565b92915050565b60008151905062000f238162001729565b92915050565b600082601f83011262000f415762000f40620015d1565b5b815162000f5384826020860162000eb0565b91505092915050565b60006020828403121562000f755762000f74620015e0565b5b600062000f858482850162000f12565b91505092915050565b600080600080600060a0868803121562000fad5762000fac620015e0565b5b600086015167ffffffffffffffff81111562000fce5762000fcd620015db565b5b62000fdc8882890162000f29565b955050602086015167ffffffffffffffff811115620010005762000fff620015db565b5b6200100e8882890162000f29565b945050604086015167ffffffffffffffff811115620010325762001031620015db565b5b620010408882890162000f29565b935050606086015167ffffffffffffffff811115620010645762001063620015db565b5b620010728882890162000f29565b9250506080620010858882890162000efb565b9150509295509295909350565b6200109d81620013da565b82525050565b6000620010b08262001315565b620010bc818562001320565b9350620010ce81856020860162001444565b620010d981620015e5565b840191505092915050565b6000620010f360328362001331565b91506200110082620015f6565b604082019050919050565b60006200111a601c8362001331565b9150620011278262001645565b602082019050919050565b600062001141602a8362001331565b91506200114e826200166e565b604082019050919050565b60006200116860208362001331565b91506200117582620016bd565b602082019050919050565b60006200118f60208362001331565b91506200119c82620016e6565b602082019050919050565b620011b2816200143a565b82525050565b6000608082019050620011cf600083018762001092565b620011de602083018662001092565b620011ed6040830185620011a7565b8181036060830152620012018184620010a3565b905095945050505050565b600060208201905081810360008301526200122781620010e4565b9050919050565b6000602082019050818103600083015262001249816200110b565b9050919050565b600060208201905081810360008301526200126b8162001132565b9050919050565b600060208201905081810360008301526200128d8162001159565b9050919050565b60006020820190508181036000830152620012af8162001180565b9050919050565b6000620012c2620012d5565b9050620012d08282620014b0565b919050565b6000604051905090565b600067ffffffffffffffff821115620012fd57620012fc620015a2565b5b6200130882620015e5565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006200134f826200143a565b91506200135c836200143a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620013945762001393620014e6565b5b828201905092915050565b6000620013ac826200143a565b9150620013b9836200143a565b925082821015620013cf57620013ce620014e6565b5b828203905092915050565b6000620013e7826200141a565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200146457808201518184015260208101905062001447565b8381111562001474576000848401525b50505050565b600060028204905060018216806200149357607f821691505b60208210811415620014aa57620014a962001515565b5b50919050565b620014bb82620015e5565b810181811067ffffffffffffffff82111715620014dd57620014dc620015a2565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6200171a81620013da565b81146200172657600080fd5b50565b6200173481620013ee565b81146200174057600080fd5b50565b6156d280620017536000396000f3fe6080604052600436106102c95760003560e01c8063632db54811610175578063a22cb465116100dc578063c9b298f111610095578063edec5f271161006f578063edec5f2714610ae4578063f2c4ce1e14610b0d578063f2fde38b14610b36578063fa152d6a14610b5f576102c9565b8063c9b298f114610a60578063d5abeb0114610a7c578063e985e9c514610aa7576102c9565b8063a22cb46514610952578063a475b5dd1461097b578063a6d23e1014610992578063b88d4fde146109bd578063ba4e5c49146109e6578063c87b56dd14610a23576102c9565b80637f00c7a61161012e5780637f00c7a614610840578063884b00ab146108695780638da5cb5b146108a657806395527a12146108d157806395d89b41146108fc5780639c70b51214610927576102c9565b8063632db5481461072b5780636352211e1461074757806370a0823114610784578063715018a6146107c157806371c7d06f146107d85780637225038014610815576102c9565b80632f745c5911610234578063438b6300116101ed5780634f6ccce7116101c75780634f6ccce71461066f57806351830227146106ac57806355f804b3146106d75780635c975abb14610700576102c9565b8063438b6300146105e057806344a0d68a1461061d5780634c2ebff614610646576102c9565b80632f745c59146104df578063339181d91461051c5780633af32abf146105475780633c952764146105845780633ccfd60b146105ad57806342842e0e146105b7576102c9565b80631352eb06116102865780631352eb06146103e157806313faede61461040a57806315f9dddd1461043557806318160ddd14610460578063239c70ae1461048b57806323b872dd146104b6576102c9565b806301ffc9a7146102ce57806306fdde031461030b5780630788370314610336578063081812fc14610352578063095ea7b31461038f5780630dc28efe146103b8575b600080fd5b3480156102da57600080fd5b506102f560048036038101906102f09190613f62565b610b88565b60405161030291906146ac565b60405180910390f35b34801561031757600080fd5b50610320610b9a565b60405161032d91906146c7565b60405180910390f35b610350600480360381019061034b9190614005565b610c2c565b005b34801561035e57600080fd5b5061037960048036038101906103749190614005565b610e23565b6040516103869190614608565b60405180910390f35b34801561039b57600080fd5b506103b660048036038101906103b19190613ea8565b610ea8565b005b3480156103c457600080fd5b506103df60048036038101906103da9190614032565b610fc0565b005b3480156103ed57600080fd5b5061040860048036038101906104039190613ee8565b61112a565b005b34801561041657600080fd5b5061041f6111ca565b60405161042c9190614a09565b60405180910390f35b34801561044157600080fd5b5061044a6111d0565b60405161045791906146ac565b60405180910390f35b34801561046c57600080fd5b506104756111e3565b6040516104829190614a09565b60405180910390f35b34801561049757600080fd5b506104a06111f0565b6040516104ad9190614a09565b60405180910390f35b3480156104c257600080fd5b506104dd60048036038101906104d89190613d92565b6111f6565b005b3480156104eb57600080fd5b5061050660048036038101906105019190613ea8565b611256565b6040516105139190614a09565b60405180910390f35b34801561052857600080fd5b506105316112fb565b60405161053e9190614a24565b60405180910390f35b34801561055357600080fd5b5061056e60048036038101906105699190613d25565b611305565b60405161057b91906146ac565b60405180910390f35b34801561059057600080fd5b506105ab60048036038101906105a69190613f35565b6113b4565b005b6105b561144d565b005b3480156105c357600080fd5b506105de60048036038101906105d99190613d92565b611564565b005b3480156105ec57600080fd5b5061060760048036038101906106029190613d25565b611584565b604051610614919061468a565b60405180910390f35b34801561062957600080fd5b50610644600480360381019061063f9190614005565b611632565b005b34801561065257600080fd5b5061066d60048036038101906106689190613f35565b6116b8565b005b34801561067b57600080fd5b5061069660048036038101906106919190614005565b611751565b6040516106a39190614a09565b60405180910390f35b3480156106b857600080fd5b506106c16117c2565b6040516106ce91906146ac565b60405180910390f35b3480156106e357600080fd5b506106fe60048036038101906106f99190613fbc565b6117d5565b005b34801561070c57600080fd5b5061071561186b565b60405161072291906146ac565b60405180910390f35b61074560048036038101906107409190614005565b61187e565b005b34801561075357600080fd5b5061076e60048036038101906107699190614005565b611a73565b60405161077b9190614608565b60405180910390f35b34801561079057600080fd5b506107ab60048036038101906107a69190613d25565b611b25565b6040516107b89190614a09565b60405180910390f35b3480156107cd57600080fd5b506107d6611bdd565b005b3480156107e457600080fd5b506107ff60048036038101906107fa9190614005565b611c65565b60405161080c9190614608565b60405180910390f35b34801561082157600080fd5b5061082a611ca4565b60405161083791906146c7565b60405180910390f35b34801561084c57600080fd5b5061086760048036038101906108629190614005565b611d32565b005b34801561087557600080fd5b50610890600480360381019061088b9190613d25565b611db8565b60405161089d91906146ac565b60405180910390f35b3480156108b257600080fd5b506108bb611e67565b6040516108c89190614608565b60405180910390f35b3480156108dd57600080fd5b506108e6611e91565b6040516108f391906146ac565b60405180910390f35b34801561090857600080fd5b50610911611ea4565b60405161091e91906146c7565b60405180910390f35b34801561093357600080fd5b5061093c611f36565b60405161094991906146ac565b60405180910390f35b34801561095e57600080fd5b5061097960048036038101906109749190613e68565b611f49565b005b34801561098757600080fd5b506109906120ca565b005b34801561099e57600080fd5b506109a7612163565b6040516109b49190614623565b60405180910390f35b3480156109c957600080fd5b506109e460048036038101906109df9190613de5565b612189565b005b3480156109f257600080fd5b50610a0d6004803603810190610a089190614005565b6121eb565b604051610a1a9190614608565b60405180910390f35b348015610a2f57600080fd5b50610a4a6004803603810190610a459190614005565b61222a565b604051610a5791906146c7565b60405180910390f35b610a7a6004803603810190610a759190614005565b612361565b005b348015610a8857600080fd5b50610a9161255f565b604051610a9e9190614a09565b60405180910390f35b348015610ab357600080fd5b50610ace6004803603810190610ac99190613d52565b612565565b604051610adb91906146ac565b60405180910390f35b348015610af057600080fd5b50610b0b6004803603810190610b069190613ee8565b6125f9565b005b348015610b1957600080fd5b50610b346004803603810190610b2f9190613fbc565b612699565b005b348015610b4257600080fd5b50610b5d6004803603810190610b589190613d25565b61272f565b005b348015610b6b57600080fd5b50610b866004803603810190610b819190613f35565b612827565b005b6000610b93826129ec565b9050919050565b606060008054610ba990614d3e565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd590614d3e565b8015610c225780601f10610bf757610100808354040283529160200191610c22565b820191906000526020600020905b815481529060010190602001808311610c0557829003601f168201915b5050505050905090565b601060009054906101000a900460ff1615610c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7390614789565b60405180910390fd5b60008111610c8957600080fd5b600f54811115610cce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc5906148a9565b60405180910390fd5b600e5481610cda6111e3565b610ce49190614b4d565b1115610d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1c90614809565b60405180910390fd5b80600d54610d339190614bd4565b341015610d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6c90614869565b60405180910390fd5b60011515601060019054906101000a900460ff1615151415610e205780600d54610d9f9190614bd4565b341015610de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd890614869565b60405180910390fd5b6000600190505b818111610e1e57610e0b3382610dfc6111e3565b610e069190614b4d565b612a66565b8080610e1690614da1565b915050610de8565b505b50565b6000610e2e82612a84565b610e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e64906148e9565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610eb382611a73565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1b90614989565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f43612af0565b73ffffffffffffffffffffffffffffffffffffffff161480610f725750610f7181610f6c612af0565b612565565b5b610fb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa890614829565b60405180910390fd5b610fbb8383612af8565b505050565b610fc8612af0565b73ffffffffffffffffffffffffffffffffffffffff16610fe6611e67565b73ffffffffffffffffffffffffffffffffffffffff161461103c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103390614909565b60405180910390fd5b6000609690508083111561104f57600080fd5b60008311611092576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108990614769565b60405180910390fd5b600e548361109e6111e3565b6110a89190614b4d565b11156110e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e0906149e9565b60405180910390fd5b60005b83811015611124576111118360016111026111e3565b61110c9190614b4d565b612a66565b808061111c90614da1565b9150506110ec565b50505050565b611132612af0565b73ffffffffffffffffffffffffffffffffffffffff16611150611e67565b73ffffffffffffffffffffffffffffffffffffffff16146111a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119d90614909565b60405180910390fd5b601260006111b49190613a22565b8181601291906111c5929190613a43565b505050565b600d5481565b601060039054906101000a900460ff1681565b6000600880549050905090565b600f5481565b611207611201612af0565b82612bb1565b611246576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123d906149a9565b60405180910390fd5b611251838383612c8f565b505050565b600061126183611b25565b82106112a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611299906146e9565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60006103e8905090565b600080600090505b6011805490508110156113a9578273ffffffffffffffffffffffffffffffffffffffff166011828154811061134557611344614ed7565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156113965760019150506113af565b80806113a190614da1565b91505061130d565b50600090505b919050565b6113bc612af0565b73ffffffffffffffffffffffffffffffffffffffff166113da611e67565b73ffffffffffffffffffffffffffffffffffffffff1614611430576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142790614909565b60405180910390fd5b80601060046101000a81548160ff02191690831515021790555050565b611455612af0565b73ffffffffffffffffffffffffffffffffffffffff16611473611e67565b73ffffffffffffffffffffffffffffffffffffffff16146114c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c090614909565b60405180910390fd5b6000601060059054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611511906145f3565b60006040518083038185875af1925050503d806000811461154e576040519150601f19603f3d011682016040523d82523d6000602084013e611553565b606091505b505090508061156157600080fd5b50565b61157f83838360405180602001604052806000815250612189565b505050565b6060600061159183611b25565b905060008167ffffffffffffffff8111156115af576115ae614f06565b5b6040519080825280602002602001820160405280156115dd5781602001602082028036833780820191505090505b50905060005b82811015611627576115f58582611256565b82828151811061160857611607614ed7565b5b602002602001018181525050808061161f90614da1565b9150506115e3565b508092505050919050565b61163a612af0565b73ffffffffffffffffffffffffffffffffffffffff16611658611e67565b73ffffffffffffffffffffffffffffffffffffffff16146116ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a590614909565b60405180910390fd5b80600d8190555050565b6116c0612af0565b73ffffffffffffffffffffffffffffffffffffffff166116de611e67565b73ffffffffffffffffffffffffffffffffffffffff1614611734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172b90614909565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b600061175b6111e3565b821061179c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611793906149c9565b60405180910390fd5b600882815481106117b0576117af614ed7565b5b90600052602060002001549050919050565b601060029054906101000a900460ff1681565b6117dd612af0565b73ffffffffffffffffffffffffffffffffffffffff166117fb611e67565b73ffffffffffffffffffffffffffffffffffffffff1614611851576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184890614909565b60405180910390fd5b80600b9080519060200190611867929190613ae3565b5050565b601060009054906101000a900460ff1681565b601060009054906101000a900460ff16156118ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c590614789565b60405180910390fd5b600181146118db57600080fd5b60006118e56111e3565b9050600f5482111561192c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611923906148a9565b60405180910390fd5b600e54828261193b9190614b4d565b111561197c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197390614809565b60405180910390fd5b611984611e67565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a6f5760011515601060039054906101000a900460ff1615151415611a6e576119db33611db8565b611a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1190614929565b60405180910390fd5b6000611a2533611b25565b9050600f548110611a3557600080fd5b6000600190505b838111611a6b57611a58338285611a539190614b4d565b612a66565b8080611a6390614da1565b915050611a3c565b50505b5b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1390614889565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8d90614849565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611be5612af0565b73ffffffffffffffffffffffffffffffffffffffff16611c03611e67565b73ffffffffffffffffffffffffffffffffffffffff1614611c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5090614909565b60405180910390fd5b611c636000612eeb565b565b60128181548110611c7557600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c8054611cb190614d3e565b80601f0160208091040260200160405190810160405280929190818152602001828054611cdd90614d3e565b8015611d2a5780601f10611cff57610100808354040283529160200191611d2a565b820191906000526020600020905b815481529060010190602001808311611d0d57829003601f168201915b505050505081565b611d3a612af0565b73ffffffffffffffffffffffffffffffffffffffff16611d58611e67565b73ffffffffffffffffffffffffffffffffffffffff1614611dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da590614909565b60405180910390fd5b80600f8190555050565b600080600090505b601280549050811015611e5c578273ffffffffffffffffffffffffffffffffffffffff1660128281548110611df857611df7614ed7565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611e49576001915050611e62565b8080611e5490614da1565b915050611dc0565b50600090505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601060019054906101000a900460ff1681565b606060018054611eb390614d3e565b80601f0160208091040260200160405190810160405280929190818152602001828054611edf90614d3e565b8015611f2c5780601f10611f0157610100808354040283529160200191611f2c565b820191906000526020600020905b815481529060010190602001808311611f0f57829003601f168201915b5050505050905090565b601060049054906101000a900460ff1681565b611f51612af0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb6906147c9565b60405180910390fd5b8060056000611fcc612af0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612079612af0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120be91906146ac565b60405180910390a35050565b6120d2612af0565b73ffffffffffffffffffffffffffffffffffffffff166120f0611e67565b73ffffffffffffffffffffffffffffffffffffffff1614612146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213d90614909565b60405180910390fd5b6001601060026101000a81548160ff021916908315150217905550565b601060059054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61219a612194612af0565b83612bb1565b6121d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d0906149a9565b60405180910390fd5b6121e584848484612fb1565b50505050565b601181815481106121fb57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606061223582612a84565b612274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226b90614969565b60405180910390fd5b60001515601060029054906101000a900460ff161515141561232257600c805461229d90614d3e565b80601f01602080910402602001604051908101604052809291908181526020018280546122c990614d3e565b80156123165780601f106122eb57610100808354040283529160200191612316565b820191906000526020600020905b8154815290600101906020018083116122f957829003601f168201915b5050505050905061235c565b600061232c61300d565b9050806123388461309f565b6040516020016123499291906145b9565b6040516020818303038152906040529150505b919050565b601060009054906101000a900460ff16156123b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a890614789565b60405180910390fd5b600081116123be57600080fd5b600f54811115612403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fa906148a9565b60405180910390fd5b600e548161240f6111e3565b6124199190614b4d565b111561245a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245190614809565b60405180910390fd5b612462611e67565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461255c5760011515601060049054906101000a900460ff161515141561255b5760006124bb33611b25565b9050600f5481106124cb57600080fd5b81600d546124d99190614bd4565b34101561251b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251290614869565b60405180910390fd5b6000600190505b8281116125585761254533826125366111e3565b6125409190614b4d565b612a66565b808061255090614da1565b915050612522565b50505b5b50565b600e5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612601612af0565b73ffffffffffffffffffffffffffffffffffffffff1661261f611e67565b73ffffffffffffffffffffffffffffffffffffffff1614612675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266c90614909565b60405180910390fd5b601160006126839190613a22565b818160119190612694929190613a43565b505050565b6126a1612af0565b73ffffffffffffffffffffffffffffffffffffffff166126bf611e67565b73ffffffffffffffffffffffffffffffffffffffff1614612715576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270c90614909565b60405180910390fd5b80600c908051906020019061272b929190613ae3565b5050565b612737612af0565b73ffffffffffffffffffffffffffffffffffffffff16612755611e67565b73ffffffffffffffffffffffffffffffffffffffff16146127ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a290614909565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561281b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281290614729565b60405180910390fd5b61282481612eeb565b50565b61282f612af0565b73ffffffffffffffffffffffffffffffffffffffff1661284d611e67565b73ffffffffffffffffffffffffffffffffffffffff16146128a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289a90614909565b60405180910390fd5b80601060046101000a81548160ff02191690831515021790555050565b600080823b905060008111915050919050565b6128de8383836129e7565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129215761291c81613200565b612960565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461295f5761295e8382613249565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129a35761299e816133b6565b6129e2565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146129e1576129e08282613487565b5b5b505050565b505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612a5f5750612a5e82613506565b5b9050919050565b612a808282604051806020016040528060008152506135e8565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612b6b83611a73565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612bbc82612a84565b612bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf2906147e9565b60405180910390fd5b6000612c0683611a73565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612c7557508373ffffffffffffffffffffffffffffffffffffffff16612c5d84610e23565b73ffffffffffffffffffffffffffffffffffffffff16145b80612c865750612c858185612565565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612caf82611a73565b73ffffffffffffffffffffffffffffffffffffffff1614612d05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cfc90614949565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6c906147a9565b60405180910390fd5b612d80838383613643565b612d8b600082612af8565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ddb9190614c2e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e329190614b4d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612fbc848484612c8f565b612fc884848484613653565b613007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ffe90614709565b60405180910390fd5b50505050565b6060600b805461301c90614d3e565b80601f016020809104026020016040519081016040528092919081815260200182805461304890614d3e565b80156130955780601f1061306a57610100808354040283529160200191613095565b820191906000526020600020905b81548152906001019060200180831161307857829003601f168201915b5050505050905090565b606060008214156130e7576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506131fb565b600082905060005b6000821461311957808061310290614da1565b915050600a826131129190614ba3565b91506130ef565b60008167ffffffffffffffff81111561313557613134614f06565b5b6040519080825280601f01601f1916602001820160405280156131675781602001600182028036833780820191505090505b5090505b600085146131f4576001826131809190614c2e565b9150600a8561318f9190614dea565b603061319b9190614b4d565b60f81b8183815181106131b1576131b0614ed7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131ed9190614ba3565b945061316b565b8093505050505b919050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161325684611b25565b6132609190614c2e565b9050600060076000848152602001908152602001600020549050818114613345576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506133ca9190614c2e565b90506000600960008481526020019081526020016000205490506000600883815481106133fa576133f9614ed7565b5b90600052602060002001549050806008838154811061341c5761341b614ed7565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061346b5761346a614ea8565b5b6001900381819060005260206000200160009055905550505050565b600061349283611b25565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806135d157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806135e157506135e0826137ea565b5b9050919050565b6135f28383613854565b6135ff6000848484613653565b61363e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161363590614709565b60405180910390fd5b505050565b61364e8383836128d3565b505050565b60006136748473ffffffffffffffffffffffffffffffffffffffff166128c0565b156137dd578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261369d612af0565b8786866040518563ffffffff1660e01b81526004016136bf949392919061463e565b602060405180830381600087803b1580156136d957600080fd5b505af192505050801561370a57506040513d601f19601f820116820180604052508101906137079190613f8f565b60015b61378d573d806000811461373a576040519150601f19603f3d011682016040523d82523d6000602084013e61373f565b606091505b50600081511415613785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161377c90614709565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506137e2565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156138c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138bb906148c9565b60405180910390fd5b6138cd81612a84565b1561390d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161390490614749565b60405180910390fd5b61391960008383613643565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139699190614b4d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b5080546000825590600052602060002090810190613a409190613b69565b50565b828054828255906000526020600020908101928215613ad2579160200282015b82811115613ad157823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190613a63565b5b509050613adf9190613b69565b5090565b828054613aef90614d3e565b90600052602060002090601f016020900481019282613b115760008555613b58565b82601f10613b2a57805160ff1916838001178555613b58565b82800160010185558215613b58579182015b82811115613b57578251825591602001919060010190613b3c565b5b509050613b659190613b69565b5090565b5b80821115613b82576000816000905550600101613b6a565b5090565b6000613b99613b9484614a64565b614a3f565b905082815260208101848484011115613bb557613bb4614f44565b5b613bc0848285614cfc565b509392505050565b6000613bdb613bd684614a95565b614a3f565b905082815260208101848484011115613bf757613bf6614f44565b5b613c02848285614cfc565b509392505050565b600081359050613c1981615640565b92915050565b60008083601f840112613c3557613c34614f3a565b5b8235905067ffffffffffffffff811115613c5257613c51614f35565b5b602083019150836020820283011115613c6e57613c6d614f3f565b5b9250929050565b600081359050613c8481615657565b92915050565b600081359050613c998161566e565b92915050565b600081519050613cae8161566e565b92915050565b600082601f830112613cc957613cc8614f3a565b5b8135613cd9848260208601613b86565b91505092915050565b600082601f830112613cf757613cf6614f3a565b5b8135613d07848260208601613bc8565b91505092915050565b600081359050613d1f81615685565b92915050565b600060208284031215613d3b57613d3a614f4e565b5b6000613d4984828501613c0a565b91505092915050565b60008060408385031215613d6957613d68614f4e565b5b6000613d7785828601613c0a565b9250506020613d8885828601613c0a565b9150509250929050565b600080600060608486031215613dab57613daa614f4e565b5b6000613db986828701613c0a565b9350506020613dca86828701613c0a565b9250506040613ddb86828701613d10565b9150509250925092565b60008060008060808587031215613dff57613dfe614f4e565b5b6000613e0d87828801613c0a565b9450506020613e1e87828801613c0a565b9350506040613e2f87828801613d10565b925050606085013567ffffffffffffffff811115613e5057613e4f614f49565b5b613e5c87828801613cb4565b91505092959194509250565b60008060408385031215613e7f57613e7e614f4e565b5b6000613e8d85828601613c0a565b9250506020613e9e85828601613c75565b9150509250929050565b60008060408385031215613ebf57613ebe614f4e565b5b6000613ecd85828601613c0a565b9250506020613ede85828601613d10565b9150509250929050565b60008060208385031215613eff57613efe614f4e565b5b600083013567ffffffffffffffff811115613f1d57613f1c614f49565b5b613f2985828601613c1f565b92509250509250929050565b600060208284031215613f4b57613f4a614f4e565b5b6000613f5984828501613c75565b91505092915050565b600060208284031215613f7857613f77614f4e565b5b6000613f8684828501613c8a565b91505092915050565b600060208284031215613fa557613fa4614f4e565b5b6000613fb384828501613c9f565b91505092915050565b600060208284031215613fd257613fd1614f4e565b5b600082013567ffffffffffffffff811115613ff057613fef614f49565b5b613ffc84828501613ce2565b91505092915050565b60006020828403121561401b5761401a614f4e565b5b600061402984828501613d10565b91505092915050565b6000806040838503121561404957614048614f4e565b5b600061405785828601613d10565b925050602061406885828601613c0a565b9150509250929050565b600061407e838361458c565b60208301905092915050565b61409381614c74565b82525050565b6140a281614c62565b82525050565b60006140b382614ad6565b6140bd8185614b04565b93506140c883614ac6565b8060005b838110156140f95781516140e08882614072565b97506140eb83614af7565b9250506001810190506140cc565b5085935050505092915050565b61410f81614c86565b82525050565b600061412082614ae1565b61412a8185614b15565b935061413a818560208601614d0b565b61414381614f53565b840191505092915050565b600061415982614aec565b6141638185614b31565b9350614173818560208601614d0b565b61417c81614f53565b840191505092915050565b600061419282614aec565b61419c8185614b42565b93506141ac818560208601614d0b565b80840191505092915050565b60006141c5602b83614b31565b91506141d082614f64565b604082019050919050565b60006141e8603283614b31565b91506141f382614fb3565b604082019050919050565b600061420b602683614b31565b915061421682615002565b604082019050919050565b600061422e601c83614b31565b915061423982615051565b602082019050919050565b6000614251600f83614b31565b915061425c8261507a565b602082019050919050565b6000614274601383614b31565b915061427f826150a3565b602082019050919050565b6000614297602483614b31565b91506142a2826150cc565b604082019050919050565b60006142ba601983614b31565b91506142c58261511b565b602082019050919050565b60006142dd602c83614b31565b91506142e882615144565b604082019050919050565b6000614300603383614b31565b915061430b82615193565b604082019050919050565b6000614323603883614b31565b915061432e826151e2565b604082019050919050565b6000614346602a83614b31565b915061435182615231565b604082019050919050565b6000614369601183614b31565b915061437482615280565b602082019050919050565b600061438c602983614b31565b9150614397826152a9565b604082019050919050565b60006143af602383614b31565b91506143ba826152f8565b604082019050919050565b60006143d2602083614b31565b91506143dd82615347565b602082019050919050565b60006143f5602c83614b31565b915061440082615370565b604082019050919050565b6000614418600583614b42565b9150614423826153bf565b600582019050919050565b600061443b602083614b31565b9150614446826153e8565b602082019050919050565b600061445e602383614b31565b915061446982615411565b604082019050919050565b6000614481602983614b31565b915061448c82615460565b604082019050919050565b60006144a4602f83614b31565b91506144af826154af565b604082019050919050565b60006144c7602183614b31565b91506144d2826154fe565b604082019050919050565b60006144ea600083614b26565b91506144f58261554d565b600082019050919050565b600061450d603183614b31565b915061451882615550565b604082019050919050565b6000614530602c83614b31565b915061453b8261559f565b604082019050919050565b6000614553600c83614b31565b915061455e826155ee565b602082019050919050565b6000614576600183614b42565b915061458182615617565b600182019050919050565b61459581614cde565b82525050565b6145a481614cde565b82525050565b6145b381614ce8565b82525050565b60006145c58285614187565b91506145d082614569565b91506145dc8284614187565b91506145e78261440b565b91508190509392505050565b60006145fe826144dd565b9150819050919050565b600060208201905061461d6000830184614099565b92915050565b6000602082019050614638600083018461408a565b92915050565b60006080820190506146536000830187614099565b6146606020830186614099565b61466d604083018561459b565b818103606083015261467f8184614115565b905095945050505050565b600060208201905081810360008301526146a481846140a8565b905092915050565b60006020820190506146c16000830184614106565b92915050565b600060208201905081810360008301526146e1818461414e565b905092915050565b60006020820190508181036000830152614702816141b8565b9050919050565b60006020820190508181036000830152614722816141db565b9050919050565b60006020820190508181036000830152614742816141fe565b9050919050565b6000602082019050818103600083015261476281614221565b9050919050565b6000602082019050818103600083015261478281614244565b9050919050565b600060208201905081810360008301526147a281614267565b9050919050565b600060208201905081810360008301526147c28161428a565b9050919050565b600060208201905081810360008301526147e2816142ad565b9050919050565b60006020820190508181036000830152614802816142d0565b9050919050565b60006020820190508181036000830152614822816142f3565b9050919050565b6000602082019050818103600083015261484281614316565b9050919050565b6000602082019050818103600083015261486281614339565b9050919050565b600060208201905081810360008301526148828161435c565b9050919050565b600060208201905081810360008301526148a28161437f565b9050919050565b600060208201905081810360008301526148c2816143a2565b9050919050565b600060208201905081810360008301526148e2816143c5565b9050919050565b60006020820190508181036000830152614902816143e8565b9050919050565b600060208201905081810360008301526149228161442e565b9050919050565b6000602082019050818103600083015261494281614451565b9050919050565b6000602082019050818103600083015261496281614474565b9050919050565b6000602082019050818103600083015261498281614497565b9050919050565b600060208201905081810360008301526149a2816144ba565b9050919050565b600060208201905081810360008301526149c281614500565b9050919050565b600060208201905081810360008301526149e281614523565b9050919050565b60006020820190508181036000830152614a0281614546565b9050919050565b6000602082019050614a1e600083018461459b565b92915050565b6000602082019050614a3960008301846145aa565b92915050565b6000614a49614a5a565b9050614a558282614d70565b919050565b6000604051905090565b600067ffffffffffffffff821115614a7f57614a7e614f06565b5b614a8882614f53565b9050602081019050919050565b600067ffffffffffffffff821115614ab057614aaf614f06565b5b614ab982614f53565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614b5882614cde565b9150614b6383614cde565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b9857614b97614e1b565b5b828201905092915050565b6000614bae82614cde565b9150614bb983614cde565b925082614bc957614bc8614e4a565b5b828204905092915050565b6000614bdf82614cde565b9150614bea83614cde565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614c2357614c22614e1b565b5b828202905092915050565b6000614c3982614cde565b9150614c4483614cde565b925082821015614c5757614c56614e1b565b5b828203905092915050565b6000614c6d82614cbe565b9050919050565b6000614c7f82614cbe565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015614d29578082015181840152602081019050614d0e565b83811115614d38576000848401525b50505050565b60006002820490506001821680614d5657607f821691505b60208210811415614d6a57614d69614e79565b5b50919050565b614d7982614f53565b810181811067ffffffffffffffff82111715614d9857614d97614f06565b5b80604052505050565b6000614dac82614cde565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614ddf57614dde614e1b565b5b600182019050919050565b6000614df582614cde565b9150614e0083614cde565b925082614e1057614e0f614e4a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6d696e696d756d203120746f6b656e0000000000000000000000000000000000600082015250565b7f436f6e7472616374206973207061757365642100000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f66207468697320636f6c6c656374696f6e00000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4e6f7420456e6f7567682046756e647321000000000000000000000000000000600082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e742031303030204e46542773206174206120746960008201527f6d65210000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f55736572206973206e6f7420676f7665726e616e63652077686974656c69737460008201527f6564210000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f6f7574206f662073746f636b0000000000000000000000000000000000000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b61564981614c62565b811461565457600080fd5b50565b61566081614c86565b811461566b57600080fd5b50565b61567781614c92565b811461568257600080fd5b50565b61568e81614cde565b811461569957600080fd5b5056fea2646970667358221220c54ff7afb164edb9df8e151d1c59a9de4643a2d298a13f1bc1c022250413707b64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000180000000000000000000000000648e68dd3e5c243fdbf6462953e535fe3c7f26c700000000000000000000000000000000000000000000000000000000000000114672616374696f6e616c20427269636b73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000546424e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d65547162394a624e73316361425a7033397a4254504c7031725a69536e6279566f4b6f474b4272527266797000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d643251386734576a4d666245666f72314c5853734c394b554c3933756361534b756650695857477a4a5375610000000000000000000000

Deployed Bytecode

0x6080604052600436106102c95760003560e01c8063632db54811610175578063a22cb465116100dc578063c9b298f111610095578063edec5f271161006f578063edec5f2714610ae4578063f2c4ce1e14610b0d578063f2fde38b14610b36578063fa152d6a14610b5f576102c9565b8063c9b298f114610a60578063d5abeb0114610a7c578063e985e9c514610aa7576102c9565b8063a22cb46514610952578063a475b5dd1461097b578063a6d23e1014610992578063b88d4fde146109bd578063ba4e5c49146109e6578063c87b56dd14610a23576102c9565b80637f00c7a61161012e5780637f00c7a614610840578063884b00ab146108695780638da5cb5b146108a657806395527a12146108d157806395d89b41146108fc5780639c70b51214610927576102c9565b8063632db5481461072b5780636352211e1461074757806370a0823114610784578063715018a6146107c157806371c7d06f146107d85780637225038014610815576102c9565b80632f745c5911610234578063438b6300116101ed5780634f6ccce7116101c75780634f6ccce71461066f57806351830227146106ac57806355f804b3146106d75780635c975abb14610700576102c9565b8063438b6300146105e057806344a0d68a1461061d5780634c2ebff614610646576102c9565b80632f745c59146104df578063339181d91461051c5780633af32abf146105475780633c952764146105845780633ccfd60b146105ad57806342842e0e146105b7576102c9565b80631352eb06116102865780631352eb06146103e157806313faede61461040a57806315f9dddd1461043557806318160ddd14610460578063239c70ae1461048b57806323b872dd146104b6576102c9565b806301ffc9a7146102ce57806306fdde031461030b5780630788370314610336578063081812fc14610352578063095ea7b31461038f5780630dc28efe146103b8575b600080fd5b3480156102da57600080fd5b506102f560048036038101906102f09190613f62565b610b88565b60405161030291906146ac565b60405180910390f35b34801561031757600080fd5b50610320610b9a565b60405161032d91906146c7565b60405180910390f35b610350600480360381019061034b9190614005565b610c2c565b005b34801561035e57600080fd5b5061037960048036038101906103749190614005565b610e23565b6040516103869190614608565b60405180910390f35b34801561039b57600080fd5b506103b660048036038101906103b19190613ea8565b610ea8565b005b3480156103c457600080fd5b506103df60048036038101906103da9190614032565b610fc0565b005b3480156103ed57600080fd5b5061040860048036038101906104039190613ee8565b61112a565b005b34801561041657600080fd5b5061041f6111ca565b60405161042c9190614a09565b60405180910390f35b34801561044157600080fd5b5061044a6111d0565b60405161045791906146ac565b60405180910390f35b34801561046c57600080fd5b506104756111e3565b6040516104829190614a09565b60405180910390f35b34801561049757600080fd5b506104a06111f0565b6040516104ad9190614a09565b60405180910390f35b3480156104c257600080fd5b506104dd60048036038101906104d89190613d92565b6111f6565b005b3480156104eb57600080fd5b5061050660048036038101906105019190613ea8565b611256565b6040516105139190614a09565b60405180910390f35b34801561052857600080fd5b506105316112fb565b60405161053e9190614a24565b60405180910390f35b34801561055357600080fd5b5061056e60048036038101906105699190613d25565b611305565b60405161057b91906146ac565b60405180910390f35b34801561059057600080fd5b506105ab60048036038101906105a69190613f35565b6113b4565b005b6105b561144d565b005b3480156105c357600080fd5b506105de60048036038101906105d99190613d92565b611564565b005b3480156105ec57600080fd5b5061060760048036038101906106029190613d25565b611584565b604051610614919061468a565b60405180910390f35b34801561062957600080fd5b50610644600480360381019061063f9190614005565b611632565b005b34801561065257600080fd5b5061066d60048036038101906106689190613f35565b6116b8565b005b34801561067b57600080fd5b5061069660048036038101906106919190614005565b611751565b6040516106a39190614a09565b60405180910390f35b3480156106b857600080fd5b506106c16117c2565b6040516106ce91906146ac565b60405180910390f35b3480156106e357600080fd5b506106fe60048036038101906106f99190613fbc565b6117d5565b005b34801561070c57600080fd5b5061071561186b565b60405161072291906146ac565b60405180910390f35b61074560048036038101906107409190614005565b61187e565b005b34801561075357600080fd5b5061076e60048036038101906107699190614005565b611a73565b60405161077b9190614608565b60405180910390f35b34801561079057600080fd5b506107ab60048036038101906107a69190613d25565b611b25565b6040516107b89190614a09565b60405180910390f35b3480156107cd57600080fd5b506107d6611bdd565b005b3480156107e457600080fd5b506107ff60048036038101906107fa9190614005565b611c65565b60405161080c9190614608565b60405180910390f35b34801561082157600080fd5b5061082a611ca4565b60405161083791906146c7565b60405180910390f35b34801561084c57600080fd5b5061086760048036038101906108629190614005565b611d32565b005b34801561087557600080fd5b50610890600480360381019061088b9190613d25565b611db8565b60405161089d91906146ac565b60405180910390f35b3480156108b257600080fd5b506108bb611e67565b6040516108c89190614608565b60405180910390f35b3480156108dd57600080fd5b506108e6611e91565b6040516108f391906146ac565b60405180910390f35b34801561090857600080fd5b50610911611ea4565b60405161091e91906146c7565b60405180910390f35b34801561093357600080fd5b5061093c611f36565b60405161094991906146ac565b60405180910390f35b34801561095e57600080fd5b5061097960048036038101906109749190613e68565b611f49565b005b34801561098757600080fd5b506109906120ca565b005b34801561099e57600080fd5b506109a7612163565b6040516109b49190614623565b60405180910390f35b3480156109c957600080fd5b506109e460048036038101906109df9190613de5565b612189565b005b3480156109f257600080fd5b50610a0d6004803603810190610a089190614005565b6121eb565b604051610a1a9190614608565b60405180910390f35b348015610a2f57600080fd5b50610a4a6004803603810190610a459190614005565b61222a565b604051610a5791906146c7565b60405180910390f35b610a7a6004803603810190610a759190614005565b612361565b005b348015610a8857600080fd5b50610a9161255f565b604051610a9e9190614a09565b60405180910390f35b348015610ab357600080fd5b50610ace6004803603810190610ac99190613d52565b612565565b604051610adb91906146ac565b60405180910390f35b348015610af057600080fd5b50610b0b6004803603810190610b069190613ee8565b6125f9565b005b348015610b1957600080fd5b50610b346004803603810190610b2f9190613fbc565b612699565b005b348015610b4257600080fd5b50610b5d6004803603810190610b589190613d25565b61272f565b005b348015610b6b57600080fd5b50610b866004803603810190610b819190613f35565b612827565b005b6000610b93826129ec565b9050919050565b606060008054610ba990614d3e565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd590614d3e565b8015610c225780601f10610bf757610100808354040283529160200191610c22565b820191906000526020600020905b815481529060010190602001808311610c0557829003601f168201915b5050505050905090565b601060009054906101000a900460ff1615610c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7390614789565b60405180910390fd5b60008111610c8957600080fd5b600f54811115610cce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc5906148a9565b60405180910390fd5b600e5481610cda6111e3565b610ce49190614b4d565b1115610d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1c90614809565b60405180910390fd5b80600d54610d339190614bd4565b341015610d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6c90614869565b60405180910390fd5b60011515601060019054906101000a900460ff1615151415610e205780600d54610d9f9190614bd4565b341015610de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd890614869565b60405180910390fd5b6000600190505b818111610e1e57610e0b3382610dfc6111e3565b610e069190614b4d565b612a66565b8080610e1690614da1565b915050610de8565b505b50565b6000610e2e82612a84565b610e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e64906148e9565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610eb382611a73565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1b90614989565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f43612af0565b73ffffffffffffffffffffffffffffffffffffffff161480610f725750610f7181610f6c612af0565b612565565b5b610fb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa890614829565b60405180910390fd5b610fbb8383612af8565b505050565b610fc8612af0565b73ffffffffffffffffffffffffffffffffffffffff16610fe6611e67565b73ffffffffffffffffffffffffffffffffffffffff161461103c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103390614909565b60405180910390fd5b6000609690508083111561104f57600080fd5b60008311611092576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108990614769565b60405180910390fd5b600e548361109e6111e3565b6110a89190614b4d565b11156110e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e0906149e9565b60405180910390fd5b60005b83811015611124576111118360016111026111e3565b61110c9190614b4d565b612a66565b808061111c90614da1565b9150506110ec565b50505050565b611132612af0565b73ffffffffffffffffffffffffffffffffffffffff16611150611e67565b73ffffffffffffffffffffffffffffffffffffffff16146111a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119d90614909565b60405180910390fd5b601260006111b49190613a22565b8181601291906111c5929190613a43565b505050565b600d5481565b601060039054906101000a900460ff1681565b6000600880549050905090565b600f5481565b611207611201612af0565b82612bb1565b611246576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123d906149a9565b60405180910390fd5b611251838383612c8f565b505050565b600061126183611b25565b82106112a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611299906146e9565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60006103e8905090565b600080600090505b6011805490508110156113a9578273ffffffffffffffffffffffffffffffffffffffff166011828154811061134557611344614ed7565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156113965760019150506113af565b80806113a190614da1565b91505061130d565b50600090505b919050565b6113bc612af0565b73ffffffffffffffffffffffffffffffffffffffff166113da611e67565b73ffffffffffffffffffffffffffffffffffffffff1614611430576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142790614909565b60405180910390fd5b80601060046101000a81548160ff02191690831515021790555050565b611455612af0565b73ffffffffffffffffffffffffffffffffffffffff16611473611e67565b73ffffffffffffffffffffffffffffffffffffffff16146114c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c090614909565b60405180910390fd5b6000601060059054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611511906145f3565b60006040518083038185875af1925050503d806000811461154e576040519150601f19603f3d011682016040523d82523d6000602084013e611553565b606091505b505090508061156157600080fd5b50565b61157f83838360405180602001604052806000815250612189565b505050565b6060600061159183611b25565b905060008167ffffffffffffffff8111156115af576115ae614f06565b5b6040519080825280602002602001820160405280156115dd5781602001602082028036833780820191505090505b50905060005b82811015611627576115f58582611256565b82828151811061160857611607614ed7565b5b602002602001018181525050808061161f90614da1565b9150506115e3565b508092505050919050565b61163a612af0565b73ffffffffffffffffffffffffffffffffffffffff16611658611e67565b73ffffffffffffffffffffffffffffffffffffffff16146116ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a590614909565b60405180910390fd5b80600d8190555050565b6116c0612af0565b73ffffffffffffffffffffffffffffffffffffffff166116de611e67565b73ffffffffffffffffffffffffffffffffffffffff1614611734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172b90614909565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b600061175b6111e3565b821061179c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611793906149c9565b60405180910390fd5b600882815481106117b0576117af614ed7565b5b90600052602060002001549050919050565b601060029054906101000a900460ff1681565b6117dd612af0565b73ffffffffffffffffffffffffffffffffffffffff166117fb611e67565b73ffffffffffffffffffffffffffffffffffffffff1614611851576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184890614909565b60405180910390fd5b80600b9080519060200190611867929190613ae3565b5050565b601060009054906101000a900460ff1681565b601060009054906101000a900460ff16156118ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c590614789565b60405180910390fd5b600181146118db57600080fd5b60006118e56111e3565b9050600f5482111561192c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611923906148a9565b60405180910390fd5b600e54828261193b9190614b4d565b111561197c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197390614809565b60405180910390fd5b611984611e67565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a6f5760011515601060039054906101000a900460ff1615151415611a6e576119db33611db8565b611a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1190614929565b60405180910390fd5b6000611a2533611b25565b9050600f548110611a3557600080fd5b6000600190505b838111611a6b57611a58338285611a539190614b4d565b612a66565b8080611a6390614da1565b915050611a3c565b50505b5b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1390614889565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8d90614849565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611be5612af0565b73ffffffffffffffffffffffffffffffffffffffff16611c03611e67565b73ffffffffffffffffffffffffffffffffffffffff1614611c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5090614909565b60405180910390fd5b611c636000612eeb565b565b60128181548110611c7557600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c8054611cb190614d3e565b80601f0160208091040260200160405190810160405280929190818152602001828054611cdd90614d3e565b8015611d2a5780601f10611cff57610100808354040283529160200191611d2a565b820191906000526020600020905b815481529060010190602001808311611d0d57829003601f168201915b505050505081565b611d3a612af0565b73ffffffffffffffffffffffffffffffffffffffff16611d58611e67565b73ffffffffffffffffffffffffffffffffffffffff1614611dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da590614909565b60405180910390fd5b80600f8190555050565b600080600090505b601280549050811015611e5c578273ffffffffffffffffffffffffffffffffffffffff1660128281548110611df857611df7614ed7565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611e49576001915050611e62565b8080611e5490614da1565b915050611dc0565b50600090505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601060019054906101000a900460ff1681565b606060018054611eb390614d3e565b80601f0160208091040260200160405190810160405280929190818152602001828054611edf90614d3e565b8015611f2c5780601f10611f0157610100808354040283529160200191611f2c565b820191906000526020600020905b815481529060010190602001808311611f0f57829003601f168201915b5050505050905090565b601060049054906101000a900460ff1681565b611f51612af0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb6906147c9565b60405180910390fd5b8060056000611fcc612af0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612079612af0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120be91906146ac565b60405180910390a35050565b6120d2612af0565b73ffffffffffffffffffffffffffffffffffffffff166120f0611e67565b73ffffffffffffffffffffffffffffffffffffffff1614612146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213d90614909565b60405180910390fd5b6001601060026101000a81548160ff021916908315150217905550565b601060059054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61219a612194612af0565b83612bb1565b6121d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d0906149a9565b60405180910390fd5b6121e584848484612fb1565b50505050565b601181815481106121fb57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606061223582612a84565b612274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226b90614969565b60405180910390fd5b60001515601060029054906101000a900460ff161515141561232257600c805461229d90614d3e565b80601f01602080910402602001604051908101604052809291908181526020018280546122c990614d3e565b80156123165780601f106122eb57610100808354040283529160200191612316565b820191906000526020600020905b8154815290600101906020018083116122f957829003601f168201915b5050505050905061235c565b600061232c61300d565b9050806123388461309f565b6040516020016123499291906145b9565b6040516020818303038152906040529150505b919050565b601060009054906101000a900460ff16156123b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a890614789565b60405180910390fd5b600081116123be57600080fd5b600f54811115612403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fa906148a9565b60405180910390fd5b600e548161240f6111e3565b6124199190614b4d565b111561245a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245190614809565b60405180910390fd5b612462611e67565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461255c5760011515601060049054906101000a900460ff161515141561255b5760006124bb33611b25565b9050600f5481106124cb57600080fd5b81600d546124d99190614bd4565b34101561251b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251290614869565b60405180910390fd5b6000600190505b8281116125585761254533826125366111e3565b6125409190614b4d565b612a66565b808061255090614da1565b915050612522565b50505b5b50565b600e5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612601612af0565b73ffffffffffffffffffffffffffffffffffffffff1661261f611e67565b73ffffffffffffffffffffffffffffffffffffffff1614612675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266c90614909565b60405180910390fd5b601160006126839190613a22565b818160119190612694929190613a43565b505050565b6126a1612af0565b73ffffffffffffffffffffffffffffffffffffffff166126bf611e67565b73ffffffffffffffffffffffffffffffffffffffff1614612715576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270c90614909565b60405180910390fd5b80600c908051906020019061272b929190613ae3565b5050565b612737612af0565b73ffffffffffffffffffffffffffffffffffffffff16612755611e67565b73ffffffffffffffffffffffffffffffffffffffff16146127ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a290614909565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561281b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281290614729565b60405180910390fd5b61282481612eeb565b50565b61282f612af0565b73ffffffffffffffffffffffffffffffffffffffff1661284d611e67565b73ffffffffffffffffffffffffffffffffffffffff16146128a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289a90614909565b60405180910390fd5b80601060046101000a81548160ff02191690831515021790555050565b600080823b905060008111915050919050565b6128de8383836129e7565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129215761291c81613200565b612960565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461295f5761295e8382613249565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129a35761299e816133b6565b6129e2565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146129e1576129e08282613487565b5b5b505050565b505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612a5f5750612a5e82613506565b5b9050919050565b612a808282604051806020016040528060008152506135e8565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612b6b83611a73565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612bbc82612a84565b612bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf2906147e9565b60405180910390fd5b6000612c0683611a73565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612c7557508373ffffffffffffffffffffffffffffffffffffffff16612c5d84610e23565b73ffffffffffffffffffffffffffffffffffffffff16145b80612c865750612c858185612565565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612caf82611a73565b73ffffffffffffffffffffffffffffffffffffffff1614612d05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cfc90614949565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6c906147a9565b60405180910390fd5b612d80838383613643565b612d8b600082612af8565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ddb9190614c2e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e329190614b4d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612fbc848484612c8f565b612fc884848484613653565b613007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ffe90614709565b60405180910390fd5b50505050565b6060600b805461301c90614d3e565b80601f016020809104026020016040519081016040528092919081815260200182805461304890614d3e565b80156130955780601f1061306a57610100808354040283529160200191613095565b820191906000526020600020905b81548152906001019060200180831161307857829003601f168201915b5050505050905090565b606060008214156130e7576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506131fb565b600082905060005b6000821461311957808061310290614da1565b915050600a826131129190614ba3565b91506130ef565b60008167ffffffffffffffff81111561313557613134614f06565b5b6040519080825280601f01601f1916602001820160405280156131675781602001600182028036833780820191505090505b5090505b600085146131f4576001826131809190614c2e565b9150600a8561318f9190614dea565b603061319b9190614b4d565b60f81b8183815181106131b1576131b0614ed7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131ed9190614ba3565b945061316b565b8093505050505b919050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161325684611b25565b6132609190614c2e565b9050600060076000848152602001908152602001600020549050818114613345576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506133ca9190614c2e565b90506000600960008481526020019081526020016000205490506000600883815481106133fa576133f9614ed7565b5b90600052602060002001549050806008838154811061341c5761341b614ed7565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061346b5761346a614ea8565b5b6001900381819060005260206000200160009055905550505050565b600061349283611b25565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806135d157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806135e157506135e0826137ea565b5b9050919050565b6135f28383613854565b6135ff6000848484613653565b61363e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161363590614709565b60405180910390fd5b505050565b61364e8383836128d3565b505050565b60006136748473ffffffffffffffffffffffffffffffffffffffff166128c0565b156137dd578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261369d612af0565b8786866040518563ffffffff1660e01b81526004016136bf949392919061463e565b602060405180830381600087803b1580156136d957600080fd5b505af192505050801561370a57506040513d601f19601f820116820180604052508101906137079190613f8f565b60015b61378d573d806000811461373a576040519150601f19603f3d011682016040523d82523d6000602084013e61373f565b606091505b50600081511415613785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161377c90614709565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506137e2565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156138c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138bb906148c9565b60405180910390fd5b6138cd81612a84565b1561390d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161390490614749565b60405180910390fd5b61391960008383613643565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139699190614b4d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b5080546000825590600052602060002090810190613a409190613b69565b50565b828054828255906000526020600020908101928215613ad2579160200282015b82811115613ad157823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190613a63565b5b509050613adf9190613b69565b5090565b828054613aef90614d3e565b90600052602060002090601f016020900481019282613b115760008555613b58565b82601f10613b2a57805160ff1916838001178555613b58565b82800160010185558215613b58579182015b82811115613b57578251825591602001919060010190613b3c565b5b509050613b659190613b69565b5090565b5b80821115613b82576000816000905550600101613b6a565b5090565b6000613b99613b9484614a64565b614a3f565b905082815260208101848484011115613bb557613bb4614f44565b5b613bc0848285614cfc565b509392505050565b6000613bdb613bd684614a95565b614a3f565b905082815260208101848484011115613bf757613bf6614f44565b5b613c02848285614cfc565b509392505050565b600081359050613c1981615640565b92915050565b60008083601f840112613c3557613c34614f3a565b5b8235905067ffffffffffffffff811115613c5257613c51614f35565b5b602083019150836020820283011115613c6e57613c6d614f3f565b5b9250929050565b600081359050613c8481615657565b92915050565b600081359050613c998161566e565b92915050565b600081519050613cae8161566e565b92915050565b600082601f830112613cc957613cc8614f3a565b5b8135613cd9848260208601613b86565b91505092915050565b600082601f830112613cf757613cf6614f3a565b5b8135613d07848260208601613bc8565b91505092915050565b600081359050613d1f81615685565b92915050565b600060208284031215613d3b57613d3a614f4e565b5b6000613d4984828501613c0a565b91505092915050565b60008060408385031215613d6957613d68614f4e565b5b6000613d7785828601613c0a565b9250506020613d8885828601613c0a565b9150509250929050565b600080600060608486031215613dab57613daa614f4e565b5b6000613db986828701613c0a565b9350506020613dca86828701613c0a565b9250506040613ddb86828701613d10565b9150509250925092565b60008060008060808587031215613dff57613dfe614f4e565b5b6000613e0d87828801613c0a565b9450506020613e1e87828801613c0a565b9350506040613e2f87828801613d10565b925050606085013567ffffffffffffffff811115613e5057613e4f614f49565b5b613e5c87828801613cb4565b91505092959194509250565b60008060408385031215613e7f57613e7e614f4e565b5b6000613e8d85828601613c0a565b9250506020613e9e85828601613c75565b9150509250929050565b60008060408385031215613ebf57613ebe614f4e565b5b6000613ecd85828601613c0a565b9250506020613ede85828601613d10565b9150509250929050565b60008060208385031215613eff57613efe614f4e565b5b600083013567ffffffffffffffff811115613f1d57613f1c614f49565b5b613f2985828601613c1f565b92509250509250929050565b600060208284031215613f4b57613f4a614f4e565b5b6000613f5984828501613c75565b91505092915050565b600060208284031215613f7857613f77614f4e565b5b6000613f8684828501613c8a565b91505092915050565b600060208284031215613fa557613fa4614f4e565b5b6000613fb384828501613c9f565b91505092915050565b600060208284031215613fd257613fd1614f4e565b5b600082013567ffffffffffffffff811115613ff057613fef614f49565b5b613ffc84828501613ce2565b91505092915050565b60006020828403121561401b5761401a614f4e565b5b600061402984828501613d10565b91505092915050565b6000806040838503121561404957614048614f4e565b5b600061405785828601613d10565b925050602061406885828601613c0a565b9150509250929050565b600061407e838361458c565b60208301905092915050565b61409381614c74565b82525050565b6140a281614c62565b82525050565b60006140b382614ad6565b6140bd8185614b04565b93506140c883614ac6565b8060005b838110156140f95781516140e08882614072565b97506140eb83614af7565b9250506001810190506140cc565b5085935050505092915050565b61410f81614c86565b82525050565b600061412082614ae1565b61412a8185614b15565b935061413a818560208601614d0b565b61414381614f53565b840191505092915050565b600061415982614aec565b6141638185614b31565b9350614173818560208601614d0b565b61417c81614f53565b840191505092915050565b600061419282614aec565b61419c8185614b42565b93506141ac818560208601614d0b565b80840191505092915050565b60006141c5602b83614b31565b91506141d082614f64565b604082019050919050565b60006141e8603283614b31565b91506141f382614fb3565b604082019050919050565b600061420b602683614b31565b915061421682615002565b604082019050919050565b600061422e601c83614b31565b915061423982615051565b602082019050919050565b6000614251600f83614b31565b915061425c8261507a565b602082019050919050565b6000614274601383614b31565b915061427f826150a3565b602082019050919050565b6000614297602483614b31565b91506142a2826150cc565b604082019050919050565b60006142ba601983614b31565b91506142c58261511b565b602082019050919050565b60006142dd602c83614b31565b91506142e882615144565b604082019050919050565b6000614300603383614b31565b915061430b82615193565b604082019050919050565b6000614323603883614b31565b915061432e826151e2565b604082019050919050565b6000614346602a83614b31565b915061435182615231565b604082019050919050565b6000614369601183614b31565b915061437482615280565b602082019050919050565b600061438c602983614b31565b9150614397826152a9565b604082019050919050565b60006143af602383614b31565b91506143ba826152f8565b604082019050919050565b60006143d2602083614b31565b91506143dd82615347565b602082019050919050565b60006143f5602c83614b31565b915061440082615370565b604082019050919050565b6000614418600583614b42565b9150614423826153bf565b600582019050919050565b600061443b602083614b31565b9150614446826153e8565b602082019050919050565b600061445e602383614b31565b915061446982615411565b604082019050919050565b6000614481602983614b31565b915061448c82615460565b604082019050919050565b60006144a4602f83614b31565b91506144af826154af565b604082019050919050565b60006144c7602183614b31565b91506144d2826154fe565b604082019050919050565b60006144ea600083614b26565b91506144f58261554d565b600082019050919050565b600061450d603183614b31565b915061451882615550565b604082019050919050565b6000614530602c83614b31565b915061453b8261559f565b604082019050919050565b6000614553600c83614b31565b915061455e826155ee565b602082019050919050565b6000614576600183614b42565b915061458182615617565b600182019050919050565b61459581614cde565b82525050565b6145a481614cde565b82525050565b6145b381614ce8565b82525050565b60006145c58285614187565b91506145d082614569565b91506145dc8284614187565b91506145e78261440b565b91508190509392505050565b60006145fe826144dd565b9150819050919050565b600060208201905061461d6000830184614099565b92915050565b6000602082019050614638600083018461408a565b92915050565b60006080820190506146536000830187614099565b6146606020830186614099565b61466d604083018561459b565b818103606083015261467f8184614115565b905095945050505050565b600060208201905081810360008301526146a481846140a8565b905092915050565b60006020820190506146c16000830184614106565b92915050565b600060208201905081810360008301526146e1818461414e565b905092915050565b60006020820190508181036000830152614702816141b8565b9050919050565b60006020820190508181036000830152614722816141db565b9050919050565b60006020820190508181036000830152614742816141fe565b9050919050565b6000602082019050818103600083015261476281614221565b9050919050565b6000602082019050818103600083015261478281614244565b9050919050565b600060208201905081810360008301526147a281614267565b9050919050565b600060208201905081810360008301526147c28161428a565b9050919050565b600060208201905081810360008301526147e2816142ad565b9050919050565b60006020820190508181036000830152614802816142d0565b9050919050565b60006020820190508181036000830152614822816142f3565b9050919050565b6000602082019050818103600083015261484281614316565b9050919050565b6000602082019050818103600083015261486281614339565b9050919050565b600060208201905081810360008301526148828161435c565b9050919050565b600060208201905081810360008301526148a28161437f565b9050919050565b600060208201905081810360008301526148c2816143a2565b9050919050565b600060208201905081810360008301526148e2816143c5565b9050919050565b60006020820190508181036000830152614902816143e8565b9050919050565b600060208201905081810360008301526149228161442e565b9050919050565b6000602082019050818103600083015261494281614451565b9050919050565b6000602082019050818103600083015261496281614474565b9050919050565b6000602082019050818103600083015261498281614497565b9050919050565b600060208201905081810360008301526149a2816144ba565b9050919050565b600060208201905081810360008301526149c281614500565b9050919050565b600060208201905081810360008301526149e281614523565b9050919050565b60006020820190508181036000830152614a0281614546565b9050919050565b6000602082019050614a1e600083018461459b565b92915050565b6000602082019050614a3960008301846145aa565b92915050565b6000614a49614a5a565b9050614a558282614d70565b919050565b6000604051905090565b600067ffffffffffffffff821115614a7f57614a7e614f06565b5b614a8882614f53565b9050602081019050919050565b600067ffffffffffffffff821115614ab057614aaf614f06565b5b614ab982614f53565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614b5882614cde565b9150614b6383614cde565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b9857614b97614e1b565b5b828201905092915050565b6000614bae82614cde565b9150614bb983614cde565b925082614bc957614bc8614e4a565b5b828204905092915050565b6000614bdf82614cde565b9150614bea83614cde565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614c2357614c22614e1b565b5b828202905092915050565b6000614c3982614cde565b9150614c4483614cde565b925082821015614c5757614c56614e1b565b5b828203905092915050565b6000614c6d82614cbe565b9050919050565b6000614c7f82614cbe565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015614d29578082015181840152602081019050614d0e565b83811115614d38576000848401525b50505050565b60006002820490506001821680614d5657607f821691505b60208210811415614d6a57614d69614e79565b5b50919050565b614d7982614f53565b810181811067ffffffffffffffff82111715614d9857614d97614f06565b5b80604052505050565b6000614dac82614cde565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614ddf57614dde614e1b565b5b600182019050919050565b6000614df582614cde565b9150614e0083614cde565b925082614e1057614e0f614e4a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6d696e696d756d203120746f6b656e0000000000000000000000000000000000600082015250565b7f436f6e7472616374206973207061757365642100000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f66207468697320636f6c6c656374696f6e00000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4e6f7420456e6f7567682046756e647321000000000000000000000000000000600082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e742031303030204e46542773206174206120746960008201527f6d65210000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f55736572206973206e6f7420676f7665726e616e63652077686974656c69737460008201527f6564210000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f6f7574206f662073746f636b0000000000000000000000000000000000000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b61564981614c62565b811461565457600080fd5b50565b61566081614c86565b811461566b57600080fd5b50565b61567781614c92565b811461568257600080fd5b50565b61568e81614cde565b811461569957600080fd5b5056fea2646970667358221220c54ff7afb164edb9df8e151d1c59a9de4643a2d298a13f1bc1c022250413707b64736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000180000000000000000000000000648e68dd3e5c243fdbf6462953e535fe3c7f26c700000000000000000000000000000000000000000000000000000000000000114672616374696f6e616c20427269636b73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000546424e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d65547162394a624e73316361425a7033397a4254504c7031725a69536e6279566f4b6f474b4272527266797000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d643251386734576a4d666245666f72314c5853734c394b554c3933756361534b756650695857477a4a5375610000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Fractional Bricks
Arg [1] : _symbol (string): FBNFT
Arg [2] : _initBaseURI (string): ipfs://QmeTqb9JbNs1caBZp39zBTPLp1rZiSnbyVoKoGKBrRrfyp
Arg [3] : _initNotRevealedURI (string): ipfs://Qmd2Q8g4WjMfbEfor1LXSsL9KUL93ucaSKufPiXWGzJSua
Arg [4] : _payments (address): 0x648E68dd3e5C243FDBf6462953e535FE3C7f26c7

-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [4] : 000000000000000000000000648e68dd3e5c243fdbf6462953e535fe3c7f26c7
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [6] : 4672616374696f6e616c20427269636b73000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [8] : 46424e4654000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [10] : 697066733a2f2f516d65547162394a624e73316361425a7033397a4254504c70
Arg [11] : 31725a69536e6279566f4b6f474b427252726679700000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [13] : 697066733a2f2f516d643251386734576a4d666245666f72314c5853734c394b
Arg [14] : 554c3933756361534b756650695857477a4a5375610000000000000000000000


Deployed Bytecode Sourcemap

44678:7511:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49846:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24023:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47768:630;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25582:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25105:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46652:354;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51850:173;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44858:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45101;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36771:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44953:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26472:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36439:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51609:84;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48689:247;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51305:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52030:156;;;:::i;:::-;;26882:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48942:330;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50423:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51197:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36961:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45068:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51088:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44994:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45784:802;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23717:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23447:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43928:94;;;;;;;;;;;;;:::i;:::-;;45263:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44800:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50511:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48405:277;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43277:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45025:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24192:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45146:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25875:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50349:67;;;;;;;;;;;;;:::i;:::-;;45185:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27138:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45221:37;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49278:499;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47015:747;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44915:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26241:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51700:143;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50635:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44177:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51406:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49846:204;49977:4;50006:36;50030:11;50006:23;:36::i;:::-;49999:43;;49846:204;;;:::o;24023:100::-;24077:13;24110:5;24103:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24023:100;:::o;47768:630::-;47834:6;;;;;;;;;;;47833:7;47825:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;47893:1;47879:11;:15;47871:24;;;;;;47925:13;;47910:11;:28;;47902:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;48024:9;;48009:11;47993:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;47985:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;48124:11;48117:4;;:18;;;;:::i;:::-;48104:9;:31;;48096:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;48190:4;48168:26;;:18;;;;;;;;;;;:26;;;48164:229;;;48234:11;48227:4;;:18;;;;:::i;:::-;48214:9;:31;;48206:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;48282:9;48294:1;48282:13;;48278:108;48302:11;48297:1;:16;48278:108;;48334:40;48344:10;48372:1;48356:13;:11;:13::i;:::-;:17;;;;:::i;:::-;48334:9;:40::i;:::-;48315:3;;;;;:::i;:::-;;;;48278:108;;;;48164:229;47768:630;:::o;25582:221::-;25658:7;25686:16;25694:7;25686;:16::i;:::-;25678:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;25771:15;:24;25787:7;25771:24;;;;;;;;;;;;;;;;;;;;;25764:31;;25582:221;;;:::o;25105:411::-;25186:13;25202:23;25217:7;25202:14;:23::i;:::-;25186:39;;25250:5;25244:11;;:2;:11;;;;25236:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;25344:5;25328:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;25353:37;25370:5;25377:12;:10;:12::i;:::-;25353:16;:37::i;:::-;25328:62;25306:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;25487:21;25496:2;25500:7;25487:8;:21::i;:::-;25175:341;25105:411;;:::o;46652:354::-;43508:12;:10;:12::i;:::-;43497:23;;:7;:5;:7::i;:::-;:23;;;43489:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46724:16:::1;46743:3;46724:22;;46772:8;46765:3;:15;;46757:24;;;::::0;::::1;;46806:1;46800:3;:7;46792:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;46869:9;;46862:3;46846:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:32;;46838:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;46911:9;46906:93;46930:3;46926:1;:7;46906:93;;;46955:32;46965:2;46985:1;46969:13;:11;:13::i;:::-;:17;;;;:::i;:::-;46955:9;:32::i;:::-;46935:3;;;;;:::i;:::-;;;;46906:93;;;;46713:293;46652:354:::0;;:::o;51850:173::-;43508:12;:10;:12::i;:::-;43497:23;;:7;:5;:7::i;:::-;:23;;;43489:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51941:30:::1;;51934:37;;;;:::i;:::-;52011:6;;51978:30;:39;;;;;;;:::i;:::-;;51850:173:::0;;:::o;44858:40::-;;;;:::o;45101:::-;;;;;;;;;;;;;:::o;36771:113::-;36832:7;36859:10;:17;;;;36852:24;;36771:113;:::o;44953:36::-;;;;:::o;26472:339::-;26667:41;26686:12;:10;:12::i;:::-;26700:7;26667:18;:41::i;:::-;26659:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;26775:28;26785:4;26791:2;26795:7;26775:9;:28::i;:::-;26472:339;;;:::o;36439:256::-;36536:7;36572:23;36589:5;36572:16;:23::i;:::-;36564:5;:31;36556:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;36661:12;:19;36674:5;36661:19;;;;;;;;;;;;;;;:26;36681:5;36661:26;;;;;;;;;;;;36654:33;;36439:256;;;;:::o;51609:84::-;51661:6;51683:4;51676:11;;51609:84;:::o;48689:247::-;48747:4;48764:9;48776:1;48764:13;;48760:151;48783:20;:27;;;;48779:1;:31;48760:151;;;48858:5;48831:32;;:20;48852:1;48831:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:32;;;48828:75;;;48886:4;48879:11;;;;;48828:75;48812:3;;;;;:::i;:::-;;;;48760:151;;;;48925:5;48918:12;;48689:247;;;;:::o;51305:95::-;43508:12;:10;:12::i;:::-;43497:23;;:7;:5;:7::i;:::-;:23;;;43489:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51388:6:::1;51370:15;;:24;;;;;;;;;;;;;;;;;;51305:95:::0;:::o;52030:156::-;43508:12;:10;:12::i;:::-;43497:23;;:7;:5;:7::i;:::-;:23;;;43489:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52083:12:::1;52109:8;;;;;;;;;;;52101:22;;52131:21;52101:56;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52082:75;;;52172:7;52164:16;;;::::0;::::1;;52075:111;52030:156::o:0;26882:185::-;27020:39;27037:4;27043:2;27047:7;27020:39;;;;;;;;;;;;:16;:39::i;:::-;26882:185;;;:::o;48942:330::-;49002:16;49027:23;49053:17;49063:6;49053:9;:17::i;:::-;49027:43;;49077:25;49119:15;49105:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49077:58;;49147:9;49142:103;49162:15;49158:1;:19;49142:103;;;49207:30;49227:6;49235:1;49207:19;:30::i;:::-;49193:8;49202:1;49193:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;49179:3;;;;;:::i;:::-;;;;49142:103;;;;49258:8;49251:15;;;;48942:330;;;:::o;50423:82::-;43508:12;:10;:12::i;:::-;43497:23;;:7;:5;:7::i;:::-;:23;;;43489:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50491:8:::1;50484:4;:15;;;;50423:82:::0;:::o;51197:99::-;43508:12;:10;:12::i;:::-;43497:23;;:7;:5;:7::i;:::-;:23;;;43489:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51284:6:::1;51263:18;;:27;;;;;;;;;;;;;;;;;;51197:99:::0;:::o;36961:233::-;37036:7;37072:30;:28;:30::i;:::-;37064:5;:38;37056:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;37169:10;37180:5;37169:17;;;;;;;;:::i;:::-;;;;;;;;;;37162:24;;36961:233;;;:::o;45068:28::-;;;;;;;;;;;;;:::o;51088:98::-;43508:12;:10;:12::i;:::-;43497:23;;:7;:5;:7::i;:::-;:23;;;43489:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51169:11:::1;51159:7;:21;;;;;;;;;;;;:::i;:::-;;51088:98:::0;:::o;44994:26::-;;;;;;;;;;;;;:::o;45784:802::-;45860:6;;;;;;;;;;;45859:7;45851:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;45920:1;45905:11;:16;45897:25;;;;;;45929:14;45946:13;:11;:13::i;:::-;45929:30;;45989:13;;45974:11;:28;;45966:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;46081:9;;46066:11;46057:6;:20;;;;:::i;:::-;:33;;46049:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;46171:7;:5;:7::i;:::-;46157:21;;:10;:21;;;46153:428;;46219:4;46194:29;;:21;;;;;;;;;;;:29;;;46191:383;;;46247:35;46271:10;46247:23;:35::i;:::-;46239:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;46337:23;46363:21;46373:10;46363:9;:21::i;:::-;46337:47;;46425:13;;46407:15;:31;46399:40;;;;;;46458:9;46470:1;46458:13;;46454:109;46478:11;46473:1;:16;46454:109;;46514:33;46524:10;46545:1;46536:6;:10;;;;:::i;:::-;46514:9;:33::i;:::-;46491:3;;;;;:::i;:::-;;;;46454:109;;;;46224:350;46191:383;46153:428;45844:742;45784:802;:::o;23717:239::-;23789:7;23809:13;23825:7;:16;23833:7;23825:16;;;;;;;;;;;;;;;;;;;;;23809:32;;23877:1;23860:19;;:5;:19;;;;23852:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23943:5;23936:12;;;23717:239;;;:::o;23447:208::-;23519:7;23564:1;23547:19;;:5;:19;;;;23539:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;23631:9;:16;23641:5;23631:16;;;;;;;;;;;;;;;;23624:23;;23447:208;;;:::o;43928:94::-;43508:12;:10;:12::i;:::-;43497:23;;:7;:5;:7::i;:::-;:23;;;43489:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43993:21:::1;44011:1;43993:9;:21::i;:::-;43928:94::o:0;45263:47::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44800:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50511:118::-;43508:12;:10;:12::i;:::-;43497:23;;:7;:5;:7::i;:::-;:23;;;43489:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50606:17:::1;50590:13;:33;;;;50511:118:::0;:::o;48405:277::-;48473:4;48490:9;48502:1;48490:13;;48486:171;48509:30;:37;;;;48505:1;:41;48486:171;;;48604:5;48567:42;;:30;48598:1;48567:33;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:42;;;48564:85;;;48632:4;48625:11;;;;;48564:85;48548:3;;;;;:::i;:::-;;;;48486:171;;;;48671:5;48664:12;;48405:277;;;;:::o;43277:87::-;43323:7;43350:6;;;;;;;;;;;43343:13;;43277:87;:::o;45025:38::-;;;;;;;;;;;;;:::o;24192:104::-;24248:13;24281:7;24274:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24192:104;:::o;45146:34::-;;;;;;;;;;;;;:::o;25875:295::-;25990:12;:10;:12::i;:::-;25978:24;;:8;:24;;;;25970:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;26090:8;26045:18;:32;26064:12;:10;:12::i;:::-;26045:32;;;;;;;;;;;;;;;:42;26078:8;26045:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;26143:8;26114:48;;26129:12;:10;:12::i;:::-;26114:48;;;26153:8;26114:48;;;;;;:::i;:::-;;;;;;;;25875:295;;:::o;50349:67::-;43508:12;:10;:12::i;:::-;43497:23;;:7;:5;:7::i;:::-;:23;;;43489:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50406:4:::1;50395:8;;:15;;;;;;;;;;;;;;;;;;50349:67::o:0;45185:31::-;;;;;;;;;;;;;:::o;27138:328::-;27313:41;27332:12;:10;:12::i;:::-;27346:7;27313:18;:41::i;:::-;27305:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;27419:39;27433:4;27439:2;27443:7;27452:5;27419:13;:39::i;:::-;27138:328;;;;:::o;45221:37::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49278:499::-;49352:13;49381:17;49389:8;49381:7;:17::i;:::-;49373:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;49573:5;49561:17;;:8;;;;;;;;;;;:17;;;49558:216;;;49597:14;49590:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49558:216;49636:28;49667:10;:8;:10::i;:::-;49636:41;;49715:14;49736:19;:8;:17;:19::i;:::-;49698:67;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49684:82;;;49278:499;;;;:::o;47015:747::-;47088:6;;;;;;;;;;;47087:7;47079:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;47147:1;47133:11;:15;47125:24;;;;;;47179:13;;47164:11;:28;;47156:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;47278:9;;47263:11;47247:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;47239:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;47368:7;:5;:7::i;:::-;47354:21;;:10;:21;;;47350:407;;47410:4;47391:23;;:15;;;;;;;;;;;:23;;;47388:362;;;47430:23;47456:21;47466:10;47456:9;:21::i;:::-;47430:47;;47518:13;;47500:15;:31;47492:40;;;;;;47575:11;47568:4;;:18;;;;:::i;:::-;47555:9;:31;;47547:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;47627:9;47639:1;47627:13;;47623:116;47647:11;47642:1;:16;47623:116;;47683:40;47693:10;47721:1;47705:13;:11;:13::i;:::-;:17;;;;:::i;:::-;47683:9;:40::i;:::-;47660:3;;;;;:::i;:::-;;;;47623:116;;;;47415:335;47388:362;47350:407;47015:747;:::o;44915:33::-;;;;:::o;26241:164::-;26338:4;26362:18;:25;26381:5;26362:25;;;;;;;;;;;;;;;:35;26388:8;26362:35;;;;;;;;;;;;;;;;;;;;;;;;;26355:42;;26241:164;;;;:::o;51700:143::-;43508:12;:10;:12::i;:::-;43497:23;;:7;:5;:7::i;:::-;:23;;;43489:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51781:20:::1;;51774:27;;;;:::i;:::-;51831:6;;51808:20;:29;;;;;;;:::i;:::-;;51700:143:::0;;:::o;50635:120::-;43508:12;:10;:12::i;:::-;43497:23;;:7;:5;:7::i;:::-;:23;;;43489:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50734:15:::1;50717:14;:32;;;;;;;;;;;;:::i;:::-;;50635:120:::0;:::o;44177:192::-;43508:12;:10;:12::i;:::-;43497:23;;:7;:5;:7::i;:::-;:23;;;43489:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44286:1:::1;44266:22;;:8;:22;;;;44258:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;44342:19;44352:8;44342:9;:19::i;:::-;44177:192:::0;:::o;51406:101::-;43508:12;:10;:12::i;:::-;43497:23;;:7;:5;:7::i;:::-;:23;;;43489:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51495:6:::1;51477:15;;:24;;;;;;;;;;;;;;;;;;51406:101:::0;:::o;4278:387::-;4338:4;4546:12;4613:7;4601:20;4593:28;;4656:1;4649:4;:8;4642:15;;;4278:387;;;:::o;37807:589::-;37951:45;37978:4;37984:2;37988:7;37951:26;:45::i;:::-;38029:1;38013:18;;:4;:18;;;38009:187;;;38048:40;38080:7;38048:31;:40::i;:::-;38009:187;;;38118:2;38110:10;;:4;:10;;;38106:90;;38137:47;38170:4;38176:7;38137:32;:47::i;:::-;38106:90;38009:187;38224:1;38210:16;;:2;:16;;;38206:183;;;38243:45;38280:7;38243:36;:45::i;:::-;38206:183;;;38316:4;38310:10;;:2;:10;;;38306:83;;38337:40;38365:2;38369:7;38337:27;:40::i;:::-;38306:83;38206:183;37807:589;;;:::o;35068:126::-;;;;:::o;36131:224::-;36233:4;36272:35;36257:50;;;:11;:50;;;;:90;;;;36311:36;36335:11;36311:23;:36::i;:::-;36257:90;36250:97;;36131:224;;;:::o;29960:110::-;30036:26;30046:2;30050:7;30036:26;;;;;;;;;;;;:9;:26::i;:::-;29960:110;;:::o;28976:127::-;29041:4;29093:1;29065:30;;:7;:16;29073:7;29065:16;;;;;;;;;;;;;;;;;;;;;:30;;;;29058:37;;28976:127;;;:::o;21532:98::-;21585:7;21612:10;21605:17;;21532:98;:::o;32958:174::-;33060:2;33033:15;:24;33049:7;33033:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;33116:7;33112:2;33078:46;;33087:23;33102:7;33087:14;:23::i;:::-;33078:46;;;;;;;;;;;;32958:174;;:::o;29270:348::-;29363:4;29388:16;29396:7;29388;:16::i;:::-;29380:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29464:13;29480:23;29495:7;29480:14;:23::i;:::-;29464:39;;29533:5;29522:16;;:7;:16;;;:51;;;;29566:7;29542:31;;:20;29554:7;29542:11;:20::i;:::-;:31;;;29522:51;:87;;;;29577:32;29594:5;29601:7;29577:16;:32::i;:::-;29522:87;29514:96;;;29270:348;;;;:::o;32262:578::-;32421:4;32394:31;;:23;32409:7;32394:14;:23::i;:::-;:31;;;32386:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;32504:1;32490:16;;:2;:16;;;;32482:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;32560:39;32581:4;32587:2;32591:7;32560:20;:39::i;:::-;32664:29;32681:1;32685:7;32664:8;:29::i;:::-;32725:1;32706:9;:15;32716:4;32706:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;32754:1;32737:9;:13;32747:2;32737:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;32785:2;32766:7;:16;32774:7;32766:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32824:7;32820:2;32805:27;;32814:4;32805:27;;;;;;;;;;;;32262:578;;;:::o;44377:173::-;44433:16;44452:6;;;;;;;;;;;44433:25;;44478:8;44469:6;;:17;;;;;;;;;;;;;;;;;;44533:8;44502:40;;44523:8;44502:40;;;;;;;;;;;;44422:128;44377:173;:::o;28348:315::-;28505:28;28515:4;28521:2;28525:7;28505:9;:28::i;:::-;28552:48;28575:4;28581:2;28585:7;28594:5;28552:22;:48::i;:::-;28544:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;28348:315;;;;:::o;50762:102::-;50822:13;50851:7;50844:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50762:102;:::o;1753:723::-;1809:13;2039:1;2030:5;:10;2026:53;;;2057:10;;;;;;;;;;;;;;;;;;;;;2026:53;2089:12;2104:5;2089:20;;2120:14;2145:78;2160:1;2152:4;:9;2145:78;;2178:8;;;;;:::i;:::-;;;;2209:2;2201:10;;;;;:::i;:::-;;;2145:78;;;2233:19;2265:6;2255:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2233:39;;2283:154;2299:1;2290:5;:10;2283:154;;2327:1;2317:11;;;;;:::i;:::-;;;2394:2;2386:5;:10;;;;:::i;:::-;2373:2;:24;;;;:::i;:::-;2360:39;;2343:6;2350;2343:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2423:2;2414:11;;;;;:::i;:::-;;;2283:154;;;2461:6;2447:21;;;;;1753:723;;;;:::o;39119:164::-;39223:10;:17;;;;39196:15;:24;39212:7;39196:24;;;;;;;;;;;:44;;;;39251:10;39267:7;39251:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39119:164;:::o;39910:988::-;40176:22;40226:1;40201:22;40218:4;40201:16;:22::i;:::-;:26;;;;:::i;:::-;40176:51;;40238:18;40259:17;:26;40277:7;40259:26;;;;;;;;;;;;40238:47;;40406:14;40392:10;:28;40388:328;;40437:19;40459:12;:18;40472:4;40459:18;;;;;;;;;;;;;;;:34;40478:14;40459:34;;;;;;;;;;;;40437:56;;40543:11;40510:12;:18;40523:4;40510:18;;;;;;;;;;;;;;;:30;40529:10;40510:30;;;;;;;;;;;:44;;;;40660:10;40627:17;:30;40645:11;40627:30;;;;;;;;;;;:43;;;;40422:294;40388:328;40812:17;:26;40830:7;40812:26;;;;;;;;;;;40805:33;;;40856:12;:18;40869:4;40856:18;;;;;;;;;;;;;;;:34;40875:14;40856:34;;;;;;;;;;;40849:41;;;39991:907;;39910:988;;:::o;41193:1079::-;41446:22;41491:1;41471:10;:17;;;;:21;;;;:::i;:::-;41446:46;;41503:18;41524:15;:24;41540:7;41524:24;;;;;;;;;;;;41503:45;;41875:19;41897:10;41908:14;41897:26;;;;;;;;:::i;:::-;;;;;;;;;;41875:48;;41961:11;41936:10;41947;41936:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;42072:10;42041:15;:28;42057:11;42041:28;;;;;;;;;;;:41;;;;42213:15;:24;42229:7;42213:24;;;;;;;;;;;42206:31;;;42248:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41264:1008;;;41193:1079;:::o;38697:221::-;38782:14;38799:20;38816:2;38799:16;:20::i;:::-;38782:37;;38857:7;38830:12;:16;38843:2;38830:16;;;;;;;;;;;;;;;:24;38847:6;38830:24;;;;;;;;;;;:34;;;;38904:6;38875:17;:26;38893:7;38875:26;;;;;;;;;;;:35;;;;38771:147;38697:221;;:::o;23078:305::-;23180:4;23232:25;23217:40;;;:11;:40;;;;:105;;;;23289:33;23274:48;;;:11;:48;;;;23217:105;:158;;;;23339:36;23363:11;23339:23;:36::i;:::-;23217:158;23197:178;;23078:305;;;:::o;30297:321::-;30427:18;30433:2;30437:7;30427:5;:18::i;:::-;30478:54;30509:1;30513:2;30517:7;30526:5;30478:22;:54::i;:::-;30456:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;30297:321;;;:::o;50116:201::-;50264:45;50291:4;50297:2;50301:7;50264:26;:45::i;:::-;50116:201;;;:::o;33697:799::-;33852:4;33873:15;:2;:13;;;:15::i;:::-;33869:620;;;33925:2;33909:36;;;33946:12;:10;:12::i;:::-;33960:4;33966:7;33975:5;33909:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33905:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34168:1;34151:6;:13;:18;34147:272;;;34194:60;;;;;;;;;;:::i;:::-;;;;;;;;34147:272;34369:6;34363:13;34354:6;34350:2;34346:15;34339:38;33905:529;34042:41;;;34032:51;;;:6;:51;;;;34025:58;;;;;33869:620;34473:4;34466:11;;33697:799;;;;;;;:::o;14218:157::-;14303:4;14342:25;14327:40;;;:11;:40;;;;14320:47;;14218:157;;;:::o;30954:382::-;31048:1;31034:16;;:2;:16;;;;31026:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;31107:16;31115:7;31107;:16::i;:::-;31106:17;31098:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;31169:45;31198:1;31202:2;31206:7;31169:20;:45::i;:::-;31244:1;31227:9;:13;31237:2;31227:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;31275:2;31256:7;:16;31264:7;31256:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;31320:7;31316:2;31295:33;;31312:1;31295:33;;;;;;;;;;;;30954:382;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:137::-;1761:5;1799:6;1786:20;1777:29;;1815:32;1841:5;1815:32;:::i;:::-;1716:137;;;;:::o;1859:141::-;1915:5;1946:6;1940:13;1931:22;;1962:32;1988:5;1962:32;:::i;:::-;1859:141;;;;:::o;2019:338::-;2074:5;2123:3;2116:4;2108:6;2104:17;2100:27;2090:122;;2131:79;;:::i;:::-;2090:122;2248:6;2235:20;2273:78;2347:3;2339:6;2332:4;2324:6;2320:17;2273:78;:::i;:::-;2264:87;;2080:277;2019:338;;;;:::o;2377:340::-;2433:5;2482:3;2475:4;2467:6;2463:17;2459:27;2449:122;;2490:79;;:::i;:::-;2449:122;2607:6;2594:20;2632:79;2707:3;2699:6;2692:4;2684:6;2680:17;2632:79;:::i;:::-;2623:88;;2439:278;2377:340;;;;:::o;2723:139::-;2769:5;2807:6;2794:20;2785:29;;2823:33;2850:5;2823:33;:::i;:::-;2723:139;;;;:::o;2868:329::-;2927:6;2976:2;2964:9;2955:7;2951:23;2947:32;2944:119;;;2982:79;;:::i;:::-;2944:119;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;2868:329;;;;:::o;3203:474::-;3271:6;3279;3328:2;3316:9;3307:7;3303:23;3299:32;3296:119;;;3334:79;;:::i;:::-;3296:119;3454:1;3479:53;3524:7;3515:6;3504:9;3500:22;3479:53;:::i;:::-;3469:63;;3425:117;3581:2;3607:53;3652:7;3643:6;3632:9;3628:22;3607:53;:::i;:::-;3597:63;;3552:118;3203:474;;;;;:::o;3683:619::-;3760:6;3768;3776;3825:2;3813:9;3804:7;3800:23;3796:32;3793:119;;;3831:79;;:::i;:::-;3793:119;3951:1;3976:53;4021:7;4012:6;4001:9;3997:22;3976:53;:::i;:::-;3966:63;;3922:117;4078:2;4104:53;4149:7;4140:6;4129:9;4125:22;4104:53;:::i;:::-;4094:63;;4049:118;4206:2;4232:53;4277:7;4268:6;4257:9;4253:22;4232:53;:::i;:::-;4222:63;;4177:118;3683:619;;;;;:::o;4308:943::-;4403:6;4411;4419;4427;4476:3;4464:9;4455:7;4451:23;4447:33;4444:120;;;4483:79;;:::i;:::-;4444:120;4603:1;4628:53;4673:7;4664:6;4653:9;4649:22;4628:53;:::i;:::-;4618:63;;4574:117;4730:2;4756:53;4801:7;4792:6;4781:9;4777:22;4756:53;:::i;:::-;4746:63;;4701:118;4858:2;4884:53;4929:7;4920:6;4909:9;4905:22;4884:53;:::i;:::-;4874:63;;4829:118;5014:2;5003:9;4999:18;4986:32;5045:18;5037:6;5034:30;5031:117;;;5067:79;;:::i;:::-;5031:117;5172:62;5226:7;5217:6;5206:9;5202:22;5172:62;:::i;:::-;5162:72;;4957:287;4308:943;;;;;;;:::o;5257:468::-;5322:6;5330;5379:2;5367:9;5358:7;5354:23;5350:32;5347:119;;;5385:79;;:::i;:::-;5347:119;5505:1;5530:53;5575:7;5566:6;5555:9;5551:22;5530:53;:::i;:::-;5520:63;;5476:117;5632:2;5658:50;5700:7;5691:6;5680:9;5676:22;5658:50;:::i;:::-;5648:60;;5603:115;5257:468;;;;;:::o;5731:474::-;5799:6;5807;5856:2;5844:9;5835:7;5831:23;5827:32;5824:119;;;5862:79;;:::i;:::-;5824:119;5982:1;6007:53;6052:7;6043:6;6032:9;6028:22;6007:53;:::i;:::-;5997:63;;5953:117;6109:2;6135:53;6180:7;6171:6;6160:9;6156:22;6135:53;:::i;:::-;6125:63;;6080:118;5731:474;;;;;:::o;6211:559::-;6297:6;6305;6354:2;6342:9;6333:7;6329:23;6325:32;6322:119;;;6360:79;;:::i;:::-;6322:119;6508:1;6497:9;6493:17;6480:31;6538:18;6530:6;6527:30;6524:117;;;6560:79;;:::i;:::-;6524:117;6673:80;6745:7;6736:6;6725:9;6721:22;6673:80;:::i;:::-;6655:98;;;;6451:312;6211:559;;;;;:::o;6776:323::-;6832:6;6881:2;6869:9;6860:7;6856:23;6852:32;6849:119;;;6887:79;;:::i;:::-;6849:119;7007:1;7032:50;7074:7;7065:6;7054:9;7050:22;7032:50;:::i;:::-;7022:60;;6978:114;6776:323;;;;:::o;7105:327::-;7163:6;7212:2;7200:9;7191:7;7187:23;7183:32;7180:119;;;7218:79;;:::i;:::-;7180:119;7338:1;7363:52;7407:7;7398:6;7387:9;7383:22;7363:52;:::i;:::-;7353:62;;7309:116;7105:327;;;;:::o;7438:349::-;7507:6;7556:2;7544:9;7535:7;7531:23;7527:32;7524:119;;;7562:79;;:::i;:::-;7524:119;7682:1;7707:63;7762:7;7753:6;7742:9;7738:22;7707:63;:::i;:::-;7697:73;;7653:127;7438:349;;;;:::o;7793:509::-;7862:6;7911:2;7899:9;7890:7;7886:23;7882:32;7879:119;;;7917:79;;:::i;:::-;7879:119;8065:1;8054:9;8050:17;8037:31;8095:18;8087:6;8084:30;8081:117;;;8117:79;;:::i;:::-;8081:117;8222:63;8277:7;8268:6;8257:9;8253:22;8222:63;:::i;:::-;8212:73;;8008:287;7793:509;;;;:::o;8308:329::-;8367:6;8416:2;8404:9;8395:7;8391:23;8387:32;8384:119;;;8422:79;;:::i;:::-;8384:119;8542:1;8567:53;8612:7;8603:6;8592:9;8588:22;8567:53;:::i;:::-;8557:63;;8513:117;8308:329;;;;:::o;8643:474::-;8711:6;8719;8768:2;8756:9;8747:7;8743:23;8739:32;8736:119;;;8774:79;;:::i;:::-;8736:119;8894:1;8919:53;8964:7;8955:6;8944:9;8940:22;8919:53;:::i;:::-;8909:63;;8865:117;9021:2;9047:53;9092:7;9083:6;9072:9;9068:22;9047:53;:::i;:::-;9037:63;;8992:118;8643:474;;;;;:::o;9123:179::-;9192:10;9213:46;9255:3;9247:6;9213:46;:::i;:::-;9291:4;9286:3;9282:14;9268:28;;9123:179;;;;:::o;9308:142::-;9411:32;9437:5;9411:32;:::i;:::-;9406:3;9399:45;9308:142;;:::o;9456:118::-;9543:24;9561:5;9543:24;:::i;:::-;9538:3;9531:37;9456:118;;:::o;9610:732::-;9729:3;9758:54;9806:5;9758:54;:::i;:::-;9828:86;9907:6;9902:3;9828:86;:::i;:::-;9821:93;;9938:56;9988:5;9938:56;:::i;:::-;10017:7;10048:1;10033:284;10058:6;10055:1;10052:13;10033:284;;;10134:6;10128:13;10161:63;10220:3;10205:13;10161:63;:::i;:::-;10154:70;;10247:60;10300:6;10247:60;:::i;:::-;10237:70;;10093:224;10080:1;10077;10073:9;10068:14;;10033:284;;;10037:14;10333:3;10326:10;;9734:608;;;9610:732;;;;:::o;10348:109::-;10429:21;10444:5;10429:21;:::i;:::-;10424:3;10417:34;10348:109;;:::o;10463:360::-;10549:3;10577:38;10609:5;10577:38;:::i;:::-;10631:70;10694:6;10689:3;10631:70;:::i;:::-;10624:77;;10710:52;10755:6;10750:3;10743:4;10736:5;10732:16;10710:52;:::i;:::-;10787:29;10809:6;10787:29;:::i;:::-;10782:3;10778:39;10771:46;;10553:270;10463:360;;;;:::o;10829:364::-;10917:3;10945:39;10978:5;10945:39;:::i;:::-;11000:71;11064:6;11059:3;11000:71;:::i;:::-;10993:78;;11080:52;11125:6;11120:3;11113:4;11106:5;11102:16;11080:52;:::i;:::-;11157:29;11179:6;11157:29;:::i;:::-;11152:3;11148:39;11141:46;;10921:272;10829:364;;;;:::o;11199:377::-;11305:3;11333:39;11366:5;11333:39;:::i;:::-;11388:89;11470:6;11465:3;11388:89;:::i;:::-;11381:96;;11486:52;11531:6;11526:3;11519:4;11512:5;11508:16;11486:52;:::i;:::-;11563:6;11558:3;11554:16;11547:23;;11309:267;11199:377;;;;:::o;11582:366::-;11724:3;11745:67;11809:2;11804:3;11745:67;:::i;:::-;11738:74;;11821:93;11910:3;11821:93;:::i;:::-;11939:2;11934:3;11930:12;11923:19;;11582:366;;;:::o;11954:::-;12096:3;12117:67;12181:2;12176:3;12117:67;:::i;:::-;12110:74;;12193:93;12282:3;12193:93;:::i;:::-;12311:2;12306:3;12302:12;12295:19;;11954:366;;;:::o;12326:::-;12468:3;12489:67;12553:2;12548:3;12489:67;:::i;:::-;12482:74;;12565:93;12654:3;12565:93;:::i;:::-;12683:2;12678:3;12674:12;12667:19;;12326:366;;;:::o;12698:::-;12840:3;12861:67;12925:2;12920:3;12861:67;:::i;:::-;12854:74;;12937:93;13026:3;12937:93;:::i;:::-;13055:2;13050:3;13046:12;13039:19;;12698:366;;;:::o;13070:::-;13212:3;13233:67;13297:2;13292:3;13233:67;:::i;:::-;13226:74;;13309:93;13398:3;13309:93;:::i;:::-;13427:2;13422:3;13418:12;13411:19;;13070:366;;;:::o;13442:::-;13584:3;13605:67;13669:2;13664:3;13605:67;:::i;:::-;13598:74;;13681:93;13770:3;13681:93;:::i;:::-;13799:2;13794:3;13790:12;13783:19;;13442:366;;;:::o;13814:::-;13956:3;13977:67;14041:2;14036:3;13977:67;:::i;:::-;13970:74;;14053:93;14142:3;14053:93;:::i;:::-;14171:2;14166:3;14162:12;14155:19;;13814:366;;;:::o;14186:::-;14328:3;14349:67;14413:2;14408:3;14349:67;:::i;:::-;14342:74;;14425:93;14514:3;14425:93;:::i;:::-;14543:2;14538:3;14534:12;14527:19;;14186:366;;;:::o;14558:::-;14700:3;14721:67;14785:2;14780:3;14721:67;:::i;:::-;14714:74;;14797:93;14886:3;14797:93;:::i;:::-;14915:2;14910:3;14906:12;14899:19;;14558:366;;;:::o;14930:::-;15072:3;15093:67;15157:2;15152:3;15093:67;:::i;:::-;15086:74;;15169:93;15258:3;15169:93;:::i;:::-;15287:2;15282:3;15278:12;15271:19;;14930:366;;;:::o;15302:::-;15444:3;15465:67;15529:2;15524:3;15465:67;:::i;:::-;15458:74;;15541:93;15630:3;15541:93;:::i;:::-;15659:2;15654:3;15650:12;15643:19;;15302:366;;;:::o;15674:::-;15816:3;15837:67;15901:2;15896:3;15837:67;:::i;:::-;15830:74;;15913:93;16002:3;15913:93;:::i;:::-;16031:2;16026:3;16022:12;16015:19;;15674:366;;;:::o;16046:::-;16188:3;16209:67;16273:2;16268:3;16209:67;:::i;:::-;16202:74;;16285:93;16374:3;16285:93;:::i;:::-;16403:2;16398:3;16394:12;16387:19;;16046:366;;;:::o;16418:::-;16560:3;16581:67;16645:2;16640:3;16581:67;:::i;:::-;16574:74;;16657:93;16746:3;16657:93;:::i;:::-;16775:2;16770:3;16766:12;16759:19;;16418:366;;;:::o;16790:::-;16932:3;16953:67;17017:2;17012:3;16953:67;:::i;:::-;16946:74;;17029:93;17118:3;17029:93;:::i;:::-;17147:2;17142:3;17138:12;17131:19;;16790:366;;;:::o;17162:::-;17304:3;17325:67;17389:2;17384:3;17325:67;:::i;:::-;17318:74;;17401:93;17490:3;17401:93;:::i;:::-;17519:2;17514:3;17510:12;17503:19;;17162:366;;;:::o;17534:::-;17676:3;17697:67;17761:2;17756:3;17697:67;:::i;:::-;17690:74;;17773:93;17862:3;17773:93;:::i;:::-;17891:2;17886:3;17882:12;17875:19;;17534:366;;;:::o;17906:400::-;18066:3;18087:84;18169:1;18164:3;18087:84;:::i;:::-;18080:91;;18180:93;18269:3;18180:93;:::i;:::-;18298:1;18293:3;18289:11;18282:18;;17906:400;;;:::o;18312:366::-;18454:3;18475:67;18539:2;18534:3;18475:67;:::i;:::-;18468:74;;18551:93;18640:3;18551:93;:::i;:::-;18669:2;18664:3;18660:12;18653:19;;18312:366;;;:::o;18684:::-;18826:3;18847:67;18911:2;18906:3;18847:67;:::i;:::-;18840:74;;18923:93;19012:3;18923:93;:::i;:::-;19041:2;19036:3;19032:12;19025:19;;18684:366;;;:::o;19056:::-;19198:3;19219:67;19283:2;19278:3;19219:67;:::i;:::-;19212:74;;19295:93;19384:3;19295:93;:::i;:::-;19413:2;19408:3;19404:12;19397:19;;19056:366;;;:::o;19428:::-;19570:3;19591:67;19655:2;19650:3;19591:67;:::i;:::-;19584:74;;19667:93;19756:3;19667:93;:::i;:::-;19785:2;19780:3;19776:12;19769:19;;19428:366;;;:::o;19800:::-;19942:3;19963:67;20027:2;20022:3;19963:67;:::i;:::-;19956:74;;20039:93;20128:3;20039:93;:::i;:::-;20157:2;20152:3;20148:12;20141:19;;19800:366;;;:::o;20172:398::-;20331:3;20352:83;20433:1;20428:3;20352:83;:::i;:::-;20345:90;;20444:93;20533:3;20444:93;:::i;:::-;20562:1;20557:3;20553:11;20546:18;;20172:398;;;:::o;20576:366::-;20718:3;20739:67;20803:2;20798:3;20739:67;:::i;:::-;20732:74;;20815:93;20904:3;20815:93;:::i;:::-;20933:2;20928:3;20924:12;20917:19;;20576:366;;;:::o;20948:::-;21090:3;21111:67;21175:2;21170:3;21111:67;:::i;:::-;21104:74;;21187:93;21276:3;21187:93;:::i;:::-;21305:2;21300:3;21296:12;21289:19;;20948:366;;;:::o;21320:::-;21462:3;21483:67;21547:2;21542:3;21483:67;:::i;:::-;21476:74;;21559:93;21648:3;21559:93;:::i;:::-;21677:2;21672:3;21668:12;21661:19;;21320:366;;;:::o;21692:400::-;21852:3;21873:84;21955:1;21950:3;21873:84;:::i;:::-;21866:91;;21966:93;22055:3;21966:93;:::i;:::-;22084:1;22079:3;22075:11;22068:18;;21692:400;;;:::o;22098:108::-;22175:24;22193:5;22175:24;:::i;:::-;22170:3;22163:37;22098:108;;:::o;22212:118::-;22299:24;22317:5;22299:24;:::i;:::-;22294:3;22287:37;22212:118;;:::o;22336:115::-;22421:23;22438:5;22421:23;:::i;:::-;22416:3;22409:36;22336:115;;:::o;22457:967::-;22839:3;22861:95;22952:3;22943:6;22861:95;:::i;:::-;22854:102;;22973:148;23117:3;22973:148;:::i;:::-;22966:155;;23138:95;23229:3;23220:6;23138:95;:::i;:::-;23131:102;;23250:148;23394:3;23250:148;:::i;:::-;23243:155;;23415:3;23408:10;;22457:967;;;;;:::o;23430:379::-;23614:3;23636:147;23779:3;23636:147;:::i;:::-;23629:154;;23800:3;23793:10;;23430:379;;;:::o;23815:222::-;23908:4;23946:2;23935:9;23931:18;23923:26;;23959:71;24027:1;24016:9;24012:17;24003:6;23959:71;:::i;:::-;23815:222;;;;:::o;24043:254::-;24152:4;24190:2;24179:9;24175:18;24167:26;;24203:87;24287:1;24276:9;24272:17;24263:6;24203:87;:::i;:::-;24043:254;;;;:::o;24303:640::-;24498:4;24536:3;24525:9;24521:19;24513:27;;24550:71;24618:1;24607:9;24603:17;24594:6;24550:71;:::i;:::-;24631:72;24699:2;24688:9;24684:18;24675:6;24631:72;:::i;:::-;24713;24781:2;24770:9;24766:18;24757:6;24713:72;:::i;:::-;24832:9;24826:4;24822:20;24817:2;24806:9;24802:18;24795:48;24860:76;24931:4;24922:6;24860:76;:::i;:::-;24852:84;;24303:640;;;;;;;:::o;24949:373::-;25092:4;25130:2;25119:9;25115:18;25107:26;;25179:9;25173:4;25169:20;25165:1;25154:9;25150:17;25143:47;25207:108;25310:4;25301:6;25207:108;:::i;:::-;25199:116;;24949:373;;;;:::o;25328:210::-;25415:4;25453:2;25442:9;25438:18;25430:26;;25466:65;25528:1;25517:9;25513:17;25504:6;25466:65;:::i;:::-;25328:210;;;;:::o;25544:313::-;25657:4;25695:2;25684:9;25680:18;25672:26;;25744:9;25738:4;25734:20;25730:1;25719:9;25715:17;25708:47;25772:78;25845:4;25836:6;25772:78;:::i;:::-;25764:86;;25544:313;;;;:::o;25863:419::-;26029:4;26067:2;26056:9;26052:18;26044:26;;26116:9;26110:4;26106:20;26102:1;26091:9;26087:17;26080:47;26144:131;26270:4;26144:131;:::i;:::-;26136:139;;25863:419;;;:::o;26288:::-;26454:4;26492:2;26481:9;26477:18;26469:26;;26541:9;26535:4;26531:20;26527:1;26516:9;26512:17;26505:47;26569:131;26695:4;26569:131;:::i;:::-;26561:139;;26288:419;;;:::o;26713:::-;26879:4;26917:2;26906:9;26902:18;26894:26;;26966:9;26960:4;26956:20;26952:1;26941:9;26937:17;26930:47;26994:131;27120:4;26994:131;:::i;:::-;26986:139;;26713:419;;;:::o;27138:::-;27304:4;27342:2;27331:9;27327:18;27319:26;;27391:9;27385:4;27381:20;27377:1;27366:9;27362:17;27355:47;27419:131;27545:4;27419:131;:::i;:::-;27411:139;;27138:419;;;:::o;27563:::-;27729:4;27767:2;27756:9;27752:18;27744:26;;27816:9;27810:4;27806:20;27802:1;27791:9;27787:17;27780:47;27844:131;27970:4;27844:131;:::i;:::-;27836:139;;27563:419;;;:::o;27988:::-;28154:4;28192:2;28181:9;28177:18;28169:26;;28241:9;28235:4;28231:20;28227:1;28216:9;28212:17;28205:47;28269:131;28395:4;28269:131;:::i;:::-;28261:139;;27988:419;;;:::o;28413:::-;28579:4;28617:2;28606:9;28602:18;28594:26;;28666:9;28660:4;28656:20;28652:1;28641:9;28637:17;28630:47;28694:131;28820:4;28694:131;:::i;:::-;28686:139;;28413:419;;;:::o;28838:::-;29004:4;29042:2;29031:9;29027:18;29019:26;;29091:9;29085:4;29081:20;29077:1;29066:9;29062:17;29055:47;29119:131;29245:4;29119:131;:::i;:::-;29111:139;;28838:419;;;:::o;29263:::-;29429:4;29467:2;29456:9;29452:18;29444:26;;29516:9;29510:4;29506:20;29502:1;29491:9;29487:17;29480:47;29544:131;29670:4;29544:131;:::i;:::-;29536:139;;29263:419;;;:::o;29688:::-;29854:4;29892:2;29881:9;29877:18;29869:26;;29941:9;29935:4;29931:20;29927:1;29916:9;29912:17;29905:47;29969:131;30095:4;29969:131;:::i;:::-;29961:139;;29688:419;;;:::o;30113:::-;30279:4;30317:2;30306:9;30302:18;30294:26;;30366:9;30360:4;30356:20;30352:1;30341:9;30337:17;30330:47;30394:131;30520:4;30394:131;:::i;:::-;30386:139;;30113:419;;;:::o;30538:::-;30704:4;30742:2;30731:9;30727:18;30719:26;;30791:9;30785:4;30781:20;30777:1;30766:9;30762:17;30755:47;30819:131;30945:4;30819:131;:::i;:::-;30811:139;;30538:419;;;:::o;30963:::-;31129:4;31167:2;31156:9;31152:18;31144:26;;31216:9;31210:4;31206:20;31202:1;31191:9;31187:17;31180:47;31244:131;31370:4;31244:131;:::i;:::-;31236:139;;30963:419;;;:::o;31388:::-;31554:4;31592:2;31581:9;31577:18;31569:26;;31641:9;31635:4;31631:20;31627:1;31616:9;31612:17;31605:47;31669:131;31795:4;31669:131;:::i;:::-;31661:139;;31388:419;;;:::o;31813:::-;31979:4;32017:2;32006:9;32002:18;31994:26;;32066:9;32060:4;32056:20;32052:1;32041:9;32037:17;32030:47;32094:131;32220:4;32094:131;:::i;:::-;32086:139;;31813:419;;;:::o;32238:::-;32404:4;32442:2;32431:9;32427:18;32419:26;;32491:9;32485:4;32481:20;32477:1;32466:9;32462:17;32455:47;32519:131;32645:4;32519:131;:::i;:::-;32511:139;;32238:419;;;:::o;32663:::-;32829:4;32867:2;32856:9;32852:18;32844:26;;32916:9;32910:4;32906:20;32902:1;32891:9;32887:17;32880:47;32944:131;33070:4;32944:131;:::i;:::-;32936:139;;32663:419;;;:::o;33088:::-;33254:4;33292:2;33281:9;33277:18;33269:26;;33341:9;33335:4;33331:20;33327:1;33316:9;33312:17;33305:47;33369:131;33495:4;33369:131;:::i;:::-;33361:139;;33088:419;;;:::o;33513:::-;33679:4;33717:2;33706:9;33702:18;33694:26;;33766:9;33760:4;33756:20;33752:1;33741:9;33737:17;33730:47;33794:131;33920:4;33794:131;:::i;:::-;33786:139;;33513:419;;;:::o;33938:::-;34104:4;34142:2;34131:9;34127:18;34119:26;;34191:9;34185:4;34181:20;34177:1;34166:9;34162:17;34155:47;34219:131;34345:4;34219:131;:::i;:::-;34211:139;;33938:419;;;:::o;34363:::-;34529:4;34567:2;34556:9;34552:18;34544:26;;34616:9;34610:4;34606:20;34602:1;34591:9;34587:17;34580:47;34644:131;34770:4;34644:131;:::i;:::-;34636:139;;34363:419;;;:::o;34788:::-;34954:4;34992:2;34981:9;34977:18;34969:26;;35041:9;35035:4;35031:20;35027:1;35016:9;35012:17;35005:47;35069:131;35195:4;35069:131;:::i;:::-;35061:139;;34788:419;;;:::o;35213:::-;35379:4;35417:2;35406:9;35402:18;35394:26;;35466:9;35460:4;35456:20;35452:1;35441:9;35437:17;35430:47;35494:131;35620:4;35494:131;:::i;:::-;35486:139;;35213:419;;;:::o;35638:::-;35804:4;35842:2;35831:9;35827:18;35819:26;;35891:9;35885:4;35881:20;35877:1;35866:9;35862:17;35855:47;35919:131;36045:4;35919:131;:::i;:::-;35911:139;;35638:419;;;:::o;36063:::-;36229:4;36267:2;36256:9;36252:18;36244:26;;36316:9;36310:4;36306:20;36302:1;36291:9;36287:17;36280:47;36344:131;36470:4;36344:131;:::i;:::-;36336:139;;36063:419;;;:::o;36488:222::-;36581:4;36619:2;36608:9;36604:18;36596:26;;36632:71;36700:1;36689:9;36685:17;36676:6;36632:71;:::i;:::-;36488:222;;;;:::o;36716:218::-;36807:4;36845:2;36834:9;36830:18;36822:26;;36858:69;36924:1;36913:9;36909:17;36900:6;36858:69;:::i;:::-;36716:218;;;;:::o;36940:129::-;36974:6;37001:20;;:::i;:::-;36991:30;;37030:33;37058:4;37050:6;37030:33;:::i;:::-;36940:129;;;:::o;37075:75::-;37108:6;37141:2;37135:9;37125:19;;37075:75;:::o;37156:307::-;37217:4;37307:18;37299:6;37296:30;37293:56;;;37329:18;;:::i;:::-;37293:56;37367:29;37389:6;37367:29;:::i;:::-;37359:37;;37451:4;37445;37441:15;37433:23;;37156:307;;;:::o;37469:308::-;37531:4;37621:18;37613:6;37610:30;37607:56;;;37643:18;;:::i;:::-;37607:56;37681:29;37703:6;37681:29;:::i;:::-;37673:37;;37765:4;37759;37755:15;37747:23;;37469:308;;;:::o;37783:132::-;37850:4;37873:3;37865:11;;37903:4;37898:3;37894:14;37886:22;;37783:132;;;:::o;37921:114::-;37988:6;38022:5;38016:12;38006:22;;37921:114;;;:::o;38041:98::-;38092:6;38126:5;38120:12;38110:22;;38041:98;;;:::o;38145:99::-;38197:6;38231:5;38225:12;38215:22;;38145:99;;;:::o;38250:113::-;38320:4;38352;38347:3;38343:14;38335:22;;38250:113;;;:::o;38369:184::-;38468:11;38502:6;38497:3;38490:19;38542:4;38537:3;38533:14;38518:29;;38369:184;;;;:::o;38559:168::-;38642:11;38676:6;38671:3;38664:19;38716:4;38711:3;38707:14;38692:29;;38559:168;;;;:::o;38733:147::-;38834:11;38871:3;38856:18;;38733:147;;;;:::o;38886:169::-;38970:11;39004:6;38999:3;38992:19;39044:4;39039:3;39035:14;39020:29;;38886:169;;;;:::o;39061:148::-;39163:11;39200:3;39185:18;;39061:148;;;;:::o;39215:305::-;39255:3;39274:20;39292:1;39274:20;:::i;:::-;39269:25;;39308:20;39326:1;39308:20;:::i;:::-;39303:25;;39462:1;39394:66;39390:74;39387:1;39384:81;39381:107;;;39468:18;;:::i;:::-;39381:107;39512:1;39509;39505:9;39498:16;;39215:305;;;;:::o;39526:185::-;39566:1;39583:20;39601:1;39583:20;:::i;:::-;39578:25;;39617:20;39635:1;39617:20;:::i;:::-;39612:25;;39656:1;39646:35;;39661:18;;:::i;:::-;39646:35;39703:1;39700;39696:9;39691:14;;39526:185;;;;:::o;39717:348::-;39757:7;39780:20;39798:1;39780:20;:::i;:::-;39775:25;;39814:20;39832:1;39814:20;:::i;:::-;39809:25;;40002:1;39934:66;39930:74;39927:1;39924:81;39919:1;39912:9;39905:17;39901:105;39898:131;;;40009:18;;:::i;:::-;39898:131;40057:1;40054;40050:9;40039:20;;39717:348;;;;:::o;40071:191::-;40111:4;40131:20;40149:1;40131:20;:::i;:::-;40126:25;;40165:20;40183:1;40165:20;:::i;:::-;40160:25;;40204:1;40201;40198:8;40195:34;;;40209:18;;:::i;:::-;40195:34;40254:1;40251;40247:9;40239:17;;40071:191;;;;:::o;40268:96::-;40305:7;40334:24;40352:5;40334:24;:::i;:::-;40323:35;;40268:96;;;:::o;40370:104::-;40415:7;40444:24;40462:5;40444:24;:::i;:::-;40433:35;;40370:104;;;:::o;40480:90::-;40514:7;40557:5;40550:13;40543:21;40532:32;;40480:90;;;:::o;40576:149::-;40612:7;40652:66;40645:5;40641:78;40630:89;;40576:149;;;:::o;40731:126::-;40768:7;40808:42;40801:5;40797:54;40786:65;;40731:126;;;:::o;40863:77::-;40900:7;40929:5;40918:16;;40863:77;;;:::o;40946:101::-;40982:7;41022:18;41015:5;41011:30;41000:41;;40946:101;;;:::o;41053:154::-;41137:6;41132:3;41127;41114:30;41199:1;41190:6;41185:3;41181:16;41174:27;41053:154;;;:::o;41213:307::-;41281:1;41291:113;41305:6;41302:1;41299:13;41291:113;;;41390:1;41385:3;41381:11;41375:18;41371:1;41366:3;41362:11;41355:39;41327:2;41324:1;41320:10;41315:15;;41291:113;;;41422:6;41419:1;41416:13;41413:101;;;41502:1;41493:6;41488:3;41484:16;41477:27;41413:101;41262:258;41213:307;;;:::o;41526:320::-;41570:6;41607:1;41601:4;41597:12;41587:22;;41654:1;41648:4;41644:12;41675:18;41665:81;;41731:4;41723:6;41719:17;41709:27;;41665:81;41793:2;41785:6;41782:14;41762:18;41759:38;41756:84;;;41812:18;;:::i;:::-;41756:84;41577:269;41526:320;;;:::o;41852:281::-;41935:27;41957:4;41935:27;:::i;:::-;41927:6;41923:40;42065:6;42053:10;42050:22;42029:18;42017:10;42014:34;42011:62;42008:88;;;42076:18;;:::i;:::-;42008:88;42116:10;42112:2;42105:22;41895:238;41852:281;;:::o;42139:233::-;42178:3;42201:24;42219:5;42201:24;:::i;:::-;42192:33;;42247:66;42240:5;42237:77;42234:103;;;42317:18;;:::i;:::-;42234:103;42364:1;42357:5;42353:13;42346:20;;42139:233;;;:::o;42378:176::-;42410:1;42427:20;42445:1;42427:20;:::i;:::-;42422:25;;42461:20;42479:1;42461:20;:::i;:::-;42456:25;;42500:1;42490:35;;42505:18;;:::i;:::-;42490:35;42546:1;42543;42539:9;42534:14;;42378:176;;;;:::o;42560:180::-;42608:77;42605:1;42598:88;42705:4;42702:1;42695:15;42729:4;42726:1;42719:15;42746:180;42794:77;42791:1;42784:88;42891:4;42888:1;42881:15;42915:4;42912:1;42905:15;42932:180;42980:77;42977:1;42970:88;43077:4;43074:1;43067:15;43101:4;43098:1;43091:15;43118:180;43166:77;43163:1;43156:88;43263:4;43260:1;43253:15;43287:4;43284:1;43277:15;43304:180;43352:77;43349:1;43342:88;43449:4;43446:1;43439:15;43473:4;43470:1;43463:15;43490:180;43538:77;43535:1;43528:88;43635:4;43632:1;43625:15;43659:4;43656:1;43649:15;43676:117;43785:1;43782;43775:12;43799:117;43908:1;43905;43898:12;43922:117;44031:1;44028;44021:12;44045:117;44154:1;44151;44144:12;44168:117;44277:1;44274;44267:12;44291:117;44400:1;44397;44390:12;44414:102;44455:6;44506:2;44502:7;44497:2;44490:5;44486:14;44482:28;44472:38;;44414:102;;;:::o;44522:230::-;44662:34;44658:1;44650:6;44646:14;44639:58;44731:13;44726:2;44718:6;44714:15;44707:38;44522:230;:::o;44758:237::-;44898:34;44894:1;44886:6;44882:14;44875:58;44967:20;44962:2;44954:6;44950:15;44943:45;44758:237;:::o;45001:225::-;45141:34;45137:1;45129:6;45125:14;45118:58;45210:8;45205:2;45197:6;45193:15;45186:33;45001:225;:::o;45232:178::-;45372:30;45368:1;45360:6;45356:14;45349:54;45232:178;:::o;45416:165::-;45556:17;45552:1;45544:6;45540:14;45533:41;45416:165;:::o;45587:169::-;45727:21;45723:1;45715:6;45711:14;45704:45;45587:169;:::o;45762:223::-;45902:34;45898:1;45890:6;45886:14;45879:58;45971:6;45966:2;45958:6;45954:15;45947:31;45762:223;:::o;45991:175::-;46131:27;46127:1;46119:6;46115:14;46108:51;45991:175;:::o;46172:231::-;46312:34;46308:1;46300:6;46296:14;46289:58;46381:14;46376:2;46368:6;46364:15;46357:39;46172:231;:::o;46409:238::-;46549:34;46545:1;46537:6;46533:14;46526:58;46618:21;46613:2;46605:6;46601:15;46594:46;46409:238;:::o;46653:243::-;46793:34;46789:1;46781:6;46777:14;46770:58;46862:26;46857:2;46849:6;46845:15;46838:51;46653:243;:::o;46902:229::-;47042:34;47038:1;47030:6;47026:14;47019:58;47111:12;47106:2;47098:6;47094:15;47087:37;46902:229;:::o;47137:167::-;47277:19;47273:1;47265:6;47261:14;47254:43;47137:167;:::o;47310:228::-;47450:34;47446:1;47438:6;47434:14;47427:58;47519:11;47514:2;47506:6;47502:15;47495:36;47310:228;:::o;47544:222::-;47684:34;47680:1;47672:6;47668:14;47661:58;47753:5;47748:2;47740:6;47736:15;47729:30;47544:222;:::o;47772:182::-;47912:34;47908:1;47900:6;47896:14;47889:58;47772:182;:::o;47960:231::-;48100:34;48096:1;48088:6;48084:14;48077:58;48169:14;48164:2;48156:6;48152:15;48145:39;47960:231;:::o;48197:155::-;48337:7;48333:1;48325:6;48321:14;48314:31;48197:155;:::o;48358:182::-;48498:34;48494:1;48486:6;48482:14;48475:58;48358:182;:::o;48546:222::-;48686:34;48682:1;48674:6;48670:14;48663:58;48755:5;48750:2;48742:6;48738:15;48731:30;48546:222;:::o;48774:228::-;48914:34;48910:1;48902:6;48898:14;48891:58;48983:11;48978:2;48970:6;48966:15;48959:36;48774:228;:::o;49008:234::-;49148:34;49144:1;49136:6;49132:14;49125:58;49217:17;49212:2;49204:6;49200:15;49193:42;49008:234;:::o;49248:220::-;49388:34;49384:1;49376:6;49372:14;49365:58;49457:3;49452:2;49444:6;49440:15;49433:28;49248:220;:::o;49474:114::-;;:::o;49594:236::-;49734:34;49730:1;49722:6;49718:14;49711:58;49803:19;49798:2;49790:6;49786:15;49779:44;49594:236;:::o;49836:231::-;49976:34;49972:1;49964:6;49960:14;49953:58;50045:14;50040:2;50032:6;50028:15;50021:39;49836:231;:::o;50073:162::-;50213:14;50209:1;50201:6;50197:14;50190:38;50073:162;:::o;50241:151::-;50381:3;50377:1;50369:6;50365:14;50358:27;50241:151;:::o;50398:122::-;50471:24;50489:5;50471:24;:::i;:::-;50464:5;50461:35;50451:63;;50510:1;50507;50500:12;50451:63;50398:122;:::o;50526:116::-;50596:21;50611:5;50596:21;:::i;:::-;50589:5;50586:32;50576:60;;50632:1;50629;50622:12;50576:60;50526:116;:::o;50648:120::-;50720:23;50737:5;50720:23;:::i;:::-;50713:5;50710:34;50700:62;;50758:1;50755;50748:12;50700:62;50648:120;:::o;50774:122::-;50847:24;50865:5;50847:24;:::i;:::-;50840:5;50837:35;50827:63;;50886:1;50883;50876:12;50827:63;50774:122;:::o

Swarm Source

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