Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
0 rock
Holders
8
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 rockLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Omnirock
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-19 */ /** *Submitted for verification at Etherscan.io on 2022-04-16 */ /** *Submitted for verification at testnet.snowtrace.io on 2022-04-14 */ // File: contracts/interfaces/ILayerZeroUserApplicationConfig.sol pragma solidity >=0.5.0; interface ILayerZeroUserApplicationConfig { // @notice set the configuration of the LayerZero messaging library of the specified version // @param _version - messaging library version // @param _chainId - the chainId for the pending config change // @param _configType - type of configuration. every messaging library has its own convention. // @param _config - configuration in the bytes. can encode arbitrary content. function setConfig(uint16 _version, uint16 _chainId, uint _configType, bytes calldata _config) external; // @notice set the send() LayerZero messaging library version to _version // @param _version - new messaging library version function setSendVersion(uint16 _version) external; // @notice set the lzReceive() LayerZero messaging library version to _version // @param _version - new messaging library version function setReceiveVersion(uint16 _version) external; // @notice Only when the UA needs to resume the message flow in blocking mode and clear the stored payload // @param _srcChainId - the chainId of the source chain // @param _srcAddress - the contract address of the source contract at the source chain function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress) external; } // File: contracts/interfaces/ILayerZeroEndpoint.sol pragma solidity >=0.5.0; interface ILayerZeroEndpoint is ILayerZeroUserApplicationConfig { // @notice send a LayerZero message to the specified address at a LayerZero endpoint. // @param _dstChainId - the destination chain identifier // @param _destination - the address on destination chain (in bytes). address length/format may vary by chains // @param _payload - a custom bytes payload to send to the destination contract // @param _refundAddress - if the source transaction is cheaper than the amount of value passed, refund the additional amount to this address // @param _zroPaymentAddress - the address of the ZRO token holder who would pay for the transaction // @param _adapterParams - parameters for custom functionality. e.g. receive airdropped native gas from the relayer on destination function send(uint16 _dstChainId, bytes calldata _destination, bytes calldata _payload, address payable _refundAddress, address _zroPaymentAddress, bytes calldata _adapterParams) external payable; // @notice used by the messaging library to publish verified payload // @param _srcChainId - the source chain identifier // @param _srcAddress - the source contract (as bytes) at the source chain // @param _dstAddress - the address on destination chain // @param _nonce - the unbound message ordering nonce // @param _gasLimit - the gas limit for external contract execution // @param _payload - verified payload to send to the destination contract function receivePayload(uint16 _srcChainId, bytes calldata _srcAddress, address _dstAddress, uint64 _nonce, uint _gasLimit, bytes calldata _payload) external; // @notice get the inboundNonce of a receiver from a source chain which could be EVM or non-EVM chain // @param _srcChainId - the source chain identifier // @param _srcAddress - the source chain contract address function getInboundNonce(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (uint64); // @notice get the outboundNonce from this source chain which, consequently, is always an EVM // @param _srcAddress - the source chain contract address function getOutboundNonce(uint16 _dstChainId, address _srcAddress) external view returns (uint64); // @notice gets a quote in source native gas, for the amount that send() requires to pay for message delivery // @param _dstChainId - the destination chain identifier // @param _userApplication - the user app address on this EVM chain // @param _payload - the custom message to send over LayerZero // @param _payInZRO - if false, user app pays the protocol fee in native token // @param _adapterParam - parameters for the adapter service, e.g. send some dust native token to dstChain function estimateFees(uint16 _dstChainId, address _userApplication, bytes calldata _payload, bool _payInZRO, bytes calldata _adapterParam) external view returns (uint nativeFee, uint zroFee); // @notice get this Endpoint's immutable source identifier function getChainId() external view returns (uint16); // @notice the interface to retry failed message on this Endpoint destination // @param _srcChainId - the source chain identifier // @param _srcAddress - the source chain contract address // @param _payload - the payload to be retried function retryPayload(uint16 _srcChainId, bytes calldata _srcAddress, bytes calldata _payload) external; // @notice query if any STORED payload (message blocking) at the endpoint. // @param _srcChainId - the source chain identifier // @param _srcAddress - the source chain contract address function hasStoredPayload(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (bool); // @notice query if the _libraryAddress is valid for sending msgs. // @param _userApplication - the user app address on this EVM chain function getSendLibraryAddress(address _userApplication) external view returns (address); // @notice query if the _libraryAddress is valid for receiving msgs. // @param _userApplication - the user app address on this EVM chain function getReceiveLibraryAddress(address _userApplication) external view returns (address); // @notice query if the non-reentrancy guard for send() is on // @return true if the guard is on. false otherwise function isSendingPayload() external view returns (bool); // @notice query if the non-reentrancy guard for receive() is on // @return true if the guard is on. false otherwise function isReceivingPayload() external view returns (bool); // @notice get the configuration of the LayerZero messaging library of the specified version // @param _version - messaging library version // @param _chainId - the chainId for the pending config change // @param _userApplication - the contract address of the user application // @param _configType - type of configuration. every messaging library has its own convention. function getConfig(uint16 _version, uint16 _chainId, address _userApplication, uint _configType) external view returns (bytes memory); // @notice get the send() LayerZero messaging library version // @param _userApplication - the contract address of the user application function getSendVersion(address _userApplication) external view returns (uint16); // @notice get the lzReceive() LayerZero messaging library version // @param _userApplication - the contract address of the user application function getReceiveVersion(address _userApplication) external view returns (uint16); } // File: contracts/interfaces/ILayerZeroReceiver.sol pragma solidity >=0.5.0; interface ILayerZeroReceiver { // @notice LayerZero endpoint will invoke this function to deliver the message on the destination // @param _srcChainId - the source endpoint identifier // @param _srcAddress - the source sending contract address from the source chain // @param _nonce - the ordered message nonce // @param _payload - the signed payload is the UA bytes has encoded to be sent function lzReceive(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) external; } // 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 v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // 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 v4.4.1 (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(); string memory json_suffix = ".json"; return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), json_suffix)) : ""; } /** * @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"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev 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 {} } // File: contracts/NonblockingReceiver.sol pragma solidity ^0.8.6; abstract contract NonblockingReceiver is Ownable, ILayerZeroReceiver { ILayerZeroEndpoint internal endpoint; struct FailedMessages { uint payloadLength; bytes32 payloadHash; } mapping(uint16 => mapping(bytes => mapping(uint => FailedMessages))) public failedMessages; mapping(uint16 => bytes) public trustedRemoteLookup; event MessageFailed(uint16 _srcChainId, bytes _srcAddress, uint64 _nonce, bytes _payload); function lzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) external override { require(msg.sender == address(endpoint)); // boilerplate! lzReceive must be called by the endpoint for security require(_srcAddress.length == trustedRemoteLookup[_srcChainId].length && keccak256(_srcAddress) == keccak256(trustedRemoteLookup[_srcChainId]), "NonblockingReceiver: invalid source sending contract"); // try-catch all errors/exceptions // having failed messages does not block messages passing try this.onLzReceive(_srcChainId, _srcAddress, _nonce, _payload) { // do nothing } catch { // error / exception failedMessages[_srcChainId][_srcAddress][_nonce] = FailedMessages(_payload.length, keccak256(_payload)); emit MessageFailed(_srcChainId, _srcAddress, _nonce, _payload); } } function onLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) public { // only internal transaction require(msg.sender == address(this), "NonblockingReceiver: caller must be Bridge."); // handle incoming message _LzReceive( _srcChainId, _srcAddress, _nonce, _payload); } // abstract function function _LzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) virtual internal; function _lzSend(uint16 _dstChainId, bytes memory _payload, address payable _refundAddress, address _zroPaymentAddress, bytes memory _txParam) internal { endpoint.send{value: msg.value}(_dstChainId, trustedRemoteLookup[_dstChainId], _payload, _refundAddress, _zroPaymentAddress, _txParam); } function retryMessage(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes calldata _payload) external payable { // assert there is message to retry FailedMessages storage failedMsg = failedMessages[_srcChainId][_srcAddress][_nonce]; require(failedMsg.payloadHash != bytes32(0), "NonblockingReceiver: no stored message"); require(_payload.length == failedMsg.payloadLength && keccak256(_payload) == failedMsg.payloadHash, "LayerZero: invalid payload"); // clear the stored message failedMsg.payloadLength = 0; failedMsg.payloadHash = bytes32(0); // execute the message. revert if it fails again this.onLzReceive(_srcChainId, _srcAddress, _nonce, _payload); } function setTrustedRemote(uint16 _chainId, bytes calldata _trustedRemote) external onlyOwner { trustedRemoteLookup[_chainId] = _trustedRemote; } } // File: contracts/Omnirock.sol pragma solidity ^0.8.7; contract Omnirock is Ownable, ERC721, NonblockingReceiver { address public _owner; string private baseURI; uint256 nextTokenId = 0; uint256 MAX_MINT_ = 16; uint gasForDestinationLzReceive = 350000; constructor(string memory baseURI_, address _layerZeroEndpoint) ERC721("Omnirock", "rock") { _owner = msg.sender; endpoint = ILayerZeroEndpoint(_layerZeroEndpoint); baseURI = baseURI_; } // mint function // you can only mint 1 // mint is free, but payments are accepted function mint(uint8 numTokens) external payable { require(numTokens < 2, "Omnirock: Max 1 NFT per transaction"); require(nextTokenId + numTokens <= MAX_MINT_, "Omnirock: Mint exceeds supply"); _safeMint(msg.sender, ++nextTokenId); } // This function transfers the nft from your address on the // source chain to the same address on the destination chain function traverseChains(uint16 _chainId, uint tokenId) public payable { require(msg.sender == ownerOf(tokenId), "You must own the token to traverse"); require(trustedRemoteLookup[_chainId].length > 0, "This chain is currently unavailable for travel"); // burn NFT, eliminating it from circulation on src chain _burn(tokenId); // abi.encode() the payload with the values to send bytes memory payload = abi.encode(msg.sender, tokenId); // encode adapterParams to specify more gas for the destination uint16 version = 1; bytes memory adapterParams = abi.encodePacked(version, gasForDestinationLzReceive); // get the fees we need to pay to LayerZero + Relayer to cover message delivery // you will be refunded for extra gas paid (uint messageFee, ) = endpoint.estimateFees(_chainId, address(this), payload, false, adapterParams); require(msg.value >= messageFee, "Omnirock: msg.value not enough to cover messageFee. Send gas for message fees"); endpoint.send{value: msg.value}( _chainId, // destination chainId trustedRemoteLookup[_chainId], // destination address of nft contract payload, // abi.encoded()'ed bytes payable(msg.sender), // refund address address(0x0), // 'zroPaymentAddress' unused for this adapterParams // txParameters ); } function setBaseURI(string memory URI) external onlyOwner { baseURI = URI; } function donate() external payable { // thank you } // This allows the devs to receive kind donations function withdraw(uint amt) external onlyOwner { (bool sent, ) = payable(_owner).call{value: amt}(""); require(sent, "Omnirock: Failed to withdraw Ether"); } // just in case this fixed variable limits us from future integrations function setGasForDestinationLzReceive(uint newVal) external onlyOwner { gasForDestinationLzReceive = newVal; } // ------------------ // Internal Functions // ------------------ function _LzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) override internal { // decode (address toAddr, uint tokenId) = abi.decode(_payload, (address, uint)); // mint the tokens back into existence on destination chain _safeMint(toAddr, tokenId); } function _baseURI() override internal view returns (string memory) { return baseURI; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"address","name":"_layerZeroEndpoint","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"MessageFailed","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":[],"name":"_owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"donate","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"failedMessages","outputs":[{"internalType":"uint256","name":"payloadLength","type":"uint256"},{"internalType":"bytes32","name":"payloadHash","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"lzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"numTokens","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"onLzReceive","outputs":[],"stateMutability":"nonpayable","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"retryMessage","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newVal","type":"uint256"}],"name":"setGasForDestinationLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"bytes","name":"_trustedRemote","type":"bytes"}],"name":"setTrustedRemote","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":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"traverseChains","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"trustedRemoteLookup","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600c556010600d5562055730600e553480156200002257600080fd5b5060405162005300380380620053008339818101604052810190620000489190620003bc565b6040518060400160405280600881526020017f4f6d6e69726f636b0000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f726f636b00000000000000000000000000000000000000000000000000000000815250620000d4620000c8620001ab60201b60201c565b620001b360201b60201c565b8160019080519060200190620000ec92919062000277565b5080600290805190602001906200010592919062000277565b50505033600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600b9080519060200190620001a292919062000277565b505050620005f4565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200028590620004eb565b90600052602060002090601f016020900481019282620002a95760008555620002f5565b82601f10620002c457805160ff1916838001178555620002f5565b82800160010185558215620002f5579182015b82811115620002f4578251825591602001919060010190620002d7565b5b50905062000304919062000308565b5090565b5b808211156200032357600081600090555060010162000309565b5090565b60006200033e62000338846200044b565b62000422565b9050828152602081018484840111156200035d576200035c620005ba565b5b6200036a848285620004b5565b509392505050565b6000815190506200038381620005da565b92915050565b600082601f830112620003a157620003a0620005b5565b5b8151620003b384826020860162000327565b91505092915050565b60008060408385031215620003d657620003d5620005c4565b5b600083015167ffffffffffffffff811115620003f757620003f6620005bf565b5b620004058582860162000389565b9250506020620004188582860162000372565b9150509250929050565b60006200042e62000441565b90506200043c828262000521565b919050565b6000604051905090565b600067ffffffffffffffff82111562000469576200046862000586565b5b6200047482620005c9565b9050602081019050919050565b60006200048e8262000495565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015620004d5578082015181840152602081019050620004b8565b83811115620004e5576000848401525b50505050565b600060028204905060018216806200050457607f821691505b602082108114156200051b576200051a62000557565b5b50919050565b6200052c82620005c9565b810181811067ffffffffffffffff821117156200054e576200054d62000586565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620005e58162000481565b8114620005f157600080fd5b50565b614cfc80620006046000396000f3fe6080604052600436106101c15760003560e01c80637533d788116100f7578063b88d4fde11610095578063e985e9c511610064578063e985e9c514610623578063eb8d72b714610660578063ed88c68e14610689578063f2fde38b14610693576101c1565b8063b88d4fde14610585578063c87b56dd146105ae578063cf89fa03146105eb578063d1deba1f14610607576101c1565b8063943fb872116100d1578063943fb872146104dd57806395d89b4114610506578063a22cb46514610531578063b2bdfa7b1461055a576101c1565b80637533d788146104375780638da5cb5b146104745780638ee749121461049f576101c1565b80632e1a7d4d116101645780636352211e1161013e5780636352211e1461038a5780636ecd2306146103c757806370a08231146103e3578063715018a614610420576101c1565b80632e1a7d4d1461030f57806342842e0e1461033857806355f804b314610361576101c1565b8063081812fc116101a0578063081812fc14610257578063095ea7b3146102945780631c37a822146102bd57806323b872dd146102e6576101c1565b80621d3567146101c657806301ffc9a7146101ef57806306fdde031461022c575b600080fd5b3480156101d257600080fd5b506101ed60048036038101906101e891906131d8565b6106bc565b005b3480156101fb57600080fd5b5061021660048036038101906102119190612f95565b6108fe565b6040516102239190613ae4565b60405180910390f35b34801561023857600080fd5b506102416109e0565b60405161024e9190613b21565b60405180910390f35b34801561026357600080fd5b5061027e600480360381019061027991906132b7565b610a72565b60405161028b9190613a54565b60405180910390f35b3480156102a057600080fd5b506102bb60048036038101906102b69190612f55565b610af7565b005b3480156102c957600080fd5b506102e460048036038101906102df91906131d8565b610c0f565b005b3480156102f257600080fd5b5061030d60048036038101906103089190612e3f565b610c8f565b005b34801561031b57600080fd5b50610336600480360381019061033191906132b7565b610cef565b005b34801561034457600080fd5b5061035f600480360381019061035a9190612e3f565b610e3d565b005b34801561036d57600080fd5b5061038860048036038101906103839190612fef565b610e5d565b005b34801561039657600080fd5b506103b160048036038101906103ac91906132b7565b610ef3565b6040516103be9190613a54565b60405180910390f35b6103e160048036038101906103dc9190613324565b610fa5565b005b3480156103ef57600080fd5b5061040a60048036038101906104059190612d92565b611061565b6040516104179190613fe2565b60405180910390f35b34801561042c57600080fd5b50610435611119565b005b34801561044357600080fd5b5061045e60048036038101906104599190613038565b6111a1565b60405161046b9190613aff565b60405180910390f35b34801561048057600080fd5b50610489611241565b6040516104969190613a54565b60405180910390f35b3480156104ab57600080fd5b506104c660048036038101906104c191906130c5565b61126a565b6040516104d4929190613ffd565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff91906132b7565b6112be565b005b34801561051257600080fd5b5061051b611344565b6040516105289190613b21565b60405180910390f35b34801561053d57600080fd5b5061055860048036038101906105539190612f15565b6113d6565b005b34801561056657600080fd5b5061056f6113ec565b60405161057c9190613a54565b60405180910390f35b34801561059157600080fd5b506105ac60048036038101906105a79190612e92565b611412565b005b3480156105ba57600080fd5b506105d560048036038101906105d091906132b7565b611474565b6040516105e29190613b21565b60405180910390f35b61060560048036038101906106009190613277565b611558565b005b610621600480360381019061061c9190613134565b61184b565b005b34801561062f57600080fd5b5061064a60048036038101906106459190612dff565b6119eb565b6040516106579190613ae4565b60405180910390f35b34801561066c57600080fd5b5061068760048036038101906106829190613065565b611a7f565b005b610691611b2b565b005b34801561069f57600080fd5b506106ba60048036038101906106b59190612d92565b611b2d565b005b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461071657600080fd5b600960008561ffff1661ffff168152602001908152602001600020805461073c906142cc565b905083511480156107825750600960008561ffff1661ffff16815260200190815260200160002060405161077091906139cb565b60405180910390208380519060200120145b6107c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b890613d63565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff16631c37a822858585856040518563ffffffff1660e01b81526004016108009493929190613f19565b600060405180830381600087803b15801561081a57600080fd5b505af192505050801561082b575060015b6108f7576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff1681526020019081526020016000208460405161087591906139b4565b908152602001604051809103902060008467ffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101559050507fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d848484846040516108ea9493929190613f19565b60405180910390a16108f8565b5b50505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109c957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109d957506109d882611c25565b5b9050919050565b6060600180546109ef906142cc565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1b906142cc565b8015610a685780601f10610a3d57610100808354040283529160200191610a68565b820191906000526020600020905b815481529060010190602001808311610a4b57829003601f168201915b5050505050905090565b6000610a7d82611c8f565b610abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab390613d23565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b0282610ef3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6a90613de3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b92611cfb565b73ffffffffffffffffffffffffffffffffffffffff161480610bc15750610bc081610bbb611cfb565b6119eb565b5b610c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf790613c83565b60405180910390fd5b610c0a8383611d03565b505050565b3073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7490613ce3565b60405180910390fd5b610c8984848484611dbc565b50505050565b610ca0610c9a611cfb565b82611de9565b610cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd690613e03565b60405180910390fd5b610cea838383611ec7565b505050565b610cf7611cfb565b73ffffffffffffffffffffffffffffffffffffffff16610d15611241565b73ffffffffffffffffffffffffffffffffffffffff1614610d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6290613d43565b60405180910390fd5b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610db390613a13565b60006040518083038185875af1925050503d8060008114610df0576040519150601f19603f3d011682016040523d82523d6000602084013e610df5565b606091505b5050905080610e39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3090613c43565b60405180910390fd5b5050565b610e5883838360405180602001604052806000815250611412565b505050565b610e65611cfb565b73ffffffffffffffffffffffffffffffffffffffff16610e83611241565b73ffffffffffffffffffffffffffffffffffffffff1614610ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed090613d43565b60405180910390fd5b80600b9080519060200190610eef929190612a61565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9390613cc3565b60405180910390fd5b80915050919050565b60028160ff1610610feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe290613dc3565b60405180910390fd5b600d548160ff16600c54610fff9190614110565b1115611040576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103790613e43565b60405180910390fd5b61105e33600c600081546110539061432f565b919050819055612123565b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c990613ca3565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611121611cfb565b73ffffffffffffffffffffffffffffffffffffffff1661113f611241565b73ffffffffffffffffffffffffffffffffffffffff1614611195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118c90613d43565b60405180910390fd5b61119f6000612141565b565b600960205280600052604060002060009150905080546111c0906142cc565b80601f01602080910402602001604051908101604052809291908181526020018280546111ec906142cc565b80156112395780601f1061120e57610100808354040283529160200191611239565b820191906000526020600020905b81548152906001019060200180831161121c57829003601f168201915b505050505081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60086020528260005260406000208280516020810182018051848252602083016020850120818352809550505050505060205280600052604060002060009250925050508060000154908060010154905082565b6112c6611cfb565b73ffffffffffffffffffffffffffffffffffffffff166112e4611241565b73ffffffffffffffffffffffffffffffffffffffff161461133a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133190613d43565b60405180910390fd5b80600e8190555050565b606060028054611353906142cc565b80601f016020809104026020016040519081016040528092919081815260200182805461137f906142cc565b80156113cc5780601f106113a1576101008083540402835291602001916113cc565b820191906000526020600020905b8154815290600101906020018083116113af57829003601f168201915b5050505050905090565b6113e86113e1611cfb565b8383612205565b5050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61142361141d611cfb565b83611de9565b611462576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145990613e03565b60405180910390fd5b61146e84848484612372565b50505050565b606061147f82611c8f565b6114be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b590613da3565b60405180910390fd5b60006114c86123ce565b905060006040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525090506000825111611522576040518060200160405280600081525061154f565b8161152c85612460565b8260405160200161153f939291906139e2565b6040516020818303038152906040525b92505050919050565b61156181610ef3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c590613c23565b60405180910390fd5b6000600960008461ffff1661ffff16815260200190815260200160002080546115f6906142cc565b905011611638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162f90613bc3565b60405180910390fd5b611641816125c1565b60003382604051602001611656929190613abb565b6040516020818303038152906040529050600060019050600081600e54604051602001611684929190613a28565b60405160208183030381529060405290506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340a7bb108730876000876040518663ffffffff1660e01b81526004016116fb959493929190613e63565b604080518083038186803b15801561171257600080fd5b505afa158015611726573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061174a91906132e4565b50905080341015611790576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178790613c03565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c58031003488600960008b61ffff1661ffff16815260200190815260200160002088336000896040518863ffffffff1660e01b815260040161181196959493929190613f6c565b6000604051808303818588803b15801561182a57600080fd5b505af115801561183e573d6000803e3d6000fd5b5050505050505050505050565b6000600860008761ffff1661ffff1681526020019081526020016000208560405161187691906139b4565b908152602001604051809103902060008567ffffffffffffffff16815260200190815260200160002090506000801b816001015414156118eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e290613e23565b60405180910390fd5b80600001548383905014801561191b57508060010154838360405161191192919061399b565b6040518091039020145b61195a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195190613be3565b60405180910390fd5b600081600001819055506000801b81600101819055503073ffffffffffffffffffffffffffffffffffffffff16631c37a82287878787876040518663ffffffff1660e01b81526004016119b1959493929190613ec4565b600060405180830381600087803b1580156119cb57600080fd5b505af11580156119df573d6000803e3d6000fd5b50505050505050505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a87611cfb565b73ffffffffffffffffffffffffffffffffffffffff16611aa5611241565b73ffffffffffffffffffffffffffffffffffffffff1614611afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af290613d43565b60405180910390fd5b8181600960008661ffff1661ffff1681526020019081526020016000209190611b25929190612ae7565b50505050565b565b611b35611cfb565b73ffffffffffffffffffffffffffffffffffffffff16611b53611241565b73ffffffffffffffffffffffffffffffffffffffff1614611ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba090613d43565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1090613b63565b60405180910390fd5b611c2281612141565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d7683610ef3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008082806020019051810190611dd39190612dbf565b91509150611de18282612123565b505050505050565b6000611df482611c8f565b611e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2a90613c63565b60405180910390fd5b6000611e3e83610ef3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ead57508373ffffffffffffffffffffffffffffffffffffffff16611e9584610a72565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ebe5750611ebd81856119eb565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ee782610ef3565b73ffffffffffffffffffffffffffffffffffffffff1614611f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3490613d83565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa490613b83565b60405180910390fd5b611fb88383836126d2565b611fc3600082611d03565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120139190614197565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461206a9190614110565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61213d8282604051806020016040528060008152506126d7565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226b90613ba3565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123659190613ae4565b60405180910390a3505050565b61237d848484611ec7565b61238984848484612732565b6123c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123bf90613b43565b60405180910390fd5b50505050565b6060600b80546123dd906142cc565b80601f0160208091040260200160405190810160405280929190818152602001828054612409906142cc565b80156124565780601f1061242b57610100808354040283529160200191612456565b820191906000526020600020905b81548152906001019060200180831161243957829003601f168201915b5050505050905090565b606060008214156124a8576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125bc565b600082905060005b600082146124da5780806124c39061432f565b915050600a826124d39190614166565b91506124b0565b60008167ffffffffffffffff8111156124f6576124f5614481565b5b6040519080825280601f01601f1916602001820160405280156125285781602001600182028036833780820191505090505b5090505b600085146125b5576001826125419190614197565b9150600a856125509190614394565b603061255c9190614110565b60f81b81838151811061257257612571614452565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125ae9190614166565b945061252c565b8093505050505b919050565b60006125cc82610ef3565b90506125da816000846126d2565b6125e5600083611d03565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126359190614197565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6126e183836128c9565b6126ee6000848484612732565b61272d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272490613b43565b60405180910390fd5b505050565b60006127538473ffffffffffffffffffffffffffffffffffffffff16612a4e565b156128bc578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261277c611cfb565b8786866040518563ffffffff1660e01b815260040161279e9493929190613a6f565b602060405180830381600087803b1580156127b857600080fd5b505af19250505080156127e957506040513d601f19601f820116820180604052508101906127e69190612fc2565b60015b61286c573d8060008114612819576040519150601f19603f3d011682016040523d82523d6000602084013e61281e565b606091505b50600081511415612864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285b90613b43565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128c1565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612939576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293090613d03565b60405180910390fd5b612945600083836126d2565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129959190614110565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612a6d906142cc565b90600052602060002090601f016020900481019282612a8f5760008555612ad6565b82601f10612aa857805160ff1916838001178555612ad6565b82800160010185558215612ad6579182015b82811115612ad5578251825591602001919060010190612aba565b5b509050612ae39190612b6d565b5090565b828054612af3906142cc565b90600052602060002090601f016020900481019282612b155760008555612b5c565b82601f10612b2e57803560ff1916838001178555612b5c565b82800160010185558215612b5c579182015b82811115612b5b578235825591602001919060010190612b40565b5b509050612b699190612b6d565b5090565b5b80821115612b86576000816000905550600101612b6e565b5090565b6000612b9d612b988461404b565b614026565b905082815260208101848484011115612bb957612bb86144bf565b5b612bc484828561428a565b509392505050565b6000612bdf612bda8461407c565b614026565b905082815260208101848484011115612bfb57612bfa6144bf565b5b612c0684828561428a565b509392505050565b600081359050612c1d81614c0e565b92915050565b600081519050612c3281614c25565b92915050565b600081359050612c4781614c3c565b92915050565b600081359050612c5c81614c53565b92915050565b600081519050612c7181614c53565b92915050565b60008083601f840112612c8d57612c8c6144b5565b5b8235905067ffffffffffffffff811115612caa57612ca96144b0565b5b602083019150836001820283011115612cc657612cc56144ba565b5b9250929050565b600082601f830112612ce257612ce16144b5565b5b8135612cf2848260208601612b8a565b91505092915050565b600082601f830112612d1057612d0f6144b5565b5b8135612d20848260208601612bcc565b91505092915050565b600081359050612d3881614c6a565b92915050565b600081359050612d4d81614c81565b92915050565b600081519050612d6281614c81565b92915050565b600081359050612d7781614c98565b92915050565b600081359050612d8c81614caf565b92915050565b600060208284031215612da857612da76144c9565b5b6000612db684828501612c0e565b91505092915050565b60008060408385031215612dd657612dd56144c9565b5b6000612de485828601612c23565b9250506020612df585828601612d53565b9150509250929050565b60008060408385031215612e1657612e156144c9565b5b6000612e2485828601612c0e565b9250506020612e3585828601612c0e565b9150509250929050565b600080600060608486031215612e5857612e576144c9565b5b6000612e6686828701612c0e565b9350506020612e7786828701612c0e565b9250506040612e8886828701612d3e565b9150509250925092565b60008060008060808587031215612eac57612eab6144c9565b5b6000612eba87828801612c0e565b9450506020612ecb87828801612c0e565b9350506040612edc87828801612d3e565b925050606085013567ffffffffffffffff811115612efd57612efc6144c4565b5b612f0987828801612ccd565b91505092959194509250565b60008060408385031215612f2c57612f2b6144c9565b5b6000612f3a85828601612c0e565b9250506020612f4b85828601612c38565b9150509250929050565b60008060408385031215612f6c57612f6b6144c9565b5b6000612f7a85828601612c0e565b9250506020612f8b85828601612d3e565b9150509250929050565b600060208284031215612fab57612faa6144c9565b5b6000612fb984828501612c4d565b91505092915050565b600060208284031215612fd857612fd76144c9565b5b6000612fe684828501612c62565b91505092915050565b600060208284031215613005576130046144c9565b5b600082013567ffffffffffffffff811115613023576130226144c4565b5b61302f84828501612cfb565b91505092915050565b60006020828403121561304e5761304d6144c9565b5b600061305c84828501612d29565b91505092915050565b60008060006040848603121561307e5761307d6144c9565b5b600061308c86828701612d29565b935050602084013567ffffffffffffffff8111156130ad576130ac6144c4565b5b6130b986828701612c77565b92509250509250925092565b6000806000606084860312156130de576130dd6144c9565b5b60006130ec86828701612d29565b935050602084013567ffffffffffffffff81111561310d5761310c6144c4565b5b61311986828701612ccd565b925050604061312a86828701612d3e565b9150509250925092565b6000806000806000608086880312156131505761314f6144c9565b5b600061315e88828901612d29565b955050602086013567ffffffffffffffff81111561317f5761317e6144c4565b5b61318b88828901612ccd565b945050604061319c88828901612d68565b935050606086013567ffffffffffffffff8111156131bd576131bc6144c4565b5b6131c988828901612c77565b92509250509295509295909350565b600080600080608085870312156131f2576131f16144c9565b5b600061320087828801612d29565b945050602085013567ffffffffffffffff811115613221576132206144c4565b5b61322d87828801612ccd565b935050604061323e87828801612d68565b925050606085013567ffffffffffffffff81111561325f5761325e6144c4565b5b61326b87828801612ccd565b91505092959194509250565b6000806040838503121561328e5761328d6144c9565b5b600061329c85828601612d29565b92505060206132ad85828601612d3e565b9150509250929050565b6000602082840312156132cd576132cc6144c9565b5b60006132db84828501612d3e565b91505092915050565b600080604083850312156132fb576132fa6144c9565b5b600061330985828601612d53565b925050602061331a85828601612d53565b9150509250929050565b60006020828403121561333a576133396144c9565b5b600061334884828501612d7d565b91505092915050565b61335a816141dd565b82525050565b613369816141cb565b82525050565b613378816141ef565b82525050565b613387816141fb565b82525050565b600061339983856140d8565b93506133a683858461428a565b6133af836144ce565b840190509392505050565b60006133c683856140e9565b93506133d383858461428a565b82840190509392505050565b60006133ea826140c2565b6133f481856140d8565b9350613404818560208601614299565b61340d816144ce565b840191505092915050565b6000613423826140c2565b61342d81856140e9565b935061343d818560208601614299565b80840191505092915050565b60008154613456816142cc565b61346081866140d8565b9450600182166000811461347b576001811461348d576134c0565b60ff19831686526020860193506134c0565b613496856140ad565b60005b838110156134b857815481890152600182019150602081019050613499565b808801955050505b50505092915050565b600081546134d6816142cc565b6134e081866140e9565b945060018216600081146134fb576001811461350c5761353f565b60ff1983168652818601935061353f565b613515856140ad565b60005b8381101561353757815481890152600182019150602081019050613518565b838801955050505b50505092915050565b6000613553826140cd565b61355d81856140f4565b935061356d818560208601614299565b613576816144ce565b840191505092915050565b600061358c826140cd565b6135968185614105565b93506135a6818560208601614299565b80840191505092915050565b60006135bf6032836140f4565b91506135ca826144ec565b604082019050919050565b60006135e26026836140f4565b91506135ed8261453b565b604082019050919050565b60006136056024836140f4565b91506136108261458a565b604082019050919050565b60006136286019836140f4565b9150613633826145d9565b602082019050919050565b600061364b602e836140f4565b915061365682614602565b604082019050919050565b600061366e601a836140f4565b915061367982614651565b602082019050919050565b6000613691604d836140f4565b915061369c8261467a565b606082019050919050565b60006136b46022836140f4565b91506136bf826146ef565b604082019050919050565b60006136d76022836140f4565b91506136e28261473e565b604082019050919050565b60006136fa602c836140f4565b91506137058261478d565b604082019050919050565b600061371d6038836140f4565b9150613728826147dc565b604082019050919050565b6000613740602a836140f4565b915061374b8261482b565b604082019050919050565b60006137636029836140f4565b915061376e8261487a565b604082019050919050565b6000613786602b836140f4565b9150613791826148c9565b604082019050919050565b60006137a96020836140f4565b91506137b482614918565b602082019050919050565b60006137cc602c836140f4565b91506137d782614941565b604082019050919050565b60006137ef6020836140f4565b91506137fa82614990565b602082019050919050565b60006138126034836140f4565b915061381d826149b9565b604082019050919050565b60006138356029836140f4565b915061384082614a08565b604082019050919050565b6000613858602f836140f4565b915061386382614a57565b604082019050919050565b600061387b6023836140f4565b915061388682614aa6565b604082019050919050565b600061389e6021836140f4565b91506138a982614af5565b604082019050919050565b60006138c16000836140e9565b91506138cc82614b44565b600082019050919050565b60006138e46031836140f4565b91506138ef82614b47565b604082019050919050565b60006139076026836140f4565b915061391282614b96565b604082019050919050565b600061392a601d836140f4565b915061393582614be5565b602082019050919050565b61394981614231565b82525050565b61396061395b82614231565b614378565b82525050565b61396f8161425f565b82525050565b6139866139818261425f565b61438a565b82525050565b61399581614269565b82525050565b60006139a88284866133ba565b91508190509392505050565b60006139c08284613418565b915081905092915050565b60006139d782846134c9565b915081905092915050565b60006139ee8286613581565b91506139fa8285613581565b9150613a068284613581565b9150819050949350505050565b6000613a1e826138b4565b9150819050919050565b6000613a34828561394f565b600282019150613a448284613975565b6020820191508190509392505050565b6000602082019050613a696000830184613360565b92915050565b6000608082019050613a846000830187613360565b613a916020830186613360565b613a9e6040830185613966565b8181036060830152613ab081846133df565b905095945050505050565b6000604082019050613ad06000830185613360565b613add6020830184613966565b9392505050565b6000602082019050613af9600083018461336f565b92915050565b60006020820190508181036000830152613b1981846133df565b905092915050565b60006020820190508181036000830152613b3b8184613548565b905092915050565b60006020820190508181036000830152613b5c816135b2565b9050919050565b60006020820190508181036000830152613b7c816135d5565b9050919050565b60006020820190508181036000830152613b9c816135f8565b9050919050565b60006020820190508181036000830152613bbc8161361b565b9050919050565b60006020820190508181036000830152613bdc8161363e565b9050919050565b60006020820190508181036000830152613bfc81613661565b9050919050565b60006020820190508181036000830152613c1c81613684565b9050919050565b60006020820190508181036000830152613c3c816136a7565b9050919050565b60006020820190508181036000830152613c5c816136ca565b9050919050565b60006020820190508181036000830152613c7c816136ed565b9050919050565b60006020820190508181036000830152613c9c81613710565b9050919050565b60006020820190508181036000830152613cbc81613733565b9050919050565b60006020820190508181036000830152613cdc81613756565b9050919050565b60006020820190508181036000830152613cfc81613779565b9050919050565b60006020820190508181036000830152613d1c8161379c565b9050919050565b60006020820190508181036000830152613d3c816137bf565b9050919050565b60006020820190508181036000830152613d5c816137e2565b9050919050565b60006020820190508181036000830152613d7c81613805565b9050919050565b60006020820190508181036000830152613d9c81613828565b9050919050565b60006020820190508181036000830152613dbc8161384b565b9050919050565b60006020820190508181036000830152613ddc8161386e565b9050919050565b60006020820190508181036000830152613dfc81613891565b9050919050565b60006020820190508181036000830152613e1c816138d7565b9050919050565b60006020820190508181036000830152613e3c816138fa565b9050919050565b60006020820190508181036000830152613e5c8161391d565b9050919050565b600060a082019050613e786000830188613940565b613e856020830187613360565b8181036040830152613e9781866133df565b9050613ea6606083018561336f565b8181036080830152613eb881846133df565b90509695505050505050565b6000608082019050613ed96000830188613940565b8181036020830152613eeb81876133df565b9050613efa604083018661398c565b8181036060830152613f0d81848661338d565b90509695505050505050565b6000608082019050613f2e6000830187613940565b8181036020830152613f4081866133df565b9050613f4f604083018561398c565b8181036060830152613f6181846133df565b905095945050505050565b600060c082019050613f816000830189613940565b8181036020830152613f938188613449565b90508181036040830152613fa781876133df565b9050613fb66060830186613351565b613fc36080830185613360565b81810360a0830152613fd581846133df565b9050979650505050505050565b6000602082019050613ff76000830184613966565b92915050565b60006040820190506140126000830185613966565b61401f602083018461337e565b9392505050565b6000614030614041565b905061403c82826142fe565b919050565b6000604051905090565b600067ffffffffffffffff82111561406657614065614481565b5b61406f826144ce565b9050602081019050919050565b600067ffffffffffffffff82111561409757614096614481565b5b6140a0826144ce565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061411b8261425f565b91506141268361425f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561415b5761415a6143c5565b5b828201905092915050565b60006141718261425f565b915061417c8361425f565b92508261418c5761418b6143f4565b5b828204905092915050565b60006141a28261425f565b91506141ad8361425f565b9250828210156141c0576141bf6143c5565b5b828203905092915050565b60006141d68261423f565b9050919050565b60006141e88261423f565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156142b757808201518184015260208101905061429c565b838111156142c6576000848401525b50505050565b600060028204905060018216806142e457607f821691505b602082108114156142f8576142f7614423565b5b50919050565b614307826144ce565b810181811067ffffffffffffffff8211171561432657614325614481565b5b80604052505050565b600061433a8261425f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561436d5761436c6143c5565b5b600182019050919050565b6000614383826144df565b9050919050565b6000819050919050565b600061439f8261425f565b91506143aa8361425f565b9250826143ba576143b96143f4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160f01b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5468697320636861696e2069732063757272656e746c7920756e617661696c6160008201527f626c6520666f722074726176656c000000000000000000000000000000000000602082015250565b7f4c617965725a65726f3a20696e76616c6964207061796c6f6164000000000000600082015250565b7f4f6d6e69726f636b3a206d73672e76616c7565206e6f7420656e6f756768207460008201527f6f20636f766572206d6573736167654665652e2053656e642067617320666f7260208201527f206d657373616765206665657300000000000000000000000000000000000000604082015250565b7f596f75206d757374206f776e2074686520746f6b656e20746f2074726176657260008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f6d6e69726f636b3a204661696c656420746f2077697468647261772045746860008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460008201527f206265204272696467652e000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f7560008201527f7263652073656e64696e6720636f6e7472616374000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4f6d6e69726f636b3a204d61782031204e465420706572207472616e7361637460008201527f696f6e0000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60008201527f6573736167650000000000000000000000000000000000000000000000000000602082015250565b7f4f6d6e69726f636b3a204d696e74206578636565647320737570706c79000000600082015250565b614c17816141cb565b8114614c2257600080fd5b50565b614c2e816141dd565b8114614c3957600080fd5b50565b614c45816141ef565b8114614c5057600080fd5b50565b614c5c81614205565b8114614c6757600080fd5b50565b614c7381614231565b8114614c7e57600080fd5b50565b614c8a8161425f565b8114614c9557600080fd5b50565b614ca181614269565b8114614cac57600080fd5b50565b614cb88161427d565b8114614cc357600080fd5b5056fea26469706673582212208f08a3d746a9d5b83413c30505268b0f2f21bcfef6ba77446daba1bdd395258e64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d58384e616f345257356447416d6e4a7231764b526b6d317445616767726153664a77597758743545664331792f000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101c15760003560e01c80637533d788116100f7578063b88d4fde11610095578063e985e9c511610064578063e985e9c514610623578063eb8d72b714610660578063ed88c68e14610689578063f2fde38b14610693576101c1565b8063b88d4fde14610585578063c87b56dd146105ae578063cf89fa03146105eb578063d1deba1f14610607576101c1565b8063943fb872116100d1578063943fb872146104dd57806395d89b4114610506578063a22cb46514610531578063b2bdfa7b1461055a576101c1565b80637533d788146104375780638da5cb5b146104745780638ee749121461049f576101c1565b80632e1a7d4d116101645780636352211e1161013e5780636352211e1461038a5780636ecd2306146103c757806370a08231146103e3578063715018a614610420576101c1565b80632e1a7d4d1461030f57806342842e0e1461033857806355f804b314610361576101c1565b8063081812fc116101a0578063081812fc14610257578063095ea7b3146102945780631c37a822146102bd57806323b872dd146102e6576101c1565b80621d3567146101c657806301ffc9a7146101ef57806306fdde031461022c575b600080fd5b3480156101d257600080fd5b506101ed60048036038101906101e891906131d8565b6106bc565b005b3480156101fb57600080fd5b5061021660048036038101906102119190612f95565b6108fe565b6040516102239190613ae4565b60405180910390f35b34801561023857600080fd5b506102416109e0565b60405161024e9190613b21565b60405180910390f35b34801561026357600080fd5b5061027e600480360381019061027991906132b7565b610a72565b60405161028b9190613a54565b60405180910390f35b3480156102a057600080fd5b506102bb60048036038101906102b69190612f55565b610af7565b005b3480156102c957600080fd5b506102e460048036038101906102df91906131d8565b610c0f565b005b3480156102f257600080fd5b5061030d60048036038101906103089190612e3f565b610c8f565b005b34801561031b57600080fd5b50610336600480360381019061033191906132b7565b610cef565b005b34801561034457600080fd5b5061035f600480360381019061035a9190612e3f565b610e3d565b005b34801561036d57600080fd5b5061038860048036038101906103839190612fef565b610e5d565b005b34801561039657600080fd5b506103b160048036038101906103ac91906132b7565b610ef3565b6040516103be9190613a54565b60405180910390f35b6103e160048036038101906103dc9190613324565b610fa5565b005b3480156103ef57600080fd5b5061040a60048036038101906104059190612d92565b611061565b6040516104179190613fe2565b60405180910390f35b34801561042c57600080fd5b50610435611119565b005b34801561044357600080fd5b5061045e60048036038101906104599190613038565b6111a1565b60405161046b9190613aff565b60405180910390f35b34801561048057600080fd5b50610489611241565b6040516104969190613a54565b60405180910390f35b3480156104ab57600080fd5b506104c660048036038101906104c191906130c5565b61126a565b6040516104d4929190613ffd565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff91906132b7565b6112be565b005b34801561051257600080fd5b5061051b611344565b6040516105289190613b21565b60405180910390f35b34801561053d57600080fd5b5061055860048036038101906105539190612f15565b6113d6565b005b34801561056657600080fd5b5061056f6113ec565b60405161057c9190613a54565b60405180910390f35b34801561059157600080fd5b506105ac60048036038101906105a79190612e92565b611412565b005b3480156105ba57600080fd5b506105d560048036038101906105d091906132b7565b611474565b6040516105e29190613b21565b60405180910390f35b61060560048036038101906106009190613277565b611558565b005b610621600480360381019061061c9190613134565b61184b565b005b34801561062f57600080fd5b5061064a60048036038101906106459190612dff565b6119eb565b6040516106579190613ae4565b60405180910390f35b34801561066c57600080fd5b5061068760048036038101906106829190613065565b611a7f565b005b610691611b2b565b005b34801561069f57600080fd5b506106ba60048036038101906106b59190612d92565b611b2d565b005b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461071657600080fd5b600960008561ffff1661ffff168152602001908152602001600020805461073c906142cc565b905083511480156107825750600960008561ffff1661ffff16815260200190815260200160002060405161077091906139cb565b60405180910390208380519060200120145b6107c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b890613d63565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff16631c37a822858585856040518563ffffffff1660e01b81526004016108009493929190613f19565b600060405180830381600087803b15801561081a57600080fd5b505af192505050801561082b575060015b6108f7576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff1681526020019081526020016000208460405161087591906139b4565b908152602001604051809103902060008467ffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101559050507fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d848484846040516108ea9493929190613f19565b60405180910390a16108f8565b5b50505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109c957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109d957506109d882611c25565b5b9050919050565b6060600180546109ef906142cc565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1b906142cc565b8015610a685780601f10610a3d57610100808354040283529160200191610a68565b820191906000526020600020905b815481529060010190602001808311610a4b57829003601f168201915b5050505050905090565b6000610a7d82611c8f565b610abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab390613d23565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b0282610ef3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6a90613de3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b92611cfb565b73ffffffffffffffffffffffffffffffffffffffff161480610bc15750610bc081610bbb611cfb565b6119eb565b5b610c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf790613c83565b60405180910390fd5b610c0a8383611d03565b505050565b3073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7490613ce3565b60405180910390fd5b610c8984848484611dbc565b50505050565b610ca0610c9a611cfb565b82611de9565b610cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd690613e03565b60405180910390fd5b610cea838383611ec7565b505050565b610cf7611cfb565b73ffffffffffffffffffffffffffffffffffffffff16610d15611241565b73ffffffffffffffffffffffffffffffffffffffff1614610d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6290613d43565b60405180910390fd5b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610db390613a13565b60006040518083038185875af1925050503d8060008114610df0576040519150601f19603f3d011682016040523d82523d6000602084013e610df5565b606091505b5050905080610e39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3090613c43565b60405180910390fd5b5050565b610e5883838360405180602001604052806000815250611412565b505050565b610e65611cfb565b73ffffffffffffffffffffffffffffffffffffffff16610e83611241565b73ffffffffffffffffffffffffffffffffffffffff1614610ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed090613d43565b60405180910390fd5b80600b9080519060200190610eef929190612a61565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9390613cc3565b60405180910390fd5b80915050919050565b60028160ff1610610feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe290613dc3565b60405180910390fd5b600d548160ff16600c54610fff9190614110565b1115611040576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103790613e43565b60405180910390fd5b61105e33600c600081546110539061432f565b919050819055612123565b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c990613ca3565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611121611cfb565b73ffffffffffffffffffffffffffffffffffffffff1661113f611241565b73ffffffffffffffffffffffffffffffffffffffff1614611195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118c90613d43565b60405180910390fd5b61119f6000612141565b565b600960205280600052604060002060009150905080546111c0906142cc565b80601f01602080910402602001604051908101604052809291908181526020018280546111ec906142cc565b80156112395780601f1061120e57610100808354040283529160200191611239565b820191906000526020600020905b81548152906001019060200180831161121c57829003601f168201915b505050505081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60086020528260005260406000208280516020810182018051848252602083016020850120818352809550505050505060205280600052604060002060009250925050508060000154908060010154905082565b6112c6611cfb565b73ffffffffffffffffffffffffffffffffffffffff166112e4611241565b73ffffffffffffffffffffffffffffffffffffffff161461133a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133190613d43565b60405180910390fd5b80600e8190555050565b606060028054611353906142cc565b80601f016020809104026020016040519081016040528092919081815260200182805461137f906142cc565b80156113cc5780601f106113a1576101008083540402835291602001916113cc565b820191906000526020600020905b8154815290600101906020018083116113af57829003601f168201915b5050505050905090565b6113e86113e1611cfb565b8383612205565b5050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61142361141d611cfb565b83611de9565b611462576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145990613e03565b60405180910390fd5b61146e84848484612372565b50505050565b606061147f82611c8f565b6114be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b590613da3565b60405180910390fd5b60006114c86123ce565b905060006040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525090506000825111611522576040518060200160405280600081525061154f565b8161152c85612460565b8260405160200161153f939291906139e2565b6040516020818303038152906040525b92505050919050565b61156181610ef3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c590613c23565b60405180910390fd5b6000600960008461ffff1661ffff16815260200190815260200160002080546115f6906142cc565b905011611638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162f90613bc3565b60405180910390fd5b611641816125c1565b60003382604051602001611656929190613abb565b6040516020818303038152906040529050600060019050600081600e54604051602001611684929190613a28565b60405160208183030381529060405290506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340a7bb108730876000876040518663ffffffff1660e01b81526004016116fb959493929190613e63565b604080518083038186803b15801561171257600080fd5b505afa158015611726573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061174a91906132e4565b50905080341015611790576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178790613c03565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c58031003488600960008b61ffff1661ffff16815260200190815260200160002088336000896040518863ffffffff1660e01b815260040161181196959493929190613f6c565b6000604051808303818588803b15801561182a57600080fd5b505af115801561183e573d6000803e3d6000fd5b5050505050505050505050565b6000600860008761ffff1661ffff1681526020019081526020016000208560405161187691906139b4565b908152602001604051809103902060008567ffffffffffffffff16815260200190815260200160002090506000801b816001015414156118eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e290613e23565b60405180910390fd5b80600001548383905014801561191b57508060010154838360405161191192919061399b565b6040518091039020145b61195a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195190613be3565b60405180910390fd5b600081600001819055506000801b81600101819055503073ffffffffffffffffffffffffffffffffffffffff16631c37a82287878787876040518663ffffffff1660e01b81526004016119b1959493929190613ec4565b600060405180830381600087803b1580156119cb57600080fd5b505af11580156119df573d6000803e3d6000fd5b50505050505050505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a87611cfb565b73ffffffffffffffffffffffffffffffffffffffff16611aa5611241565b73ffffffffffffffffffffffffffffffffffffffff1614611afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af290613d43565b60405180910390fd5b8181600960008661ffff1661ffff1681526020019081526020016000209190611b25929190612ae7565b50505050565b565b611b35611cfb565b73ffffffffffffffffffffffffffffffffffffffff16611b53611241565b73ffffffffffffffffffffffffffffffffffffffff1614611ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba090613d43565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1090613b63565b60405180910390fd5b611c2281612141565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d7683610ef3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008082806020019051810190611dd39190612dbf565b91509150611de18282612123565b505050505050565b6000611df482611c8f565b611e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2a90613c63565b60405180910390fd5b6000611e3e83610ef3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ead57508373ffffffffffffffffffffffffffffffffffffffff16611e9584610a72565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ebe5750611ebd81856119eb565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ee782610ef3565b73ffffffffffffffffffffffffffffffffffffffff1614611f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3490613d83565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa490613b83565b60405180910390fd5b611fb88383836126d2565b611fc3600082611d03565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120139190614197565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461206a9190614110565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61213d8282604051806020016040528060008152506126d7565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226b90613ba3565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123659190613ae4565b60405180910390a3505050565b61237d848484611ec7565b61238984848484612732565b6123c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123bf90613b43565b60405180910390fd5b50505050565b6060600b80546123dd906142cc565b80601f0160208091040260200160405190810160405280929190818152602001828054612409906142cc565b80156124565780601f1061242b57610100808354040283529160200191612456565b820191906000526020600020905b81548152906001019060200180831161243957829003601f168201915b5050505050905090565b606060008214156124a8576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125bc565b600082905060005b600082146124da5780806124c39061432f565b915050600a826124d39190614166565b91506124b0565b60008167ffffffffffffffff8111156124f6576124f5614481565b5b6040519080825280601f01601f1916602001820160405280156125285781602001600182028036833780820191505090505b5090505b600085146125b5576001826125419190614197565b9150600a856125509190614394565b603061255c9190614110565b60f81b81838151811061257257612571614452565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125ae9190614166565b945061252c565b8093505050505b919050565b60006125cc82610ef3565b90506125da816000846126d2565b6125e5600083611d03565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126359190614197565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6126e183836128c9565b6126ee6000848484612732565b61272d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272490613b43565b60405180910390fd5b505050565b60006127538473ffffffffffffffffffffffffffffffffffffffff16612a4e565b156128bc578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261277c611cfb565b8786866040518563ffffffff1660e01b815260040161279e9493929190613a6f565b602060405180830381600087803b1580156127b857600080fd5b505af19250505080156127e957506040513d601f19601f820116820180604052508101906127e69190612fc2565b60015b61286c573d8060008114612819576040519150601f19603f3d011682016040523d82523d6000602084013e61281e565b606091505b50600081511415612864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285b90613b43565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128c1565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612939576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293090613d03565b60405180910390fd5b612945600083836126d2565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129959190614110565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612a6d906142cc565b90600052602060002090601f016020900481019282612a8f5760008555612ad6565b82601f10612aa857805160ff1916838001178555612ad6565b82800160010185558215612ad6579182015b82811115612ad5578251825591602001919060010190612aba565b5b509050612ae39190612b6d565b5090565b828054612af3906142cc565b90600052602060002090601f016020900481019282612b155760008555612b5c565b82601f10612b2e57803560ff1916838001178555612b5c565b82800160010185558215612b5c579182015b82811115612b5b578235825591602001919060010190612b40565b5b509050612b699190612b6d565b5090565b5b80821115612b86576000816000905550600101612b6e565b5090565b6000612b9d612b988461404b565b614026565b905082815260208101848484011115612bb957612bb86144bf565b5b612bc484828561428a565b509392505050565b6000612bdf612bda8461407c565b614026565b905082815260208101848484011115612bfb57612bfa6144bf565b5b612c0684828561428a565b509392505050565b600081359050612c1d81614c0e565b92915050565b600081519050612c3281614c25565b92915050565b600081359050612c4781614c3c565b92915050565b600081359050612c5c81614c53565b92915050565b600081519050612c7181614c53565b92915050565b60008083601f840112612c8d57612c8c6144b5565b5b8235905067ffffffffffffffff811115612caa57612ca96144b0565b5b602083019150836001820283011115612cc657612cc56144ba565b5b9250929050565b600082601f830112612ce257612ce16144b5565b5b8135612cf2848260208601612b8a565b91505092915050565b600082601f830112612d1057612d0f6144b5565b5b8135612d20848260208601612bcc565b91505092915050565b600081359050612d3881614c6a565b92915050565b600081359050612d4d81614c81565b92915050565b600081519050612d6281614c81565b92915050565b600081359050612d7781614c98565b92915050565b600081359050612d8c81614caf565b92915050565b600060208284031215612da857612da76144c9565b5b6000612db684828501612c0e565b91505092915050565b60008060408385031215612dd657612dd56144c9565b5b6000612de485828601612c23565b9250506020612df585828601612d53565b9150509250929050565b60008060408385031215612e1657612e156144c9565b5b6000612e2485828601612c0e565b9250506020612e3585828601612c0e565b9150509250929050565b600080600060608486031215612e5857612e576144c9565b5b6000612e6686828701612c0e565b9350506020612e7786828701612c0e565b9250506040612e8886828701612d3e565b9150509250925092565b60008060008060808587031215612eac57612eab6144c9565b5b6000612eba87828801612c0e565b9450506020612ecb87828801612c0e565b9350506040612edc87828801612d3e565b925050606085013567ffffffffffffffff811115612efd57612efc6144c4565b5b612f0987828801612ccd565b91505092959194509250565b60008060408385031215612f2c57612f2b6144c9565b5b6000612f3a85828601612c0e565b9250506020612f4b85828601612c38565b9150509250929050565b60008060408385031215612f6c57612f6b6144c9565b5b6000612f7a85828601612c0e565b9250506020612f8b85828601612d3e565b9150509250929050565b600060208284031215612fab57612faa6144c9565b5b6000612fb984828501612c4d565b91505092915050565b600060208284031215612fd857612fd76144c9565b5b6000612fe684828501612c62565b91505092915050565b600060208284031215613005576130046144c9565b5b600082013567ffffffffffffffff811115613023576130226144c4565b5b61302f84828501612cfb565b91505092915050565b60006020828403121561304e5761304d6144c9565b5b600061305c84828501612d29565b91505092915050565b60008060006040848603121561307e5761307d6144c9565b5b600061308c86828701612d29565b935050602084013567ffffffffffffffff8111156130ad576130ac6144c4565b5b6130b986828701612c77565b92509250509250925092565b6000806000606084860312156130de576130dd6144c9565b5b60006130ec86828701612d29565b935050602084013567ffffffffffffffff81111561310d5761310c6144c4565b5b61311986828701612ccd565b925050604061312a86828701612d3e565b9150509250925092565b6000806000806000608086880312156131505761314f6144c9565b5b600061315e88828901612d29565b955050602086013567ffffffffffffffff81111561317f5761317e6144c4565b5b61318b88828901612ccd565b945050604061319c88828901612d68565b935050606086013567ffffffffffffffff8111156131bd576131bc6144c4565b5b6131c988828901612c77565b92509250509295509295909350565b600080600080608085870312156131f2576131f16144c9565b5b600061320087828801612d29565b945050602085013567ffffffffffffffff811115613221576132206144c4565b5b61322d87828801612ccd565b935050604061323e87828801612d68565b925050606085013567ffffffffffffffff81111561325f5761325e6144c4565b5b61326b87828801612ccd565b91505092959194509250565b6000806040838503121561328e5761328d6144c9565b5b600061329c85828601612d29565b92505060206132ad85828601612d3e565b9150509250929050565b6000602082840312156132cd576132cc6144c9565b5b60006132db84828501612d3e565b91505092915050565b600080604083850312156132fb576132fa6144c9565b5b600061330985828601612d53565b925050602061331a85828601612d53565b9150509250929050565b60006020828403121561333a576133396144c9565b5b600061334884828501612d7d565b91505092915050565b61335a816141dd565b82525050565b613369816141cb565b82525050565b613378816141ef565b82525050565b613387816141fb565b82525050565b600061339983856140d8565b93506133a683858461428a565b6133af836144ce565b840190509392505050565b60006133c683856140e9565b93506133d383858461428a565b82840190509392505050565b60006133ea826140c2565b6133f481856140d8565b9350613404818560208601614299565b61340d816144ce565b840191505092915050565b6000613423826140c2565b61342d81856140e9565b935061343d818560208601614299565b80840191505092915050565b60008154613456816142cc565b61346081866140d8565b9450600182166000811461347b576001811461348d576134c0565b60ff19831686526020860193506134c0565b613496856140ad565b60005b838110156134b857815481890152600182019150602081019050613499565b808801955050505b50505092915050565b600081546134d6816142cc565b6134e081866140e9565b945060018216600081146134fb576001811461350c5761353f565b60ff1983168652818601935061353f565b613515856140ad565b60005b8381101561353757815481890152600182019150602081019050613518565b838801955050505b50505092915050565b6000613553826140cd565b61355d81856140f4565b935061356d818560208601614299565b613576816144ce565b840191505092915050565b600061358c826140cd565b6135968185614105565b93506135a6818560208601614299565b80840191505092915050565b60006135bf6032836140f4565b91506135ca826144ec565b604082019050919050565b60006135e26026836140f4565b91506135ed8261453b565b604082019050919050565b60006136056024836140f4565b91506136108261458a565b604082019050919050565b60006136286019836140f4565b9150613633826145d9565b602082019050919050565b600061364b602e836140f4565b915061365682614602565b604082019050919050565b600061366e601a836140f4565b915061367982614651565b602082019050919050565b6000613691604d836140f4565b915061369c8261467a565b606082019050919050565b60006136b46022836140f4565b91506136bf826146ef565b604082019050919050565b60006136d76022836140f4565b91506136e28261473e565b604082019050919050565b60006136fa602c836140f4565b91506137058261478d565b604082019050919050565b600061371d6038836140f4565b9150613728826147dc565b604082019050919050565b6000613740602a836140f4565b915061374b8261482b565b604082019050919050565b60006137636029836140f4565b915061376e8261487a565b604082019050919050565b6000613786602b836140f4565b9150613791826148c9565b604082019050919050565b60006137a96020836140f4565b91506137b482614918565b602082019050919050565b60006137cc602c836140f4565b91506137d782614941565b604082019050919050565b60006137ef6020836140f4565b91506137fa82614990565b602082019050919050565b60006138126034836140f4565b915061381d826149b9565b604082019050919050565b60006138356029836140f4565b915061384082614a08565b604082019050919050565b6000613858602f836140f4565b915061386382614a57565b604082019050919050565b600061387b6023836140f4565b915061388682614aa6565b604082019050919050565b600061389e6021836140f4565b91506138a982614af5565b604082019050919050565b60006138c16000836140e9565b91506138cc82614b44565b600082019050919050565b60006138e46031836140f4565b91506138ef82614b47565b604082019050919050565b60006139076026836140f4565b915061391282614b96565b604082019050919050565b600061392a601d836140f4565b915061393582614be5565b602082019050919050565b61394981614231565b82525050565b61396061395b82614231565b614378565b82525050565b61396f8161425f565b82525050565b6139866139818261425f565b61438a565b82525050565b61399581614269565b82525050565b60006139a88284866133ba565b91508190509392505050565b60006139c08284613418565b915081905092915050565b60006139d782846134c9565b915081905092915050565b60006139ee8286613581565b91506139fa8285613581565b9150613a068284613581565b9150819050949350505050565b6000613a1e826138b4565b9150819050919050565b6000613a34828561394f565b600282019150613a448284613975565b6020820191508190509392505050565b6000602082019050613a696000830184613360565b92915050565b6000608082019050613a846000830187613360565b613a916020830186613360565b613a9e6040830185613966565b8181036060830152613ab081846133df565b905095945050505050565b6000604082019050613ad06000830185613360565b613add6020830184613966565b9392505050565b6000602082019050613af9600083018461336f565b92915050565b60006020820190508181036000830152613b1981846133df565b905092915050565b60006020820190508181036000830152613b3b8184613548565b905092915050565b60006020820190508181036000830152613b5c816135b2565b9050919050565b60006020820190508181036000830152613b7c816135d5565b9050919050565b60006020820190508181036000830152613b9c816135f8565b9050919050565b60006020820190508181036000830152613bbc8161361b565b9050919050565b60006020820190508181036000830152613bdc8161363e565b9050919050565b60006020820190508181036000830152613bfc81613661565b9050919050565b60006020820190508181036000830152613c1c81613684565b9050919050565b60006020820190508181036000830152613c3c816136a7565b9050919050565b60006020820190508181036000830152613c5c816136ca565b9050919050565b60006020820190508181036000830152613c7c816136ed565b9050919050565b60006020820190508181036000830152613c9c81613710565b9050919050565b60006020820190508181036000830152613cbc81613733565b9050919050565b60006020820190508181036000830152613cdc81613756565b9050919050565b60006020820190508181036000830152613cfc81613779565b9050919050565b60006020820190508181036000830152613d1c8161379c565b9050919050565b60006020820190508181036000830152613d3c816137bf565b9050919050565b60006020820190508181036000830152613d5c816137e2565b9050919050565b60006020820190508181036000830152613d7c81613805565b9050919050565b60006020820190508181036000830152613d9c81613828565b9050919050565b60006020820190508181036000830152613dbc8161384b565b9050919050565b60006020820190508181036000830152613ddc8161386e565b9050919050565b60006020820190508181036000830152613dfc81613891565b9050919050565b60006020820190508181036000830152613e1c816138d7565b9050919050565b60006020820190508181036000830152613e3c816138fa565b9050919050565b60006020820190508181036000830152613e5c8161391d565b9050919050565b600060a082019050613e786000830188613940565b613e856020830187613360565b8181036040830152613e9781866133df565b9050613ea6606083018561336f565b8181036080830152613eb881846133df565b90509695505050505050565b6000608082019050613ed96000830188613940565b8181036020830152613eeb81876133df565b9050613efa604083018661398c565b8181036060830152613f0d81848661338d565b90509695505050505050565b6000608082019050613f2e6000830187613940565b8181036020830152613f4081866133df565b9050613f4f604083018561398c565b8181036060830152613f6181846133df565b905095945050505050565b600060c082019050613f816000830189613940565b8181036020830152613f938188613449565b90508181036040830152613fa781876133df565b9050613fb66060830186613351565b613fc36080830185613360565b81810360a0830152613fd581846133df565b9050979650505050505050565b6000602082019050613ff76000830184613966565b92915050565b60006040820190506140126000830185613966565b61401f602083018461337e565b9392505050565b6000614030614041565b905061403c82826142fe565b919050565b6000604051905090565b600067ffffffffffffffff82111561406657614065614481565b5b61406f826144ce565b9050602081019050919050565b600067ffffffffffffffff82111561409757614096614481565b5b6140a0826144ce565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061411b8261425f565b91506141268361425f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561415b5761415a6143c5565b5b828201905092915050565b60006141718261425f565b915061417c8361425f565b92508261418c5761418b6143f4565b5b828204905092915050565b60006141a28261425f565b91506141ad8361425f565b9250828210156141c0576141bf6143c5565b5b828203905092915050565b60006141d68261423f565b9050919050565b60006141e88261423f565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156142b757808201518184015260208101905061429c565b838111156142c6576000848401525b50505050565b600060028204905060018216806142e457607f821691505b602082108114156142f8576142f7614423565b5b50919050565b614307826144ce565b810181811067ffffffffffffffff8211171561432657614325614481565b5b80604052505050565b600061433a8261425f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561436d5761436c6143c5565b5b600182019050919050565b6000614383826144df565b9050919050565b6000819050919050565b600061439f8261425f565b91506143aa8361425f565b9250826143ba576143b96143f4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160f01b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5468697320636861696e2069732063757272656e746c7920756e617661696c6160008201527f626c6520666f722074726176656c000000000000000000000000000000000000602082015250565b7f4c617965725a65726f3a20696e76616c6964207061796c6f6164000000000000600082015250565b7f4f6d6e69726f636b3a206d73672e76616c7565206e6f7420656e6f756768207460008201527f6f20636f766572206d6573736167654665652e2053656e642067617320666f7260208201527f206d657373616765206665657300000000000000000000000000000000000000604082015250565b7f596f75206d757374206f776e2074686520746f6b656e20746f2074726176657260008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f6d6e69726f636b3a204661696c656420746f2077697468647261772045746860008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460008201527f206265204272696467652e000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f7560008201527f7263652073656e64696e6720636f6e7472616374000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4f6d6e69726f636b3a204d61782031204e465420706572207472616e7361637460008201527f696f6e0000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60008201527f6573736167650000000000000000000000000000000000000000000000000000602082015250565b7f4f6d6e69726f636b3a204d696e74206578636565647320737570706c79000000600082015250565b614c17816141cb565b8114614c2257600080fd5b50565b614c2e816141dd565b8114614c3957600080fd5b50565b614c45816141ef565b8114614c5057600080fd5b50565b614c5c81614205565b8114614c6757600080fd5b50565b614c7381614231565b8114614c7e57600080fd5b50565b614c8a8161425f565b8114614c9557600080fd5b50565b614ca181614269565b8114614cac57600080fd5b50565b614cb88161427d565b8114614cc357600080fd5b5056fea26469706673582212208f08a3d746a9d5b83413c30505268b0f2f21bcfef6ba77446daba1bdd395258e64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d58384e616f345257356447416d6e4a7231764b526b6d317445616767726153664a77597758743545664331792f000000000000000000000000000000
-----Decoded View---------------
Arg [0] : baseURI_ (string): https://gateway.pinata.cloud/ipfs/QmX8Nao4RW5dGAmnJr1vKRkm1tEaggraSfJwYwXt5EfC1y/
Arg [1] : _layerZeroEndpoint (address): 0x66A71Dcef29A0fFBDBE3c6a460a3B5BC225Cd675
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [3] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [4] : 732f516d58384e616f345257356447416d6e4a7231764b526b6d317445616767
Arg [5] : 726153664a77597758743545664331792f000000000000000000000000000000
Deployed Bytecode Sourcemap
47479:3724:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44691:949;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31705:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32650:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34268:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33791:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45648:356;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35018:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50272:180;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35428:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50046:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32344:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48038:264;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32074:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12693:103;;;;;;;;;;;;;:::i;:::-;;44533:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12042:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44436:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;50536:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32819:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34561:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47546:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35684:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32994:393;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48442:1594;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46480:758;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34787:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47246:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50144:65;;;:::i;:::-;;12951:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44691:949;44853:8;;;;;;;;;;;44831:31;;:10;:31;;;44823:40;;;;;;44974:19;:32;44994:11;44974:32;;;;;;;;;;;;;;;:39;;;;;:::i;:::-;;;44952:11;:18;:61;:134;;;;;45053:19;:32;45073:11;45053:32;;;;;;;;;;;;;;;45043:43;;;;;;:::i;:::-;;;;;;;;45027:11;45017:22;;;;;;:69;44952:134;44944:213;;;;;;;;;;;;:::i;:::-;;;;;;;;;45285:4;:16;;;45302:11;45315;45328:6;45336:8;45285:60;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45281:352;;45492:52;;;;;;;;45507:8;:15;45492:52;;;;45534:8;45524:19;;;;;;45492:52;;;45441:14;:27;45456:11;45441:27;;;;;;;;;;;;;;;45469:11;45441:40;;;;;;:::i;:::-;;;;;;;;;;;;;:48;45482:6;45441:48;;;;;;;;;;;;;:103;;;;;;;;;;;;;;;;;;;45564:57;45578:11;45591;45604:6;45612:8;45564:57;;;;;;;;;:::i;:::-;;;;;;;;45281:352;;;;44691:949;;;;:::o;31705:305::-;31807:4;31859:25;31844:40;;;:11;:40;;;;:105;;;;31916:33;31901:48;;;:11;:48;;;;31844:105;:158;;;;31966:36;31990:11;31966:23;:36::i;:::-;31844:158;31824:178;;31705:305;;;:::o;32650:100::-;32704:13;32737:5;32730:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32650:100;:::o;34268:221::-;34344:7;34372:16;34380:7;34372;:16::i;:::-;34364:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;34457:15;:24;34473:7;34457:24;;;;;;;;;;;;;;;;;;;;;34450:31;;34268:221;;;:::o;33791:411::-;33872:13;33888:23;33903:7;33888:14;:23::i;:::-;33872:39;;33936:5;33930:11;;:2;:11;;;;33922:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;34030:5;34014:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;34039:37;34056:5;34063:12;:10;:12::i;:::-;34039:16;:37::i;:::-;34014:62;33992:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;34173:21;34182:2;34186:7;34173:8;:21::i;:::-;33861:341;33791:411;;:::o;45648:356::-;45839:4;45817:27;;:10;:27;;;45809:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;45941:55;45953:11;45966;45979:6;45987:8;45941:10;:55::i;:::-;45648:356;;;;:::o;35018:339::-;35213:41;35232:12;:10;:12::i;:::-;35246:7;35213:18;:41::i;:::-;35205:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;35321:28;35331:4;35337:2;35341:7;35321:9;:28::i;:::-;35018:339;;;:::o;50272:180::-;12273:12;:10;:12::i;:::-;12262:23;;:7;:5;:7::i;:::-;:23;;;12254:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50331:9:::1;50354:6;;;;;;;;;;;50346:20;;50374:3;50346:36;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50330:52;;;50401:4;50393:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;50319:133;50272:180:::0;:::o;35428:185::-;35566:39;35583:4;35589:2;35593:7;35566:39;;;;;;;;;;;;:16;:39::i;:::-;35428:185;;;:::o;50046:90::-;12273:12;:10;:12::i;:::-;12262:23;;:7;:5;:7::i;:::-;:23;;;12254:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50125:3:::1;50115:7;:13;;;;;;;;;;;;:::i;:::-;;50046:90:::0;:::o;32344:239::-;32416:7;32436:13;32452:7;:16;32460:7;32452:16;;;;;;;;;;;;;;;;;;;;;32436:32;;32504:1;32487:19;;:5;:19;;;;32479:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;32570:5;32563:12;;;32344:239;;;:::o;48038:264::-;48117:1;48105:9;:13;;;48097:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;48204:9;;48191;48177:23;;:11;;:23;;;;:::i;:::-;:36;;48169:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;48258:36;48268:10;48282:11;;48280:13;;;;;:::i;:::-;;;;;;;48258:9;:36::i;:::-;48038:264;:::o;32074:208::-;32146:7;32191:1;32174:19;;:5;:19;;;;32166:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;32258:9;:16;32268:5;32258:16;;;;;;;;;;;;;;;;32251:23;;32074:208;;;:::o;12693:103::-;12273:12;:10;:12::i;:::-;12262:23;;:7;:5;:7::i;:::-;:23;;;12254:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12758:30:::1;12785:1;12758:18;:30::i;:::-;12693:103::o:0;44533:51::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;12042:87::-;12088:7;12115:6;;;;;;;;;;;12108:13;;12042:87;:::o;44436:90::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50536:125::-;12273:12;:10;:12::i;:::-;12262:23;;:7;:5;:7::i;:::-;:23;;;12254:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50647:6:::1;50618:26;:35;;;;50536:125:::0;:::o;32819:104::-;32875:13;32908:7;32901:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32819:104;:::o;34561:155::-;34656:52;34675:12;:10;:12::i;:::-;34689:8;34699;34656:18;:52::i;:::-;34561:155;;:::o;47546:21::-;;;;;;;;;;;;;:::o;35684:328::-;35859:41;35878:12;:10;:12::i;:::-;35892:7;35859:18;:41::i;:::-;35851:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;35965:39;35979:4;35985:2;35989:7;35998:5;35965:13;:39::i;:::-;35684:328;;;;:::o;32994:393::-;33067:13;33101:16;33109:7;33101;:16::i;:::-;33093:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;33182:21;33206:10;:8;:10::i;:::-;33182:34;;33227:25;:35;;;;;;;;;;;;;;;;;;;33304:1;33286:7;33280:21;:25;:99;;;;;;;;;;;;;;;;;33332:7;33341:18;:7;:16;:18::i;:::-;33361:11;33315:58;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33280:99;33273:106;;;;32994:393;;;:::o;48442:1594::-;48545:16;48553:7;48545;:16::i;:::-;48531:30;;:10;:30;;;48523:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;48658:1;48619:19;:29;48639:8;48619:29;;;;;;;;;;;;;;;:36;;;;;:::i;:::-;;;:40;48611:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;48790:14;48796:7;48790:5;:14::i;:::-;48878:20;48912:10;48924:7;48901:31;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48878:54;;49018:14;49035:1;49018:18;;49047:26;49093:7;49102:26;;49076:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49047:82;;49284:15;49305:8;;;;;;;;;;;:21;;;49327:8;49345:4;49352:7;49361:5;49368:13;49305:77;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49283:99;;;49424:10;49411:9;:23;;49403:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;49529:8;;;;;;;;;;;:13;;;49550:9;49575:8;49647:19;:29;49667:8;49647:29;;;;;;;;;;;;;;;49735:7;49818:10;49885:3;49965:13;49529:499;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48512:1524;;;;48442:1594;;:::o;46480:758::-;46661:32;46696:14;:27;46711:11;46696:27;;;;;;;;;;;;;;;46724:11;46696:40;;;;;;:::i;:::-;;;;;;;;;;;;;:48;46737:6;46696:48;;;;;;;;;;;;;46661:83;;46796:1;46788:10;;46763:9;:21;;;:35;;46755:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;46879:9;:23;;;46860:8;;:15;;:42;:90;;;;;46929:9;:21;;;46916:8;;46906:19;;;;;;;:::i;:::-;;;;;;;;:44;46860:90;46852:129;;;;;;;;;;;;:::i;:::-;;;;;;;;;47055:1;47029:9;:23;;:27;;;;47099:1;47091:10;;47067:9;:21;;:34;;;;47170:4;:16;;;47187:11;47200;47213:6;47221:8;;47170:60;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46605:633;46480:758;;;;;:::o;34787:164::-;34884:4;34908:18;:25;34927:5;34908:25;;;;;;;;;;;;;;;:35;34934:8;34908:35;;;;;;;;;;;;;;;;;;;;;;;;;34901:42;;34787:164;;;;:::o;47246:158::-;12273:12;:10;:12::i;:::-;12262:23;;:7;:5;:7::i;:::-;:23;;;12254:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47382:14:::1;;47350:19;:29;47370:8;47350:29;;;;;;;;;;;;;;;:46;;;;;;;:::i;:::-;;47246:158:::0;;;:::o;50144:65::-;:::o;12951:201::-;12273:12;:10;:12::i;:::-;12262:23;;:7;:5;:7::i;:::-;:23;;;12254:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13060:1:::1;13040:22;;:8;:22;;;;13032:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;13116:28;13135:8;13116:18;:28::i;:::-;12951:201:::0;:::o;24474:157::-;24559:4;24598:25;24583:40;;;:11;:40;;;;24576:47;;24474:157;;;:::o;37522:127::-;37587:4;37639:1;37611:30;;:7;:16;37619:7;37611:16;;;;;;;;;;;;;;;;;;;;;:30;;;;37604:37;;37522:127;;;:::o;10766:98::-;10819:7;10846:10;10839:17;;10766:98;:::o;41435:174::-;41537:2;41510:15;:24;41526:7;41510:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;41593:7;41589:2;41555:46;;41564:23;41579:7;41564:14;:23::i;:::-;41555:46;;;;;;;;;;;;41435:174;;:::o;50752:338::-;50905:14;50921:12;50948:8;50937:37;;;;;;;;;;;;:::i;:::-;50904:70;;;;51056:26;51066:6;51074:7;51056:9;:26::i;:::-;50874:216;;50752:338;;;;:::o;37816:348::-;37909:4;37934:16;37942:7;37934;:16::i;:::-;37926:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;38010:13;38026:23;38041:7;38026:14;:23::i;:::-;38010:39;;38079:5;38068:16;;:7;:16;;;:51;;;;38112:7;38088:31;;:20;38100:7;38088:11;:20::i;:::-;:31;;;38068:51;:87;;;;38123:32;38140:5;38147:7;38123:16;:32::i;:::-;38068:87;38060:96;;;37816:348;;;;:::o;40739:578::-;40898:4;40871:31;;:23;40886:7;40871:14;:23::i;:::-;:31;;;40863:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;40981:1;40967:16;;:2;:16;;;;40959:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;41037:39;41058:4;41064:2;41068:7;41037:20;:39::i;:::-;41141:29;41158:1;41162:7;41141:8;:29::i;:::-;41202:1;41183:9;:15;41193:4;41183:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;41231:1;41214:9;:13;41224:2;41214:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;41262:2;41243:7;:16;41251:7;41243:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;41301:7;41297:2;41282:27;;41291:4;41282:27;;;;;;;;;;;;40739:578;;;:::o;38506:110::-;38582:26;38592:2;38596:7;38582:26;;;;;;;;;;;;:9;:26::i;:::-;38506:110;;:::o;13312:191::-;13386:16;13405:6;;;;;;;;;;;13386:25;;13431:8;13422:6;;:17;;;;;;;;;;;;;;;;;;13486:8;13455:40;;13476:8;13455:40;;;;;;;;;;;;13375:128;13312:191;:::o;41751:315::-;41906:8;41897:17;;:5;:17;;;;41889:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;41993:8;41955:18;:25;41974:5;41955:25;;;;;;;;;;;;;;;:35;41981:8;41955:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;42039:8;42017:41;;42032:5;42017:41;;;42049:8;42017:41;;;;;;:::i;:::-;;;;;;;;41751:315;;;:::o;36894:::-;37051:28;37061:4;37067:2;37071:7;37051:9;:28::i;:::-;37098:48;37121:4;37127:2;37131:7;37140:5;37098:22;:48::i;:::-;37090:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;36894:315;;;;:::o;51100:100::-;51152:13;51185:7;51178:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51100:100;:::o;8328:723::-;8384:13;8614:1;8605:5;:10;8601:53;;;8632:10;;;;;;;;;;;;;;;;;;;;;8601:53;8664:12;8679:5;8664:20;;8695:14;8720:78;8735:1;8727:4;:9;8720:78;;8753:8;;;;;:::i;:::-;;;;8784:2;8776:10;;;;;:::i;:::-;;;8720:78;;;8808:19;8840:6;8830:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8808:39;;8858:154;8874:1;8865:5;:10;8858:154;;8902:1;8892:11;;;;;:::i;:::-;;;8969:2;8961:5;:10;;;;:::i;:::-;8948:2;:24;;;;:::i;:::-;8935:39;;8918:6;8925;8918:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;8998:2;8989:11;;;;;:::i;:::-;;;8858:154;;;9036:6;9022:21;;;;;8328:723;;;;:::o;40042:360::-;40102:13;40118:23;40133:7;40118:14;:23::i;:::-;40102:39;;40154:48;40175:5;40190:1;40194:7;40154:20;:48::i;:::-;40243:29;40260:1;40264:7;40243:8;:29::i;:::-;40305:1;40285:9;:16;40295:5;40285:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;40324:7;:16;40332:7;40324:16;;;;;;;;;;;;40317:23;;;;;;;;;;;40386:7;40382:1;40358:36;;40367:5;40358:36;;;;;;;;;;;;40091:311;40042:360;:::o;44002:126::-;;;;:::o;38843:321::-;38973:18;38979:2;38983:7;38973:5;:18::i;:::-;39024:54;39055:1;39059:2;39063:7;39072:5;39024:22;:54::i;:::-;39002:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;38843:321;;;:::o;42631:799::-;42786:4;42807:15;:2;:13;;;:15::i;:::-;42803:620;;;42859:2;42843:36;;;42880:12;:10;:12::i;:::-;42894:4;42900:7;42909:5;42843:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42839:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43102:1;43085:6;:13;:18;43081:272;;;43128:60;;;;;;;;;;:::i;:::-;;;;;;;;43081:272;43303:6;43297:13;43288:6;43284:2;43280:15;43273:38;42839:529;42976:41;;;42966:51;;;:6;:51;;;;42959:58;;;;;42803:620;43407:4;43400:11;;42631:799;;;;;;;:::o;39500:313::-;39594:1;39580:16;;:2;:16;;;;39572:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;39646:45;39675:1;39679:2;39683:7;39646:20;:45::i;:::-;39721:1;39704:9;:13;39714:2;39704:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;39752:2;39733:7;:16;39741:7;39733:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;39797:7;39793:2;39772:33;;39789:1;39772:33;;;;;;;;;;;;39500:313;;:::o;14330:387::-;14390:4;14598:12;14665:7;14653:20;14645:28;;14708:1;14701:4;:8;14694:15;;;14330:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:159::-;1051:5;1082:6;1076:13;1067:22;;1098:41;1133:5;1098:41;:::i;:::-;986:159;;;;:::o;1151:133::-;1194:5;1232:6;1219:20;1210:29;;1248:30;1272:5;1248:30;:::i;:::-;1151:133;;;;:::o;1290:137::-;1335:5;1373:6;1360:20;1351:29;;1389:32;1415:5;1389:32;:::i;:::-;1290:137;;;;:::o;1433:141::-;1489:5;1520:6;1514:13;1505:22;;1536:32;1562:5;1536:32;:::i;:::-;1433:141;;;;:::o;1593:552::-;1650:8;1660:6;1710:3;1703:4;1695:6;1691:17;1687:27;1677:122;;1718:79;;:::i;:::-;1677:122;1831:6;1818:20;1808:30;;1861:18;1853:6;1850:30;1847:117;;;1883:79;;:::i;:::-;1847:117;1997:4;1989:6;1985:17;1973:29;;2051:3;2043:4;2035:6;2031:17;2021:8;2017:32;2014:41;2011:128;;;2058:79;;:::i;:::-;2011:128;1593:552;;;;;:::o;2164:338::-;2219:5;2268:3;2261:4;2253:6;2249:17;2245:27;2235:122;;2276:79;;:::i;:::-;2235:122;2393:6;2380:20;2418:78;2492:3;2484:6;2477:4;2469:6;2465:17;2418:78;:::i;:::-;2409:87;;2225:277;2164:338;;;;:::o;2522:340::-;2578:5;2627:3;2620:4;2612:6;2608:17;2604:27;2594:122;;2635:79;;:::i;:::-;2594:122;2752:6;2739:20;2777:79;2852:3;2844:6;2837:4;2829:6;2825:17;2777:79;:::i;:::-;2768:88;;2584:278;2522:340;;;;:::o;2868:137::-;2913:5;2951:6;2938:20;2929:29;;2967:32;2993:5;2967:32;:::i;:::-;2868:137;;;;:::o;3011:139::-;3057:5;3095:6;3082:20;3073:29;;3111:33;3138:5;3111:33;:::i;:::-;3011:139;;;;:::o;3156:143::-;3213:5;3244:6;3238:13;3229:22;;3260:33;3287:5;3260:33;:::i;:::-;3156:143;;;;:::o;3305:137::-;3350:5;3388:6;3375:20;3366:29;;3404:32;3430:5;3404:32;:::i;:::-;3305:137;;;;:::o;3448:135::-;3492:5;3530:6;3517:20;3508:29;;3546:31;3571:5;3546:31;:::i;:::-;3448:135;;;;:::o;3589:329::-;3648:6;3697:2;3685:9;3676:7;3672:23;3668:32;3665:119;;;3703:79;;:::i;:::-;3665:119;3823:1;3848:53;3893:7;3884:6;3873:9;3869:22;3848:53;:::i;:::-;3838:63;;3794:117;3589:329;;;;:::o;3924:523::-;4011:6;4019;4068:2;4056:9;4047:7;4043:23;4039:32;4036:119;;;4074:79;;:::i;:::-;4036:119;4194:1;4219:72;4283:7;4274:6;4263:9;4259:22;4219:72;:::i;:::-;4209:82;;4165:136;4340:2;4366:64;4422:7;4413:6;4402:9;4398:22;4366:64;:::i;:::-;4356:74;;4311:129;3924:523;;;;;:::o;4453:474::-;4521:6;4529;4578:2;4566:9;4557:7;4553:23;4549:32;4546:119;;;4584:79;;:::i;:::-;4546:119;4704:1;4729:53;4774:7;4765:6;4754:9;4750:22;4729:53;:::i;:::-;4719:63;;4675:117;4831:2;4857:53;4902:7;4893:6;4882:9;4878:22;4857:53;:::i;:::-;4847:63;;4802:118;4453:474;;;;;:::o;4933:619::-;5010:6;5018;5026;5075:2;5063:9;5054:7;5050:23;5046:32;5043:119;;;5081:79;;:::i;:::-;5043:119;5201:1;5226:53;5271:7;5262:6;5251:9;5247:22;5226:53;:::i;:::-;5216:63;;5172:117;5328:2;5354:53;5399:7;5390:6;5379:9;5375:22;5354:53;:::i;:::-;5344:63;;5299:118;5456:2;5482:53;5527:7;5518:6;5507:9;5503:22;5482:53;:::i;:::-;5472:63;;5427:118;4933:619;;;;;:::o;5558:943::-;5653:6;5661;5669;5677;5726:3;5714:9;5705:7;5701:23;5697:33;5694:120;;;5733:79;;:::i;:::-;5694:120;5853:1;5878:53;5923:7;5914:6;5903:9;5899:22;5878:53;:::i;:::-;5868:63;;5824:117;5980:2;6006:53;6051:7;6042:6;6031:9;6027:22;6006:53;:::i;:::-;5996:63;;5951:118;6108:2;6134:53;6179:7;6170:6;6159:9;6155:22;6134:53;:::i;:::-;6124:63;;6079:118;6264:2;6253:9;6249:18;6236:32;6295:18;6287:6;6284:30;6281:117;;;6317:79;;:::i;:::-;6281:117;6422:62;6476:7;6467:6;6456:9;6452:22;6422:62;:::i;:::-;6412:72;;6207:287;5558:943;;;;;;;:::o;6507:468::-;6572:6;6580;6629:2;6617:9;6608:7;6604:23;6600:32;6597:119;;;6635:79;;:::i;:::-;6597:119;6755:1;6780:53;6825:7;6816:6;6805:9;6801:22;6780:53;:::i;:::-;6770:63;;6726:117;6882:2;6908:50;6950:7;6941:6;6930:9;6926:22;6908:50;:::i;:::-;6898:60;;6853:115;6507:468;;;;;:::o;6981:474::-;7049:6;7057;7106:2;7094:9;7085:7;7081:23;7077:32;7074:119;;;7112:79;;:::i;:::-;7074:119;7232:1;7257:53;7302:7;7293:6;7282:9;7278:22;7257:53;:::i;:::-;7247:63;;7203:117;7359:2;7385:53;7430:7;7421:6;7410:9;7406:22;7385:53;:::i;:::-;7375:63;;7330:118;6981:474;;;;;:::o;7461:327::-;7519:6;7568:2;7556:9;7547:7;7543:23;7539:32;7536:119;;;7574:79;;:::i;:::-;7536:119;7694:1;7719:52;7763:7;7754:6;7743:9;7739:22;7719:52;:::i;:::-;7709:62;;7665:116;7461:327;;;;:::o;7794:349::-;7863:6;7912:2;7900:9;7891:7;7887:23;7883:32;7880:119;;;7918:79;;:::i;:::-;7880:119;8038:1;8063:63;8118:7;8109:6;8098:9;8094:22;8063:63;:::i;:::-;8053:73;;8009:127;7794:349;;;;:::o;8149:509::-;8218:6;8267:2;8255:9;8246:7;8242:23;8238:32;8235:119;;;8273:79;;:::i;:::-;8235:119;8421:1;8410:9;8406:17;8393:31;8451:18;8443:6;8440:30;8437:117;;;8473:79;;:::i;:::-;8437:117;8578:63;8633:7;8624:6;8613:9;8609:22;8578:63;:::i;:::-;8568:73;;8364:287;8149:509;;;;:::o;8664:327::-;8722:6;8771:2;8759:9;8750:7;8746:23;8742:32;8739:119;;;8777:79;;:::i;:::-;8739:119;8897:1;8922:52;8966:7;8957:6;8946:9;8942:22;8922:52;:::i;:::-;8912:62;;8868:116;8664:327;;;;:::o;8997:670::-;9075:6;9083;9091;9140:2;9128:9;9119:7;9115:23;9111:32;9108:119;;;9146:79;;:::i;:::-;9108:119;9266:1;9291:52;9335:7;9326:6;9315:9;9311:22;9291:52;:::i;:::-;9281:62;;9237:116;9420:2;9409:9;9405:18;9392:32;9451:18;9443:6;9440:30;9437:117;;;9473:79;;:::i;:::-;9437:117;9586:64;9642:7;9633:6;9622:9;9618:22;9586:64;:::i;:::-;9568:82;;;;9363:297;8997:670;;;;;:::o;9673:795::-;9758:6;9766;9774;9823:2;9811:9;9802:7;9798:23;9794:32;9791:119;;;9829:79;;:::i;:::-;9791:119;9949:1;9974:52;10018:7;10009:6;9998:9;9994:22;9974:52;:::i;:::-;9964:62;;9920:116;10103:2;10092:9;10088:18;10075:32;10134:18;10126:6;10123:30;10120:117;;;10156:79;;:::i;:::-;10120:117;10261:62;10315:7;10306:6;10295:9;10291:22;10261:62;:::i;:::-;10251:72;;10046:287;10372:2;10398:53;10443:7;10434:6;10423:9;10419:22;10398:53;:::i;:::-;10388:63;;10343:118;9673:795;;;;;:::o;10474:1137::-;10578:6;10586;10594;10602;10610;10659:3;10647:9;10638:7;10634:23;10630:33;10627:120;;;10666:79;;:::i;:::-;10627:120;10786:1;10811:52;10855:7;10846:6;10835:9;10831:22;10811:52;:::i;:::-;10801:62;;10757:116;10940:2;10929:9;10925:18;10912:32;10971:18;10963:6;10960:30;10957:117;;;10993:79;;:::i;:::-;10957:117;11098:62;11152:7;11143:6;11132:9;11128:22;11098:62;:::i;:::-;11088:72;;10883:287;11209:2;11235:52;11279:7;11270:6;11259:9;11255:22;11235:52;:::i;:::-;11225:62;;11180:117;11364:2;11353:9;11349:18;11336:32;11395:18;11387:6;11384:30;11381:117;;;11417:79;;:::i;:::-;11381:117;11530:64;11586:7;11577:6;11566:9;11562:22;11530:64;:::i;:::-;11512:82;;;;11307:297;10474:1137;;;;;;;;:::o;11617:1117::-;11719:6;11727;11735;11743;11792:3;11780:9;11771:7;11767:23;11763:33;11760:120;;;11799:79;;:::i;:::-;11760:120;11919:1;11944:52;11988:7;11979:6;11968:9;11964:22;11944:52;:::i;:::-;11934:62;;11890:116;12073:2;12062:9;12058:18;12045:32;12104:18;12096:6;12093:30;12090:117;;;12126:79;;:::i;:::-;12090:117;12231:62;12285:7;12276:6;12265:9;12261:22;12231:62;:::i;:::-;12221:72;;12016:287;12342:2;12368:52;12412:7;12403:6;12392:9;12388:22;12368:52;:::i;:::-;12358:62;;12313:117;12497:2;12486:9;12482:18;12469:32;12528:18;12520:6;12517:30;12514:117;;;12550:79;;:::i;:::-;12514:117;12655:62;12709:7;12700:6;12689:9;12685:22;12655:62;:::i;:::-;12645:72;;12440:287;11617:1117;;;;;;;:::o;12740:472::-;12807:6;12815;12864:2;12852:9;12843:7;12839:23;12835:32;12832:119;;;12870:79;;:::i;:::-;12832:119;12990:1;13015:52;13059:7;13050:6;13039:9;13035:22;13015:52;:::i;:::-;13005:62;;12961:116;13116:2;13142:53;13187:7;13178:6;13167:9;13163:22;13142:53;:::i;:::-;13132:63;;13087:118;12740:472;;;;;:::o;13218:329::-;13277:6;13326:2;13314:9;13305:7;13301:23;13297:32;13294:119;;;13332:79;;:::i;:::-;13294:119;13452:1;13477:53;13522:7;13513:6;13502:9;13498:22;13477:53;:::i;:::-;13467:63;;13423:117;13218:329;;;;:::o;13553:507::-;13632:6;13640;13689:2;13677:9;13668:7;13664:23;13660:32;13657:119;;;13695:79;;:::i;:::-;13657:119;13815:1;13840:64;13896:7;13887:6;13876:9;13872:22;13840:64;:::i;:::-;13830:74;;13786:128;13953:2;13979:64;14035:7;14026:6;14015:9;14011:22;13979:64;:::i;:::-;13969:74;;13924:129;13553:507;;;;;:::o;14066:325::-;14123:6;14172:2;14160:9;14151:7;14147:23;14143:32;14140:119;;;14178:79;;:::i;:::-;14140:119;14298:1;14323:51;14366:7;14357:6;14346:9;14342:22;14323:51;:::i;:::-;14313:61;;14269:115;14066:325;;;;:::o;14397:142::-;14500:32;14526:5;14500:32;:::i;:::-;14495:3;14488:45;14397:142;;:::o;14545:118::-;14632:24;14650:5;14632:24;:::i;:::-;14627:3;14620:37;14545:118;;:::o;14669:109::-;14750:21;14765:5;14750:21;:::i;:::-;14745:3;14738:34;14669:109;;:::o;14784:118::-;14871:24;14889:5;14871:24;:::i;:::-;14866:3;14859:37;14784:118;;:::o;14930:301::-;15026:3;15047:70;15110:6;15105:3;15047:70;:::i;:::-;15040:77;;15127:43;15163:6;15158:3;15151:5;15127:43;:::i;:::-;15195:29;15217:6;15195:29;:::i;:::-;15190:3;15186:39;15179:46;;14930:301;;;;;:::o;15259:314::-;15373:3;15394:88;15475:6;15470:3;15394:88;:::i;:::-;15387:95;;15492:43;15528:6;15523:3;15516:5;15492:43;:::i;:::-;15560:6;15555:3;15551:16;15544:23;;15259:314;;;;;:::o;15579:360::-;15665:3;15693:38;15725:5;15693:38;:::i;:::-;15747:70;15810:6;15805:3;15747:70;:::i;:::-;15740:77;;15826:52;15871:6;15866:3;15859:4;15852:5;15848:16;15826:52;:::i;:::-;15903:29;15925:6;15903:29;:::i;:::-;15898:3;15894:39;15887:46;;15669:270;15579:360;;;;:::o;15945:373::-;16049:3;16077:38;16109:5;16077:38;:::i;:::-;16131:88;16212:6;16207:3;16131:88;:::i;:::-;16124:95;;16228:52;16273:6;16268:3;16261:4;16254:5;16250:16;16228:52;:::i;:::-;16305:6;16300:3;16296:16;16289:23;;16053:265;15945:373;;;;:::o;16346:798::-;16429:3;16466:5;16460:12;16495:36;16521:9;16495:36;:::i;:::-;16547:70;16610:6;16605:3;16547:70;:::i;:::-;16540:77;;16648:1;16637:9;16633:17;16664:1;16659:135;;;;16808:1;16803:335;;;;16626:512;;16659:135;16743:4;16739:9;16728;16724:25;16719:3;16712:38;16779:4;16774:3;16770:14;16763:21;;16659:135;;16803:335;16870:37;16901:5;16870:37;:::i;:::-;16929:1;16943:154;16957:6;16954:1;16951:13;16943:154;;;17031:7;17025:14;17021:1;17016:3;17012:11;17005:35;17081:1;17072:7;17068:15;17057:26;;16979:4;16976:1;16972:12;16967:17;;16943:154;;;17126:1;17121:3;17117:11;17110:18;;16810:328;;16626:512;;16433:711;;16346:798;;;;:::o;17172:841::-;17273:3;17310:5;17304:12;17339:36;17365:9;17339:36;:::i;:::-;17391:88;17472:6;17467:3;17391:88;:::i;:::-;17384:95;;17510:1;17499:9;17495:17;17526:1;17521:137;;;;17672:1;17667:340;;;;17488:519;;17521:137;17605:4;17601:9;17590;17586:25;17581:3;17574:38;17641:6;17636:3;17632:16;17625:23;;17521:137;;17667:340;17734:37;17765:5;17734:37;:::i;:::-;17793:1;17807:154;17821:6;17818:1;17815:13;17807:154;;;17895:7;17889:14;17885:1;17880:3;17876:11;17869:35;17945:1;17936:7;17932:15;17921:26;;17843:4;17840:1;17836:12;17831:17;;17807:154;;;17990:6;17985:3;17981:16;17974:23;;17674:333;;17488:519;;17277:736;;17172:841;;;;:::o;18019:364::-;18107:3;18135:39;18168:5;18135:39;:::i;:::-;18190:71;18254:6;18249:3;18190:71;:::i;:::-;18183:78;;18270:52;18315:6;18310:3;18303:4;18296:5;18292:16;18270:52;:::i;:::-;18347:29;18369:6;18347:29;:::i;:::-;18342:3;18338:39;18331:46;;18111:272;18019:364;;;;:::o;18389:377::-;18495:3;18523:39;18556:5;18523:39;:::i;:::-;18578:89;18660:6;18655:3;18578:89;:::i;:::-;18571:96;;18676:52;18721:6;18716:3;18709:4;18702:5;18698:16;18676:52;:::i;:::-;18753:6;18748:3;18744:16;18737:23;;18499:267;18389:377;;;;:::o;18772:366::-;18914:3;18935:67;18999:2;18994:3;18935:67;:::i;:::-;18928:74;;19011:93;19100:3;19011:93;:::i;:::-;19129:2;19124:3;19120:12;19113:19;;18772:366;;;:::o;19144:::-;19286:3;19307:67;19371:2;19366:3;19307:67;:::i;:::-;19300:74;;19383:93;19472:3;19383:93;:::i;:::-;19501:2;19496:3;19492:12;19485:19;;19144:366;;;:::o;19516:::-;19658:3;19679:67;19743:2;19738:3;19679:67;:::i;:::-;19672:74;;19755:93;19844:3;19755:93;:::i;:::-;19873:2;19868:3;19864:12;19857:19;;19516:366;;;:::o;19888:::-;20030:3;20051:67;20115:2;20110:3;20051:67;:::i;:::-;20044:74;;20127:93;20216:3;20127:93;:::i;:::-;20245:2;20240:3;20236:12;20229:19;;19888:366;;;:::o;20260:::-;20402:3;20423:67;20487:2;20482:3;20423:67;:::i;:::-;20416:74;;20499:93;20588:3;20499:93;:::i;:::-;20617:2;20612:3;20608:12;20601:19;;20260:366;;;:::o;20632:::-;20774:3;20795:67;20859:2;20854:3;20795:67;:::i;:::-;20788:74;;20871:93;20960:3;20871:93;:::i;:::-;20989:2;20984:3;20980:12;20973:19;;20632:366;;;:::o;21004:::-;21146:3;21167:67;21231:2;21226:3;21167:67;:::i;:::-;21160:74;;21243:93;21332:3;21243:93;:::i;:::-;21361:2;21356:3;21352:12;21345:19;;21004:366;;;:::o;21376:::-;21518:3;21539:67;21603:2;21598:3;21539:67;:::i;:::-;21532:74;;21615:93;21704:3;21615:93;:::i;:::-;21733:2;21728:3;21724:12;21717:19;;21376:366;;;:::o;21748:::-;21890:3;21911:67;21975:2;21970:3;21911:67;:::i;:::-;21904:74;;21987:93;22076:3;21987:93;:::i;:::-;22105:2;22100:3;22096:12;22089:19;;21748:366;;;:::o;22120:::-;22262:3;22283:67;22347:2;22342:3;22283:67;:::i;:::-;22276:74;;22359:93;22448:3;22359:93;:::i;:::-;22477:2;22472:3;22468:12;22461:19;;22120:366;;;:::o;22492:::-;22634:3;22655:67;22719:2;22714:3;22655:67;:::i;:::-;22648:74;;22731:93;22820:3;22731:93;:::i;:::-;22849:2;22844:3;22840:12;22833:19;;22492:366;;;:::o;22864:::-;23006:3;23027:67;23091:2;23086:3;23027:67;:::i;:::-;23020:74;;23103:93;23192:3;23103:93;:::i;:::-;23221:2;23216:3;23212:12;23205:19;;22864:366;;;:::o;23236:::-;23378:3;23399:67;23463:2;23458:3;23399:67;:::i;:::-;23392:74;;23475:93;23564:3;23475:93;:::i;:::-;23593:2;23588:3;23584:12;23577:19;;23236:366;;;:::o;23608:::-;23750:3;23771:67;23835:2;23830:3;23771:67;:::i;:::-;23764:74;;23847:93;23936:3;23847:93;:::i;:::-;23965:2;23960:3;23956:12;23949:19;;23608:366;;;:::o;23980:::-;24122:3;24143:67;24207:2;24202:3;24143:67;:::i;:::-;24136:74;;24219:93;24308:3;24219:93;:::i;:::-;24337:2;24332:3;24328:12;24321:19;;23980:366;;;:::o;24352:::-;24494:3;24515:67;24579:2;24574:3;24515:67;:::i;:::-;24508:74;;24591:93;24680:3;24591:93;:::i;:::-;24709:2;24704:3;24700:12;24693:19;;24352:366;;;:::o;24724:::-;24866:3;24887:67;24951:2;24946:3;24887:67;:::i;:::-;24880:74;;24963:93;25052:3;24963:93;:::i;:::-;25081:2;25076:3;25072:12;25065:19;;24724:366;;;:::o;25096:::-;25238:3;25259:67;25323:2;25318:3;25259:67;:::i;:::-;25252:74;;25335:93;25424:3;25335:93;:::i;:::-;25453:2;25448:3;25444:12;25437:19;;25096:366;;;:::o;25468:::-;25610:3;25631:67;25695:2;25690:3;25631:67;:::i;:::-;25624:74;;25707:93;25796:3;25707:93;:::i;:::-;25825:2;25820:3;25816:12;25809:19;;25468:366;;;:::o;25840:::-;25982:3;26003:67;26067:2;26062:3;26003:67;:::i;:::-;25996:74;;26079:93;26168:3;26079:93;:::i;:::-;26197:2;26192:3;26188:12;26181:19;;25840:366;;;:::o;26212:::-;26354:3;26375:67;26439:2;26434:3;26375:67;:::i;:::-;26368:74;;26451:93;26540:3;26451:93;:::i;:::-;26569:2;26564:3;26560:12;26553:19;;26212:366;;;:::o;26584:::-;26726:3;26747:67;26811:2;26806:3;26747:67;:::i;:::-;26740:74;;26823:93;26912:3;26823:93;:::i;:::-;26941:2;26936:3;26932:12;26925:19;;26584:366;;;:::o;26956:398::-;27115:3;27136:83;27217:1;27212:3;27136:83;:::i;:::-;27129:90;;27228:93;27317:3;27228:93;:::i;:::-;27346:1;27341:3;27337:11;27330:18;;26956:398;;;:::o;27360:366::-;27502:3;27523:67;27587:2;27582:3;27523:67;:::i;:::-;27516:74;;27599:93;27688:3;27599:93;:::i;:::-;27717:2;27712:3;27708:12;27701:19;;27360:366;;;:::o;27732:::-;27874:3;27895:67;27959:2;27954:3;27895:67;:::i;:::-;27888:74;;27971:93;28060:3;27971:93;:::i;:::-;28089:2;28084:3;28080:12;28073:19;;27732:366;;;:::o;28104:::-;28246:3;28267:67;28331:2;28326:3;28267:67;:::i;:::-;28260:74;;28343:93;28432:3;28343:93;:::i;:::-;28461:2;28456:3;28452:12;28445:19;;28104:366;;;:::o;28476:115::-;28561:23;28578:5;28561:23;:::i;:::-;28556:3;28549:36;28476:115;;:::o;28597:153::-;28700:43;28719:23;28736:5;28719:23;:::i;:::-;28700:43;:::i;:::-;28695:3;28688:56;28597:153;;:::o;28756:118::-;28843:24;28861:5;28843:24;:::i;:::-;28838:3;28831:37;28756:118;;:::o;28880:157::-;28985:45;29005:24;29023:5;29005:24;:::i;:::-;28985:45;:::i;:::-;28980:3;28973:58;28880:157;;:::o;29043:115::-;29128:23;29145:5;29128:23;:::i;:::-;29123:3;29116:36;29043:115;;:::o;29164:291::-;29304:3;29326:103;29425:3;29416:6;29408;29326:103;:::i;:::-;29319:110;;29446:3;29439:10;;29164:291;;;;;:::o;29461:271::-;29591:3;29613:93;29702:3;29693:6;29613:93;:::i;:::-;29606:100;;29723:3;29716:10;;29461:271;;;;:::o;29738:265::-;29865:3;29887:90;29973:3;29964:6;29887:90;:::i;:::-;29880:97;;29994:3;29987:10;;29738:265;;;;:::o;30009:595::-;30237:3;30259:95;30350:3;30341:6;30259:95;:::i;:::-;30252:102;;30371:95;30462:3;30453:6;30371:95;:::i;:::-;30364:102;;30483:95;30574:3;30565:6;30483:95;:::i;:::-;30476:102;;30595:3;30588:10;;30009:595;;;;;;:::o;30610:379::-;30794:3;30816:147;30959:3;30816:147;:::i;:::-;30809:154;;30980:3;30973:10;;30610:379;;;:::o;30995:392::-;31133:3;31148:73;31217:3;31208:6;31148:73;:::i;:::-;31246:1;31241:3;31237:11;31230:18;;31258:75;31329:3;31320:6;31258:75;:::i;:::-;31358:2;31353:3;31349:12;31342:19;;31378:3;31371:10;;30995:392;;;;;:::o;31393:222::-;31486:4;31524:2;31513:9;31509:18;31501:26;;31537:71;31605:1;31594:9;31590:17;31581:6;31537:71;:::i;:::-;31393:222;;;;:::o;31621:640::-;31816:4;31854:3;31843:9;31839:19;31831:27;;31868:71;31936:1;31925:9;31921:17;31912:6;31868:71;:::i;:::-;31949:72;32017:2;32006:9;32002:18;31993:6;31949:72;:::i;:::-;32031;32099:2;32088:9;32084:18;32075:6;32031:72;:::i;:::-;32150:9;32144:4;32140:20;32135:2;32124:9;32120:18;32113:48;32178:76;32249:4;32240:6;32178:76;:::i;:::-;32170:84;;31621:640;;;;;;;:::o;32267:332::-;32388:4;32426:2;32415:9;32411:18;32403:26;;32439:71;32507:1;32496:9;32492:17;32483:6;32439:71;:::i;:::-;32520:72;32588:2;32577:9;32573:18;32564:6;32520:72;:::i;:::-;32267:332;;;;;:::o;32605:210::-;32692:4;32730:2;32719:9;32715:18;32707:26;;32743:65;32805:1;32794:9;32790:17;32781:6;32743:65;:::i;:::-;32605:210;;;;:::o;32821:309::-;32932:4;32970:2;32959:9;32955:18;32947:26;;33019:9;33013:4;33009:20;33005:1;32994:9;32990:17;32983:47;33047:76;33118:4;33109:6;33047:76;:::i;:::-;33039:84;;32821:309;;;;:::o;33136:313::-;33249:4;33287:2;33276:9;33272:18;33264:26;;33336:9;33330:4;33326:20;33322:1;33311:9;33307:17;33300:47;33364:78;33437:4;33428:6;33364:78;:::i;:::-;33356:86;;33136:313;;;;:::o;33455:419::-;33621:4;33659:2;33648:9;33644:18;33636:26;;33708:9;33702:4;33698:20;33694:1;33683:9;33679:17;33672:47;33736:131;33862:4;33736:131;:::i;:::-;33728:139;;33455:419;;;:::o;33880:::-;34046:4;34084:2;34073:9;34069:18;34061:26;;34133:9;34127:4;34123:20;34119:1;34108:9;34104:17;34097:47;34161:131;34287:4;34161:131;:::i;:::-;34153:139;;33880:419;;;:::o;34305:::-;34471:4;34509:2;34498:9;34494:18;34486:26;;34558:9;34552:4;34548:20;34544:1;34533:9;34529:17;34522:47;34586:131;34712:4;34586:131;:::i;:::-;34578:139;;34305:419;;;:::o;34730:::-;34896:4;34934:2;34923:9;34919:18;34911:26;;34983:9;34977:4;34973:20;34969:1;34958:9;34954:17;34947:47;35011:131;35137:4;35011:131;:::i;:::-;35003:139;;34730:419;;;:::o;35155:::-;35321:4;35359:2;35348:9;35344:18;35336:26;;35408:9;35402:4;35398:20;35394:1;35383:9;35379:17;35372:47;35436:131;35562:4;35436:131;:::i;:::-;35428:139;;35155:419;;;:::o;35580:::-;35746:4;35784:2;35773:9;35769:18;35761:26;;35833:9;35827:4;35823:20;35819:1;35808:9;35804:17;35797:47;35861:131;35987:4;35861:131;:::i;:::-;35853:139;;35580:419;;;:::o;36005:::-;36171:4;36209:2;36198:9;36194:18;36186:26;;36258:9;36252:4;36248:20;36244:1;36233:9;36229:17;36222:47;36286:131;36412:4;36286:131;:::i;:::-;36278:139;;36005:419;;;:::o;36430:::-;36596:4;36634:2;36623:9;36619:18;36611:26;;36683:9;36677:4;36673:20;36669:1;36658:9;36654:17;36647:47;36711:131;36837:4;36711:131;:::i;:::-;36703:139;;36430:419;;;:::o;36855:::-;37021:4;37059:2;37048:9;37044:18;37036:26;;37108:9;37102:4;37098:20;37094:1;37083:9;37079:17;37072:47;37136:131;37262:4;37136:131;:::i;:::-;37128:139;;36855:419;;;:::o;37280:::-;37446:4;37484:2;37473:9;37469:18;37461:26;;37533:9;37527:4;37523:20;37519:1;37508:9;37504:17;37497:47;37561:131;37687:4;37561:131;:::i;:::-;37553:139;;37280:419;;;:::o;37705:::-;37871:4;37909:2;37898:9;37894:18;37886:26;;37958:9;37952:4;37948:20;37944:1;37933:9;37929:17;37922:47;37986:131;38112:4;37986:131;:::i;:::-;37978:139;;37705:419;;;:::o;38130:::-;38296:4;38334:2;38323:9;38319:18;38311:26;;38383:9;38377:4;38373:20;38369:1;38358:9;38354:17;38347:47;38411:131;38537:4;38411:131;:::i;:::-;38403:139;;38130:419;;;:::o;38555:::-;38721:4;38759:2;38748:9;38744:18;38736:26;;38808:9;38802:4;38798:20;38794:1;38783:9;38779:17;38772:47;38836:131;38962:4;38836:131;:::i;:::-;38828:139;;38555:419;;;:::o;38980:::-;39146:4;39184:2;39173:9;39169:18;39161:26;;39233:9;39227:4;39223:20;39219:1;39208:9;39204:17;39197:47;39261:131;39387:4;39261:131;:::i;:::-;39253:139;;38980:419;;;:::o;39405:::-;39571:4;39609:2;39598:9;39594:18;39586:26;;39658:9;39652:4;39648:20;39644:1;39633:9;39629:17;39622:47;39686:131;39812:4;39686:131;:::i;:::-;39678:139;;39405:419;;;:::o;39830:::-;39996:4;40034:2;40023:9;40019:18;40011:26;;40083:9;40077:4;40073:20;40069:1;40058:9;40054:17;40047:47;40111:131;40237:4;40111:131;:::i;:::-;40103:139;;39830:419;;;:::o;40255:::-;40421:4;40459:2;40448:9;40444:18;40436:26;;40508:9;40502:4;40498:20;40494:1;40483:9;40479:17;40472:47;40536:131;40662:4;40536:131;:::i;:::-;40528:139;;40255:419;;;:::o;40680:::-;40846:4;40884:2;40873:9;40869:18;40861:26;;40933:9;40927:4;40923:20;40919:1;40908:9;40904:17;40897:47;40961:131;41087:4;40961:131;:::i;:::-;40953:139;;40680:419;;;:::o;41105:::-;41271:4;41309:2;41298:9;41294:18;41286:26;;41358:9;41352:4;41348:20;41344:1;41333:9;41329:17;41322:47;41386:131;41512:4;41386:131;:::i;:::-;41378:139;;41105:419;;;:::o;41530:::-;41696:4;41734:2;41723:9;41719:18;41711:26;;41783:9;41777:4;41773:20;41769:1;41758:9;41754:17;41747:47;41811:131;41937:4;41811:131;:::i;:::-;41803:139;;41530:419;;;:::o;41955:::-;42121:4;42159:2;42148:9;42144:18;42136:26;;42208:9;42202:4;42198:20;42194:1;42183:9;42179:17;42172:47;42236:131;42362:4;42236:131;:::i;:::-;42228:139;;41955:419;;;:::o;42380:::-;42546:4;42584:2;42573:9;42569:18;42561:26;;42633:9;42627:4;42623:20;42619:1;42608:9;42604:17;42597:47;42661:131;42787:4;42661:131;:::i;:::-;42653:139;;42380:419;;;:::o;42805:::-;42971:4;43009:2;42998:9;42994:18;42986:26;;43058:9;43052:4;43048:20;43044:1;43033:9;43029:17;43022:47;43086:131;43212:4;43086:131;:::i;:::-;43078:139;;42805:419;;;:::o;43230:::-;43396:4;43434:2;43423:9;43419:18;43411:26;;43483:9;43477:4;43473:20;43469:1;43458:9;43454:17;43447:47;43511:131;43637:4;43511:131;:::i;:::-;43503:139;;43230:419;;;:::o;43655:::-;43821:4;43859:2;43848:9;43844:18;43836:26;;43908:9;43902:4;43898:20;43894:1;43883:9;43879:17;43872:47;43936:131;44062:4;43936:131;:::i;:::-;43928:139;;43655:419;;;:::o;44080:822::-;44313:4;44351:3;44340:9;44336:19;44328:27;;44365:69;44431:1;44420:9;44416:17;44407:6;44365:69;:::i;:::-;44444:72;44512:2;44501:9;44497:18;44488:6;44444:72;:::i;:::-;44563:9;44557:4;44553:20;44548:2;44537:9;44533:18;44526:48;44591:76;44662:4;44653:6;44591:76;:::i;:::-;44583:84;;44677:66;44739:2;44728:9;44724:18;44715:6;44677:66;:::i;:::-;44791:9;44785:4;44781:20;44775:3;44764:9;44760:19;44753:49;44819:76;44890:4;44881:6;44819:76;:::i;:::-;44811:84;;44080:822;;;;;;;;:::o;44908:739::-;45127:4;45165:3;45154:9;45150:19;45142:27;;45179:69;45245:1;45234:9;45230:17;45221:6;45179:69;:::i;:::-;45295:9;45289:4;45285:20;45280:2;45269:9;45265:18;45258:48;45323:76;45394:4;45385:6;45323:76;:::i;:::-;45315:84;;45409:70;45475:2;45464:9;45460:18;45451:6;45409:70;:::i;:::-;45526:9;45520:4;45516:20;45511:2;45500:9;45496:18;45489:48;45554:86;45635:4;45626:6;45618;45554:86;:::i;:::-;45546:94;;44908:739;;;;;;;;:::o;45653:719::-;45862:4;45900:3;45889:9;45885:19;45877:27;;45914:69;45980:1;45969:9;45965:17;45956:6;45914:69;:::i;:::-;46030:9;46024:4;46020:20;46015:2;46004:9;46000:18;45993:48;46058:76;46129:4;46120:6;46058:76;:::i;:::-;46050:84;;46144:70;46210:2;46199:9;46195:18;46186:6;46144:70;:::i;:::-;46261:9;46255:4;46251:20;46246:2;46235:9;46231:18;46224:48;46289:76;46360:4;46351:6;46289:76;:::i;:::-;46281:84;;45653:719;;;;;;;:::o;46378:1058::-;46676:4;46714:3;46703:9;46699:19;46691:27;;46728:69;46794:1;46783:9;46779:17;46770:6;46728:69;:::i;:::-;46844:9;46838:4;46834:20;46829:2;46818:9;46814:18;46807:48;46872:73;46940:4;46931:6;46872:73;:::i;:::-;46864:81;;46992:9;46986:4;46982:20;46977:2;46966:9;46962:18;46955:48;47020:76;47091:4;47082:6;47020:76;:::i;:::-;47012:84;;47106:88;47190:2;47179:9;47175:18;47166:6;47106:88;:::i;:::-;47204:73;47272:3;47261:9;47257:19;47248:6;47204:73;:::i;:::-;47325:9;47319:4;47315:20;47309:3;47298:9;47294:19;47287:49;47353:76;47424:4;47415:6;47353:76;:::i;:::-;47345:84;;46378:1058;;;;;;;;;:::o;47442:222::-;47535:4;47573:2;47562:9;47558:18;47550:26;;47586:71;47654:1;47643:9;47639:17;47630:6;47586:71;:::i;:::-;47442:222;;;;:::o;47670:332::-;47791:4;47829:2;47818:9;47814:18;47806:26;;47842:71;47910:1;47899:9;47895:17;47886:6;47842:71;:::i;:::-;47923:72;47991:2;47980:9;47976:18;47967:6;47923:72;:::i;:::-;47670:332;;;;;:::o;48008:129::-;48042:6;48069:20;;:::i;:::-;48059:30;;48098:33;48126:4;48118:6;48098:33;:::i;:::-;48008:129;;;:::o;48143:75::-;48176:6;48209:2;48203:9;48193:19;;48143:75;:::o;48224:307::-;48285:4;48375:18;48367:6;48364:30;48361:56;;;48397:18;;:::i;:::-;48361:56;48435:29;48457:6;48435:29;:::i;:::-;48427:37;;48519:4;48513;48509:15;48501:23;;48224:307;;;:::o;48537:308::-;48599:4;48689:18;48681:6;48678:30;48675:56;;;48711:18;;:::i;:::-;48675:56;48749:29;48771:6;48749:29;:::i;:::-;48741:37;;48833:4;48827;48823:15;48815:23;;48537:308;;;:::o;48851:140::-;48899:4;48922:3;48914:11;;48945:3;48942:1;48935:14;48979:4;48976:1;48966:18;48958:26;;48851:140;;;:::o;48997:98::-;49048:6;49082:5;49076:12;49066:22;;48997:98;;;:::o;49101:99::-;49153:6;49187:5;49181:12;49171:22;;49101:99;;;:::o;49206:168::-;49289:11;49323:6;49318:3;49311:19;49363:4;49358:3;49354:14;49339:29;;49206:168;;;;:::o;49380:147::-;49481:11;49518:3;49503:18;;49380:147;;;;:::o;49533:169::-;49617:11;49651:6;49646:3;49639:19;49691:4;49686:3;49682:14;49667:29;;49533:169;;;;:::o;49708:148::-;49810:11;49847:3;49832:18;;49708:148;;;;:::o;49862:305::-;49902:3;49921:20;49939:1;49921:20;:::i;:::-;49916:25;;49955:20;49973:1;49955:20;:::i;:::-;49950:25;;50109:1;50041:66;50037:74;50034:1;50031:81;50028:107;;;50115:18;;:::i;:::-;50028:107;50159:1;50156;50152:9;50145:16;;49862:305;;;;:::o;50173:185::-;50213:1;50230:20;50248:1;50230:20;:::i;:::-;50225:25;;50264:20;50282:1;50264:20;:::i;:::-;50259:25;;50303:1;50293:35;;50308:18;;:::i;:::-;50293:35;50350:1;50347;50343:9;50338:14;;50173:185;;;;:::o;50364:191::-;50404:4;50424:20;50442:1;50424:20;:::i;:::-;50419:25;;50458:20;50476:1;50458:20;:::i;:::-;50453:25;;50497:1;50494;50491:8;50488:34;;;50502:18;;:::i;:::-;50488:34;50547:1;50544;50540:9;50532:17;;50364:191;;;;:::o;50561:96::-;50598:7;50627:24;50645:5;50627:24;:::i;:::-;50616:35;;50561:96;;;:::o;50663:104::-;50708:7;50737:24;50755:5;50737:24;:::i;:::-;50726:35;;50663:104;;;:::o;50773:90::-;50807:7;50850:5;50843:13;50836:21;50825:32;;50773:90;;;:::o;50869:77::-;50906:7;50935:5;50924:16;;50869:77;;;:::o;50952:149::-;50988:7;51028:66;51021:5;51017:78;51006:89;;50952:149;;;:::o;51107:89::-;51143:7;51183:6;51176:5;51172:18;51161:29;;51107:89;;;:::o;51202:126::-;51239:7;51279:42;51272:5;51268:54;51257:65;;51202:126;;;:::o;51334:77::-;51371:7;51400:5;51389:16;;51334:77;;;:::o;51417:101::-;51453:7;51493:18;51486:5;51482:30;51471:41;;51417:101;;;:::o;51524:86::-;51559:7;51599:4;51592:5;51588:16;51577:27;;51524:86;;;:::o;51616:154::-;51700:6;51695:3;51690;51677:30;51762:1;51753:6;51748:3;51744:16;51737:27;51616:154;;;:::o;51776:307::-;51844:1;51854:113;51868:6;51865:1;51862:13;51854:113;;;51953:1;51948:3;51944:11;51938:18;51934:1;51929:3;51925:11;51918:39;51890:2;51887:1;51883:10;51878:15;;51854:113;;;51985:6;51982:1;51979:13;51976:101;;;52065:1;52056:6;52051:3;52047:16;52040:27;51976:101;51825:258;51776:307;;;:::o;52089:320::-;52133:6;52170:1;52164:4;52160:12;52150:22;;52217:1;52211:4;52207:12;52238:18;52228:81;;52294:4;52286:6;52282:17;52272:27;;52228:81;52356:2;52348:6;52345:14;52325:18;52322:38;52319:84;;;52375:18;;:::i;:::-;52319:84;52140:269;52089:320;;;:::o;52415:281::-;52498:27;52520:4;52498:27;:::i;:::-;52490:6;52486:40;52628:6;52616:10;52613:22;52592:18;52580:10;52577:34;52574:62;52571:88;;;52639:18;;:::i;:::-;52571:88;52679:10;52675:2;52668:22;52458:238;52415:281;;:::o;52702:233::-;52741:3;52764:24;52782:5;52764:24;:::i;:::-;52755:33;;52810:66;52803:5;52800:77;52797:103;;;52880:18;;:::i;:::-;52797:103;52927:1;52920:5;52916:13;52909:20;;52702:233;;;:::o;52941:94::-;52979:7;53008:21;53023:5;53008:21;:::i;:::-;52997:32;;52941:94;;;:::o;53041:79::-;53080:7;53109:5;53098:16;;53041:79;;;:::o;53126:176::-;53158:1;53175:20;53193:1;53175:20;:::i;:::-;53170:25;;53209:20;53227:1;53209:20;:::i;:::-;53204:25;;53248:1;53238:35;;53253:18;;:::i;:::-;53238:35;53294:1;53291;53287:9;53282:14;;53126:176;;;;:::o;53308:180::-;53356:77;53353:1;53346:88;53453:4;53450:1;53443:15;53477:4;53474:1;53467:15;53494:180;53542:77;53539:1;53532:88;53639:4;53636:1;53629:15;53663:4;53660:1;53653:15;53680:180;53728:77;53725:1;53718:88;53825:4;53822:1;53815:15;53849:4;53846:1;53839:15;53866:180;53914:77;53911:1;53904:88;54011:4;54008:1;54001:15;54035:4;54032:1;54025:15;54052:180;54100:77;54097:1;54090:88;54197:4;54194:1;54187:15;54221:4;54218:1;54211:15;54238:117;54347:1;54344;54337:12;54361:117;54470:1;54467;54460:12;54484:117;54593:1;54590;54583:12;54607:117;54716:1;54713;54706:12;54730:117;54839:1;54836;54829:12;54853:117;54962:1;54959;54952:12;54976:102;55017:6;55068:2;55064:7;55059:2;55052:5;55048:14;55044:28;55034:38;;54976:102;;;:::o;55084:96::-;55118:8;55167:5;55162:3;55158:15;55137:36;;55084:96;;;:::o;55186:237::-;55326:34;55322:1;55314:6;55310:14;55303:58;55395:20;55390:2;55382:6;55378:15;55371:45;55186:237;:::o;55429:225::-;55569:34;55565:1;55557:6;55553:14;55546:58;55638:8;55633:2;55625:6;55621:15;55614:33;55429:225;:::o;55660:223::-;55800:34;55796:1;55788:6;55784:14;55777:58;55869:6;55864:2;55856:6;55852:15;55845:31;55660:223;:::o;55889:175::-;56029:27;56025:1;56017:6;56013:14;56006:51;55889:175;:::o;56070:233::-;56210:34;56206:1;56198:6;56194:14;56187:58;56279:16;56274:2;56266:6;56262:15;56255:41;56070:233;:::o;56309:176::-;56449:28;56445:1;56437:6;56433:14;56426:52;56309:176;:::o;56491:301::-;56631:34;56627:1;56619:6;56615:14;56608:58;56700:34;56695:2;56687:6;56683:15;56676:59;56769:15;56764:2;56756:6;56752:15;56745:40;56491:301;:::o;56798:221::-;56938:34;56934:1;56926:6;56922:14;56915:58;57007:4;57002:2;56994:6;56990:15;56983:29;56798:221;:::o;57025:::-;57165:34;57161:1;57153:6;57149:14;57142:58;57234:4;57229:2;57221:6;57217:15;57210:29;57025:221;:::o;57252:231::-;57392:34;57388:1;57380:6;57376:14;57369:58;57461:14;57456:2;57448:6;57444:15;57437:39;57252:231;:::o;57489:243::-;57629:34;57625:1;57617:6;57613:14;57606:58;57698:26;57693:2;57685:6;57681:15;57674:51;57489:243;:::o;57738:229::-;57878:34;57874:1;57866:6;57862:14;57855:58;57947:12;57942:2;57934:6;57930:15;57923:37;57738:229;:::o;57973:228::-;58113:34;58109:1;58101:6;58097:14;58090:58;58182:11;58177:2;58169:6;58165:15;58158:36;57973:228;:::o;58207:230::-;58347:34;58343:1;58335:6;58331:14;58324:58;58416:13;58411:2;58403:6;58399:15;58392:38;58207:230;:::o;58443:182::-;58583:34;58579:1;58571:6;58567:14;58560:58;58443:182;:::o;58631:231::-;58771:34;58767:1;58759:6;58755:14;58748:58;58840:14;58835:2;58827:6;58823:15;58816:39;58631:231;:::o;58868:182::-;59008:34;59004:1;58996:6;58992:14;58985:58;58868:182;:::o;59056:239::-;59196:34;59192:1;59184:6;59180:14;59173:58;59265:22;59260:2;59252:6;59248:15;59241:47;59056:239;:::o;59301:228::-;59441:34;59437:1;59429:6;59425:14;59418:58;59510:11;59505:2;59497:6;59493:15;59486:36;59301:228;:::o;59535:234::-;59675:34;59671:1;59663:6;59659:14;59652:58;59744:17;59739:2;59731:6;59727:15;59720:42;59535:234;:::o;59775:222::-;59915:34;59911:1;59903:6;59899:14;59892:58;59984:5;59979:2;59971:6;59967:15;59960:30;59775:222;:::o;60003:220::-;60143:34;60139:1;60131:6;60127:14;60120:58;60212:3;60207:2;60199:6;60195:15;60188:28;60003:220;:::o;60229:114::-;;:::o;60349:236::-;60489:34;60485:1;60477:6;60473:14;60466:58;60558:19;60553:2;60545:6;60541:15;60534:44;60349:236;:::o;60591:225::-;60731:34;60727:1;60719:6;60715:14;60708:58;60800:8;60795:2;60787:6;60783:15;60776:33;60591:225;:::o;60822:179::-;60962:31;60958:1;60950:6;60946:14;60939:55;60822:179;:::o;61007:122::-;61080:24;61098:5;61080:24;:::i;:::-;61073:5;61070:35;61060:63;;61119:1;61116;61109:12;61060:63;61007:122;:::o;61135:138::-;61216:32;61242:5;61216:32;:::i;:::-;61209:5;61206:43;61196:71;;61263:1;61260;61253:12;61196:71;61135:138;:::o;61279:116::-;61349:21;61364:5;61349:21;:::i;:::-;61342:5;61339:32;61329:60;;61385:1;61382;61375:12;61329:60;61279:116;:::o;61401:120::-;61473:23;61490:5;61473:23;:::i;:::-;61466:5;61463:34;61453:62;;61511:1;61508;61501:12;61453:62;61401:120;:::o;61527:::-;61599:23;61616:5;61599:23;:::i;:::-;61592:5;61589:34;61579:62;;61637:1;61634;61627:12;61579:62;61527:120;:::o;61653:122::-;61726:24;61744:5;61726:24;:::i;:::-;61719:5;61716:35;61706:63;;61765:1;61762;61755:12;61706:63;61653:122;:::o;61781:120::-;61853:23;61870:5;61853:23;:::i;:::-;61846:5;61843:34;61833:62;;61891:1;61888;61881:12;61833:62;61781:120;:::o;61907:118::-;61978:22;61994:5;61978:22;:::i;:::-;61971:5;61968:33;61958:61;;62015:1;62012;62005:12;61958:61;61907:118;:::o
Swarm Source
ipfs://8f08a3d746a9d5b83413c30505268b0f2f21bcfef6ba77446daba1bdd395258e
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.