ETH Price: $3,358.60 (+0.31%)
Gas: 10 Gwei

Token

24ct Parrots (24CTPA)
 

Overview

Max Total Supply

119 24CTPA

Holders

54

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
davd.eth
Balance
1 24CTPA
0x5de1dda96cb3cd1d62a68d3741ffeb19ca38c361
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:
TwentyfourCaratParrots

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-04-16
*/

// 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/24ct Parrots.sol



pragma solidity >=0.7.0 <0.9.0;




contract TwentyfourCaratParrots 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.045 ether;
  uint256 public maxSupply = 10000;
  uint256 public maxMintAmountPerTx = 10;



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

  address[] public whitelistUsers;

  constructor() ERC721("24ct Parrots", "24CTPA") {
    setHiddenMetadataUri("ipfs://QmNhdYZ2hYza77ybQxKMPvapbQjj8MEgueQKnRTy7cahQL/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!");
    if(onlyWhitelistedParrots == true) {
        require(isWhitelisted(msg.sender), "user not whitelisted");

    }
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");

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

function isWhitelisted(address _user) public view returns (bool) {
    for(uint256 i = 0; i <whitelistUsers.length; i++) {
        if (whitelistUsers [i] == _user) {
            return true;
        }
    }
    return false;
}

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

  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 whitelistparrots(address [] calldata _users) public onlyOwner {
   whitelistUsers = _users;
  }

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

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

    function setOnlyWhitelised(bool _state) public onlyOwner {
    onlyWhitelistedParrots = _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":[{"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":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","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":"onlyWhitelistedParrots","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"setOnlyWhitelised","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistUsers","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistparrots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600890805190602001906200002b92919062000382565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600990805190602001906200007992919062000382565b50669fdf42f6e48000600b55612710600c55600a600d556001600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff0219169083151502179055506001600e60026101000a81548160ff021916908315150217905550348015620000ee57600080fd5b506040518060400160405280600c81526020017f3234637420506172726f747300000000000000000000000000000000000000008152506040518060400160405280600681526020017f323443545041000000000000000000000000000000000000000000000000000081525081600090805190602001906200017392919062000382565b5080600190805190602001906200018c92919062000382565b505050620001af620001a3620001df60201b60201c565b620001e760201b60201c565b620001d960405180608001604052806041815260200162004c9d60419139620002ad60201b60201c565b6200051a565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002bd620001df60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002e36200035860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200033c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003339062000459565b60405180910390fd5b80600a90805190602001906200035492919062000382565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b82805462000390906200048c565b90600052602060002090601f016020900481019282620003b4576000855562000400565b82601f10620003cf57805160ff191683800117855562000400565b8280016001018555821562000400579182015b82811115620003ff578251825591602001919060010190620003e2565b5b5090506200040f919062000413565b5090565b5b808211156200042e57600081600090555060010162000414565b5090565b6000620004416020836200047b565b91506200044e82620004f1565b602082019050919050565b60006020820190508181036000830152620004748162000432565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620004a557607f821691505b60208210811415620004bc57620004bb620004c2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b614773806200052a6000396000f3fe6080604052600436106102465760003560e01c806362b99ad411610139578063a0712d68116100b6578063c87b56dd1161007a578063c87b56dd14610859578063d5abeb0114610896578063e0a80853146108c1578063e985e9c5146108ea578063efbd73f414610927578063f2fde38b1461095057610246565b8063a0712d6814610797578063a22cb465146107b3578063a45ba8e7146107dc578063b071401b14610807578063b88d4fde1461083057610246565b80638c5dfe96116100fd5780638c5dfe96146106c25780638da5cb5b146106ed5780639250a8d71461071857806394354fd01461074157806395d89b411461076c57610246565b806362b99ad4146105dd5780636352211e1461060857806370a0823114610645578063715018a6146106825780637ec4a6591461069957610246565b806323b872dd116101c757806344a0d68a1161018b57806344a0d68a1461050a5780634fdd43cb14610533578063518302271461055c5780635503a0e8146105875780635c975abb146105b257610246565b806323b872dd146104275780633af32abf146104505780633ccfd60b1461048d57806342842e0e146104a4578063438b6300146104cd57610246565b806313faede61161020e57806313faede61461034257806316ba10e01461036d57806316c38b3c1461039657806318160ddd146103bf5780631895ff12146103ea57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f05780631002330c14610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613327565b610979565b60405161027f91906139dc565b60405180910390f35b34801561029457600080fd5b5061029d610a5b565b6040516102aa91906139f7565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d591906133ca565b610aed565b6040516102e79190613953565b60405180910390f35b3480156102fc57600080fd5b506103176004803603810190610312919061326d565b610b72565b005b34801561032557600080fd5b50610340600480360381019061033b91906132fa565b610c8a565b005b34801561034e57600080fd5b50610357610d23565b6040516103649190613cb9565b60405180910390f35b34801561037957600080fd5b50610394600480360381019061038f9190613381565b610d29565b005b3480156103a257600080fd5b506103bd60048036038101906103b891906132fa565b610dbf565b005b3480156103cb57600080fd5b506103d4610e58565b6040516103e19190613cb9565b60405180910390f35b3480156103f657600080fd5b50610411600480360381019061040c91906133ca565b610e69565b60405161041e9190613953565b60405180910390f35b34801561043357600080fd5b5061044e60048036038101906104499190613157565b610ea8565b005b34801561045c57600080fd5b50610477600480360381019061047291906130ea565b610f08565b60405161048491906139dc565b60405180910390f35b34801561049957600080fd5b506104a2610fb7565b005b3480156104b057600080fd5b506104cb60048036038101906104c69190613157565b6110b3565b005b3480156104d957600080fd5b506104f460048036038101906104ef91906130ea565b6110d3565b60405161050191906139ba565b60405180910390f35b34801561051657600080fd5b50610531600480360381019061052c91906133ca565b6111de565b005b34801561053f57600080fd5b5061055a60048036038101906105559190613381565b611264565b005b34801561056857600080fd5b506105716112fa565b60405161057e91906139dc565b60405180910390f35b34801561059357600080fd5b5061059c61130d565b6040516105a991906139f7565b60405180910390f35b3480156105be57600080fd5b506105c761139b565b6040516105d491906139dc565b60405180910390f35b3480156105e957600080fd5b506105f26113ae565b6040516105ff91906139f7565b60405180910390f35b34801561061457600080fd5b5061062f600480360381019061062a91906133ca565b61143c565b60405161063c9190613953565b60405180910390f35b34801561065157600080fd5b5061066c600480360381019061066791906130ea565b6114ee565b6040516106799190613cb9565b60405180910390f35b34801561068e57600080fd5b506106976115a6565b005b3480156106a557600080fd5b506106c060048036038101906106bb9190613381565b61162e565b005b3480156106ce57600080fd5b506106d76116c4565b6040516106e491906139dc565b60405180910390f35b3480156106f957600080fd5b506107026116d7565b60405161070f9190613953565b60405180910390f35b34801561072457600080fd5b5061073f600480360381019061073a91906132ad565b611701565b005b34801561074d57600080fd5b50610756611793565b6040516107639190613cb9565b60405180910390f35b34801561077857600080fd5b50610781611799565b60405161078e91906139f7565b60405180910390f35b6107b160048036038101906107ac91906133ca565b61182b565b005b3480156107bf57600080fd5b506107da60048036038101906107d5919061322d565b6119e9565b005b3480156107e857600080fd5b506107f16119ff565b6040516107fe91906139f7565b60405180910390f35b34801561081357600080fd5b5061082e600480360381019061082991906133ca565b611a8d565b005b34801561083c57600080fd5b50610857600480360381019061085291906131aa565b611b13565b005b34801561086557600080fd5b50610880600480360381019061087b91906133ca565b611b75565b60405161088d91906139f7565b60405180910390f35b3480156108a257600080fd5b506108ab611cce565b6040516108b89190613cb9565b60405180910390f35b3480156108cd57600080fd5b506108e860048036038101906108e391906132fa565b611cd4565b005b3480156108f657600080fd5b50610911600480360381019061090c9190613117565b611d6d565b60405161091e91906139dc565b60405180910390f35b34801561093357600080fd5b5061094e600480360381019061094991906133f7565b611e01565b005b34801561095c57600080fd5b50610977600480360381019061097291906130ea565b611f37565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a545750610a538261202f565b5b9050919050565b606060008054610a6a90613fc2565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9690613fc2565b8015610ae35780601f10610ab857610100808354040283529160200191610ae3565b820191906000526020600020905b815481529060010190602001808311610ac657829003601f168201915b5050505050905090565b6000610af882612099565b610b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2e90613b99565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b7d8261143c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be590613c19565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c0d612105565b73ffffffffffffffffffffffffffffffffffffffff161480610c3c5750610c3b81610c36612105565b611d6d565b5b610c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7290613b19565b60405180910390fd5b610c85838361210d565b505050565b610c92612105565b73ffffffffffffffffffffffffffffffffffffffff16610cb06116d7565b73ffffffffffffffffffffffffffffffffffffffff1614610d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfd90613bb9565b60405180910390fd5b80600e60026101000a81548160ff02191690831515021790555050565b600b5481565b610d31612105565b73ffffffffffffffffffffffffffffffffffffffff16610d4f6116d7565b73ffffffffffffffffffffffffffffffffffffffff1614610da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9c90613bb9565b60405180910390fd5b8060099080519060200190610dbb929190612e08565b5050565b610dc7612105565b73ffffffffffffffffffffffffffffffffffffffff16610de56116d7565b73ffffffffffffffffffffffffffffffffffffffff1614610e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3290613bb9565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6000610e6460076121c6565b905090565b600f8181548110610e7957600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610eb9610eb3612105565b826121d4565b610ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eef90613c59565b60405180910390fd5b610f038383836122b2565b505050565b600080600090505b600f80549050811015610fac578273ffffffffffffffffffffffffffffffffffffffff16600f8281548110610f4857610f4761412c565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610f99576001915050610fb2565b8080610fa490614025565b915050610f10565b50600090505b919050565b610fbf612105565b73ffffffffffffffffffffffffffffffffffffffff16610fdd6116d7565b73ffffffffffffffffffffffffffffffffffffffff1614611033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102a90613bb9565b60405180910390fd5b600061103d6116d7565b73ffffffffffffffffffffffffffffffffffffffff16476040516110609061393e565b60006040518083038185875af1925050503d806000811461109d576040519150601f19603f3d011682016040523d82523d6000602084013e6110a2565b606091505b50509050806110b057600080fd5b50565b6110ce83838360405180602001604052806000815250611b13565b505050565b606060006110e0836114ee565b905060008167ffffffffffffffff8111156110fe576110fd61415b565b5b60405190808252806020026020018201604052801561112c5781602001602082028036833780820191505090505b50905060006001905060005b83811080156111495750600c548211155b156111d25760006111598361143c565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111be57828483815181106111a3576111a261412c565b5b60200260200101818152505081806111ba90614025565b9250505b82806111c990614025565b93505050611138565b82945050505050919050565b6111e6612105565b73ffffffffffffffffffffffffffffffffffffffff166112046116d7565b73ffffffffffffffffffffffffffffffffffffffff161461125a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125190613bb9565b60405180910390fd5b80600b8190555050565b61126c612105565b73ffffffffffffffffffffffffffffffffffffffff1661128a6116d7565b73ffffffffffffffffffffffffffffffffffffffff16146112e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d790613bb9565b60405180910390fd5b80600a90805190602001906112f6929190612e08565b5050565b600e60019054906101000a900460ff1681565b6009805461131a90613fc2565b80601f016020809104026020016040519081016040528092919081815260200182805461134690613fc2565b80156113935780601f1061136857610100808354040283529160200191611393565b820191906000526020600020905b81548152906001019060200180831161137657829003601f168201915b505050505081565b600e60009054906101000a900460ff1681565b600880546113bb90613fc2565b80601f01602080910402602001604051908101604052809291908181526020018280546113e790613fc2565b80156114345780601f1061140957610100808354040283529160200191611434565b820191906000526020600020905b81548152906001019060200180831161141757829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114dc90613b59565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561155f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155690613b39565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115ae612105565b73ffffffffffffffffffffffffffffffffffffffff166115cc6116d7565b73ffffffffffffffffffffffffffffffffffffffff1614611622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161990613bb9565b60405180910390fd5b61162c6000612519565b565b611636612105565b73ffffffffffffffffffffffffffffffffffffffff166116546116d7565b73ffffffffffffffffffffffffffffffffffffffff16146116aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a190613bb9565b60405180910390fd5b80600890805190602001906116c0929190612e08565b5050565b600e60029054906101000a900460ff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611709612105565b73ffffffffffffffffffffffffffffffffffffffff166117276116d7565b73ffffffffffffffffffffffffffffffffffffffff161461177d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177490613bb9565b60405180910390fd5b8181600f919061178e929190612e8e565b505050565b600d5481565b6060600180546117a890613fc2565b80601f01602080910402602001604051908101604052809291908181526020018280546117d490613fc2565b80156118215780601f106117f657610100808354040283529160200191611821565b820191906000526020600020905b81548152906001019060200180831161180457829003601f168201915b5050505050905090565b8060008111801561183e5750600d548111155b61187d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187490613a99565b60405180910390fd5b600c548161188b60076121c6565b6118959190613df7565b11156118d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cd90613c39565b60405180910390fd5b600e60009054906101000a900460ff1615611926576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191d90613bd9565b60405180910390fd5b60011515600e60029054906101000a900460ff161515141561198b5761194b33610f08565b61198a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198190613c79565b60405180910390fd5b5b81600b546119999190613e7e565b3410156119db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d290613c99565b60405180910390fd5b6119e533836125df565b5050565b6119fb6119f4612105565b838361261f565b5050565b600a8054611a0c90613fc2565b80601f0160208091040260200160405190810160405280929190818152602001828054611a3890613fc2565b8015611a855780601f10611a5a57610100808354040283529160200191611a85565b820191906000526020600020905b815481529060010190602001808311611a6857829003601f168201915b505050505081565b611a95612105565b73ffffffffffffffffffffffffffffffffffffffff16611ab36116d7565b73ffffffffffffffffffffffffffffffffffffffff1614611b09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0090613bb9565b60405180910390fd5b80600d8190555050565b611b24611b1e612105565b836121d4565b611b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5a90613c59565b60405180910390fd5b611b6f8484848461278c565b50505050565b6060611b8082612099565b611bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb690613bf9565b60405180910390fd5b60001515600e60019054906101000a900460ff1615151415611c6d57600a8054611be890613fc2565b80601f0160208091040260200160405190810160405280929190818152602001828054611c1490613fc2565b8015611c615780601f10611c3657610100808354040283529160200191611c61565b820191906000526020600020905b815481529060010190602001808311611c4457829003601f168201915b50505050509050611cc9565b6000611c776127e8565b90506000815111611c975760405180602001604052806000815250611cc5565b80611ca18461287a565b6009604051602001611cb59392919061390d565b6040516020818303038152906040525b9150505b919050565b600c5481565b611cdc612105565b73ffffffffffffffffffffffffffffffffffffffff16611cfa6116d7565b73ffffffffffffffffffffffffffffffffffffffff1614611d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4790613bb9565b60405180910390fd5b80600e60016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611e145750600d548111155b611e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4a90613a99565b60405180910390fd5b600c5481611e6160076121c6565b611e6b9190613df7565b1115611eac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea390613c39565b60405180910390fd5b611eb4612105565b73ffffffffffffffffffffffffffffffffffffffff16611ed26116d7565b73ffffffffffffffffffffffffffffffffffffffff1614611f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1f90613bb9565b60405180910390fd5b611f3282846125df565b505050565b611f3f612105565b73ffffffffffffffffffffffffffffffffffffffff16611f5d6116d7565b73ffffffffffffffffffffffffffffffffffffffff1614611fb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611faa90613bb9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201a90613a39565b60405180910390fd5b61202c81612519565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166121808361143c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006121df82612099565b61221e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221590613af9565b60405180910390fd5b60006122298361143c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061229857508373ffffffffffffffffffffffffffffffffffffffff1661228084610aed565b73ffffffffffffffffffffffffffffffffffffffff16145b806122a957506122a88185611d6d565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122d28261143c565b73ffffffffffffffffffffffffffffffffffffffff1614612328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231f90613a59565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238f90613ab9565b60405180910390fd5b6123a38383836129db565b6123ae60008261210d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123fe9190613ed8565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124559190613df7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125148383836129e0565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b8181101561261a576125f460076129e5565b6126078361260260076121c6565b6129fb565b808061261290614025565b9150506125e2565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561268e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268590613ad9565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161277f91906139dc565b60405180910390a3505050565b6127978484846122b2565b6127a384848484612a19565b6127e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d990613a19565b60405180910390fd5b50505050565b6060600880546127f790613fc2565b80601f016020809104026020016040519081016040528092919081815260200182805461282390613fc2565b80156128705780601f1061284557610100808354040283529160200191612870565b820191906000526020600020905b81548152906001019060200180831161285357829003601f168201915b5050505050905090565b606060008214156128c2576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129d6565b600082905060005b600082146128f45780806128dd90614025565b915050600a826128ed9190613e4d565b91506128ca565b60008167ffffffffffffffff8111156129105761290f61415b565b5b6040519080825280601f01601f1916602001820160405280156129425781602001600182028036833780820191505090505b5090505b600085146129cf5760018261295b9190613ed8565b9150600a8561296a919061406e565b60306129769190613df7565b60f81b81838151811061298c5761298b61412c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129c89190613e4d565b9450612946565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b612a15828260405180602001604052806000815250612bb0565b5050565b6000612a3a8473ffffffffffffffffffffffffffffffffffffffff16612c0b565b15612ba3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a63612105565b8786866040518563ffffffff1660e01b8152600401612a85949392919061396e565b602060405180830381600087803b158015612a9f57600080fd5b505af1925050508015612ad057506040513d601f19601f82011682018060405250810190612acd9190613354565b60015b612b53573d8060008114612b00576040519150601f19603f3d011682016040523d82523d6000602084013e612b05565b606091505b50600081511415612b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4290613a19565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ba8565b600190505b949350505050565b612bba8383612c2e565b612bc76000848484612a19565b612c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bfd90613a19565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9590613b79565b60405180910390fd5b612ca781612099565b15612ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cde90613a79565b60405180910390fd5b612cf3600083836129db565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d439190613df7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e04600083836129e0565b5050565b828054612e1490613fc2565b90600052602060002090601f016020900481019282612e365760008555612e7d565b82601f10612e4f57805160ff1916838001178555612e7d565b82800160010185558215612e7d579182015b82811115612e7c578251825591602001919060010190612e61565b5b509050612e8a9190612f2e565b5090565b828054828255906000526020600020908101928215612f1d579160200282015b82811115612f1c57823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190612eae565b5b509050612f2a9190612f2e565b5090565b5b80821115612f47576000816000905550600101612f2f565b5090565b6000612f5e612f5984613cf9565b613cd4565b905082815260208101848484011115612f7a57612f79614199565b5b612f85848285613f80565b509392505050565b6000612fa0612f9b84613d2a565b613cd4565b905082815260208101848484011115612fbc57612fbb614199565b5b612fc7848285613f80565b509392505050565b600081359050612fde816146e1565b92915050565b60008083601f840112612ffa57612ff961418f565b5b8235905067ffffffffffffffff8111156130175761301661418a565b5b60208301915083602082028301111561303357613032614194565b5b9250929050565b600081359050613049816146f8565b92915050565b60008135905061305e8161470f565b92915050565b6000815190506130738161470f565b92915050565b600082601f83011261308e5761308d61418f565b5b813561309e848260208601612f4b565b91505092915050565b600082601f8301126130bc576130bb61418f565b5b81356130cc848260208601612f8d565b91505092915050565b6000813590506130e481614726565b92915050565b600060208284031215613100576130ff6141a3565b5b600061310e84828501612fcf565b91505092915050565b6000806040838503121561312e5761312d6141a3565b5b600061313c85828601612fcf565b925050602061314d85828601612fcf565b9150509250929050565b6000806000606084860312156131705761316f6141a3565b5b600061317e86828701612fcf565b935050602061318f86828701612fcf565b92505060406131a0868287016130d5565b9150509250925092565b600080600080608085870312156131c4576131c36141a3565b5b60006131d287828801612fcf565b94505060206131e387828801612fcf565b93505060406131f4878288016130d5565b925050606085013567ffffffffffffffff8111156132155761321461419e565b5b61322187828801613079565b91505092959194509250565b60008060408385031215613244576132436141a3565b5b600061325285828601612fcf565b92505060206132638582860161303a565b9150509250929050565b60008060408385031215613284576132836141a3565b5b600061329285828601612fcf565b92505060206132a3858286016130d5565b9150509250929050565b600080602083850312156132c4576132c36141a3565b5b600083013567ffffffffffffffff8111156132e2576132e161419e565b5b6132ee85828601612fe4565b92509250509250929050565b6000602082840312156133105761330f6141a3565b5b600061331e8482850161303a565b91505092915050565b60006020828403121561333d5761333c6141a3565b5b600061334b8482850161304f565b91505092915050565b60006020828403121561336a576133696141a3565b5b600061337884828501613064565b91505092915050565b600060208284031215613397576133966141a3565b5b600082013567ffffffffffffffff8111156133b5576133b461419e565b5b6133c1848285016130a7565b91505092915050565b6000602082840312156133e0576133df6141a3565b5b60006133ee848285016130d5565b91505092915050565b6000806040838503121561340e5761340d6141a3565b5b600061341c858286016130d5565b925050602061342d85828601612fcf565b9150509250929050565b600061344383836138ef565b60208301905092915050565b61345881613f0c565b82525050565b600061346982613d80565b6134738185613dae565b935061347e83613d5b565b8060005b838110156134af5781516134968882613437565b97506134a183613da1565b925050600181019050613482565b5085935050505092915050565b6134c581613f1e565b82525050565b60006134d682613d8b565b6134e08185613dbf565b93506134f0818560208601613f8f565b6134f9816141a8565b840191505092915050565b600061350f82613d96565b6135198185613ddb565b9350613529818560208601613f8f565b613532816141a8565b840191505092915050565b600061354882613d96565b6135528185613dec565b9350613562818560208601613f8f565b80840191505092915050565b6000815461357b81613fc2565b6135858186613dec565b945060018216600081146135a057600181146135b1576135e4565b60ff198316865281860193506135e4565b6135ba85613d6b565b60005b838110156135dc578154818901526001820191506020810190506135bd565b838801955050505b50505092915050565b60006135fa603283613ddb565b9150613605826141b9565b604082019050919050565b600061361d602683613ddb565b915061362882614208565b604082019050919050565b6000613640602583613ddb565b915061364b82614257565b604082019050919050565b6000613663601c83613ddb565b915061366e826142a6565b602082019050919050565b6000613686601483613ddb565b9150613691826142cf565b602082019050919050565b60006136a9602483613ddb565b91506136b4826142f8565b604082019050919050565b60006136cc601983613ddb565b91506136d782614347565b602082019050919050565b60006136ef602c83613ddb565b91506136fa82614370565b604082019050919050565b6000613712603883613ddb565b915061371d826143bf565b604082019050919050565b6000613735602a83613ddb565b91506137408261440e565b604082019050919050565b6000613758602983613ddb565b91506137638261445d565b604082019050919050565b600061377b602083613ddb565b9150613786826144ac565b602082019050919050565b600061379e602c83613ddb565b91506137a9826144d5565b604082019050919050565b60006137c1602083613ddb565b91506137cc82614524565b602082019050919050565b60006137e4601783613ddb565b91506137ef8261454d565b602082019050919050565b6000613807602f83613ddb565b915061381282614576565b604082019050919050565b600061382a602183613ddb565b9150613835826145c5565b604082019050919050565b600061384d600083613dd0565b915061385882614614565b600082019050919050565b6000613870601483613ddb565b915061387b82614617565b602082019050919050565b6000613893603183613ddb565b915061389e82614640565b604082019050919050565b60006138b6601483613ddb565b91506138c18261468f565b602082019050919050565b60006138d9601383613ddb565b91506138e4826146b8565b602082019050919050565b6138f881613f76565b82525050565b61390781613f76565b82525050565b6000613919828661353d565b9150613925828561353d565b9150613931828461356e565b9150819050949350505050565b600061394982613840565b9150819050919050565b6000602082019050613968600083018461344f565b92915050565b6000608082019050613983600083018761344f565b613990602083018661344f565b61399d60408301856138fe565b81810360608301526139af81846134cb565b905095945050505050565b600060208201905081810360008301526139d4818461345e565b905092915050565b60006020820190506139f160008301846134bc565b92915050565b60006020820190508181036000830152613a118184613504565b905092915050565b60006020820190508181036000830152613a32816135ed565b9050919050565b60006020820190508181036000830152613a5281613610565b9050919050565b60006020820190508181036000830152613a7281613633565b9050919050565b60006020820190508181036000830152613a9281613656565b9050919050565b60006020820190508181036000830152613ab281613679565b9050919050565b60006020820190508181036000830152613ad28161369c565b9050919050565b60006020820190508181036000830152613af2816136bf565b9050919050565b60006020820190508181036000830152613b12816136e2565b9050919050565b60006020820190508181036000830152613b3281613705565b9050919050565b60006020820190508181036000830152613b5281613728565b9050919050565b60006020820190508181036000830152613b728161374b565b9050919050565b60006020820190508181036000830152613b928161376e565b9050919050565b60006020820190508181036000830152613bb281613791565b9050919050565b60006020820190508181036000830152613bd2816137b4565b9050919050565b60006020820190508181036000830152613bf2816137d7565b9050919050565b60006020820190508181036000830152613c12816137fa565b9050919050565b60006020820190508181036000830152613c328161381d565b9050919050565b60006020820190508181036000830152613c5281613863565b9050919050565b60006020820190508181036000830152613c7281613886565b9050919050565b60006020820190508181036000830152613c92816138a9565b9050919050565b60006020820190508181036000830152613cb2816138cc565b9050919050565b6000602082019050613cce60008301846138fe565b92915050565b6000613cde613cef565b9050613cea8282613ff4565b919050565b6000604051905090565b600067ffffffffffffffff821115613d1457613d1361415b565b5b613d1d826141a8565b9050602081019050919050565b600067ffffffffffffffff821115613d4557613d4461415b565b5b613d4e826141a8565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e0282613f76565b9150613e0d83613f76565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e4257613e4161409f565b5b828201905092915050565b6000613e5882613f76565b9150613e6383613f76565b925082613e7357613e726140ce565b5b828204905092915050565b6000613e8982613f76565b9150613e9483613f76565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ecd57613ecc61409f565b5b828202905092915050565b6000613ee382613f76565b9150613eee83613f76565b925082821015613f0157613f0061409f565b5b828203905092915050565b6000613f1782613f56565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613fad578082015181840152602081019050613f92565b83811115613fbc576000848401525b50505050565b60006002820490506001821680613fda57607f821691505b60208210811415613fee57613fed6140fd565b5b50919050565b613ffd826141a8565b810181811067ffffffffffffffff8211171561401c5761401b61415b565b5b80604052505050565b600061403082613f76565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140635761406261409f565b5b600182019050919050565b600061407982613f76565b915061408483613f76565b925082614094576140936140ce565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f75736572206e6f742077686974656c6973746564000000000000000000000000600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6146ea81613f0c565b81146146f557600080fd5b50565b61470181613f1e565b811461470c57600080fd5b50565b61471881613f2a565b811461472357600080fd5b50565b61472f81613f76565b811461473a57600080fd5b5056fea26469706673582212204b7701f0ff000f5da5a073ec1f6a4890e39cb9c6adb9cbdd7c76a528fa5600e064736f6c63430008070033697066733a2f2f516d4e6864595a3268597a613737796251784b4d5076617062516a6a384d45677565514b6e52547937636168514c2f48696464656e2e6a736f6e

Deployed Bytecode

0x6080604052600436106102465760003560e01c806362b99ad411610139578063a0712d68116100b6578063c87b56dd1161007a578063c87b56dd14610859578063d5abeb0114610896578063e0a80853146108c1578063e985e9c5146108ea578063efbd73f414610927578063f2fde38b1461095057610246565b8063a0712d6814610797578063a22cb465146107b3578063a45ba8e7146107dc578063b071401b14610807578063b88d4fde1461083057610246565b80638c5dfe96116100fd5780638c5dfe96146106c25780638da5cb5b146106ed5780639250a8d71461071857806394354fd01461074157806395d89b411461076c57610246565b806362b99ad4146105dd5780636352211e1461060857806370a0823114610645578063715018a6146106825780637ec4a6591461069957610246565b806323b872dd116101c757806344a0d68a1161018b57806344a0d68a1461050a5780634fdd43cb14610533578063518302271461055c5780635503a0e8146105875780635c975abb146105b257610246565b806323b872dd146104275780633af32abf146104505780633ccfd60b1461048d57806342842e0e146104a4578063438b6300146104cd57610246565b806313faede61161020e57806313faede61461034257806316ba10e01461036d57806316c38b3c1461039657806318160ddd146103bf5780631895ff12146103ea57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f05780631002330c14610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613327565b610979565b60405161027f91906139dc565b60405180910390f35b34801561029457600080fd5b5061029d610a5b565b6040516102aa91906139f7565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d591906133ca565b610aed565b6040516102e79190613953565b60405180910390f35b3480156102fc57600080fd5b506103176004803603810190610312919061326d565b610b72565b005b34801561032557600080fd5b50610340600480360381019061033b91906132fa565b610c8a565b005b34801561034e57600080fd5b50610357610d23565b6040516103649190613cb9565b60405180910390f35b34801561037957600080fd5b50610394600480360381019061038f9190613381565b610d29565b005b3480156103a257600080fd5b506103bd60048036038101906103b891906132fa565b610dbf565b005b3480156103cb57600080fd5b506103d4610e58565b6040516103e19190613cb9565b60405180910390f35b3480156103f657600080fd5b50610411600480360381019061040c91906133ca565b610e69565b60405161041e9190613953565b60405180910390f35b34801561043357600080fd5b5061044e60048036038101906104499190613157565b610ea8565b005b34801561045c57600080fd5b50610477600480360381019061047291906130ea565b610f08565b60405161048491906139dc565b60405180910390f35b34801561049957600080fd5b506104a2610fb7565b005b3480156104b057600080fd5b506104cb60048036038101906104c69190613157565b6110b3565b005b3480156104d957600080fd5b506104f460048036038101906104ef91906130ea565b6110d3565b60405161050191906139ba565b60405180910390f35b34801561051657600080fd5b50610531600480360381019061052c91906133ca565b6111de565b005b34801561053f57600080fd5b5061055a60048036038101906105559190613381565b611264565b005b34801561056857600080fd5b506105716112fa565b60405161057e91906139dc565b60405180910390f35b34801561059357600080fd5b5061059c61130d565b6040516105a991906139f7565b60405180910390f35b3480156105be57600080fd5b506105c761139b565b6040516105d491906139dc565b60405180910390f35b3480156105e957600080fd5b506105f26113ae565b6040516105ff91906139f7565b60405180910390f35b34801561061457600080fd5b5061062f600480360381019061062a91906133ca565b61143c565b60405161063c9190613953565b60405180910390f35b34801561065157600080fd5b5061066c600480360381019061066791906130ea565b6114ee565b6040516106799190613cb9565b60405180910390f35b34801561068e57600080fd5b506106976115a6565b005b3480156106a557600080fd5b506106c060048036038101906106bb9190613381565b61162e565b005b3480156106ce57600080fd5b506106d76116c4565b6040516106e491906139dc565b60405180910390f35b3480156106f957600080fd5b506107026116d7565b60405161070f9190613953565b60405180910390f35b34801561072457600080fd5b5061073f600480360381019061073a91906132ad565b611701565b005b34801561074d57600080fd5b50610756611793565b6040516107639190613cb9565b60405180910390f35b34801561077857600080fd5b50610781611799565b60405161078e91906139f7565b60405180910390f35b6107b160048036038101906107ac91906133ca565b61182b565b005b3480156107bf57600080fd5b506107da60048036038101906107d5919061322d565b6119e9565b005b3480156107e857600080fd5b506107f16119ff565b6040516107fe91906139f7565b60405180910390f35b34801561081357600080fd5b5061082e600480360381019061082991906133ca565b611a8d565b005b34801561083c57600080fd5b50610857600480360381019061085291906131aa565b611b13565b005b34801561086557600080fd5b50610880600480360381019061087b91906133ca565b611b75565b60405161088d91906139f7565b60405180910390f35b3480156108a257600080fd5b506108ab611cce565b6040516108b89190613cb9565b60405180910390f35b3480156108cd57600080fd5b506108e860048036038101906108e391906132fa565b611cd4565b005b3480156108f657600080fd5b50610911600480360381019061090c9190613117565b611d6d565b60405161091e91906139dc565b60405180910390f35b34801561093357600080fd5b5061094e600480360381019061094991906133f7565b611e01565b005b34801561095c57600080fd5b50610977600480360381019061097291906130ea565b611f37565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a545750610a538261202f565b5b9050919050565b606060008054610a6a90613fc2565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9690613fc2565b8015610ae35780601f10610ab857610100808354040283529160200191610ae3565b820191906000526020600020905b815481529060010190602001808311610ac657829003601f168201915b5050505050905090565b6000610af882612099565b610b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2e90613b99565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b7d8261143c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be590613c19565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c0d612105565b73ffffffffffffffffffffffffffffffffffffffff161480610c3c5750610c3b81610c36612105565b611d6d565b5b610c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7290613b19565b60405180910390fd5b610c85838361210d565b505050565b610c92612105565b73ffffffffffffffffffffffffffffffffffffffff16610cb06116d7565b73ffffffffffffffffffffffffffffffffffffffff1614610d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfd90613bb9565b60405180910390fd5b80600e60026101000a81548160ff02191690831515021790555050565b600b5481565b610d31612105565b73ffffffffffffffffffffffffffffffffffffffff16610d4f6116d7565b73ffffffffffffffffffffffffffffffffffffffff1614610da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9c90613bb9565b60405180910390fd5b8060099080519060200190610dbb929190612e08565b5050565b610dc7612105565b73ffffffffffffffffffffffffffffffffffffffff16610de56116d7565b73ffffffffffffffffffffffffffffffffffffffff1614610e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3290613bb9565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6000610e6460076121c6565b905090565b600f8181548110610e7957600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610eb9610eb3612105565b826121d4565b610ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eef90613c59565b60405180910390fd5b610f038383836122b2565b505050565b600080600090505b600f80549050811015610fac578273ffffffffffffffffffffffffffffffffffffffff16600f8281548110610f4857610f4761412c565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610f99576001915050610fb2565b8080610fa490614025565b915050610f10565b50600090505b919050565b610fbf612105565b73ffffffffffffffffffffffffffffffffffffffff16610fdd6116d7565b73ffffffffffffffffffffffffffffffffffffffff1614611033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102a90613bb9565b60405180910390fd5b600061103d6116d7565b73ffffffffffffffffffffffffffffffffffffffff16476040516110609061393e565b60006040518083038185875af1925050503d806000811461109d576040519150601f19603f3d011682016040523d82523d6000602084013e6110a2565b606091505b50509050806110b057600080fd5b50565b6110ce83838360405180602001604052806000815250611b13565b505050565b606060006110e0836114ee565b905060008167ffffffffffffffff8111156110fe576110fd61415b565b5b60405190808252806020026020018201604052801561112c5781602001602082028036833780820191505090505b50905060006001905060005b83811080156111495750600c548211155b156111d25760006111598361143c565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111be57828483815181106111a3576111a261412c565b5b60200260200101818152505081806111ba90614025565b9250505b82806111c990614025565b93505050611138565b82945050505050919050565b6111e6612105565b73ffffffffffffffffffffffffffffffffffffffff166112046116d7565b73ffffffffffffffffffffffffffffffffffffffff161461125a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125190613bb9565b60405180910390fd5b80600b8190555050565b61126c612105565b73ffffffffffffffffffffffffffffffffffffffff1661128a6116d7565b73ffffffffffffffffffffffffffffffffffffffff16146112e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d790613bb9565b60405180910390fd5b80600a90805190602001906112f6929190612e08565b5050565b600e60019054906101000a900460ff1681565b6009805461131a90613fc2565b80601f016020809104026020016040519081016040528092919081815260200182805461134690613fc2565b80156113935780601f1061136857610100808354040283529160200191611393565b820191906000526020600020905b81548152906001019060200180831161137657829003601f168201915b505050505081565b600e60009054906101000a900460ff1681565b600880546113bb90613fc2565b80601f01602080910402602001604051908101604052809291908181526020018280546113e790613fc2565b80156114345780601f1061140957610100808354040283529160200191611434565b820191906000526020600020905b81548152906001019060200180831161141757829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114dc90613b59565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561155f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155690613b39565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115ae612105565b73ffffffffffffffffffffffffffffffffffffffff166115cc6116d7565b73ffffffffffffffffffffffffffffffffffffffff1614611622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161990613bb9565b60405180910390fd5b61162c6000612519565b565b611636612105565b73ffffffffffffffffffffffffffffffffffffffff166116546116d7565b73ffffffffffffffffffffffffffffffffffffffff16146116aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a190613bb9565b60405180910390fd5b80600890805190602001906116c0929190612e08565b5050565b600e60029054906101000a900460ff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611709612105565b73ffffffffffffffffffffffffffffffffffffffff166117276116d7565b73ffffffffffffffffffffffffffffffffffffffff161461177d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177490613bb9565b60405180910390fd5b8181600f919061178e929190612e8e565b505050565b600d5481565b6060600180546117a890613fc2565b80601f01602080910402602001604051908101604052809291908181526020018280546117d490613fc2565b80156118215780601f106117f657610100808354040283529160200191611821565b820191906000526020600020905b81548152906001019060200180831161180457829003601f168201915b5050505050905090565b8060008111801561183e5750600d548111155b61187d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187490613a99565b60405180910390fd5b600c548161188b60076121c6565b6118959190613df7565b11156118d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cd90613c39565b60405180910390fd5b600e60009054906101000a900460ff1615611926576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191d90613bd9565b60405180910390fd5b60011515600e60029054906101000a900460ff161515141561198b5761194b33610f08565b61198a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198190613c79565b60405180910390fd5b5b81600b546119999190613e7e565b3410156119db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d290613c99565b60405180910390fd5b6119e533836125df565b5050565b6119fb6119f4612105565b838361261f565b5050565b600a8054611a0c90613fc2565b80601f0160208091040260200160405190810160405280929190818152602001828054611a3890613fc2565b8015611a855780601f10611a5a57610100808354040283529160200191611a85565b820191906000526020600020905b815481529060010190602001808311611a6857829003601f168201915b505050505081565b611a95612105565b73ffffffffffffffffffffffffffffffffffffffff16611ab36116d7565b73ffffffffffffffffffffffffffffffffffffffff1614611b09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0090613bb9565b60405180910390fd5b80600d8190555050565b611b24611b1e612105565b836121d4565b611b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5a90613c59565b60405180910390fd5b611b6f8484848461278c565b50505050565b6060611b8082612099565b611bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb690613bf9565b60405180910390fd5b60001515600e60019054906101000a900460ff1615151415611c6d57600a8054611be890613fc2565b80601f0160208091040260200160405190810160405280929190818152602001828054611c1490613fc2565b8015611c615780601f10611c3657610100808354040283529160200191611c61565b820191906000526020600020905b815481529060010190602001808311611c4457829003601f168201915b50505050509050611cc9565b6000611c776127e8565b90506000815111611c975760405180602001604052806000815250611cc5565b80611ca18461287a565b6009604051602001611cb59392919061390d565b6040516020818303038152906040525b9150505b919050565b600c5481565b611cdc612105565b73ffffffffffffffffffffffffffffffffffffffff16611cfa6116d7565b73ffffffffffffffffffffffffffffffffffffffff1614611d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4790613bb9565b60405180910390fd5b80600e60016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611e145750600d548111155b611e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4a90613a99565b60405180910390fd5b600c5481611e6160076121c6565b611e6b9190613df7565b1115611eac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea390613c39565b60405180910390fd5b611eb4612105565b73ffffffffffffffffffffffffffffffffffffffff16611ed26116d7565b73ffffffffffffffffffffffffffffffffffffffff1614611f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1f90613bb9565b60405180910390fd5b611f3282846125df565b505050565b611f3f612105565b73ffffffffffffffffffffffffffffffffffffffff16611f5d6116d7565b73ffffffffffffffffffffffffffffffffffffffff1614611fb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611faa90613bb9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201a90613a39565b60405180910390fd5b61202c81612519565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166121808361143c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006121df82612099565b61221e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221590613af9565b60405180910390fd5b60006122298361143c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061229857508373ffffffffffffffffffffffffffffffffffffffff1661228084610aed565b73ffffffffffffffffffffffffffffffffffffffff16145b806122a957506122a88185611d6d565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122d28261143c565b73ffffffffffffffffffffffffffffffffffffffff1614612328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231f90613a59565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238f90613ab9565b60405180910390fd5b6123a38383836129db565b6123ae60008261210d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123fe9190613ed8565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124559190613df7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125148383836129e0565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b8181101561261a576125f460076129e5565b6126078361260260076121c6565b6129fb565b808061261290614025565b9150506125e2565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561268e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268590613ad9565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161277f91906139dc565b60405180910390a3505050565b6127978484846122b2565b6127a384848484612a19565b6127e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d990613a19565b60405180910390fd5b50505050565b6060600880546127f790613fc2565b80601f016020809104026020016040519081016040528092919081815260200182805461282390613fc2565b80156128705780601f1061284557610100808354040283529160200191612870565b820191906000526020600020905b81548152906001019060200180831161285357829003601f168201915b5050505050905090565b606060008214156128c2576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129d6565b600082905060005b600082146128f45780806128dd90614025565b915050600a826128ed9190613e4d565b91506128ca565b60008167ffffffffffffffff8111156129105761290f61415b565b5b6040519080825280601f01601f1916602001820160405280156129425781602001600182028036833780820191505090505b5090505b600085146129cf5760018261295b9190613ed8565b9150600a8561296a919061406e565b60306129769190613df7565b60f81b81838151811061298c5761298b61412c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129c89190613e4d565b9450612946565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b612a15828260405180602001604052806000815250612bb0565b5050565b6000612a3a8473ffffffffffffffffffffffffffffffffffffffff16612c0b565b15612ba3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a63612105565b8786866040518563ffffffff1660e01b8152600401612a85949392919061396e565b602060405180830381600087803b158015612a9f57600080fd5b505af1925050508015612ad057506040513d601f19601f82011682018060405250810190612acd9190613354565b60015b612b53573d8060008114612b00576040519150601f19603f3d011682016040523d82523d6000602084013e612b05565b606091505b50600081511415612b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4290613a19565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ba8565b600190505b949350505050565b612bba8383612c2e565b612bc76000848484612a19565b612c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bfd90613a19565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9590613b79565b60405180910390fd5b612ca781612099565b15612ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cde90613a79565b60405180910390fd5b612cf3600083836129db565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d439190613df7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e04600083836129e0565b5050565b828054612e1490613fc2565b90600052602060002090601f016020900481019282612e365760008555612e7d565b82601f10612e4f57805160ff1916838001178555612e7d565b82800160010185558215612e7d579182015b82811115612e7c578251825591602001919060010190612e61565b5b509050612e8a9190612f2e565b5090565b828054828255906000526020600020908101928215612f1d579160200282015b82811115612f1c57823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190612eae565b5b509050612f2a9190612f2e565b5090565b5b80821115612f47576000816000905550600101612f2f565b5090565b6000612f5e612f5984613cf9565b613cd4565b905082815260208101848484011115612f7a57612f79614199565b5b612f85848285613f80565b509392505050565b6000612fa0612f9b84613d2a565b613cd4565b905082815260208101848484011115612fbc57612fbb614199565b5b612fc7848285613f80565b509392505050565b600081359050612fde816146e1565b92915050565b60008083601f840112612ffa57612ff961418f565b5b8235905067ffffffffffffffff8111156130175761301661418a565b5b60208301915083602082028301111561303357613032614194565b5b9250929050565b600081359050613049816146f8565b92915050565b60008135905061305e8161470f565b92915050565b6000815190506130738161470f565b92915050565b600082601f83011261308e5761308d61418f565b5b813561309e848260208601612f4b565b91505092915050565b600082601f8301126130bc576130bb61418f565b5b81356130cc848260208601612f8d565b91505092915050565b6000813590506130e481614726565b92915050565b600060208284031215613100576130ff6141a3565b5b600061310e84828501612fcf565b91505092915050565b6000806040838503121561312e5761312d6141a3565b5b600061313c85828601612fcf565b925050602061314d85828601612fcf565b9150509250929050565b6000806000606084860312156131705761316f6141a3565b5b600061317e86828701612fcf565b935050602061318f86828701612fcf565b92505060406131a0868287016130d5565b9150509250925092565b600080600080608085870312156131c4576131c36141a3565b5b60006131d287828801612fcf565b94505060206131e387828801612fcf565b93505060406131f4878288016130d5565b925050606085013567ffffffffffffffff8111156132155761321461419e565b5b61322187828801613079565b91505092959194509250565b60008060408385031215613244576132436141a3565b5b600061325285828601612fcf565b92505060206132638582860161303a565b9150509250929050565b60008060408385031215613284576132836141a3565b5b600061329285828601612fcf565b92505060206132a3858286016130d5565b9150509250929050565b600080602083850312156132c4576132c36141a3565b5b600083013567ffffffffffffffff8111156132e2576132e161419e565b5b6132ee85828601612fe4565b92509250509250929050565b6000602082840312156133105761330f6141a3565b5b600061331e8482850161303a565b91505092915050565b60006020828403121561333d5761333c6141a3565b5b600061334b8482850161304f565b91505092915050565b60006020828403121561336a576133696141a3565b5b600061337884828501613064565b91505092915050565b600060208284031215613397576133966141a3565b5b600082013567ffffffffffffffff8111156133b5576133b461419e565b5b6133c1848285016130a7565b91505092915050565b6000602082840312156133e0576133df6141a3565b5b60006133ee848285016130d5565b91505092915050565b6000806040838503121561340e5761340d6141a3565b5b600061341c858286016130d5565b925050602061342d85828601612fcf565b9150509250929050565b600061344383836138ef565b60208301905092915050565b61345881613f0c565b82525050565b600061346982613d80565b6134738185613dae565b935061347e83613d5b565b8060005b838110156134af5781516134968882613437565b97506134a183613da1565b925050600181019050613482565b5085935050505092915050565b6134c581613f1e565b82525050565b60006134d682613d8b565b6134e08185613dbf565b93506134f0818560208601613f8f565b6134f9816141a8565b840191505092915050565b600061350f82613d96565b6135198185613ddb565b9350613529818560208601613f8f565b613532816141a8565b840191505092915050565b600061354882613d96565b6135528185613dec565b9350613562818560208601613f8f565b80840191505092915050565b6000815461357b81613fc2565b6135858186613dec565b945060018216600081146135a057600181146135b1576135e4565b60ff198316865281860193506135e4565b6135ba85613d6b565b60005b838110156135dc578154818901526001820191506020810190506135bd565b838801955050505b50505092915050565b60006135fa603283613ddb565b9150613605826141b9565b604082019050919050565b600061361d602683613ddb565b915061362882614208565b604082019050919050565b6000613640602583613ddb565b915061364b82614257565b604082019050919050565b6000613663601c83613ddb565b915061366e826142a6565b602082019050919050565b6000613686601483613ddb565b9150613691826142cf565b602082019050919050565b60006136a9602483613ddb565b91506136b4826142f8565b604082019050919050565b60006136cc601983613ddb565b91506136d782614347565b602082019050919050565b60006136ef602c83613ddb565b91506136fa82614370565b604082019050919050565b6000613712603883613ddb565b915061371d826143bf565b604082019050919050565b6000613735602a83613ddb565b91506137408261440e565b604082019050919050565b6000613758602983613ddb565b91506137638261445d565b604082019050919050565b600061377b602083613ddb565b9150613786826144ac565b602082019050919050565b600061379e602c83613ddb565b91506137a9826144d5565b604082019050919050565b60006137c1602083613ddb565b91506137cc82614524565b602082019050919050565b60006137e4601783613ddb565b91506137ef8261454d565b602082019050919050565b6000613807602f83613ddb565b915061381282614576565b604082019050919050565b600061382a602183613ddb565b9150613835826145c5565b604082019050919050565b600061384d600083613dd0565b915061385882614614565b600082019050919050565b6000613870601483613ddb565b915061387b82614617565b602082019050919050565b6000613893603183613ddb565b915061389e82614640565b604082019050919050565b60006138b6601483613ddb565b91506138c18261468f565b602082019050919050565b60006138d9601383613ddb565b91506138e4826146b8565b602082019050919050565b6138f881613f76565b82525050565b61390781613f76565b82525050565b6000613919828661353d565b9150613925828561353d565b9150613931828461356e565b9150819050949350505050565b600061394982613840565b9150819050919050565b6000602082019050613968600083018461344f565b92915050565b6000608082019050613983600083018761344f565b613990602083018661344f565b61399d60408301856138fe565b81810360608301526139af81846134cb565b905095945050505050565b600060208201905081810360008301526139d4818461345e565b905092915050565b60006020820190506139f160008301846134bc565b92915050565b60006020820190508181036000830152613a118184613504565b905092915050565b60006020820190508181036000830152613a32816135ed565b9050919050565b60006020820190508181036000830152613a5281613610565b9050919050565b60006020820190508181036000830152613a7281613633565b9050919050565b60006020820190508181036000830152613a9281613656565b9050919050565b60006020820190508181036000830152613ab281613679565b9050919050565b60006020820190508181036000830152613ad28161369c565b9050919050565b60006020820190508181036000830152613af2816136bf565b9050919050565b60006020820190508181036000830152613b12816136e2565b9050919050565b60006020820190508181036000830152613b3281613705565b9050919050565b60006020820190508181036000830152613b5281613728565b9050919050565b60006020820190508181036000830152613b728161374b565b9050919050565b60006020820190508181036000830152613b928161376e565b9050919050565b60006020820190508181036000830152613bb281613791565b9050919050565b60006020820190508181036000830152613bd2816137b4565b9050919050565b60006020820190508181036000830152613bf2816137d7565b9050919050565b60006020820190508181036000830152613c12816137fa565b9050919050565b60006020820190508181036000830152613c328161381d565b9050919050565b60006020820190508181036000830152613c5281613863565b9050919050565b60006020820190508181036000830152613c7281613886565b9050919050565b60006020820190508181036000830152613c92816138a9565b9050919050565b60006020820190508181036000830152613cb2816138cc565b9050919050565b6000602082019050613cce60008301846138fe565b92915050565b6000613cde613cef565b9050613cea8282613ff4565b919050565b6000604051905090565b600067ffffffffffffffff821115613d1457613d1361415b565b5b613d1d826141a8565b9050602081019050919050565b600067ffffffffffffffff821115613d4557613d4461415b565b5b613d4e826141a8565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e0282613f76565b9150613e0d83613f76565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e4257613e4161409f565b5b828201905092915050565b6000613e5882613f76565b9150613e6383613f76565b925082613e7357613e726140ce565b5b828204905092915050565b6000613e8982613f76565b9150613e9483613f76565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ecd57613ecc61409f565b5b828202905092915050565b6000613ee382613f76565b9150613eee83613f76565b925082821015613f0157613f0061409f565b5b828203905092915050565b6000613f1782613f56565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613fad578082015181840152602081019050613f92565b83811115613fbc576000848401525b50505050565b60006002820490506001821680613fda57607f821691505b60208210811415613fee57613fed6140fd565b5b50919050565b613ffd826141a8565b810181811067ffffffffffffffff8211171561401c5761401b61415b565b5b80604052505050565b600061403082613f76565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140635761406261409f565b5b600182019050919050565b600061407982613f76565b915061408483613f76565b925082614094576140936140ce565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f75736572206e6f742077686974656c6973746564000000000000000000000000600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6146ea81613f0c565b81146146f557600080fd5b50565b61470181613f1e565b811461470c57600080fd5b50565b61471881613f2a565b811461472357600080fd5b50565b61472f81613f76565b811461473a57600080fd5b5056fea26469706673582212204b7701f0ff000f5da5a073ec1f6a4890e39cb9c6adb9cbdd7c76a528fa5600e064736f6c63430008070033

Deployed Bytecode Sourcemap

38807:4383:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25609:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26554:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28113:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27636:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42617:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39084:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42426:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42532:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39754:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39319:31;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28863:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40383:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42726:141;;;;;;;;;;;;;:::i;:::-;;29273:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40622:635;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41854:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42070:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39238:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39006:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39208:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38973:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26248:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25978:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6230:103;;;;;;;;;;;;;:::i;:::-;;42208:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39271:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5579:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42314:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39159:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26723:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39849:367;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28406:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39044:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41934:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29529:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41263:494;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39122:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41763:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28632:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40224:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6488:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25609:305;25711:4;25763:25;25748:40;;;:11;:40;;;;:105;;;;25820:33;25805:48;;;:11;:48;;;;25748:105;:158;;;;25870:36;25894:11;25870:23;:36::i;:::-;25748:158;25728:178;;25609:305;;;:::o;26554:100::-;26608:13;26641:5;26634:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26554:100;:::o;28113:221::-;28189:7;28217:16;28225:7;28217;:16::i;:::-;28209:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28302:15;:24;28318:7;28302:24;;;;;;;;;;;;;;;;;;;;;28295:31;;28113:221;;;:::o;27636:411::-;27717:13;27733:23;27748:7;27733:14;:23::i;:::-;27717:39;;27781:5;27775:11;;:2;:11;;;;27767:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27875:5;27859:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27884:37;27901:5;27908:12;:10;:12::i;:::-;27884:16;:37::i;:::-;27859:62;27837:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;28018:21;28027:2;28031:7;28018:8;:21::i;:::-;27706:341;27636:411;;:::o;42617:101::-;5810:12;:10;:12::i;:::-;5799:23;;:7;:5;:7::i;:::-;:23;;;5791:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42706:6:::1;42681:22;;:31;;;;;;;;;;;;;;;;;;42617:101:::0;:::o;39084:33::-;;;;:::o;42426:100::-;5810:12;:10;:12::i;:::-;5799:23;;:7;:5;:7::i;:::-;:23;;;5791:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42510:10:::1;42498:9;:22;;;;;;;;;;;;:::i;:::-;;42426:100:::0;:::o;42532:77::-;5810:12;:10;:12::i;:::-;5799:23;;:7;:5;:7::i;:::-;:23;;;5791:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42597:6:::1;42588;;:15;;;;;;;;;;;;;;;;;;42532:77:::0;:::o;39754:89::-;39798:7;39821:16;:6;:14;:16::i;:::-;39814:23;;39754:89;:::o;39319:31::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28863:339::-;29058:41;29077:12;:10;:12::i;:::-;29091:7;29058:18;:41::i;:::-;29050:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29166:28;29176:4;29182:2;29186:7;29166:9;:28::i;:::-;28863:339;;;:::o;40383:233::-;40442:4;40459:9;40471:1;40459:13;;40455:139;40477:14;:21;;;;40474:1;:24;40455:139;;;40542:5;40520:27;;:14;40536:1;40520:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:27;;;40516:71;;;40571:4;40564:11;;;;;40516:71;40500:3;;;;;:::i;:::-;;;;40455:139;;;;40607:5;40600:12;;40383:233;;;;:::o;42726:141::-;5810:12;:10;:12::i;:::-;5799:23;;:7;:5;:7::i;:::-;:23;;;5791:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42773:7:::1;42794;:5;:7::i;:::-;42786:21;;42815;42786:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42772:69;;;42856:2;42848:11;;;::::0;::::1;;42763:104;42726:141::o:0;29273:185::-;29411:39;29428:4;29434:2;29438:7;29411:39;;;;;;;;;;;;:16;:39::i;:::-;29273:185;;;:::o;40622:635::-;40697:16;40725:23;40751:17;40761:6;40751:9;:17::i;:::-;40725:43;;40775:30;40822:15;40808:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40775:63;;40845:22;40870:1;40845:26;;40878:23;40914:309;40939:15;40921;:33;:64;;;;;40976:9;;40958:14;:27;;40921:64;40914:309;;;40996:25;41024:23;41032:14;41024:7;:23::i;:::-;40996:51;;41083:6;41062:27;;:17;:27;;;41058:131;;;41135:14;41102:13;41116:15;41102:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;41162:17;;;;;:::i;:::-;;;;41058:131;41199:16;;;;;:::i;:::-;;;;40987:236;40914:309;;;41238:13;41231:20;;;;;;40622:635;;;:::o;41854:74::-;5810:12;:10;:12::i;:::-;5799:23;;:7;:5;:7::i;:::-;:23;;;5791:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41917:5:::1;41910:4;:12;;;;41854:74:::0;:::o;42070:132::-;5810:12;:10;:12::i;:::-;5799:23;;:7;:5;:7::i;:::-;:23;;;5791:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42178:18:::1;42158:17;:38;;;;;;;;;;;;:::i;:::-;;42070:132:::0;:::o;39238:28::-;;;;;;;;;;;;;:::o;39006:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39208:25::-;;;;;;;;;;;;;:::o;38973:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26248:239::-;26320:7;26340:13;26356:7;:16;26364:7;26356:16;;;;;;;;;;;;;;;;;;;;;26340:32;;26408:1;26391:19;;:5;:19;;;;26383:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26474:5;26467:12;;;26248:239;;;:::o;25978:208::-;26050:7;26095:1;26078:19;;:5;:19;;;;26070:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;26162:9;:16;26172:5;26162:16;;;;;;;;;;;;;;;;26155:23;;25978:208;;;:::o;6230:103::-;5810:12;:10;:12::i;:::-;5799:23;;:7;:5;:7::i;:::-;:23;;;5791:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6295:30:::1;6322:1;6295:18;:30::i;:::-;6230:103::o:0;42208:100::-;5810:12;:10;:12::i;:::-;5799:23;;:7;:5;:7::i;:::-;:23;;;5791:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42292:10:::1;42280:9;:22;;;;;;;;;;;;:::i;:::-;;42208:100:::0;:::o;39271:41::-;;;;;;;;;;;;;:::o;5579:87::-;5625:7;5652:6;;;;;;;;;;;5645:13;;5579:87;:::o;42314:106::-;5810:12;:10;:12::i;:::-;5799:23;;:7;:5;:7::i;:::-;:23;;;5791:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42408:6:::1;;42391:14;:23;;;;;;;:::i;:::-;;42314:106:::0;;:::o;39159:38::-;;;;:::o;26723:104::-;26779:13;26812:7;26805:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26723:104;:::o;39849:367::-;39914:11;39586:1;39572:11;:15;:52;;;;;39606:18;;39591:11;:33;;39572:52;39564:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;39698:9;;39683:11;39664:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;39656:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;39943:6:::1;;;;;;;;;;;39942:7;39934:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;40013:4;39987:30;;:22;;;;;;;;;;;:30;;;39984:114;;;40038:25;40052:10;40038:13;:25::i;:::-;40030:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;39984:114;40132:11;40125:4;;:18;;;;:::i;:::-;40112:9;:31;;40104:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;40176:34;40186:10;40198:11;40176:9;:34::i;:::-;39849:367:::0;;:::o;28406:155::-;28501:52;28520:12;:10;:12::i;:::-;28534:8;28544;28501:18;:52::i;:::-;28406:155;;:::o;39044:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41934:130::-;5810:12;:10;:12::i;:::-;5799:23;;:7;:5;:7::i;:::-;:23;;;5791:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42039:19:::1;42018:18;:40;;;;41934:130:::0;:::o;29529:328::-;29704:41;29723:12;:10;:12::i;:::-;29737:7;29704:18;:41::i;:::-;29696:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29810:39;29824:4;29830:2;29834:7;29843:5;29810:13;:39::i;:::-;29529:328;;;;:::o;41263:494::-;41362:13;41403:17;41411:8;41403:7;:17::i;:::-;41387:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;41510:5;41498:17;;:8;;;;;;;;;;;:17;;;41494:64;;;41533:17;41526:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41494:64;41566:28;41597:10;:8;:10::i;:::-;41566:41;;41652:1;41627:14;41621:28;:32;:130;;;;;;;;;;;;;;;;;41689:14;41705:19;:8;:17;:19::i;:::-;41726:9;41672:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41621:130;41614:137;;;41263:494;;;;:::o;39122:32::-;;;;:::o;41763:81::-;5810:12;:10;:12::i;:::-;5799:23;;:7;:5;:7::i;:::-;:23;;;5791:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41832:6:::1;41821:8;;:17;;;;;;;;;;;;;;;;;;41763:81:::0;:::o;28632:164::-;28729:4;28753:18;:25;28772:5;28753:25;;;;;;;;;;;;;;;:35;28779:8;28753:35;;;;;;;;;;;;;;;;;;;;;;;;;28746:42;;28632:164;;;;:::o;40224:155::-;40310:11;39586:1;39572:11;:15;:52;;;;;39606:18;;39591:11;:33;;39572:52;39564:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;39698:9;;39683:11;39664:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;39656:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;5810:12:::1;:10;:12::i;:::-;5799:23;;:7;:5;:7::i;:::-;:23;;;5791:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40340:33:::2;40350:9;40361:11;40340:9;:33::i;:::-;40224:155:::0;;;:::o;6488:201::-;5810:12;:10;:12::i;:::-;5799:23;;:7;:5;:7::i;:::-;:23;;;5791:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6597:1:::1;6577:22;;:8;:22;;;;6569:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6653:28;6672:8;6653:18;:28::i;:::-;6488:201:::0;:::o;18363:157::-;18448:4;18487:25;18472:40;;;:11;:40;;;;18465:47;;18363:157;;;:::o;31367:127::-;31432:4;31484:1;31456:30;;:7;:16;31464:7;31456:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31449:37;;31367:127;;;:::o;4303:98::-;4356:7;4383:10;4376:17;;4303:98;:::o;35513:174::-;35615:2;35588:15;:24;35604:7;35588:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35671:7;35667:2;35633:46;;35642:23;35657:7;35642:14;:23::i;:::-;35633:46;;;;;;;;;;;;35513:174;;:::o;907:114::-;972:7;999;:14;;;992:21;;907:114;;;:::o;31661:348::-;31754:4;31779:16;31787:7;31779;:16::i;:::-;31771:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31855:13;31871:23;31886:7;31871:14;:23::i;:::-;31855:39;;31924:5;31913:16;;:7;:16;;;:51;;;;31957:7;31933:31;;:20;31945:7;31933:11;:20::i;:::-;:31;;;31913:51;:87;;;;31968:32;31985:5;31992:7;31968:16;:32::i;:::-;31913:87;31905:96;;;31661:348;;;;:::o;34770:625::-;34929:4;34902:31;;:23;34917:7;34902:14;:23::i;:::-;:31;;;34894:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;35008:1;34994:16;;:2;:16;;;;34986:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;35064:39;35085:4;35091:2;35095:7;35064:20;:39::i;:::-;35168:29;35185:1;35189:7;35168:8;:29::i;:::-;35229:1;35210:9;:15;35220:4;35210:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;35258:1;35241:9;:13;35251:2;35241:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35289:2;35270:7;:16;35278:7;35270:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35328:7;35324:2;35309:27;;35318:4;35309:27;;;;;;;;;;;;35349:38;35369:4;35375:2;35379:7;35349:19;:38::i;:::-;34770:625;;;:::o;6849:191::-;6923:16;6942:6;;;;;;;;;;;6923:25;;6968:8;6959:6;;:17;;;;;;;;;;;;;;;;;;7023:8;6992:40;;7013:8;6992:40;;;;;;;;;;;;6912:128;6849:191;:::o;42873:204::-;42953:9;42948:124;42972:11;42968:1;:15;42948:124;;;42999:18;:6;:16;:18::i;:::-;43026:38;43036:9;43047:16;:6;:14;:16::i;:::-;43026:9;:38::i;:::-;42985:3;;;;;:::i;:::-;;;;42948:124;;;;42873:204;;:::o;35829:315::-;35984:8;35975:17;;:5;:17;;;;35967:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;36071:8;36033:18;:25;36052:5;36033:25;;;;;;;;;;;;;;;:35;36059:8;36033:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36117:8;36095:41;;36110:5;36095:41;;;36127:8;36095:41;;;;;;:::i;:::-;;;;;;;;35829:315;;;:::o;30739:::-;30896:28;30906:4;30912:2;30916:7;30896:9;:28::i;:::-;30943:48;30966:4;30972:2;30976:7;30985:5;30943:22;:48::i;:::-;30935:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;30739:315;;;;:::o;43083:104::-;43143:13;43172:9;43165:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43083:104;:::o;1865:723::-;1921:13;2151:1;2142:5;:10;2138:53;;;2169:10;;;;;;;;;;;;;;;;;;;;;2138:53;2201:12;2216:5;2201:20;;2232:14;2257:78;2272:1;2264:4;:9;2257:78;;2290:8;;;;;:::i;:::-;;;;2321:2;2313:10;;;;;:::i;:::-;;;2257:78;;;2345:19;2377:6;2367:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2345:39;;2395:154;2411:1;2402:5;:10;2395:154;;2439:1;2429:11;;;;;:::i;:::-;;;2506:2;2498:5;:10;;;;:::i;:::-;2485:2;:24;;;;:::i;:::-;2472:39;;2455:6;2462;2455:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2535:2;2526:11;;;;;:::i;:::-;;;2395:154;;;2573:6;2559:21;;;;;1865:723;;;;:::o;38080:126::-;;;;:::o;38591:125::-;;;;:::o;1029:127::-;1136:1;1118:7;:14;;;:19;;;;;;;;;;;1029:127;:::o;32351:110::-;32427:26;32437:2;32441:7;32427:26;;;;;;;;;;;;:9;:26::i;:::-;32351:110;;:::o;36709:799::-;36864:4;36885:15;:2;:13;;;:15::i;:::-;36881:620;;;36937:2;36921:36;;;36958:12;:10;:12::i;:::-;36972:4;36978:7;36987:5;36921:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36917:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37180:1;37163:6;:13;:18;37159:272;;;37206:60;;;;;;;;;;:::i;:::-;;;;;;;;37159:272;37381:6;37375:13;37366:6;37362:2;37358:15;37351:38;36917:529;37054:41;;;37044:51;;;:6;:51;;;;37037:58;;;;;36881:620;37485:4;37478:11;;36709:799;;;;;;;:::o;32688:321::-;32818:18;32824:2;32828:7;32818:5;:18::i;:::-;32869:54;32900:1;32904:2;32908:7;32917:5;32869:22;:54::i;:::-;32847:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;32688:321;;;:::o;8280:326::-;8340:4;8597:1;8575:7;:19;;;:23;8568:30;;8280:326;;;:::o;33345:439::-;33439:1;33425:16;;:2;:16;;;;33417:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33498:16;33506:7;33498;:16::i;:::-;33497:17;33489:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33560:45;33589:1;33593:2;33597:7;33560:20;:45::i;:::-;33635:1;33618:9;:13;33628:2;33618:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33666:2;33647:7;:16;33655:7;33647:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33711:7;33707:2;33686:33;;33703:1;33686:33;;;;;;;;;;;;33732:44;33760:1;33764:2;33768:7;33732:19;:44::i;:::-;33345:439;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:137::-;1761:5;1799:6;1786:20;1777:29;;1815:32;1841:5;1815:32;:::i;:::-;1716:137;;;;:::o;1859:141::-;1915:5;1946:6;1940:13;1931:22;;1962:32;1988:5;1962:32;:::i;:::-;1859:141;;;;:::o;2019:338::-;2074:5;2123:3;2116:4;2108:6;2104:17;2100:27;2090:122;;2131:79;;:::i;:::-;2090:122;2248:6;2235:20;2273:78;2347:3;2339:6;2332:4;2324:6;2320:17;2273:78;:::i;:::-;2264:87;;2080:277;2019:338;;;;:::o;2377:340::-;2433:5;2482:3;2475:4;2467:6;2463:17;2459:27;2449:122;;2490:79;;:::i;:::-;2449:122;2607:6;2594:20;2632:79;2707:3;2699:6;2692:4;2684:6;2680:17;2632:79;:::i;:::-;2623:88;;2439:278;2377:340;;;;:::o;2723:139::-;2769:5;2807:6;2794:20;2785:29;;2823:33;2850:5;2823:33;:::i;:::-;2723:139;;;;:::o;2868:329::-;2927:6;2976:2;2964:9;2955:7;2951:23;2947:32;2944:119;;;2982:79;;:::i;:::-;2944:119;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;2868:329;;;;:::o;3203:474::-;3271:6;3279;3328:2;3316:9;3307:7;3303:23;3299:32;3296:119;;;3334:79;;:::i;:::-;3296:119;3454:1;3479:53;3524:7;3515:6;3504:9;3500:22;3479:53;:::i;:::-;3469:63;;3425:117;3581:2;3607:53;3652:7;3643:6;3632:9;3628:22;3607:53;:::i;:::-;3597:63;;3552:118;3203:474;;;;;:::o;3683:619::-;3760:6;3768;3776;3825:2;3813:9;3804:7;3800:23;3796:32;3793:119;;;3831:79;;:::i;:::-;3793:119;3951:1;3976:53;4021:7;4012:6;4001:9;3997:22;3976:53;:::i;:::-;3966:63;;3922:117;4078:2;4104:53;4149:7;4140:6;4129:9;4125:22;4104:53;:::i;:::-;4094:63;;4049:118;4206:2;4232:53;4277:7;4268:6;4257:9;4253:22;4232:53;:::i;:::-;4222:63;;4177:118;3683:619;;;;;:::o;4308:943::-;4403:6;4411;4419;4427;4476:3;4464:9;4455:7;4451:23;4447:33;4444:120;;;4483:79;;:::i;:::-;4444:120;4603:1;4628:53;4673:7;4664:6;4653:9;4649:22;4628:53;:::i;:::-;4618:63;;4574:117;4730:2;4756:53;4801:7;4792:6;4781:9;4777:22;4756:53;:::i;:::-;4746:63;;4701:118;4858:2;4884:53;4929:7;4920:6;4909:9;4905:22;4884:53;:::i;:::-;4874:63;;4829:118;5014:2;5003:9;4999:18;4986:32;5045:18;5037:6;5034:30;5031:117;;;5067:79;;:::i;:::-;5031:117;5172:62;5226:7;5217:6;5206:9;5202:22;5172:62;:::i;:::-;5162:72;;4957:287;4308:943;;;;;;;:::o;5257:468::-;5322:6;5330;5379:2;5367:9;5358:7;5354:23;5350:32;5347:119;;;5385:79;;:::i;:::-;5347:119;5505:1;5530:53;5575:7;5566:6;5555:9;5551:22;5530:53;:::i;:::-;5520:63;;5476:117;5632:2;5658:50;5700:7;5691:6;5680:9;5676:22;5658:50;:::i;:::-;5648:60;;5603:115;5257:468;;;;;:::o;5731:474::-;5799:6;5807;5856:2;5844:9;5835:7;5831:23;5827:32;5824:119;;;5862:79;;:::i;:::-;5824:119;5982:1;6007:53;6052:7;6043:6;6032:9;6028:22;6007:53;:::i;:::-;5997:63;;5953:117;6109:2;6135:53;6180:7;6171:6;6160:9;6156:22;6135:53;:::i;:::-;6125:63;;6080:118;5731:474;;;;;:::o;6211:559::-;6297:6;6305;6354:2;6342:9;6333:7;6329:23;6325:32;6322:119;;;6360:79;;:::i;:::-;6322:119;6508:1;6497:9;6493:17;6480:31;6538:18;6530:6;6527:30;6524:117;;;6560:79;;:::i;:::-;6524:117;6673:80;6745:7;6736:6;6725:9;6721:22;6673:80;:::i;:::-;6655:98;;;;6451:312;6211:559;;;;;:::o;6776:323::-;6832:6;6881:2;6869:9;6860:7;6856:23;6852:32;6849:119;;;6887:79;;:::i;:::-;6849:119;7007:1;7032:50;7074:7;7065:6;7054:9;7050:22;7032:50;:::i;:::-;7022:60;;6978:114;6776:323;;;;:::o;7105:327::-;7163:6;7212:2;7200:9;7191:7;7187:23;7183:32;7180:119;;;7218:79;;:::i;:::-;7180:119;7338:1;7363:52;7407:7;7398:6;7387:9;7383:22;7363:52;:::i;:::-;7353:62;;7309:116;7105:327;;;;:::o;7438:349::-;7507:6;7556:2;7544:9;7535:7;7531:23;7527:32;7524:119;;;7562:79;;:::i;:::-;7524:119;7682:1;7707:63;7762:7;7753:6;7742:9;7738:22;7707:63;:::i;:::-;7697:73;;7653:127;7438:349;;;;:::o;7793:509::-;7862:6;7911:2;7899:9;7890:7;7886:23;7882:32;7879:119;;;7917:79;;:::i;:::-;7879:119;8065:1;8054:9;8050:17;8037:31;8095:18;8087:6;8084:30;8081:117;;;8117:79;;:::i;:::-;8081:117;8222:63;8277:7;8268:6;8257:9;8253:22;8222:63;:::i;:::-;8212:73;;8008:287;7793:509;;;;:::o;8308:329::-;8367:6;8416:2;8404:9;8395:7;8391:23;8387:32;8384:119;;;8422:79;;:::i;:::-;8384:119;8542:1;8567:53;8612:7;8603:6;8592:9;8588:22;8567:53;:::i;:::-;8557:63;;8513:117;8308:329;;;;:::o;8643:474::-;8711:6;8719;8768:2;8756:9;8747:7;8743:23;8739:32;8736:119;;;8774:79;;:::i;:::-;8736:119;8894:1;8919:53;8964:7;8955:6;8944:9;8940:22;8919:53;:::i;:::-;8909:63;;8865:117;9021:2;9047:53;9092:7;9083:6;9072:9;9068:22;9047:53;:::i;:::-;9037:63;;8992:118;8643:474;;;;;:::o;9123:179::-;9192:10;9213:46;9255:3;9247:6;9213:46;:::i;:::-;9291:4;9286:3;9282:14;9268:28;;9123:179;;;;:::o;9308:118::-;9395:24;9413:5;9395:24;:::i;:::-;9390:3;9383:37;9308:118;;:::o;9462:732::-;9581:3;9610:54;9658:5;9610:54;:::i;:::-;9680:86;9759:6;9754:3;9680:86;:::i;:::-;9673:93;;9790:56;9840:5;9790:56;:::i;:::-;9869:7;9900:1;9885:284;9910:6;9907:1;9904:13;9885:284;;;9986:6;9980:13;10013:63;10072:3;10057:13;10013:63;:::i;:::-;10006:70;;10099:60;10152:6;10099:60;:::i;:::-;10089:70;;9945:224;9932:1;9929;9925:9;9920:14;;9885:284;;;9889:14;10185:3;10178:10;;9586:608;;;9462:732;;;;:::o;10200:109::-;10281:21;10296:5;10281:21;:::i;:::-;10276:3;10269:34;10200:109;;:::o;10315:360::-;10401:3;10429:38;10461:5;10429:38;:::i;:::-;10483:70;10546:6;10541:3;10483:70;:::i;:::-;10476:77;;10562:52;10607:6;10602:3;10595:4;10588:5;10584:16;10562:52;:::i;:::-;10639:29;10661:6;10639:29;:::i;:::-;10634:3;10630:39;10623:46;;10405:270;10315:360;;;;:::o;10681:364::-;10769:3;10797:39;10830:5;10797:39;:::i;:::-;10852:71;10916:6;10911:3;10852:71;:::i;:::-;10845:78;;10932:52;10977:6;10972:3;10965:4;10958:5;10954:16;10932:52;:::i;:::-;11009:29;11031:6;11009:29;:::i;:::-;11004:3;11000:39;10993:46;;10773:272;10681:364;;;;:::o;11051:377::-;11157:3;11185:39;11218:5;11185:39;:::i;:::-;11240:89;11322:6;11317:3;11240:89;:::i;:::-;11233:96;;11338:52;11383:6;11378:3;11371:4;11364:5;11360:16;11338:52;:::i;:::-;11415:6;11410:3;11406:16;11399:23;;11161:267;11051:377;;;;:::o;11458:845::-;11561:3;11598:5;11592:12;11627:36;11653:9;11627:36;:::i;:::-;11679:89;11761:6;11756:3;11679:89;:::i;:::-;11672:96;;11799:1;11788:9;11784:17;11815:1;11810:137;;;;11961:1;11956:341;;;;11777:520;;11810:137;11894:4;11890:9;11879;11875:25;11870:3;11863:38;11930:6;11925:3;11921:16;11914:23;;11810:137;;11956:341;12023:38;12055:5;12023:38;:::i;:::-;12083:1;12097:154;12111:6;12108:1;12105:13;12097:154;;;12185:7;12179:14;12175:1;12170:3;12166:11;12159:35;12235:1;12226:7;12222:15;12211:26;;12133:4;12130:1;12126:12;12121:17;;12097:154;;;12280:6;12275:3;12271:16;12264:23;;11963:334;;11777:520;;11565:738;;11458:845;;;;:::o;12309:366::-;12451:3;12472:67;12536:2;12531:3;12472:67;:::i;:::-;12465:74;;12548:93;12637:3;12548:93;:::i;:::-;12666:2;12661:3;12657:12;12650:19;;12309:366;;;:::o;12681:::-;12823:3;12844:67;12908:2;12903:3;12844:67;:::i;:::-;12837:74;;12920:93;13009:3;12920:93;:::i;:::-;13038:2;13033:3;13029:12;13022:19;;12681:366;;;:::o;13053:::-;13195:3;13216:67;13280:2;13275:3;13216:67;:::i;:::-;13209:74;;13292:93;13381:3;13292:93;:::i;:::-;13410:2;13405:3;13401:12;13394:19;;13053:366;;;:::o;13425:::-;13567:3;13588:67;13652:2;13647:3;13588:67;:::i;:::-;13581:74;;13664:93;13753:3;13664:93;:::i;:::-;13782:2;13777:3;13773:12;13766:19;;13425:366;;;:::o;13797:::-;13939:3;13960:67;14024:2;14019:3;13960:67;:::i;:::-;13953:74;;14036:93;14125:3;14036:93;:::i;:::-;14154:2;14149:3;14145:12;14138:19;;13797:366;;;:::o;14169:::-;14311:3;14332:67;14396:2;14391:3;14332:67;:::i;:::-;14325:74;;14408:93;14497:3;14408:93;:::i;:::-;14526:2;14521:3;14517:12;14510:19;;14169:366;;;:::o;14541:::-;14683:3;14704:67;14768:2;14763:3;14704:67;:::i;:::-;14697:74;;14780:93;14869:3;14780:93;:::i;:::-;14898:2;14893:3;14889:12;14882:19;;14541:366;;;:::o;14913:::-;15055:3;15076:67;15140:2;15135:3;15076:67;:::i;:::-;15069:74;;15152:93;15241:3;15152:93;:::i;:::-;15270:2;15265:3;15261:12;15254:19;;14913:366;;;:::o;15285:::-;15427:3;15448:67;15512:2;15507:3;15448:67;:::i;:::-;15441:74;;15524:93;15613:3;15524:93;:::i;:::-;15642:2;15637:3;15633:12;15626:19;;15285:366;;;:::o;15657:::-;15799:3;15820:67;15884:2;15879:3;15820:67;:::i;:::-;15813:74;;15896:93;15985:3;15896:93;:::i;:::-;16014:2;16009:3;16005:12;15998:19;;15657:366;;;:::o;16029:::-;16171:3;16192:67;16256:2;16251:3;16192:67;:::i;:::-;16185:74;;16268:93;16357:3;16268:93;:::i;:::-;16386:2;16381:3;16377:12;16370:19;;16029:366;;;:::o;16401:::-;16543:3;16564:67;16628:2;16623:3;16564:67;:::i;:::-;16557:74;;16640:93;16729:3;16640:93;:::i;:::-;16758:2;16753:3;16749:12;16742:19;;16401:366;;;:::o;16773:::-;16915:3;16936:67;17000:2;16995:3;16936:67;:::i;:::-;16929:74;;17012:93;17101:3;17012:93;:::i;:::-;17130:2;17125:3;17121:12;17114:19;;16773:366;;;:::o;17145:::-;17287:3;17308:67;17372:2;17367:3;17308:67;:::i;:::-;17301:74;;17384:93;17473:3;17384:93;:::i;:::-;17502:2;17497:3;17493:12;17486:19;;17145:366;;;:::o;17517:::-;17659:3;17680:67;17744:2;17739:3;17680:67;:::i;:::-;17673:74;;17756:93;17845:3;17756:93;:::i;:::-;17874:2;17869:3;17865:12;17858:19;;17517:366;;;:::o;17889:::-;18031:3;18052:67;18116:2;18111:3;18052:67;:::i;:::-;18045:74;;18128:93;18217:3;18128:93;:::i;:::-;18246:2;18241:3;18237:12;18230:19;;17889:366;;;:::o;18261:::-;18403:3;18424:67;18488:2;18483:3;18424:67;:::i;:::-;18417:74;;18500:93;18589:3;18500:93;:::i;:::-;18618:2;18613:3;18609:12;18602:19;;18261:366;;;:::o;18633:398::-;18792:3;18813:83;18894:1;18889:3;18813:83;:::i;:::-;18806:90;;18905:93;18994:3;18905:93;:::i;:::-;19023:1;19018:3;19014:11;19007:18;;18633:398;;;:::o;19037:366::-;19179:3;19200:67;19264:2;19259:3;19200:67;:::i;:::-;19193:74;;19276:93;19365:3;19276:93;:::i;:::-;19394:2;19389:3;19385:12;19378:19;;19037:366;;;:::o;19409:::-;19551:3;19572:67;19636:2;19631:3;19572:67;:::i;:::-;19565:74;;19648:93;19737:3;19648:93;:::i;:::-;19766:2;19761:3;19757:12;19750:19;;19409:366;;;:::o;19781:::-;19923:3;19944:67;20008:2;20003:3;19944:67;:::i;:::-;19937:74;;20020:93;20109:3;20020:93;:::i;:::-;20138:2;20133:3;20129:12;20122:19;;19781:366;;;:::o;20153:::-;20295:3;20316:67;20380:2;20375:3;20316:67;:::i;:::-;20309:74;;20392:93;20481:3;20392:93;:::i;:::-;20510:2;20505:3;20501:12;20494:19;;20153:366;;;:::o;20525:108::-;20602:24;20620:5;20602:24;:::i;:::-;20597:3;20590:37;20525:108;;:::o;20639:118::-;20726:24;20744:5;20726:24;:::i;:::-;20721:3;20714:37;20639:118;;:::o;20763:589::-;20988:3;21010:95;21101:3;21092:6;21010:95;:::i;:::-;21003:102;;21122:95;21213:3;21204:6;21122:95;:::i;:::-;21115:102;;21234:92;21322:3;21313:6;21234:92;:::i;:::-;21227:99;;21343:3;21336:10;;20763:589;;;;;;:::o;21358:379::-;21542:3;21564:147;21707:3;21564:147;:::i;:::-;21557:154;;21728:3;21721:10;;21358:379;;;:::o;21743:222::-;21836:4;21874:2;21863:9;21859:18;21851:26;;21887:71;21955:1;21944:9;21940:17;21931:6;21887:71;:::i;:::-;21743:222;;;;:::o;21971:640::-;22166:4;22204:3;22193:9;22189:19;22181:27;;22218:71;22286:1;22275:9;22271:17;22262:6;22218:71;:::i;:::-;22299:72;22367:2;22356:9;22352:18;22343:6;22299:72;:::i;:::-;22381;22449:2;22438:9;22434:18;22425:6;22381:72;:::i;:::-;22500:9;22494:4;22490:20;22485:2;22474:9;22470:18;22463:48;22528:76;22599:4;22590:6;22528:76;:::i;:::-;22520:84;;21971:640;;;;;;;:::o;22617:373::-;22760:4;22798:2;22787:9;22783:18;22775:26;;22847:9;22841:4;22837:20;22833:1;22822:9;22818:17;22811:47;22875:108;22978:4;22969:6;22875:108;:::i;:::-;22867:116;;22617:373;;;;:::o;22996:210::-;23083:4;23121:2;23110:9;23106:18;23098:26;;23134:65;23196:1;23185:9;23181:17;23172:6;23134:65;:::i;:::-;22996:210;;;;:::o;23212:313::-;23325:4;23363:2;23352:9;23348:18;23340:26;;23412:9;23406:4;23402:20;23398:1;23387:9;23383:17;23376:47;23440:78;23513:4;23504:6;23440:78;:::i;:::-;23432:86;;23212:313;;;;:::o;23531:419::-;23697:4;23735:2;23724:9;23720:18;23712:26;;23784:9;23778:4;23774:20;23770:1;23759:9;23755:17;23748:47;23812:131;23938:4;23812:131;:::i;:::-;23804:139;;23531:419;;;:::o;23956:::-;24122:4;24160:2;24149:9;24145:18;24137:26;;24209:9;24203:4;24199:20;24195:1;24184:9;24180:17;24173:47;24237:131;24363:4;24237:131;:::i;:::-;24229:139;;23956:419;;;:::o;24381:::-;24547:4;24585:2;24574:9;24570:18;24562:26;;24634:9;24628:4;24624:20;24620:1;24609:9;24605:17;24598:47;24662:131;24788:4;24662:131;:::i;:::-;24654:139;;24381:419;;;:::o;24806:::-;24972:4;25010:2;24999:9;24995:18;24987:26;;25059:9;25053:4;25049:20;25045:1;25034:9;25030:17;25023:47;25087:131;25213:4;25087:131;:::i;:::-;25079:139;;24806:419;;;:::o;25231:::-;25397:4;25435:2;25424:9;25420:18;25412:26;;25484:9;25478:4;25474:20;25470:1;25459:9;25455:17;25448:47;25512:131;25638:4;25512:131;:::i;:::-;25504:139;;25231:419;;;:::o;25656:::-;25822:4;25860:2;25849:9;25845:18;25837:26;;25909:9;25903:4;25899:20;25895:1;25884:9;25880:17;25873:47;25937:131;26063:4;25937:131;:::i;:::-;25929:139;;25656:419;;;:::o;26081:::-;26247:4;26285:2;26274:9;26270:18;26262:26;;26334:9;26328:4;26324:20;26320:1;26309:9;26305:17;26298:47;26362:131;26488:4;26362:131;:::i;:::-;26354:139;;26081:419;;;:::o;26506:::-;26672:4;26710:2;26699:9;26695:18;26687:26;;26759:9;26753:4;26749:20;26745:1;26734:9;26730:17;26723:47;26787:131;26913:4;26787:131;:::i;:::-;26779:139;;26506:419;;;:::o;26931:::-;27097:4;27135:2;27124:9;27120:18;27112:26;;27184:9;27178:4;27174:20;27170:1;27159:9;27155:17;27148:47;27212:131;27338:4;27212:131;:::i;:::-;27204:139;;26931:419;;;:::o;27356:::-;27522:4;27560:2;27549:9;27545:18;27537:26;;27609:9;27603:4;27599:20;27595:1;27584:9;27580:17;27573:47;27637:131;27763:4;27637:131;:::i;:::-;27629:139;;27356:419;;;:::o;27781:::-;27947:4;27985:2;27974:9;27970:18;27962:26;;28034:9;28028:4;28024:20;28020:1;28009:9;28005:17;27998:47;28062:131;28188:4;28062:131;:::i;:::-;28054:139;;27781:419;;;:::o;28206:::-;28372:4;28410:2;28399:9;28395:18;28387:26;;28459:9;28453:4;28449:20;28445:1;28434:9;28430:17;28423:47;28487:131;28613:4;28487:131;:::i;:::-;28479:139;;28206:419;;;:::o;28631:::-;28797:4;28835:2;28824:9;28820:18;28812:26;;28884:9;28878:4;28874:20;28870:1;28859:9;28855:17;28848:47;28912:131;29038:4;28912:131;:::i;:::-;28904:139;;28631:419;;;:::o;29056:::-;29222:4;29260:2;29249:9;29245:18;29237:26;;29309:9;29303:4;29299:20;29295:1;29284:9;29280:17;29273:47;29337:131;29463:4;29337:131;:::i;:::-;29329:139;;29056:419;;;:::o;29481:::-;29647:4;29685:2;29674:9;29670:18;29662:26;;29734:9;29728:4;29724:20;29720:1;29709:9;29705:17;29698:47;29762:131;29888:4;29762:131;:::i;:::-;29754:139;;29481:419;;;:::o;29906:::-;30072:4;30110:2;30099:9;30095:18;30087:26;;30159:9;30153:4;30149:20;30145:1;30134:9;30130:17;30123:47;30187:131;30313:4;30187:131;:::i;:::-;30179:139;;29906:419;;;:::o;30331:::-;30497:4;30535:2;30524:9;30520:18;30512:26;;30584:9;30578:4;30574:20;30570:1;30559:9;30555:17;30548:47;30612:131;30738:4;30612:131;:::i;:::-;30604:139;;30331:419;;;:::o;30756:::-;30922:4;30960:2;30949:9;30945:18;30937:26;;31009:9;31003:4;30999:20;30995:1;30984:9;30980:17;30973:47;31037:131;31163:4;31037:131;:::i;:::-;31029:139;;30756:419;;;:::o;31181:::-;31347:4;31385:2;31374:9;31370:18;31362:26;;31434:9;31428:4;31424:20;31420:1;31409:9;31405:17;31398:47;31462:131;31588:4;31462:131;:::i;:::-;31454:139;;31181:419;;;:::o;31606:::-;31772:4;31810:2;31799:9;31795:18;31787:26;;31859:9;31853:4;31849:20;31845:1;31834:9;31830:17;31823:47;31887:131;32013:4;31887:131;:::i;:::-;31879:139;;31606:419;;;:::o;32031:::-;32197:4;32235:2;32224:9;32220:18;32212:26;;32284:9;32278:4;32274:20;32270:1;32259:9;32255:17;32248:47;32312:131;32438:4;32312:131;:::i;:::-;32304:139;;32031:419;;;:::o;32456:222::-;32549:4;32587:2;32576:9;32572:18;32564:26;;32600:71;32668:1;32657:9;32653:17;32644:6;32600:71;:::i;:::-;32456:222;;;;:::o;32684:129::-;32718:6;32745:20;;:::i;:::-;32735:30;;32774:33;32802:4;32794:6;32774:33;:::i;:::-;32684:129;;;:::o;32819:75::-;32852:6;32885:2;32879:9;32869:19;;32819:75;:::o;32900:307::-;32961:4;33051:18;33043:6;33040:30;33037:56;;;33073:18;;:::i;:::-;33037:56;33111:29;33133:6;33111:29;:::i;:::-;33103:37;;33195:4;33189;33185:15;33177:23;;32900:307;;;:::o;33213:308::-;33275:4;33365:18;33357:6;33354:30;33351:56;;;33387:18;;:::i;:::-;33351:56;33425:29;33447:6;33425:29;:::i;:::-;33417:37;;33509:4;33503;33499:15;33491:23;;33213:308;;;:::o;33527:132::-;33594:4;33617:3;33609:11;;33647:4;33642:3;33638:14;33630:22;;33527:132;;;:::o;33665:141::-;33714:4;33737:3;33729:11;;33760:3;33757:1;33750:14;33794:4;33791:1;33781:18;33773:26;;33665:141;;;:::o;33812:114::-;33879:6;33913:5;33907:12;33897:22;;33812:114;;;:::o;33932:98::-;33983:6;34017:5;34011:12;34001:22;;33932:98;;;:::o;34036:99::-;34088:6;34122:5;34116:12;34106:22;;34036:99;;;:::o;34141:113::-;34211:4;34243;34238:3;34234:14;34226:22;;34141:113;;;:::o;34260:184::-;34359:11;34393:6;34388:3;34381:19;34433:4;34428:3;34424:14;34409:29;;34260:184;;;;:::o;34450:168::-;34533:11;34567:6;34562:3;34555:19;34607:4;34602:3;34598:14;34583:29;;34450:168;;;;:::o;34624:147::-;34725:11;34762:3;34747:18;;34624:147;;;;:::o;34777:169::-;34861:11;34895:6;34890:3;34883:19;34935:4;34930:3;34926:14;34911:29;;34777:169;;;;:::o;34952:148::-;35054:11;35091:3;35076:18;;34952:148;;;;:::o;35106:305::-;35146:3;35165:20;35183:1;35165:20;:::i;:::-;35160:25;;35199:20;35217:1;35199:20;:::i;:::-;35194:25;;35353:1;35285:66;35281:74;35278:1;35275:81;35272:107;;;35359:18;;:::i;:::-;35272:107;35403:1;35400;35396:9;35389:16;;35106:305;;;;:::o;35417:185::-;35457:1;35474:20;35492:1;35474:20;:::i;:::-;35469:25;;35508:20;35526:1;35508:20;:::i;:::-;35503:25;;35547:1;35537:35;;35552:18;;:::i;:::-;35537:35;35594:1;35591;35587:9;35582:14;;35417:185;;;;:::o;35608:348::-;35648:7;35671:20;35689:1;35671:20;:::i;:::-;35666:25;;35705:20;35723:1;35705:20;:::i;:::-;35700:25;;35893:1;35825:66;35821:74;35818:1;35815:81;35810:1;35803:9;35796:17;35792:105;35789:131;;;35900:18;;:::i;:::-;35789:131;35948:1;35945;35941:9;35930:20;;35608:348;;;;:::o;35962:191::-;36002:4;36022:20;36040:1;36022:20;:::i;:::-;36017:25;;36056:20;36074:1;36056:20;:::i;:::-;36051:25;;36095:1;36092;36089:8;36086:34;;;36100:18;;:::i;:::-;36086:34;36145:1;36142;36138:9;36130:17;;35962:191;;;;:::o;36159:96::-;36196:7;36225:24;36243:5;36225:24;:::i;:::-;36214:35;;36159:96;;;:::o;36261:90::-;36295:7;36338:5;36331:13;36324:21;36313:32;;36261:90;;;:::o;36357:149::-;36393:7;36433:66;36426:5;36422:78;36411:89;;36357:149;;;:::o;36512:126::-;36549:7;36589:42;36582:5;36578:54;36567:65;;36512:126;;;:::o;36644:77::-;36681:7;36710:5;36699:16;;36644:77;;;:::o;36727:154::-;36811:6;36806:3;36801;36788:30;36873:1;36864:6;36859:3;36855:16;36848:27;36727:154;;;:::o;36887:307::-;36955:1;36965:113;36979:6;36976:1;36973:13;36965:113;;;37064:1;37059:3;37055:11;37049:18;37045:1;37040:3;37036:11;37029:39;37001:2;36998:1;36994:10;36989:15;;36965:113;;;37096:6;37093:1;37090:13;37087:101;;;37176:1;37167:6;37162:3;37158:16;37151:27;37087:101;36936:258;36887:307;;;:::o;37200:320::-;37244:6;37281:1;37275:4;37271:12;37261:22;;37328:1;37322:4;37318:12;37349:18;37339:81;;37405:4;37397:6;37393:17;37383:27;;37339:81;37467:2;37459:6;37456:14;37436:18;37433:38;37430:84;;;37486:18;;:::i;:::-;37430:84;37251:269;37200:320;;;:::o;37526:281::-;37609:27;37631:4;37609:27;:::i;:::-;37601:6;37597:40;37739:6;37727:10;37724:22;37703:18;37691:10;37688:34;37685:62;37682:88;;;37750:18;;:::i;:::-;37682:88;37790:10;37786:2;37779:22;37569:238;37526:281;;:::o;37813:233::-;37852:3;37875:24;37893:5;37875:24;:::i;:::-;37866:33;;37921:66;37914:5;37911:77;37908:103;;;37991:18;;:::i;:::-;37908:103;38038:1;38031:5;38027:13;38020:20;;37813:233;;;:::o;38052:176::-;38084:1;38101:20;38119:1;38101:20;:::i;:::-;38096:25;;38135:20;38153:1;38135:20;:::i;:::-;38130:25;;38174:1;38164:35;;38179:18;;:::i;:::-;38164:35;38220:1;38217;38213:9;38208:14;;38052:176;;;;:::o;38234:180::-;38282:77;38279:1;38272:88;38379:4;38376:1;38369:15;38403:4;38400:1;38393:15;38420:180;38468:77;38465:1;38458:88;38565:4;38562:1;38555:15;38589:4;38586:1;38579:15;38606:180;38654:77;38651:1;38644:88;38751:4;38748:1;38741:15;38775:4;38772:1;38765:15;38792:180;38840:77;38837:1;38830:88;38937:4;38934:1;38927:15;38961:4;38958:1;38951:15;38978:180;39026:77;39023:1;39016:88;39123:4;39120:1;39113:15;39147:4;39144:1;39137:15;39164:117;39273:1;39270;39263:12;39287:117;39396:1;39393;39386:12;39410:117;39519:1;39516;39509:12;39533:117;39642:1;39639;39632:12;39656:117;39765:1;39762;39755:12;39779:117;39888:1;39885;39878:12;39902:102;39943:6;39994:2;39990:7;39985:2;39978:5;39974:14;39970:28;39960:38;;39902:102;;;:::o;40010:237::-;40150:34;40146:1;40138:6;40134:14;40127:58;40219:20;40214:2;40206:6;40202:15;40195:45;40010:237;:::o;40253:225::-;40393:34;40389:1;40381:6;40377:14;40370:58;40462:8;40457:2;40449:6;40445:15;40438:33;40253:225;:::o;40484:224::-;40624:34;40620:1;40612:6;40608:14;40601:58;40693:7;40688:2;40680:6;40676:15;40669:32;40484:224;:::o;40714:178::-;40854:30;40850:1;40842:6;40838:14;40831:54;40714:178;:::o;40898:170::-;41038:22;41034:1;41026:6;41022:14;41015:46;40898:170;:::o;41074:223::-;41214:34;41210:1;41202:6;41198:14;41191:58;41283:6;41278:2;41270:6;41266:15;41259:31;41074:223;:::o;41303:175::-;41443:27;41439:1;41431:6;41427:14;41420:51;41303:175;:::o;41484:231::-;41624:34;41620:1;41612:6;41608:14;41601:58;41693:14;41688:2;41680:6;41676:15;41669:39;41484:231;:::o;41721:243::-;41861:34;41857:1;41849:6;41845:14;41838:58;41930:26;41925:2;41917:6;41913:15;41906:51;41721:243;:::o;41970:229::-;42110:34;42106:1;42098:6;42094:14;42087:58;42179:12;42174:2;42166:6;42162:15;42155:37;41970:229;:::o;42205:228::-;42345:34;42341:1;42333:6;42329:14;42322:58;42414:11;42409:2;42401:6;42397:15;42390:36;42205:228;:::o;42439:182::-;42579:34;42575:1;42567:6;42563:14;42556:58;42439:182;:::o;42627:231::-;42767:34;42763:1;42755:6;42751:14;42744:58;42836:14;42831:2;42823:6;42819:15;42812:39;42627:231;:::o;42864:182::-;43004:34;43000:1;42992:6;42988:14;42981:58;42864:182;:::o;43052:173::-;43192:25;43188:1;43180:6;43176:14;43169:49;43052:173;:::o;43231:234::-;43371:34;43367:1;43359:6;43355:14;43348:58;43440:17;43435:2;43427:6;43423:15;43416:42;43231:234;:::o;43471:220::-;43611:34;43607:1;43599:6;43595:14;43588:58;43680:3;43675:2;43667:6;43663:15;43656:28;43471:220;:::o;43697:114::-;;:::o;43817:170::-;43957:22;43953:1;43945:6;43941:14;43934:46;43817:170;:::o;43993:236::-;44133:34;44129:1;44121:6;44117:14;44110:58;44202:19;44197:2;44189:6;44185:15;44178:44;43993:236;:::o;44235:170::-;44375:22;44371:1;44363:6;44359:14;44352:46;44235:170;:::o;44411:169::-;44551:21;44547:1;44539:6;44535:14;44528:45;44411:169;:::o;44586:122::-;44659:24;44677:5;44659:24;:::i;:::-;44652:5;44649:35;44639:63;;44698:1;44695;44688:12;44639:63;44586:122;:::o;44714:116::-;44784:21;44799:5;44784:21;:::i;:::-;44777:5;44774:32;44764:60;;44820:1;44817;44810:12;44764:60;44714:116;:::o;44836:120::-;44908:23;44925:5;44908:23;:::i;:::-;44901:5;44898:34;44888:62;;44946:1;44943;44936:12;44888:62;44836:120;:::o;44962:122::-;45035:24;45053:5;45035:24;:::i;:::-;45028:5;45025:35;45015:63;;45074:1;45071;45064:12;45015:63;44962:122;:::o

Swarm Source

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