ETH Price: $3,488.83 (+7.48%)
Gas: 6 Gwei

Token

MutantDoodles (MDoodle)
 

Overview

Max Total Supply

1,016 MDoodle

Holders

117

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
5 MDoodle
0x59097c8027C887825A739C93dc9f4D8a2525FC62
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:
MutantDoodles

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-23
*/

// SPDX-License-Identifier: MIT


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


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts v4.4.1 (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/Context.sol


// OpenZeppelin Contracts v4.4.1 (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/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (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() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts v4.4.1 (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/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (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/token/ERC721/ERC721.sol


// OpenZeppelin Contracts (last updated v4.5.0) (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 {
        _setApprovalForAll(_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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: contracts/MDoodles.sol

pragma solidity >=0.7.0 <0.9.0;


contract MutantDoodles is ERC721, Ownable {
  using Strings for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private supply;

  string public uriPrefix = "";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.025 ether;
  uint256 public maxSupply = 8000;
  uint256 public freeAmount = 1000;
  uint256 public reserveAmount = 50;
  uint256 public maxMintAmountPerTx = 5;

  bool public paused = true;
  bool public revealed = false;

  constructor() ERC721("MutantDoodles", "MDoodle") {
    setHiddenMetadataUri("ipfs://QmbmWoLU6tshakBZhdsXoWTzVgHb6yvfKPLD4LBuqzbG1P/hidden.json");
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _;
  }

  function totalSupply() public view returns (uint256) {
    return supply.current();
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(!paused, "The contract is paused!");
    require(supply.current() + _mintAmount <= (maxSupply - reserveAmount) , "Max supply exceeded!");

    if (supply.current() > freeAmount) {
      require(msg.value >= cost * _mintAmount, "Insufficient funds!");
    } else if (supply.current() + _mintAmount > freeAmount) {
      uint256 amountToPayFor = supply.current() + _mintAmount - freeAmount;
      require(msg.value >= cost * amountToPayFor, "Insufficient funds!");
    }

    _mintLoop(msg.sender, _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _mintLoop(_receiver, _mintAmount);
  }

  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    if (revealed == false) {
      return hiddenMetadataUri;
    }

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

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function withdraw() public onlyOwner {
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }

  function _mintLoop(address _receiver, uint256 _mintAmount) internal {
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      _safeMint(_receiver, supply.current());
    }
  }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"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":[],"name":"freeAmount","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":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","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":"_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":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600890805190602001906200002b92919062000372565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600990805190602001906200007992919062000372565b506658d15e17628000600b55611f40600c556103e8600d556032600e556005600f556001601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff021916908315150217905550348015620000de57600080fd5b506040518060400160405280600d81526020017f4d7574616e74446f6f646c6573000000000000000000000000000000000000008152506040518060400160405280600781526020017f4d446f6f646c650000000000000000000000000000000000000000000000000081525081600090805190602001906200016392919062000372565b5080600190805190602001906200017c92919062000372565b5050506200019f62000193620001cf60201b60201c565b620001d760201b60201c565b620001c96040518060800160405280604181526020016200466f604191396200029d60201b60201c565b6200050a565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002ad620001cf60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002d36200034860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200032c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003239062000449565b60405180910390fd5b80600a90805190602001906200034492919062000372565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b82805462000380906200047c565b90600052602060002090601f016020900481019282620003a45760008555620003f0565b82601f10620003bf57805160ff1916838001178555620003f0565b82800160010185558215620003f0579182015b82811115620003ef578251825591602001919060010190620003d2565b5b509050620003ff919062000403565b5090565b5b808211156200041e57600081600090555060010162000404565b5090565b6000620004316020836200046b565b91506200043e82620004e1565b602082019050919050565b60006020820190508181036000830152620004648162000422565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200049557607f821691505b60208210811415620004ac57620004ab620004b2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b614155806200051a6000396000f3fe60806040526004361061021a5760003560e01c806362b99ad411610123578063a22cb465116100ab578063d5abeb011161006f578063d5abeb011461078c578063e0a80853146107b7578063e985e9c5146107e0578063efbd73f41461081d578063f2fde38b146108465761021a565b8063a22cb465146106a9578063a45ba8e7146106d2578063b071401b146106fd578063b88d4fde14610726578063c87b56dd1461074f5761021a565b80637ec4a659116100f25780637ec4a659146105e35780638da5cb5b1461060c57806394354fd01461063757806395d89b4114610662578063a0712d681461068d5761021a565b806362b99ad4146105275780636352211e1461055257806370a082311461058f578063715018a6146105cc5761021a565b806323b872dd116101a65780634b09b72a116101755780634b09b72a146104525780634fdd43cb1461047d57806351830227146104a65780635503a0e8146104d15780635c975abb146104fc5761021a565b806323b872dd146103c05780633ccfd60b146103e957806342842e0e1461040057806344a0d68a146104295761021a565b8063095ea7b3116101ed578063095ea7b3146102ef57806313faede61461031857806316ba10e01461034357806316c38b3c1461036c57806318160ddd146103955761021a565b806301ffc9a71461021f5780630451a9f11461025c57806306fdde0314610287578063081812fc146102b2575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612e5f565b61086f565b604051610253919061344a565b60405180910390f35b34801561026857600080fd5b50610271610951565b60405161027e9190613707565b60405180910390f35b34801561029357600080fd5b5061029c610957565b6040516102a99190613465565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d49190612f02565b6109e9565b6040516102e691906133e3565b60405180910390f35b3480156102fb57600080fd5b5061031660048036038101906103119190612df2565b610a6e565b005b34801561032457600080fd5b5061032d610b86565b60405161033a9190613707565b60405180910390f35b34801561034f57600080fd5b5061036a60048036038101906103659190612eb9565b610b8c565b005b34801561037857600080fd5b50610393600480360381019061038e9190612e32565b610c22565b005b3480156103a157600080fd5b506103aa610cbb565b6040516103b79190613707565b60405180910390f35b3480156103cc57600080fd5b506103e760048036038101906103e29190612cdc565b610ccc565b005b3480156103f557600080fd5b506103fe610d2c565b005b34801561040c57600080fd5b5061042760048036038101906104229190612cdc565b610e28565b005b34801561043557600080fd5b50610450600480360381019061044b9190612f02565b610e48565b005b34801561045e57600080fd5b50610467610ece565b6040516104749190613707565b60405180910390f35b34801561048957600080fd5b506104a4600480360381019061049f9190612eb9565b610ed4565b005b3480156104b257600080fd5b506104bb610f6a565b6040516104c8919061344a565b60405180910390f35b3480156104dd57600080fd5b506104e6610f7d565b6040516104f39190613465565b60405180910390f35b34801561050857600080fd5b5061051161100b565b60405161051e919061344a565b60405180910390f35b34801561053357600080fd5b5061053c61101e565b6040516105499190613465565b60405180910390f35b34801561055e57600080fd5b5061057960048036038101906105749190612f02565b6110ac565b60405161058691906133e3565b60405180910390f35b34801561059b57600080fd5b506105b660048036038101906105b19190612c6f565b61115e565b6040516105c39190613707565b60405180910390f35b3480156105d857600080fd5b506105e1611216565b005b3480156105ef57600080fd5b5061060a60048036038101906106059190612eb9565b61129e565b005b34801561061857600080fd5b50610621611334565b60405161062e91906133e3565b60405180910390f35b34801561064357600080fd5b5061064c61135e565b6040516106599190613707565b60405180910390f35b34801561066e57600080fd5b50610677611364565b6040516106849190613465565b60405180910390f35b6106a760048036038101906106a29190612f02565b6113f6565b005b3480156106b557600080fd5b506106d060048036038101906106cb9190612db2565b611664565b005b3480156106de57600080fd5b506106e761167a565b6040516106f49190613465565b60405180910390f35b34801561070957600080fd5b50610724600480360381019061071f9190612f02565b611708565b005b34801561073257600080fd5b5061074d60048036038101906107489190612d2f565b61178e565b005b34801561075b57600080fd5b5061077660048036038101906107719190612f02565b6117f0565b6040516107839190613465565b60405180910390f35b34801561079857600080fd5b506107a1611949565b6040516107ae9190613707565b60405180910390f35b3480156107c357600080fd5b506107de60048036038101906107d99190612e32565b61194f565b005b3480156107ec57600080fd5b5061080760048036038101906108029190612c9c565b6119e8565b604051610814919061344a565b60405180910390f35b34801561082957600080fd5b50610844600480360381019061083f9190612f2f565b611a7c565b005b34801561085257600080fd5b5061086d60048036038101906108689190612c6f565b611bb2565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061093a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061094a575061094982611caa565b5b9050919050565b600d5481565b606060008054610966906139d7565b80601f0160208091040260200160405190810160405280929190818152602001828054610992906139d7565b80156109df5780601f106109b4576101008083540402835291602001916109df565b820191906000526020600020905b8154815290600101906020018083116109c257829003601f168201915b5050505050905090565b60006109f482611d14565b610a33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2a90613607565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a79826110ac565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae190613687565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b09611d80565b73ffffffffffffffffffffffffffffffffffffffff161480610b385750610b3781610b32611d80565b6119e8565b5b610b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6e90613587565b60405180910390fd5b610b818383611d88565b505050565b600b5481565b610b94611d80565b73ffffffffffffffffffffffffffffffffffffffff16610bb2611334565b73ffffffffffffffffffffffffffffffffffffffff1614610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff90613627565b60405180910390fd5b8060099080519060200190610c1e929190612a83565b5050565b610c2a611d80565b73ffffffffffffffffffffffffffffffffffffffff16610c48611334565b73ffffffffffffffffffffffffffffffffffffffff1614610c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9590613627565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6000610cc76007611e41565b905090565b610cdd610cd7611d80565b82611e4f565b610d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d13906136c7565b60405180910390fd5b610d27838383611f2d565b505050565b610d34611d80565b73ffffffffffffffffffffffffffffffffffffffff16610d52611334565b73ffffffffffffffffffffffffffffffffffffffff1614610da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9f90613627565b60405180910390fd5b6000610db2611334565b73ffffffffffffffffffffffffffffffffffffffff1647604051610dd5906133ce565b60006040518083038185875af1925050503d8060008114610e12576040519150601f19603f3d011682016040523d82523d6000602084013e610e17565b606091505b5050905080610e2557600080fd5b50565b610e438383836040518060200160405280600081525061178e565b505050565b610e50611d80565b73ffffffffffffffffffffffffffffffffffffffff16610e6e611334565b73ffffffffffffffffffffffffffffffffffffffff1614610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb90613627565b60405180910390fd5b80600b8190555050565b600e5481565b610edc611d80565b73ffffffffffffffffffffffffffffffffffffffff16610efa611334565b73ffffffffffffffffffffffffffffffffffffffff1614610f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4790613627565b60405180910390fd5b80600a9080519060200190610f66929190612a83565b5050565b601060019054906101000a900460ff1681565b60098054610f8a906139d7565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb6906139d7565b80156110035780601f10610fd857610100808354040283529160200191611003565b820191906000526020600020905b815481529060010190602001808311610fe657829003601f168201915b505050505081565b601060009054906101000a900460ff1681565b6008805461102b906139d7565b80601f0160208091040260200160405190810160405280929190818152602001828054611057906139d7565b80156110a45780601f10611079576101008083540402835291602001916110a4565b820191906000526020600020905b81548152906001019060200180831161108757829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114c906135c7565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c6906135a7565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61121e611d80565b73ffffffffffffffffffffffffffffffffffffffff1661123c611334565b73ffffffffffffffffffffffffffffffffffffffff1614611292576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128990613627565b60405180910390fd5b61129c6000612194565b565b6112a6611d80565b73ffffffffffffffffffffffffffffffffffffffff166112c4611334565b73ffffffffffffffffffffffffffffffffffffffff161461131a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131190613627565b60405180910390fd5b8060089080519060200190611330929190612a83565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b606060018054611373906139d7565b80601f016020809104026020016040519081016040528092919081815260200182805461139f906139d7565b80156113ec5780601f106113c1576101008083540402835291602001916113ec565b820191906000526020600020905b8154815290600101906020018083116113cf57829003601f168201915b5050505050905090565b806000811180156114095750600f548111155b611448576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143f90613507565b60405180910390fd5b600c54816114566007611e41565b611460919061380c565b11156114a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611498906136a7565b60405180910390fd5b601060009054906101000a900460ff16156114f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e890613647565b60405180910390fd5b600e54600c5461150191906138ed565b8261150c6007611e41565b611516919061380c565b1115611557576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154e906136a7565b60405180910390fd5b600d546115646007611e41565b11156115bf5781600b546115789190613893565b3410156115ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b1906136e7565b60405180910390fd5b611656565b600d54826115cd6007611e41565b6115d7919061380c565b1115611655576000600d54836115ed6007611e41565b6115f7919061380c565b61160191906138ed565b905080600b546116119190613893565b341015611653576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164a906136e7565b60405180910390fd5b505b5b611660338361225a565b5050565b61167661166f611d80565b838361229a565b5050565b600a8054611687906139d7565b80601f01602080910402602001604051908101604052809291908181526020018280546116b3906139d7565b80156117005780601f106116d557610100808354040283529160200191611700565b820191906000526020600020905b8154815290600101906020018083116116e357829003601f168201915b505050505081565b611710611d80565b73ffffffffffffffffffffffffffffffffffffffff1661172e611334565b73ffffffffffffffffffffffffffffffffffffffff1614611784576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177b90613627565b60405180910390fd5b80600f8190555050565b61179f611799611d80565b83611e4f565b6117de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d5906136c7565b60405180910390fd5b6117ea84848484612407565b50505050565b60606117fb82611d14565b61183a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183190613667565b60405180910390fd5b60001515601060019054906101000a900460ff16151514156118e857600a8054611863906139d7565b80601f016020809104026020016040519081016040528092919081815260200182805461188f906139d7565b80156118dc5780601f106118b1576101008083540402835291602001916118dc565b820191906000526020600020905b8154815290600101906020018083116118bf57829003601f168201915b50505050509050611944565b60006118f2612463565b905060008151116119125760405180602001604052806000815250611940565b8061191c846124f5565b60096040516020016119309392919061339d565b6040516020818303038152906040525b9150505b919050565b600c5481565b611957611d80565b73ffffffffffffffffffffffffffffffffffffffff16611975611334565b73ffffffffffffffffffffffffffffffffffffffff16146119cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c290613627565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611a8f5750600f548111155b611ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac590613507565b60405180910390fd5b600c5481611adc6007611e41565b611ae6919061380c565b1115611b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1e906136a7565b60405180910390fd5b611b2f611d80565b73ffffffffffffffffffffffffffffffffffffffff16611b4d611334565b73ffffffffffffffffffffffffffffffffffffffff1614611ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9a90613627565b60405180910390fd5b611bad828461225a565b505050565b611bba611d80565b73ffffffffffffffffffffffffffffffffffffffff16611bd8611334565b73ffffffffffffffffffffffffffffffffffffffff1614611c2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2590613627565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c95906134a7565b60405180910390fd5b611ca781612194565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611dfb836110ac565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611e5a82611d14565b611e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9090613567565b60405180910390fd5b6000611ea4836110ac565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f1357508373ffffffffffffffffffffffffffffffffffffffff16611efb846109e9565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f245750611f2381856119e8565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f4d826110ac565b73ffffffffffffffffffffffffffffffffffffffff1614611fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9a906134c7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200a90613527565b60405180910390fd5b61201e838383612656565b612029600082611d88565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461207991906138ed565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120d0919061380c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461218f83838361265b565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b818110156122955761226f6007612660565b6122828361227d6007611e41565b612676565b808061228d90613a3a565b91505061225d565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612309576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230090613547565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123fa919061344a565b60405180910390a3505050565b612412848484611f2d565b61241e84848484612694565b61245d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245490613487565b60405180910390fd5b50505050565b606060088054612472906139d7565b80601f016020809104026020016040519081016040528092919081815260200182805461249e906139d7565b80156124eb5780601f106124c0576101008083540402835291602001916124eb565b820191906000526020600020905b8154815290600101906020018083116124ce57829003601f168201915b5050505050905090565b6060600082141561253d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612651565b600082905060005b6000821461256f57808061255890613a3a565b915050600a826125689190613862565b9150612545565b60008167ffffffffffffffff81111561258b5761258a613b70565b5b6040519080825280601f01601f1916602001820160405280156125bd5781602001600182028036833780820191505090505b5090505b6000851461264a576001826125d691906138ed565b9150600a856125e59190613a83565b60306125f1919061380c565b60f81b81838151811061260757612606613b41565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126439190613862565b94506125c1565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b61269082826040518060200160405280600081525061282b565b5050565b60006126b58473ffffffffffffffffffffffffffffffffffffffff16612886565b1561281e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126de611d80565b8786866040518563ffffffff1660e01b815260040161270094939291906133fe565b602060405180830381600087803b15801561271a57600080fd5b505af192505050801561274b57506040513d601f19601f820116820180604052508101906127489190612e8c565b60015b6127ce573d806000811461277b576040519150601f19603f3d011682016040523d82523d6000602084013e612780565b606091505b506000815114156127c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127bd90613487565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612823565b600190505b949350505050565b61283583836128a9565b6128426000848484612694565b612881576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287890613487565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612919576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612910906135e7565b60405180910390fd5b61292281611d14565b15612962576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612959906134e7565b60405180910390fd5b61296e60008383612656565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129be919061380c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a7f6000838361265b565b5050565b828054612a8f906139d7565b90600052602060002090601f016020900481019282612ab15760008555612af8565b82601f10612aca57805160ff1916838001178555612af8565b82800160010185558215612af8579182015b82811115612af7578251825591602001919060010190612adc565b5b509050612b059190612b09565b5090565b5b80821115612b22576000816000905550600101612b0a565b5090565b6000612b39612b3484613747565b613722565b905082815260208101848484011115612b5557612b54613ba4565b5b612b60848285613995565b509392505050565b6000612b7b612b7684613778565b613722565b905082815260208101848484011115612b9757612b96613ba4565b5b612ba2848285613995565b509392505050565b600081359050612bb9816140c3565b92915050565b600081359050612bce816140da565b92915050565b600081359050612be3816140f1565b92915050565b600081519050612bf8816140f1565b92915050565b600082601f830112612c1357612c12613b9f565b5b8135612c23848260208601612b26565b91505092915050565b600082601f830112612c4157612c40613b9f565b5b8135612c51848260208601612b68565b91505092915050565b600081359050612c6981614108565b92915050565b600060208284031215612c8557612c84613bae565b5b6000612c9384828501612baa565b91505092915050565b60008060408385031215612cb357612cb2613bae565b5b6000612cc185828601612baa565b9250506020612cd285828601612baa565b9150509250929050565b600080600060608486031215612cf557612cf4613bae565b5b6000612d0386828701612baa565b9350506020612d1486828701612baa565b9250506040612d2586828701612c5a565b9150509250925092565b60008060008060808587031215612d4957612d48613bae565b5b6000612d5787828801612baa565b9450506020612d6887828801612baa565b9350506040612d7987828801612c5a565b925050606085013567ffffffffffffffff811115612d9a57612d99613ba9565b5b612da687828801612bfe565b91505092959194509250565b60008060408385031215612dc957612dc8613bae565b5b6000612dd785828601612baa565b9250506020612de885828601612bbf565b9150509250929050565b60008060408385031215612e0957612e08613bae565b5b6000612e1785828601612baa565b9250506020612e2885828601612c5a565b9150509250929050565b600060208284031215612e4857612e47613bae565b5b6000612e5684828501612bbf565b91505092915050565b600060208284031215612e7557612e74613bae565b5b6000612e8384828501612bd4565b91505092915050565b600060208284031215612ea257612ea1613bae565b5b6000612eb084828501612be9565b91505092915050565b600060208284031215612ecf57612ece613bae565b5b600082013567ffffffffffffffff811115612eed57612eec613ba9565b5b612ef984828501612c2c565b91505092915050565b600060208284031215612f1857612f17613bae565b5b6000612f2684828501612c5a565b91505092915050565b60008060408385031215612f4657612f45613bae565b5b6000612f5485828601612c5a565b9250506020612f6585828601612baa565b9150509250929050565b612f7881613921565b82525050565b612f8781613933565b82525050565b6000612f98826137be565b612fa281856137d4565b9350612fb28185602086016139a4565b612fbb81613bb3565b840191505092915050565b6000612fd1826137c9565b612fdb81856137f0565b9350612feb8185602086016139a4565b612ff481613bb3565b840191505092915050565b600061300a826137c9565b6130148185613801565b93506130248185602086016139a4565b80840191505092915050565b6000815461303d816139d7565b6130478186613801565b945060018216600081146130625760018114613073576130a6565b60ff198316865281860193506130a6565b61307c856137a9565b60005b8381101561309e5781548189015260018201915060208101905061307f565b838801955050505b50505092915050565b60006130bc6032836137f0565b91506130c782613bc4565b604082019050919050565b60006130df6026836137f0565b91506130ea82613c13565b604082019050919050565b60006131026025836137f0565b915061310d82613c62565b604082019050919050565b6000613125601c836137f0565b915061313082613cb1565b602082019050919050565b60006131486014836137f0565b915061315382613cda565b602082019050919050565b600061316b6024836137f0565b915061317682613d03565b604082019050919050565b600061318e6019836137f0565b915061319982613d52565b602082019050919050565b60006131b1602c836137f0565b91506131bc82613d7b565b604082019050919050565b60006131d46038836137f0565b91506131df82613dca565b604082019050919050565b60006131f7602a836137f0565b915061320282613e19565b604082019050919050565b600061321a6029836137f0565b915061322582613e68565b604082019050919050565b600061323d6020836137f0565b915061324882613eb7565b602082019050919050565b6000613260602c836137f0565b915061326b82613ee0565b604082019050919050565b60006132836020836137f0565b915061328e82613f2f565b602082019050919050565b60006132a66017836137f0565b91506132b182613f58565b602082019050919050565b60006132c9602f836137f0565b91506132d482613f81565b604082019050919050565b60006132ec6021836137f0565b91506132f782613fd0565b604082019050919050565b600061330f6000836137e5565b915061331a8261401f565b600082019050919050565b60006133326014836137f0565b915061333d82614022565b602082019050919050565b60006133556031836137f0565b91506133608261404b565b604082019050919050565b60006133786013836137f0565b91506133838261409a565b602082019050919050565b6133978161398b565b82525050565b60006133a98286612fff565b91506133b58285612fff565b91506133c18284613030565b9150819050949350505050565b60006133d982613302565b9150819050919050565b60006020820190506133f86000830184612f6f565b92915050565b60006080820190506134136000830187612f6f565b6134206020830186612f6f565b61342d604083018561338e565b818103606083015261343f8184612f8d565b905095945050505050565b600060208201905061345f6000830184612f7e565b92915050565b6000602082019050818103600083015261347f8184612fc6565b905092915050565b600060208201905081810360008301526134a0816130af565b9050919050565b600060208201905081810360008301526134c0816130d2565b9050919050565b600060208201905081810360008301526134e0816130f5565b9050919050565b6000602082019050818103600083015261350081613118565b9050919050565b600060208201905081810360008301526135208161313b565b9050919050565b600060208201905081810360008301526135408161315e565b9050919050565b6000602082019050818103600083015261356081613181565b9050919050565b60006020820190508181036000830152613580816131a4565b9050919050565b600060208201905081810360008301526135a0816131c7565b9050919050565b600060208201905081810360008301526135c0816131ea565b9050919050565b600060208201905081810360008301526135e08161320d565b9050919050565b6000602082019050818103600083015261360081613230565b9050919050565b6000602082019050818103600083015261362081613253565b9050919050565b6000602082019050818103600083015261364081613276565b9050919050565b6000602082019050818103600083015261366081613299565b9050919050565b60006020820190508181036000830152613680816132bc565b9050919050565b600060208201905081810360008301526136a0816132df565b9050919050565b600060208201905081810360008301526136c081613325565b9050919050565b600060208201905081810360008301526136e081613348565b9050919050565b600060208201905081810360008301526137008161336b565b9050919050565b600060208201905061371c600083018461338e565b92915050565b600061372c61373d565b90506137388282613a09565b919050565b6000604051905090565b600067ffffffffffffffff82111561376257613761613b70565b5b61376b82613bb3565b9050602081019050919050565b600067ffffffffffffffff82111561379357613792613b70565b5b61379c82613bb3565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006138178261398b565b91506138228361398b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561385757613856613ab4565b5b828201905092915050565b600061386d8261398b565b91506138788361398b565b92508261388857613887613ae3565b5b828204905092915050565b600061389e8261398b565b91506138a98361398b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156138e2576138e1613ab4565b5b828202905092915050565b60006138f88261398b565b91506139038361398b565b92508282101561391657613915613ab4565b5b828203905092915050565b600061392c8261396b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156139c25780820151818401526020810190506139a7565b838111156139d1576000848401525b50505050565b600060028204905060018216806139ef57607f821691505b60208210811415613a0357613a02613b12565b5b50919050565b613a1282613bb3565b810181811067ffffffffffffffff82111715613a3157613a30613b70565b5b80604052505050565b6000613a458261398b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a7857613a77613ab4565b5b600182019050919050565b6000613a8e8261398b565b9150613a998361398b565b925082613aa957613aa8613ae3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6140cc81613921565b81146140d757600080fd5b50565b6140e381613933565b81146140ee57600080fd5b50565b6140fa8161393f565b811461410557600080fd5b50565b6141118161398b565b811461411c57600080fd5b5056fea2646970667358221220c01b0592393e717aa800b307044572fdf08a81618ba63032b02011bd3c16a7ca64736f6c63430008070033697066733a2f2f516d626d576f4c5536747368616b425a686473586f57547a56674862367976664b504c44344c4275717a624731502f68696464656e2e6a736f6e

Deployed Bytecode

0x60806040526004361061021a5760003560e01c806362b99ad411610123578063a22cb465116100ab578063d5abeb011161006f578063d5abeb011461078c578063e0a80853146107b7578063e985e9c5146107e0578063efbd73f41461081d578063f2fde38b146108465761021a565b8063a22cb465146106a9578063a45ba8e7146106d2578063b071401b146106fd578063b88d4fde14610726578063c87b56dd1461074f5761021a565b80637ec4a659116100f25780637ec4a659146105e35780638da5cb5b1461060c57806394354fd01461063757806395d89b4114610662578063a0712d681461068d5761021a565b806362b99ad4146105275780636352211e1461055257806370a082311461058f578063715018a6146105cc5761021a565b806323b872dd116101a65780634b09b72a116101755780634b09b72a146104525780634fdd43cb1461047d57806351830227146104a65780635503a0e8146104d15780635c975abb146104fc5761021a565b806323b872dd146103c05780633ccfd60b146103e957806342842e0e1461040057806344a0d68a146104295761021a565b8063095ea7b3116101ed578063095ea7b3146102ef57806313faede61461031857806316ba10e01461034357806316c38b3c1461036c57806318160ddd146103955761021a565b806301ffc9a71461021f5780630451a9f11461025c57806306fdde0314610287578063081812fc146102b2575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612e5f565b61086f565b604051610253919061344a565b60405180910390f35b34801561026857600080fd5b50610271610951565b60405161027e9190613707565b60405180910390f35b34801561029357600080fd5b5061029c610957565b6040516102a99190613465565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d49190612f02565b6109e9565b6040516102e691906133e3565b60405180910390f35b3480156102fb57600080fd5b5061031660048036038101906103119190612df2565b610a6e565b005b34801561032457600080fd5b5061032d610b86565b60405161033a9190613707565b60405180910390f35b34801561034f57600080fd5b5061036a60048036038101906103659190612eb9565b610b8c565b005b34801561037857600080fd5b50610393600480360381019061038e9190612e32565b610c22565b005b3480156103a157600080fd5b506103aa610cbb565b6040516103b79190613707565b60405180910390f35b3480156103cc57600080fd5b506103e760048036038101906103e29190612cdc565b610ccc565b005b3480156103f557600080fd5b506103fe610d2c565b005b34801561040c57600080fd5b5061042760048036038101906104229190612cdc565b610e28565b005b34801561043557600080fd5b50610450600480360381019061044b9190612f02565b610e48565b005b34801561045e57600080fd5b50610467610ece565b6040516104749190613707565b60405180910390f35b34801561048957600080fd5b506104a4600480360381019061049f9190612eb9565b610ed4565b005b3480156104b257600080fd5b506104bb610f6a565b6040516104c8919061344a565b60405180910390f35b3480156104dd57600080fd5b506104e6610f7d565b6040516104f39190613465565b60405180910390f35b34801561050857600080fd5b5061051161100b565b60405161051e919061344a565b60405180910390f35b34801561053357600080fd5b5061053c61101e565b6040516105499190613465565b60405180910390f35b34801561055e57600080fd5b5061057960048036038101906105749190612f02565b6110ac565b60405161058691906133e3565b60405180910390f35b34801561059b57600080fd5b506105b660048036038101906105b19190612c6f565b61115e565b6040516105c39190613707565b60405180910390f35b3480156105d857600080fd5b506105e1611216565b005b3480156105ef57600080fd5b5061060a60048036038101906106059190612eb9565b61129e565b005b34801561061857600080fd5b50610621611334565b60405161062e91906133e3565b60405180910390f35b34801561064357600080fd5b5061064c61135e565b6040516106599190613707565b60405180910390f35b34801561066e57600080fd5b50610677611364565b6040516106849190613465565b60405180910390f35b6106a760048036038101906106a29190612f02565b6113f6565b005b3480156106b557600080fd5b506106d060048036038101906106cb9190612db2565b611664565b005b3480156106de57600080fd5b506106e761167a565b6040516106f49190613465565b60405180910390f35b34801561070957600080fd5b50610724600480360381019061071f9190612f02565b611708565b005b34801561073257600080fd5b5061074d60048036038101906107489190612d2f565b61178e565b005b34801561075b57600080fd5b5061077660048036038101906107719190612f02565b6117f0565b6040516107839190613465565b60405180910390f35b34801561079857600080fd5b506107a1611949565b6040516107ae9190613707565b60405180910390f35b3480156107c357600080fd5b506107de60048036038101906107d99190612e32565b61194f565b005b3480156107ec57600080fd5b5061080760048036038101906108029190612c9c565b6119e8565b604051610814919061344a565b60405180910390f35b34801561082957600080fd5b50610844600480360381019061083f9190612f2f565b611a7c565b005b34801561085257600080fd5b5061086d60048036038101906108689190612c6f565b611bb2565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061093a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061094a575061094982611caa565b5b9050919050565b600d5481565b606060008054610966906139d7565b80601f0160208091040260200160405190810160405280929190818152602001828054610992906139d7565b80156109df5780601f106109b4576101008083540402835291602001916109df565b820191906000526020600020905b8154815290600101906020018083116109c257829003601f168201915b5050505050905090565b60006109f482611d14565b610a33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2a90613607565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a79826110ac565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae190613687565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b09611d80565b73ffffffffffffffffffffffffffffffffffffffff161480610b385750610b3781610b32611d80565b6119e8565b5b610b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6e90613587565b60405180910390fd5b610b818383611d88565b505050565b600b5481565b610b94611d80565b73ffffffffffffffffffffffffffffffffffffffff16610bb2611334565b73ffffffffffffffffffffffffffffffffffffffff1614610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff90613627565b60405180910390fd5b8060099080519060200190610c1e929190612a83565b5050565b610c2a611d80565b73ffffffffffffffffffffffffffffffffffffffff16610c48611334565b73ffffffffffffffffffffffffffffffffffffffff1614610c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9590613627565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6000610cc76007611e41565b905090565b610cdd610cd7611d80565b82611e4f565b610d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d13906136c7565b60405180910390fd5b610d27838383611f2d565b505050565b610d34611d80565b73ffffffffffffffffffffffffffffffffffffffff16610d52611334565b73ffffffffffffffffffffffffffffffffffffffff1614610da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9f90613627565b60405180910390fd5b6000610db2611334565b73ffffffffffffffffffffffffffffffffffffffff1647604051610dd5906133ce565b60006040518083038185875af1925050503d8060008114610e12576040519150601f19603f3d011682016040523d82523d6000602084013e610e17565b606091505b5050905080610e2557600080fd5b50565b610e438383836040518060200160405280600081525061178e565b505050565b610e50611d80565b73ffffffffffffffffffffffffffffffffffffffff16610e6e611334565b73ffffffffffffffffffffffffffffffffffffffff1614610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb90613627565b60405180910390fd5b80600b8190555050565b600e5481565b610edc611d80565b73ffffffffffffffffffffffffffffffffffffffff16610efa611334565b73ffffffffffffffffffffffffffffffffffffffff1614610f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4790613627565b60405180910390fd5b80600a9080519060200190610f66929190612a83565b5050565b601060019054906101000a900460ff1681565b60098054610f8a906139d7565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb6906139d7565b80156110035780601f10610fd857610100808354040283529160200191611003565b820191906000526020600020905b815481529060010190602001808311610fe657829003601f168201915b505050505081565b601060009054906101000a900460ff1681565b6008805461102b906139d7565b80601f0160208091040260200160405190810160405280929190818152602001828054611057906139d7565b80156110a45780601f10611079576101008083540402835291602001916110a4565b820191906000526020600020905b81548152906001019060200180831161108757829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114c906135c7565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c6906135a7565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61121e611d80565b73ffffffffffffffffffffffffffffffffffffffff1661123c611334565b73ffffffffffffffffffffffffffffffffffffffff1614611292576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128990613627565b60405180910390fd5b61129c6000612194565b565b6112a6611d80565b73ffffffffffffffffffffffffffffffffffffffff166112c4611334565b73ffffffffffffffffffffffffffffffffffffffff161461131a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131190613627565b60405180910390fd5b8060089080519060200190611330929190612a83565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b606060018054611373906139d7565b80601f016020809104026020016040519081016040528092919081815260200182805461139f906139d7565b80156113ec5780601f106113c1576101008083540402835291602001916113ec565b820191906000526020600020905b8154815290600101906020018083116113cf57829003601f168201915b5050505050905090565b806000811180156114095750600f548111155b611448576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143f90613507565b60405180910390fd5b600c54816114566007611e41565b611460919061380c565b11156114a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611498906136a7565b60405180910390fd5b601060009054906101000a900460ff16156114f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e890613647565b60405180910390fd5b600e54600c5461150191906138ed565b8261150c6007611e41565b611516919061380c565b1115611557576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154e906136a7565b60405180910390fd5b600d546115646007611e41565b11156115bf5781600b546115789190613893565b3410156115ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b1906136e7565b60405180910390fd5b611656565b600d54826115cd6007611e41565b6115d7919061380c565b1115611655576000600d54836115ed6007611e41565b6115f7919061380c565b61160191906138ed565b905080600b546116119190613893565b341015611653576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164a906136e7565b60405180910390fd5b505b5b611660338361225a565b5050565b61167661166f611d80565b838361229a565b5050565b600a8054611687906139d7565b80601f01602080910402602001604051908101604052809291908181526020018280546116b3906139d7565b80156117005780601f106116d557610100808354040283529160200191611700565b820191906000526020600020905b8154815290600101906020018083116116e357829003601f168201915b505050505081565b611710611d80565b73ffffffffffffffffffffffffffffffffffffffff1661172e611334565b73ffffffffffffffffffffffffffffffffffffffff1614611784576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177b90613627565b60405180910390fd5b80600f8190555050565b61179f611799611d80565b83611e4f565b6117de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d5906136c7565b60405180910390fd5b6117ea84848484612407565b50505050565b60606117fb82611d14565b61183a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183190613667565b60405180910390fd5b60001515601060019054906101000a900460ff16151514156118e857600a8054611863906139d7565b80601f016020809104026020016040519081016040528092919081815260200182805461188f906139d7565b80156118dc5780601f106118b1576101008083540402835291602001916118dc565b820191906000526020600020905b8154815290600101906020018083116118bf57829003601f168201915b50505050509050611944565b60006118f2612463565b905060008151116119125760405180602001604052806000815250611940565b8061191c846124f5565b60096040516020016119309392919061339d565b6040516020818303038152906040525b9150505b919050565b600c5481565b611957611d80565b73ffffffffffffffffffffffffffffffffffffffff16611975611334565b73ffffffffffffffffffffffffffffffffffffffff16146119cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c290613627565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611a8f5750600f548111155b611ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac590613507565b60405180910390fd5b600c5481611adc6007611e41565b611ae6919061380c565b1115611b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1e906136a7565b60405180910390fd5b611b2f611d80565b73ffffffffffffffffffffffffffffffffffffffff16611b4d611334565b73ffffffffffffffffffffffffffffffffffffffff1614611ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9a90613627565b60405180910390fd5b611bad828461225a565b505050565b611bba611d80565b73ffffffffffffffffffffffffffffffffffffffff16611bd8611334565b73ffffffffffffffffffffffffffffffffffffffff1614611c2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2590613627565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c95906134a7565b60405180910390fd5b611ca781612194565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611dfb836110ac565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611e5a82611d14565b611e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9090613567565b60405180910390fd5b6000611ea4836110ac565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f1357508373ffffffffffffffffffffffffffffffffffffffff16611efb846109e9565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f245750611f2381856119e8565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f4d826110ac565b73ffffffffffffffffffffffffffffffffffffffff1614611fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9a906134c7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200a90613527565b60405180910390fd5b61201e838383612656565b612029600082611d88565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461207991906138ed565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120d0919061380c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461218f83838361265b565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b818110156122955761226f6007612660565b6122828361227d6007611e41565b612676565b808061228d90613a3a565b91505061225d565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612309576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230090613547565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123fa919061344a565b60405180910390a3505050565b612412848484611f2d565b61241e84848484612694565b61245d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245490613487565b60405180910390fd5b50505050565b606060088054612472906139d7565b80601f016020809104026020016040519081016040528092919081815260200182805461249e906139d7565b80156124eb5780601f106124c0576101008083540402835291602001916124eb565b820191906000526020600020905b8154815290600101906020018083116124ce57829003601f168201915b5050505050905090565b6060600082141561253d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612651565b600082905060005b6000821461256f57808061255890613a3a565b915050600a826125689190613862565b9150612545565b60008167ffffffffffffffff81111561258b5761258a613b70565b5b6040519080825280601f01601f1916602001820160405280156125bd5781602001600182028036833780820191505090505b5090505b6000851461264a576001826125d691906138ed565b9150600a856125e59190613a83565b60306125f1919061380c565b60f81b81838151811061260757612606613b41565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126439190613862565b94506125c1565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b61269082826040518060200160405280600081525061282b565b5050565b60006126b58473ffffffffffffffffffffffffffffffffffffffff16612886565b1561281e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126de611d80565b8786866040518563ffffffff1660e01b815260040161270094939291906133fe565b602060405180830381600087803b15801561271a57600080fd5b505af192505050801561274b57506040513d601f19601f820116820180604052508101906127489190612e8c565b60015b6127ce573d806000811461277b576040519150601f19603f3d011682016040523d82523d6000602084013e612780565b606091505b506000815114156127c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127bd90613487565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612823565b600190505b949350505050565b61283583836128a9565b6128426000848484612694565b612881576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287890613487565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612919576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612910906135e7565b60405180910390fd5b61292281611d14565b15612962576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612959906134e7565b60405180910390fd5b61296e60008383612656565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129be919061380c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a7f6000838361265b565b5050565b828054612a8f906139d7565b90600052602060002090601f016020900481019282612ab15760008555612af8565b82601f10612aca57805160ff1916838001178555612af8565b82800160010185558215612af8579182015b82811115612af7578251825591602001919060010190612adc565b5b509050612b059190612b09565b5090565b5b80821115612b22576000816000905550600101612b0a565b5090565b6000612b39612b3484613747565b613722565b905082815260208101848484011115612b5557612b54613ba4565b5b612b60848285613995565b509392505050565b6000612b7b612b7684613778565b613722565b905082815260208101848484011115612b9757612b96613ba4565b5b612ba2848285613995565b509392505050565b600081359050612bb9816140c3565b92915050565b600081359050612bce816140da565b92915050565b600081359050612be3816140f1565b92915050565b600081519050612bf8816140f1565b92915050565b600082601f830112612c1357612c12613b9f565b5b8135612c23848260208601612b26565b91505092915050565b600082601f830112612c4157612c40613b9f565b5b8135612c51848260208601612b68565b91505092915050565b600081359050612c6981614108565b92915050565b600060208284031215612c8557612c84613bae565b5b6000612c9384828501612baa565b91505092915050565b60008060408385031215612cb357612cb2613bae565b5b6000612cc185828601612baa565b9250506020612cd285828601612baa565b9150509250929050565b600080600060608486031215612cf557612cf4613bae565b5b6000612d0386828701612baa565b9350506020612d1486828701612baa565b9250506040612d2586828701612c5a565b9150509250925092565b60008060008060808587031215612d4957612d48613bae565b5b6000612d5787828801612baa565b9450506020612d6887828801612baa565b9350506040612d7987828801612c5a565b925050606085013567ffffffffffffffff811115612d9a57612d99613ba9565b5b612da687828801612bfe565b91505092959194509250565b60008060408385031215612dc957612dc8613bae565b5b6000612dd785828601612baa565b9250506020612de885828601612bbf565b9150509250929050565b60008060408385031215612e0957612e08613bae565b5b6000612e1785828601612baa565b9250506020612e2885828601612c5a565b9150509250929050565b600060208284031215612e4857612e47613bae565b5b6000612e5684828501612bbf565b91505092915050565b600060208284031215612e7557612e74613bae565b5b6000612e8384828501612bd4565b91505092915050565b600060208284031215612ea257612ea1613bae565b5b6000612eb084828501612be9565b91505092915050565b600060208284031215612ecf57612ece613bae565b5b600082013567ffffffffffffffff811115612eed57612eec613ba9565b5b612ef984828501612c2c565b91505092915050565b600060208284031215612f1857612f17613bae565b5b6000612f2684828501612c5a565b91505092915050565b60008060408385031215612f4657612f45613bae565b5b6000612f5485828601612c5a565b9250506020612f6585828601612baa565b9150509250929050565b612f7881613921565b82525050565b612f8781613933565b82525050565b6000612f98826137be565b612fa281856137d4565b9350612fb28185602086016139a4565b612fbb81613bb3565b840191505092915050565b6000612fd1826137c9565b612fdb81856137f0565b9350612feb8185602086016139a4565b612ff481613bb3565b840191505092915050565b600061300a826137c9565b6130148185613801565b93506130248185602086016139a4565b80840191505092915050565b6000815461303d816139d7565b6130478186613801565b945060018216600081146130625760018114613073576130a6565b60ff198316865281860193506130a6565b61307c856137a9565b60005b8381101561309e5781548189015260018201915060208101905061307f565b838801955050505b50505092915050565b60006130bc6032836137f0565b91506130c782613bc4565b604082019050919050565b60006130df6026836137f0565b91506130ea82613c13565b604082019050919050565b60006131026025836137f0565b915061310d82613c62565b604082019050919050565b6000613125601c836137f0565b915061313082613cb1565b602082019050919050565b60006131486014836137f0565b915061315382613cda565b602082019050919050565b600061316b6024836137f0565b915061317682613d03565b604082019050919050565b600061318e6019836137f0565b915061319982613d52565b602082019050919050565b60006131b1602c836137f0565b91506131bc82613d7b565b604082019050919050565b60006131d46038836137f0565b91506131df82613dca565b604082019050919050565b60006131f7602a836137f0565b915061320282613e19565b604082019050919050565b600061321a6029836137f0565b915061322582613e68565b604082019050919050565b600061323d6020836137f0565b915061324882613eb7565b602082019050919050565b6000613260602c836137f0565b915061326b82613ee0565b604082019050919050565b60006132836020836137f0565b915061328e82613f2f565b602082019050919050565b60006132a66017836137f0565b91506132b182613f58565b602082019050919050565b60006132c9602f836137f0565b91506132d482613f81565b604082019050919050565b60006132ec6021836137f0565b91506132f782613fd0565b604082019050919050565b600061330f6000836137e5565b915061331a8261401f565b600082019050919050565b60006133326014836137f0565b915061333d82614022565b602082019050919050565b60006133556031836137f0565b91506133608261404b565b604082019050919050565b60006133786013836137f0565b91506133838261409a565b602082019050919050565b6133978161398b565b82525050565b60006133a98286612fff565b91506133b58285612fff565b91506133c18284613030565b9150819050949350505050565b60006133d982613302565b9150819050919050565b60006020820190506133f86000830184612f6f565b92915050565b60006080820190506134136000830187612f6f565b6134206020830186612f6f565b61342d604083018561338e565b818103606083015261343f8184612f8d565b905095945050505050565b600060208201905061345f6000830184612f7e565b92915050565b6000602082019050818103600083015261347f8184612fc6565b905092915050565b600060208201905081810360008301526134a0816130af565b9050919050565b600060208201905081810360008301526134c0816130d2565b9050919050565b600060208201905081810360008301526134e0816130f5565b9050919050565b6000602082019050818103600083015261350081613118565b9050919050565b600060208201905081810360008301526135208161313b565b9050919050565b600060208201905081810360008301526135408161315e565b9050919050565b6000602082019050818103600083015261356081613181565b9050919050565b60006020820190508181036000830152613580816131a4565b9050919050565b600060208201905081810360008301526135a0816131c7565b9050919050565b600060208201905081810360008301526135c0816131ea565b9050919050565b600060208201905081810360008301526135e08161320d565b9050919050565b6000602082019050818103600083015261360081613230565b9050919050565b6000602082019050818103600083015261362081613253565b9050919050565b6000602082019050818103600083015261364081613276565b9050919050565b6000602082019050818103600083015261366081613299565b9050919050565b60006020820190508181036000830152613680816132bc565b9050919050565b600060208201905081810360008301526136a0816132df565b9050919050565b600060208201905081810360008301526136c081613325565b9050919050565b600060208201905081810360008301526136e081613348565b9050919050565b600060208201905081810360008301526137008161336b565b9050919050565b600060208201905061371c600083018461338e565b92915050565b600061372c61373d565b90506137388282613a09565b919050565b6000604051905090565b600067ffffffffffffffff82111561376257613761613b70565b5b61376b82613bb3565b9050602081019050919050565b600067ffffffffffffffff82111561379357613792613b70565b5b61379c82613bb3565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006138178261398b565b91506138228361398b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561385757613856613ab4565b5b828201905092915050565b600061386d8261398b565b91506138788361398b565b92508261388857613887613ae3565b5b828204905092915050565b600061389e8261398b565b91506138a98361398b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156138e2576138e1613ab4565b5b828202905092915050565b60006138f88261398b565b91506139038361398b565b92508282101561391657613915613ab4565b5b828203905092915050565b600061392c8261396b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156139c25780820151818401526020810190506139a7565b838111156139d1576000848401525b50505050565b600060028204905060018216806139ef57607f821691505b60208210811415613a0357613a02613b12565b5b50919050565b613a1282613bb3565b810181811067ffffffffffffffff82111715613a3157613a30613b70565b5b80604052505050565b6000613a458261398b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a7857613a77613ab4565b5b600182019050919050565b6000613a8e8261398b565b9150613a998361398b565b925082613aa957613aa8613ae3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6140cc81613921565b81146140d757600080fd5b50565b6140e381613933565b81146140ee57600080fd5b50565b6140fa8161393f565b811461410557600080fd5b50565b6141118161398b565b811461411c57600080fd5b5056fea2646970667358221220c01b0592393e717aa800b307044572fdf08a81618ba63032b02011bd3c16a7ca64736f6c63430008070033

Deployed Bytecode Sourcemap

38797:3500:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25611:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39139:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26556:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28115:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27638:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39065:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41648:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41754:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39720:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28865:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41837:137;;;;;;;;;;;;;:::i;:::-;;29275:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41188:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39176:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41404:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39288:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38987:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39258:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38954:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26250:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25980:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6232:103;;;;;;;;;;;;;:::i;:::-;;41542:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5581:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39214:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26725:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39815:617;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28408:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39025:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41268:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29531:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40601:494;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39103:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41101:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28634:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40440:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6490:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25611:305;25713:4;25765:25;25750:40;;;:11;:40;;;;:105;;;;25822:33;25807:48;;;:11;:48;;;;25750:105;:158;;;;25872:36;25896:11;25872:23;:36::i;:::-;25750:158;25730:178;;25611:305;;;:::o;39139:32::-;;;;:::o;26556:100::-;26610:13;26643:5;26636:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26556:100;:::o;28115:221::-;28191:7;28219:16;28227:7;28219;:16::i;:::-;28211:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28304:15;:24;28320:7;28304:24;;;;;;;;;;;;;;;;;;;;;28297:31;;28115:221;;;:::o;27638:411::-;27719:13;27735:23;27750:7;27735:14;:23::i;:::-;27719:39;;27783:5;27777:11;;:2;:11;;;;27769:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27877:5;27861:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27886:37;27903:5;27910:12;:10;:12::i;:::-;27886:16;:37::i;:::-;27861:62;27839:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;28020:21;28029:2;28033:7;28020:8;:21::i;:::-;27708:341;27638:411;;:::o;39065:33::-;;;;:::o;41648:100::-;5812:12;:10;:12::i;:::-;5801:23;;:7;:5;:7::i;:::-;:23;;;5793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41732:10:::1;41720:9;:22;;;;;;;;;;;;:::i;:::-;;41648:100:::0;:::o;41754:77::-;5812:12;:10;:12::i;:::-;5801:23;;:7;:5;:7::i;:::-;:23;;;5793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41819:6:::1;41810;;:15;;;;;;;;;;;;;;;;;;41754:77:::0;:::o;39720:89::-;39764:7;39787:16;:6;:14;:16::i;:::-;39780:23;;39720:89;:::o;28865:339::-;29060:41;29079:12;:10;:12::i;:::-;29093:7;29060:18;:41::i;:::-;29052:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29168:28;29178:4;29184:2;29188:7;29168:9;:28::i;:::-;28865:339;;;:::o;41837:137::-;5812:12;:10;:12::i;:::-;5801:23;;:7;:5;:7::i;:::-;:23;;;5793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41882:7:::1;41903;:5;:7::i;:::-;41895:21;;41924;41895:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41881:69;;;41965:2;41957:11;;;::::0;::::1;;41874:100;41837:137::o:0;29275:185::-;29413:39;29430:4;29436:2;29440:7;29413:39;;;;;;;;;;;;:16;:39::i;:::-;29275:185;;;:::o;41188:74::-;5812:12;:10;:12::i;:::-;5801:23;;:7;:5;:7::i;:::-;:23;;;5793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41251:5:::1;41244:4;:12;;;;41188:74:::0;:::o;39176:33::-;;;;:::o;41404:132::-;5812:12;:10;:12::i;:::-;5801:23;;:7;:5;:7::i;:::-;:23;;;5793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41512:18:::1;41492:17;:38;;;;;;;;;;;;:::i;:::-;;41404:132:::0;:::o;39288:28::-;;;;;;;;;;;;;:::o;38987:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39258:25::-;;;;;;;;;;;;;:::o;38954:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26250:239::-;26322:7;26342:13;26358:7;:16;26366:7;26358:16;;;;;;;;;;;;;;;;;;;;;26342:32;;26410:1;26393:19;;:5;:19;;;;26385:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26476:5;26469:12;;;26250:239;;;:::o;25980:208::-;26052:7;26097:1;26080:19;;:5;:19;;;;26072:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;26164:9;:16;26174:5;26164:16;;;;;;;;;;;;;;;;26157:23;;25980:208;;;:::o;6232:103::-;5812:12;:10;:12::i;:::-;5801:23;;:7;:5;:7::i;:::-;:23;;;5793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6297:30:::1;6324:1;6297:18;:30::i;:::-;6232:103::o:0;41542:100::-;5812:12;:10;:12::i;:::-;5801:23;;:7;:5;:7::i;:::-;:23;;;5793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41626:10:::1;41614:9;:22;;;;;;;;;;;;:::i;:::-;;41542:100:::0;:::o;5581:87::-;5627:7;5654:6;;;;;;;;;;;5647:13;;5581:87;:::o;39214:37::-;;;;:::o;26725:104::-;26781:13;26814:7;26807:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26725:104;:::o;39815:617::-;39880:11;39554:1;39540:11;:15;:52;;;;;39574:18;;39559:11;:33;;39540:52;39532:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;39666:9;;39651:11;39632:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;39624:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;39909:6:::1;;;;;;;;;;;39908:7;39900:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;40005:13;;39993:9;;:25;;;;:::i;:::-;39977:11;39958:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:61;;39950:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;40077:10;;40058:16;:6;:14;:16::i;:::-;:29;40054:330;;;40126:11;40119:4;;:18;;;;:::i;:::-;40106:9;:31;;40098:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;40054:330;;;40212:10;;40198:11;40179:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;40175:209;;;40233:22;40291:10;;40277:11;40258:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;;;:::i;:::-;40233:68;;40338:14;40331:4;;:21;;;;:::i;:::-;40318:9;:34;;40310:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;40224:160;40175:209;40054:330;40392:34;40402:10;40414:11;40392:9;:34::i;:::-;39815:617:::0;;:::o;28408:155::-;28503:52;28522:12;:10;:12::i;:::-;28536:8;28546;28503:18;:52::i;:::-;28408:155;;:::o;39025:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41268:130::-;5812:12;:10;:12::i;:::-;5801:23;;:7;:5;:7::i;:::-;:23;;;5793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41373:19:::1;41352:18;:40;;;;41268:130:::0;:::o;29531:328::-;29706:41;29725:12;:10;:12::i;:::-;29739:7;29706:18;:41::i;:::-;29698:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29812:39;29826:4;29832:2;29836:7;29845:5;29812:13;:39::i;:::-;29531:328;;;;:::o;40601:494::-;40700:13;40741:17;40749:8;40741:7;:17::i;:::-;40725:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;40848:5;40836:17;;:8;;;;;;;;;;;:17;;;40832:64;;;40871:17;40864:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40832:64;40904:28;40935:10;:8;:10::i;:::-;40904:41;;40990:1;40965:14;40959:28;:32;:130;;;;;;;;;;;;;;;;;41027:14;41043:19;:8;:17;:19::i;:::-;41064:9;41010:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40959:130;40952:137;;;40601:494;;;;:::o;39103:31::-;;;;:::o;41101:81::-;5812:12;:10;:12::i;:::-;5801:23;;:7;:5;:7::i;:::-;:23;;;5793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41170:6:::1;41159:8;;:17;;;;;;;;;;;;;;;;;;41101:81:::0;:::o;28634:164::-;28731:4;28755:18;:25;28774:5;28755:25;;;;;;;;;;;;;;;:35;28781:8;28755:35;;;;;;;;;;;;;;;;;;;;;;;;;28748:42;;28634:164;;;;:::o;40440:155::-;40526:11;39554:1;39540:11;:15;:52;;;;;39574:18;;39559:11;:33;;39540:52;39532:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;39666:9;;39651:11;39632:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;39624:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;5812:12:::1;:10;:12::i;:::-;5801:23;;:7;:5;:7::i;:::-;:23;;;5793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40556:33:::2;40566:9;40577:11;40556:9;:33::i;:::-;40440:155:::0;;;:::o;6490:201::-;5812:12;:10;:12::i;:::-;5801:23;;:7;:5;:7::i;:::-;:23;;;5793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6599:1:::1;6579:22;;:8;:22;;;;6571:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6655:28;6674:8;6655:18;:28::i;:::-;6490:201:::0;:::o;18365:157::-;18450:4;18489:25;18474:40;;;:11;:40;;;;18467:47;;18365:157;;;:::o;31369:127::-;31434:4;31486:1;31458:30;;:7;:16;31466:7;31458:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31451:37;;31369:127;;;:::o;4305:98::-;4358:7;4385:10;4378:17;;4305:98;:::o;35515:174::-;35617:2;35590:15;:24;35606:7;35590:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35673:7;35669:2;35635:46;;35644:23;35659:7;35644:14;:23::i;:::-;35635:46;;;;;;;;;;;;35515:174;;:::o;909:114::-;974:7;1001;:14;;;994:21;;909:114;;;:::o;31663:348::-;31756:4;31781:16;31789:7;31781;:16::i;:::-;31773:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31857:13;31873:23;31888:7;31873:14;:23::i;:::-;31857:39;;31926:5;31915:16;;:7;:16;;;:51;;;;31959:7;31935:31;;:20;31947:7;31935:11;:20::i;:::-;:31;;;31915:51;:87;;;;31970:32;31987:5;31994:7;31970:16;:32::i;:::-;31915:87;31907:96;;;31663:348;;;;:::o;34772:625::-;34931:4;34904:31;;:23;34919:7;34904:14;:23::i;:::-;:31;;;34896:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;35010:1;34996:16;;:2;:16;;;;34988:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;35066:39;35087:4;35093:2;35097:7;35066:20;:39::i;:::-;35170:29;35187:1;35191:7;35170:8;:29::i;:::-;35231:1;35212:9;:15;35222:4;35212:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;35260:1;35243:9;:13;35253:2;35243:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35291:2;35272:7;:16;35280:7;35272:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35330:7;35326:2;35311:27;;35320:4;35311:27;;;;;;;;;;;;35351:38;35371:4;35377:2;35381:7;35351:19;:38::i;:::-;34772:625;;;:::o;6851:191::-;6925:16;6944:6;;;;;;;;;;;6925:25;;6970:8;6961:6;;:17;;;;;;;;;;;;;;;;;;7025:8;6994:40;;7015:8;6994:40;;;;;;;;;;;;6914:128;6851:191;:::o;41980:204::-;42060:9;42055:124;42079:11;42075:1;:15;42055:124;;;42106:18;:6;:16;:18::i;:::-;42133:38;42143:9;42154:16;:6;:14;:16::i;:::-;42133:9;:38::i;:::-;42092:3;;;;;:::i;:::-;;;;42055:124;;;;41980:204;;:::o;35831:315::-;35986:8;35977:17;;:5;:17;;;;35969:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;36073:8;36035:18;:25;36054:5;36035:25;;;;;;;;;;;;;;;:35;36061:8;36035:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36119:8;36097:41;;36112:5;36097:41;;;36129:8;36097:41;;;;;;:::i;:::-;;;;;;;;35831:315;;;:::o;30741:::-;30898:28;30908:4;30914:2;30918:7;30898:9;:28::i;:::-;30945:48;30968:4;30974:2;30978:7;30987:5;30945:22;:48::i;:::-;30937:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;30741:315;;;;:::o;42190:104::-;42250:13;42279:9;42272:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42190:104;:::o;1867:723::-;1923:13;2153:1;2144:5;:10;2140:53;;;2171:10;;;;;;;;;;;;;;;;;;;;;2140:53;2203:12;2218:5;2203:20;;2234:14;2259:78;2274:1;2266:4;:9;2259:78;;2292:8;;;;;:::i;:::-;;;;2323:2;2315:10;;;;;:::i;:::-;;;2259:78;;;2347:19;2379:6;2369:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2347:39;;2397:154;2413:1;2404:5;:10;2397:154;;2441:1;2431:11;;;;;:::i;:::-;;;2508:2;2500:5;:10;;;;:::i;:::-;2487:2;:24;;;;:::i;:::-;2474:39;;2457:6;2464;2457:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2537:2;2528:11;;;;;:::i;:::-;;;2397:154;;;2575:6;2561:21;;;;;1867:723;;;;:::o;38082:126::-;;;;:::o;38593:125::-;;;;:::o;1031:127::-;1138:1;1120:7;:14;;;:19;;;;;;;;;;;1031:127;:::o;32353:110::-;32429:26;32439:2;32443:7;32429:26;;;;;;;;;;;;:9;:26::i;:::-;32353:110;;:::o;36711:799::-;36866:4;36887:15;:2;:13;;;:15::i;:::-;36883:620;;;36939:2;36923:36;;;36960:12;:10;:12::i;:::-;36974:4;36980:7;36989:5;36923:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36919:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37182:1;37165:6;:13;:18;37161:272;;;37208:60;;;;;;;;;;:::i;:::-;;;;;;;;37161:272;37383:6;37377:13;37368:6;37364:2;37360:15;37353:38;36919:529;37056:41;;;37046:51;;;:6;:51;;;;37039:58;;;;;36883:620;37487:4;37480:11;;36711:799;;;;;;;:::o;32690:321::-;32820:18;32826:2;32830:7;32820:5;:18::i;:::-;32871:54;32902:1;32906:2;32910:7;32919:5;32871:22;:54::i;:::-;32849:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;32690:321;;;:::o;8282:326::-;8342:4;8599:1;8577:7;:19;;;:23;8570:30;;8282:326;;;:::o;33347:439::-;33441:1;33427:16;;:2;:16;;;;33419:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33500:16;33508:7;33500;:16::i;:::-;33499:17;33491:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33562:45;33591:1;33595:2;33599:7;33562:20;:45::i;:::-;33637:1;33620:9;:13;33630:2;33620:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33668:2;33649:7;:16;33657:7;33649:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33713:7;33709:2;33688:33;;33705:1;33688:33;;;;;;;;;;;;33734:44;33762:1;33766:2;33770:7;33734:19;:44::i;:::-;33347:439;;:::o;-1:-1:-1:-;;;;;;;:::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;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:474::-;7555:6;7563;7612:2;7600:9;7591:7;7587:23;7583:32;7580:119;;;7618:79;;:::i;:::-;7580:119;7738:1;7763:53;7808:7;7799:6;7788:9;7784:22;7763:53;:::i;:::-;7753:63;;7709:117;7865:2;7891:53;7936:7;7927:6;7916:9;7912:22;7891:53;:::i;:::-;7881:63;;7836:118;7487:474;;;;;:::o;7967:118::-;8054:24;8072:5;8054:24;:::i;:::-;8049:3;8042:37;7967:118;;:::o;8091:109::-;8172:21;8187:5;8172:21;:::i;:::-;8167:3;8160:34;8091:109;;:::o;8206:360::-;8292:3;8320:38;8352:5;8320:38;:::i;:::-;8374:70;8437:6;8432:3;8374:70;:::i;:::-;8367:77;;8453:52;8498:6;8493:3;8486:4;8479:5;8475:16;8453:52;:::i;:::-;8530:29;8552:6;8530:29;:::i;:::-;8525:3;8521:39;8514:46;;8296:270;8206:360;;;;:::o;8572:364::-;8660:3;8688:39;8721:5;8688:39;:::i;:::-;8743:71;8807:6;8802:3;8743:71;:::i;:::-;8736:78;;8823:52;8868:6;8863:3;8856:4;8849:5;8845:16;8823:52;:::i;:::-;8900:29;8922:6;8900:29;:::i;:::-;8895:3;8891:39;8884:46;;8664:272;8572:364;;;;:::o;8942:377::-;9048:3;9076:39;9109:5;9076:39;:::i;:::-;9131:89;9213:6;9208:3;9131:89;:::i;:::-;9124:96;;9229:52;9274:6;9269:3;9262:4;9255:5;9251:16;9229:52;:::i;:::-;9306:6;9301:3;9297:16;9290:23;;9052:267;8942:377;;;;:::o;9349:845::-;9452:3;9489:5;9483:12;9518:36;9544:9;9518:36;:::i;:::-;9570:89;9652:6;9647:3;9570:89;:::i;:::-;9563:96;;9690:1;9679:9;9675:17;9706:1;9701:137;;;;9852:1;9847:341;;;;9668:520;;9701:137;9785:4;9781:9;9770;9766:25;9761:3;9754:38;9821:6;9816:3;9812:16;9805:23;;9701:137;;9847:341;9914:38;9946:5;9914:38;:::i;:::-;9974:1;9988:154;10002:6;9999:1;9996:13;9988:154;;;10076:7;10070:14;10066:1;10061:3;10057:11;10050:35;10126:1;10117:7;10113:15;10102:26;;10024:4;10021:1;10017:12;10012:17;;9988:154;;;10171:6;10166:3;10162:16;10155:23;;9854:334;;9668:520;;9456:738;;9349:845;;;;:::o;10200:366::-;10342:3;10363:67;10427:2;10422:3;10363:67;:::i;:::-;10356:74;;10439:93;10528:3;10439:93;:::i;:::-;10557:2;10552:3;10548:12;10541:19;;10200:366;;;:::o;10572:::-;10714:3;10735:67;10799:2;10794:3;10735:67;:::i;:::-;10728:74;;10811:93;10900:3;10811:93;:::i;:::-;10929:2;10924:3;10920:12;10913:19;;10572:366;;;:::o;10944:::-;11086:3;11107:67;11171:2;11166:3;11107:67;:::i;:::-;11100:74;;11183:93;11272:3;11183:93;:::i;:::-;11301:2;11296:3;11292:12;11285:19;;10944:366;;;:::o;11316:::-;11458:3;11479:67;11543:2;11538:3;11479:67;:::i;:::-;11472:74;;11555:93;11644:3;11555:93;:::i;:::-;11673:2;11668:3;11664:12;11657:19;;11316:366;;;:::o;11688:::-;11830:3;11851:67;11915:2;11910:3;11851:67;:::i;:::-;11844:74;;11927:93;12016:3;11927:93;:::i;:::-;12045:2;12040:3;12036:12;12029:19;;11688:366;;;:::o;12060:::-;12202:3;12223:67;12287:2;12282:3;12223:67;:::i;:::-;12216:74;;12299:93;12388:3;12299:93;:::i;:::-;12417:2;12412:3;12408:12;12401:19;;12060:366;;;:::o;12432:::-;12574:3;12595:67;12659:2;12654:3;12595:67;:::i;:::-;12588:74;;12671:93;12760:3;12671:93;:::i;:::-;12789:2;12784:3;12780:12;12773:19;;12432:366;;;:::o;12804:::-;12946:3;12967:67;13031:2;13026:3;12967:67;:::i;:::-;12960:74;;13043:93;13132:3;13043:93;:::i;:::-;13161:2;13156:3;13152:12;13145:19;;12804:366;;;:::o;13176:::-;13318:3;13339:67;13403:2;13398:3;13339:67;:::i;:::-;13332:74;;13415:93;13504:3;13415:93;:::i;:::-;13533:2;13528:3;13524:12;13517:19;;13176:366;;;:::o;13548:::-;13690:3;13711:67;13775:2;13770:3;13711:67;:::i;:::-;13704:74;;13787:93;13876:3;13787:93;:::i;:::-;13905:2;13900:3;13896:12;13889:19;;13548:366;;;:::o;13920:::-;14062:3;14083:67;14147:2;14142:3;14083:67;:::i;:::-;14076:74;;14159:93;14248:3;14159:93;:::i;:::-;14277:2;14272:3;14268:12;14261:19;;13920:366;;;:::o;14292:::-;14434:3;14455:67;14519:2;14514:3;14455:67;:::i;:::-;14448:74;;14531:93;14620:3;14531:93;:::i;:::-;14649:2;14644:3;14640:12;14633:19;;14292:366;;;:::o;14664:::-;14806:3;14827:67;14891:2;14886:3;14827:67;:::i;:::-;14820:74;;14903:93;14992:3;14903:93;:::i;:::-;15021:2;15016:3;15012:12;15005:19;;14664:366;;;:::o;15036:::-;15178:3;15199:67;15263:2;15258:3;15199:67;:::i;:::-;15192:74;;15275:93;15364:3;15275:93;:::i;:::-;15393:2;15388:3;15384:12;15377:19;;15036:366;;;:::o;15408:::-;15550:3;15571:67;15635:2;15630:3;15571:67;:::i;:::-;15564:74;;15647:93;15736:3;15647:93;:::i;:::-;15765:2;15760:3;15756:12;15749:19;;15408:366;;;:::o;15780:::-;15922:3;15943:67;16007:2;16002:3;15943:67;:::i;:::-;15936:74;;16019:93;16108:3;16019:93;:::i;:::-;16137:2;16132:3;16128:12;16121:19;;15780:366;;;:::o;16152:::-;16294:3;16315:67;16379:2;16374:3;16315:67;:::i;:::-;16308:74;;16391:93;16480:3;16391:93;:::i;:::-;16509:2;16504:3;16500:12;16493:19;;16152:366;;;:::o;16524:398::-;16683:3;16704:83;16785:1;16780:3;16704:83;:::i;:::-;16697:90;;16796:93;16885:3;16796:93;:::i;:::-;16914:1;16909:3;16905:11;16898:18;;16524:398;;;:::o;16928:366::-;17070:3;17091:67;17155:2;17150:3;17091:67;:::i;:::-;17084:74;;17167:93;17256:3;17167:93;:::i;:::-;17285:2;17280:3;17276:12;17269:19;;16928:366;;;:::o;17300:::-;17442:3;17463:67;17527:2;17522:3;17463:67;:::i;:::-;17456:74;;17539:93;17628:3;17539:93;:::i;:::-;17657:2;17652:3;17648:12;17641:19;;17300:366;;;:::o;17672:::-;17814:3;17835:67;17899:2;17894:3;17835:67;:::i;:::-;17828:74;;17911:93;18000:3;17911:93;:::i;:::-;18029:2;18024:3;18020:12;18013:19;;17672:366;;;:::o;18044:118::-;18131:24;18149:5;18131:24;:::i;:::-;18126:3;18119:37;18044:118;;:::o;18168:589::-;18393:3;18415:95;18506:3;18497:6;18415:95;:::i;:::-;18408:102;;18527:95;18618:3;18609:6;18527:95;:::i;:::-;18520:102;;18639:92;18727:3;18718:6;18639:92;:::i;:::-;18632:99;;18748:3;18741:10;;18168:589;;;;;;:::o;18763:379::-;18947:3;18969:147;19112:3;18969:147;:::i;:::-;18962:154;;19133:3;19126:10;;18763:379;;;:::o;19148:222::-;19241:4;19279:2;19268:9;19264:18;19256:26;;19292:71;19360:1;19349:9;19345:17;19336:6;19292:71;:::i;:::-;19148:222;;;;:::o;19376:640::-;19571:4;19609:3;19598:9;19594:19;19586:27;;19623:71;19691:1;19680:9;19676:17;19667:6;19623:71;:::i;:::-;19704:72;19772:2;19761:9;19757:18;19748:6;19704:72;:::i;:::-;19786;19854:2;19843:9;19839:18;19830:6;19786:72;:::i;:::-;19905:9;19899:4;19895:20;19890:2;19879:9;19875:18;19868:48;19933:76;20004:4;19995:6;19933:76;:::i;:::-;19925:84;;19376:640;;;;;;;:::o;20022:210::-;20109:4;20147:2;20136:9;20132:18;20124:26;;20160:65;20222:1;20211:9;20207:17;20198:6;20160:65;:::i;:::-;20022:210;;;;:::o;20238:313::-;20351:4;20389:2;20378:9;20374:18;20366:26;;20438:9;20432:4;20428:20;20424:1;20413:9;20409:17;20402:47;20466:78;20539:4;20530:6;20466:78;:::i;:::-;20458:86;;20238:313;;;;:::o;20557:419::-;20723:4;20761:2;20750:9;20746:18;20738:26;;20810:9;20804:4;20800:20;20796:1;20785:9;20781:17;20774:47;20838:131;20964:4;20838:131;:::i;:::-;20830:139;;20557:419;;;:::o;20982:::-;21148:4;21186:2;21175:9;21171:18;21163:26;;21235:9;21229:4;21225:20;21221:1;21210:9;21206:17;21199:47;21263:131;21389:4;21263:131;:::i;:::-;21255:139;;20982:419;;;:::o;21407:::-;21573:4;21611:2;21600:9;21596:18;21588:26;;21660:9;21654:4;21650:20;21646:1;21635:9;21631:17;21624:47;21688:131;21814:4;21688:131;:::i;:::-;21680:139;;21407:419;;;:::o;21832:::-;21998:4;22036:2;22025:9;22021:18;22013:26;;22085:9;22079:4;22075:20;22071:1;22060:9;22056:17;22049:47;22113:131;22239:4;22113:131;:::i;:::-;22105:139;;21832:419;;;:::o;22257:::-;22423:4;22461:2;22450:9;22446:18;22438:26;;22510:9;22504:4;22500:20;22496:1;22485:9;22481:17;22474:47;22538:131;22664:4;22538:131;:::i;:::-;22530:139;;22257:419;;;:::o;22682:::-;22848:4;22886:2;22875:9;22871:18;22863:26;;22935:9;22929:4;22925:20;22921:1;22910:9;22906:17;22899:47;22963:131;23089:4;22963:131;:::i;:::-;22955:139;;22682:419;;;:::o;23107:::-;23273:4;23311:2;23300:9;23296:18;23288:26;;23360:9;23354:4;23350:20;23346:1;23335:9;23331:17;23324:47;23388:131;23514:4;23388:131;:::i;:::-;23380:139;;23107:419;;;:::o;23532:::-;23698:4;23736:2;23725:9;23721:18;23713:26;;23785:9;23779:4;23775:20;23771:1;23760:9;23756:17;23749:47;23813:131;23939:4;23813:131;:::i;:::-;23805:139;;23532:419;;;:::o;23957:::-;24123:4;24161:2;24150:9;24146:18;24138:26;;24210:9;24204:4;24200:20;24196:1;24185:9;24181:17;24174:47;24238:131;24364:4;24238:131;:::i;:::-;24230:139;;23957:419;;;:::o;24382:::-;24548:4;24586:2;24575:9;24571:18;24563:26;;24635:9;24629:4;24625:20;24621:1;24610:9;24606:17;24599:47;24663:131;24789:4;24663:131;:::i;:::-;24655:139;;24382:419;;;:::o;24807:::-;24973:4;25011:2;25000:9;24996:18;24988:26;;25060:9;25054:4;25050:20;25046:1;25035:9;25031:17;25024:47;25088:131;25214:4;25088:131;:::i;:::-;25080:139;;24807:419;;;:::o;25232:::-;25398:4;25436:2;25425:9;25421:18;25413:26;;25485:9;25479:4;25475:20;25471:1;25460:9;25456:17;25449:47;25513:131;25639:4;25513:131;:::i;:::-;25505:139;;25232:419;;;:::o;25657:::-;25823:4;25861:2;25850:9;25846:18;25838:26;;25910:9;25904:4;25900:20;25896:1;25885:9;25881:17;25874:47;25938:131;26064:4;25938:131;:::i;:::-;25930:139;;25657:419;;;:::o;26082:::-;26248:4;26286:2;26275:9;26271:18;26263:26;;26335:9;26329:4;26325:20;26321:1;26310:9;26306:17;26299:47;26363:131;26489:4;26363:131;:::i;:::-;26355:139;;26082:419;;;:::o;26507:::-;26673:4;26711:2;26700:9;26696:18;26688:26;;26760:9;26754:4;26750:20;26746:1;26735:9;26731:17;26724:47;26788:131;26914:4;26788:131;:::i;:::-;26780:139;;26507:419;;;:::o;26932:::-;27098:4;27136:2;27125:9;27121:18;27113:26;;27185:9;27179:4;27175:20;27171:1;27160:9;27156:17;27149:47;27213:131;27339:4;27213:131;:::i;:::-;27205:139;;26932:419;;;:::o;27357:::-;27523:4;27561:2;27550:9;27546:18;27538:26;;27610:9;27604:4;27600:20;27596:1;27585:9;27581:17;27574:47;27638:131;27764:4;27638:131;:::i;:::-;27630:139;;27357:419;;;:::o;27782:::-;27948:4;27986:2;27975:9;27971:18;27963:26;;28035:9;28029:4;28025:20;28021:1;28010:9;28006:17;27999:47;28063:131;28189:4;28063:131;:::i;:::-;28055:139;;27782:419;;;:::o;28207:::-;28373:4;28411:2;28400:9;28396:18;28388:26;;28460:9;28454:4;28450:20;28446:1;28435:9;28431:17;28424:47;28488:131;28614:4;28488:131;:::i;:::-;28480:139;;28207:419;;;:::o;28632:::-;28798:4;28836:2;28825:9;28821:18;28813:26;;28885:9;28879:4;28875:20;28871:1;28860:9;28856:17;28849:47;28913:131;29039:4;28913:131;:::i;:::-;28905:139;;28632:419;;;:::o;29057:222::-;29150:4;29188:2;29177:9;29173:18;29165:26;;29201:71;29269:1;29258:9;29254:17;29245:6;29201:71;:::i;:::-;29057:222;;;;:::o;29285:129::-;29319:6;29346:20;;:::i;:::-;29336:30;;29375:33;29403:4;29395:6;29375:33;:::i;:::-;29285:129;;;:::o;29420:75::-;29453:6;29486:2;29480:9;29470:19;;29420:75;:::o;29501:307::-;29562:4;29652:18;29644:6;29641:30;29638:56;;;29674:18;;:::i;:::-;29638:56;29712:29;29734:6;29712:29;:::i;:::-;29704:37;;29796:4;29790;29786:15;29778:23;;29501:307;;;:::o;29814:308::-;29876:4;29966:18;29958:6;29955:30;29952:56;;;29988:18;;:::i;:::-;29952:56;30026:29;30048:6;30026:29;:::i;:::-;30018:37;;30110:4;30104;30100:15;30092:23;;29814:308;;;:::o;30128:141::-;30177:4;30200:3;30192:11;;30223:3;30220:1;30213:14;30257:4;30254:1;30244:18;30236:26;;30128:141;;;:::o;30275:98::-;30326:6;30360:5;30354:12;30344:22;;30275:98;;;:::o;30379:99::-;30431:6;30465:5;30459:12;30449:22;;30379:99;;;:::o;30484:168::-;30567:11;30601:6;30596:3;30589:19;30641:4;30636:3;30632:14;30617:29;;30484:168;;;;:::o;30658:147::-;30759:11;30796:3;30781:18;;30658:147;;;;:::o;30811:169::-;30895:11;30929:6;30924:3;30917:19;30969:4;30964:3;30960:14;30945:29;;30811:169;;;;:::o;30986:148::-;31088:11;31125:3;31110:18;;30986:148;;;;:::o;31140:305::-;31180:3;31199:20;31217:1;31199:20;:::i;:::-;31194:25;;31233:20;31251:1;31233:20;:::i;:::-;31228:25;;31387:1;31319:66;31315:74;31312:1;31309:81;31306:107;;;31393:18;;:::i;:::-;31306:107;31437:1;31434;31430:9;31423:16;;31140:305;;;;:::o;31451:185::-;31491:1;31508:20;31526:1;31508:20;:::i;:::-;31503:25;;31542:20;31560:1;31542:20;:::i;:::-;31537:25;;31581:1;31571:35;;31586:18;;:::i;:::-;31571:35;31628:1;31625;31621:9;31616:14;;31451:185;;;;:::o;31642:348::-;31682:7;31705:20;31723:1;31705:20;:::i;:::-;31700:25;;31739:20;31757:1;31739:20;:::i;:::-;31734:25;;31927:1;31859:66;31855:74;31852:1;31849:81;31844:1;31837:9;31830:17;31826:105;31823:131;;;31934:18;;:::i;:::-;31823:131;31982:1;31979;31975:9;31964:20;;31642:348;;;;:::o;31996:191::-;32036:4;32056:20;32074:1;32056:20;:::i;:::-;32051:25;;32090:20;32108:1;32090:20;:::i;:::-;32085:25;;32129:1;32126;32123:8;32120:34;;;32134:18;;:::i;:::-;32120:34;32179:1;32176;32172:9;32164:17;;31996:191;;;;:::o;32193:96::-;32230:7;32259:24;32277:5;32259:24;:::i;:::-;32248:35;;32193:96;;;:::o;32295:90::-;32329:7;32372:5;32365:13;32358:21;32347:32;;32295:90;;;:::o;32391:149::-;32427:7;32467:66;32460:5;32456:78;32445:89;;32391:149;;;:::o;32546:126::-;32583:7;32623:42;32616:5;32612:54;32601:65;;32546:126;;;:::o;32678:77::-;32715:7;32744:5;32733:16;;32678:77;;;:::o;32761:154::-;32845:6;32840:3;32835;32822:30;32907:1;32898:6;32893:3;32889:16;32882:27;32761:154;;;:::o;32921:307::-;32989:1;32999:113;33013:6;33010:1;33007:13;32999:113;;;33098:1;33093:3;33089:11;33083:18;33079:1;33074:3;33070:11;33063:39;33035:2;33032:1;33028:10;33023:15;;32999:113;;;33130:6;33127:1;33124:13;33121:101;;;33210:1;33201:6;33196:3;33192:16;33185:27;33121:101;32970:258;32921:307;;;:::o;33234:320::-;33278:6;33315:1;33309:4;33305:12;33295:22;;33362:1;33356:4;33352:12;33383:18;33373:81;;33439:4;33431:6;33427:17;33417:27;;33373:81;33501:2;33493:6;33490:14;33470:18;33467:38;33464:84;;;33520:18;;:::i;:::-;33464:84;33285:269;33234:320;;;:::o;33560:281::-;33643:27;33665:4;33643:27;:::i;:::-;33635:6;33631:40;33773:6;33761:10;33758:22;33737:18;33725:10;33722:34;33719:62;33716:88;;;33784:18;;:::i;:::-;33716:88;33824:10;33820:2;33813:22;33603:238;33560:281;;:::o;33847:233::-;33886:3;33909:24;33927:5;33909:24;:::i;:::-;33900:33;;33955:66;33948:5;33945:77;33942:103;;;34025:18;;:::i;:::-;33942:103;34072:1;34065:5;34061:13;34054:20;;33847:233;;;:::o;34086:176::-;34118:1;34135:20;34153:1;34135:20;:::i;:::-;34130:25;;34169:20;34187:1;34169:20;:::i;:::-;34164:25;;34208:1;34198:35;;34213:18;;:::i;:::-;34198:35;34254:1;34251;34247:9;34242:14;;34086:176;;;;:::o;34268:180::-;34316:77;34313:1;34306:88;34413:4;34410:1;34403:15;34437:4;34434:1;34427:15;34454:180;34502:77;34499:1;34492:88;34599:4;34596:1;34589:15;34623:4;34620:1;34613:15;34640:180;34688:77;34685:1;34678:88;34785:4;34782:1;34775:15;34809:4;34806:1;34799:15;34826:180;34874:77;34871:1;34864:88;34971:4;34968:1;34961:15;34995:4;34992:1;34985:15;35012:180;35060:77;35057:1;35050:88;35157:4;35154:1;35147:15;35181:4;35178:1;35171:15;35198:117;35307:1;35304;35297:12;35321:117;35430:1;35427;35420:12;35444:117;35553:1;35550;35543:12;35567:117;35676:1;35673;35666:12;35690:102;35731:6;35782:2;35778:7;35773:2;35766:5;35762:14;35758:28;35748:38;;35690:102;;;:::o;35798:237::-;35938:34;35934:1;35926:6;35922:14;35915:58;36007:20;36002:2;35994:6;35990:15;35983:45;35798:237;:::o;36041:225::-;36181:34;36177:1;36169:6;36165:14;36158:58;36250:8;36245:2;36237:6;36233:15;36226:33;36041:225;:::o;36272:224::-;36412:34;36408:1;36400:6;36396:14;36389:58;36481:7;36476:2;36468:6;36464:15;36457:32;36272:224;:::o;36502:178::-;36642:30;36638:1;36630:6;36626:14;36619:54;36502:178;:::o;36686:170::-;36826:22;36822:1;36814:6;36810:14;36803:46;36686:170;:::o;36862:223::-;37002:34;36998:1;36990:6;36986:14;36979:58;37071:6;37066:2;37058:6;37054:15;37047:31;36862:223;:::o;37091:175::-;37231:27;37227:1;37219:6;37215:14;37208:51;37091:175;:::o;37272:231::-;37412:34;37408:1;37400:6;37396:14;37389:58;37481:14;37476:2;37468:6;37464:15;37457:39;37272:231;:::o;37509:243::-;37649:34;37645:1;37637:6;37633:14;37626:58;37718:26;37713:2;37705:6;37701:15;37694:51;37509:243;:::o;37758:229::-;37898:34;37894:1;37886:6;37882:14;37875:58;37967:12;37962:2;37954:6;37950:15;37943:37;37758:229;:::o;37993:228::-;38133:34;38129:1;38121:6;38117:14;38110:58;38202:11;38197:2;38189:6;38185:15;38178:36;37993:228;:::o;38227:182::-;38367:34;38363:1;38355:6;38351:14;38344:58;38227:182;:::o;38415:231::-;38555:34;38551:1;38543:6;38539:14;38532:58;38624:14;38619:2;38611:6;38607:15;38600:39;38415:231;:::o;38652:182::-;38792:34;38788:1;38780:6;38776:14;38769:58;38652:182;:::o;38840:173::-;38980:25;38976:1;38968:6;38964:14;38957:49;38840:173;:::o;39019:234::-;39159:34;39155:1;39147:6;39143:14;39136:58;39228:17;39223:2;39215:6;39211:15;39204:42;39019:234;:::o;39259:220::-;39399:34;39395:1;39387:6;39383:14;39376:58;39468:3;39463:2;39455:6;39451:15;39444:28;39259:220;:::o;39485:114::-;;:::o;39605:170::-;39745:22;39741:1;39733:6;39729:14;39722:46;39605:170;:::o;39781:236::-;39921:34;39917:1;39909:6;39905:14;39898:58;39990:19;39985:2;39977:6;39973:15;39966:44;39781:236;:::o;40023:169::-;40163:21;40159:1;40151:6;40147:14;40140:45;40023:169;:::o;40198:122::-;40271:24;40289:5;40271:24;:::i;:::-;40264:5;40261:35;40251:63;;40310:1;40307;40300:12;40251:63;40198:122;:::o;40326:116::-;40396:21;40411:5;40396:21;:::i;:::-;40389:5;40386:32;40376:60;;40432:1;40429;40422:12;40376:60;40326:116;:::o;40448:120::-;40520:23;40537:5;40520:23;:::i;:::-;40513:5;40510:34;40500:62;;40558:1;40555;40548:12;40500:62;40448:120;:::o;40574:122::-;40647:24;40665:5;40647:24;:::i;:::-;40640:5;40637:35;40627:63;;40686:1;40683;40676:12;40627:63;40574:122;:::o

Swarm Source

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